2007-01-24 Dick Porter <dick@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-01-24  Dick Porter  <dick@ximian.com>
2
3         * socket-io.c
4         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5         Create the returned object if we need to ignore an unsupported
6         socket option.  Fixes a segfault reported by Atsushi.
7
8 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
9
10         * class.c, object.c: restrict GC-tracked fields to
11         UIntPtr fields used inside corlib, so we provide better
12         type info to the GC and also allow broken packing as in
13         bug #80580.
14
15 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16
17         * sgen-gc.c: removed duplicated function.
18
19 2007-01-19  Miguel de Icaza  <miguel@novell.com>
20
21         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
22         value that means that the value is not supported, but that we
23         should not return a failure, but instead report this as a
24         successful operation.
25
26 2007-01-19  Raja R Harinath  <rharinath@novell.com>
27
28         Fix tests/bug79956.2.il
29         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
30         (mono_generic_class_get_class): If the generic definition in an
31         enum, copy over other fields related to it.
32
33 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
34
35         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
36         genericinst enums (bug #79215).
37
38 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
39         * class.c: Fix bug 80307.
40
41 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
42
43         * image.c: if the file table is not present, try to load
44         all the modules, since we don't have info about them
45         having or not metadata (bug #80517).
46         * assembly.c: allow mono_assembly_load_references () to
47         work for netmodules.
48
49 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
50
51         * image.c, metadata-internals.h, object.c: execute module
52         cctors when running on the 2 runtime if present (bug #80487).
53
54 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
55
56         * icall.c: optimized InitializeArray() on bigendian.
57
58 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
59
60         * icall.c: fix for the broken ARM FPA double format.
61
62 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
63
64         * icall.c: handle endian issues for r4 and r8 types, too, in
65         the InitializeArray() icall.
66
67 2007-01-15  Miguel de Icaza  <miguel@novell.com>
68
69         * loader.c (mono_loader_error_prepare_exception): Clear the error
70         once we have extracted the information from it, do this before we
71         call into the JIT's class loading mechanisms.
72
73         * object.c (mono_class_create_runtime_vtable): Do not clear the
74         loader error before calling mono_class_get_exception_for_failure
75         as the loader error is needed inside
76         mono_class_get_exception_for_failure to throw the error (thinko).
77
78         Fixes #80521
79         
80 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
81
82         * reflection.c: align fields rva data so it's faster to load at
83         runtime.
84
85 2007-01-12  Raja R Harinath  <rharinath@novell.com>
86
87         Prepare to simplify GenericMethod handling.
88         * class-internals.h (mono_method_get_context): New accessor function.
89         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
90         rather than directly accessing '->context' field.
91
92         * class-internals.h (_MonoGenericParam.method): Move ...
93         (_MonoGenericContainer): ... here.  Add into union with klass field.
94         * class.c, icall.c, loader.c, metadata.c, reflection.c:
95         Update to changes.
96
97 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
98
99         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
100         the wrapper type enum and reduce relocations.
101
102 2007-01-12  Raja R Harinath  <rharinath@novell.com>
103
104         * reflection.c (inflate_mono_method): Reuse method instantiation
105         from the generic method, if available.
106
107 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
108
109         * marshal.c (emit_marshal_variant): Fix conv_arg
110         type in last commit, based on whether parameter is byref.
111         
112 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
113
114         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
115         marshalling.
116         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
117         MONO_TYPE_OBJECT back for VARIANT support.
118
119 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
120
121         * marshal.c, marshal.h, icall-def.h: Implement 
122         Marshal.ReAllocCoTaskMem.
123
124 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
125
126         * marshal.c: memory retention fixes: use the proper
127         image cache for runtime_invoke method lookups.
128
129 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
130
131         * mempool.c: added code to help debug mempool allocations.
132
133 2007-01-11  Dick Porter  <dick@ximian.com>
134
135         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
136         support (experimenting with faking it with IP_MTU_DISCOVER for
137         systems that don't have IP_DONTFRAGMENT.)
138         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
139         icall.
140
141         * icall-def.h: new System.Net.Sockets.Disconnect icall.
142
143         * socket-io.h: Add new fields to MonoSocketAsyncResult
144         corresponding to the new ones in Socket.cs.
145
146 2007-01-11  Raja R Harinath  <rharinath@novell.com>
147
148         Fix IronPython regression mentioned in #80249
149         * metadata.c (do_mono_metadata_parse_generic_class): Clear
150         'cached_context' field, since it may have been initialized as a
151         side-effect of metadata parsing.
152
153         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
154         (_MonoGenericClass.cached_class): Move here and rename from lone
155         remaining field of ...
156         (_MonoInflatedGenericClass): ... this.  Remove.
157         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
158         to changes.
159
160         Fix mcs/tests/test-128.cs regression.
161         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
162         2007-01-10 change below.
163         [MONO_TYPE_OBJECT]: Recurse into array case.
164
165 2007-01-11  Raja R Harinath  <harinath@gmail.com>
166
167         * class-internals.h (mono_get_inflated_generic_class): Remove.
168         * class.c (mono_get_inflated_generic_class): Remove.
169         (mono_generic_class_get_class): Rename from
170         mono_class_create_generic.
171         (mono_class_from_mono_type) [GENERICINST]: Use it.
172         * reflection.c, metadata.c: Update to changes.  Use
173         'mono_class_from_mono_type'.
174
175 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
176
177         * reflection.c: use passed type when encoding an array element
178         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
179
180 2007-01-09  Robert Jordan  <robertj@gmx.net>
181
182         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
183         result arguments (someDelegate.EndInvoke (unrelatedAres)).
184         Fixes bug #80392.
185
186 2007-01-09  Raja R Harinath  <rharinath@novell.com>
187
188         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
189
190         * object.c (set_value): Avoid aliasing between type->data.klass
191         and type->data.generic_class.
192
193         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
194
195 2007-01-08  Raja R Harinath  <rharinath@novell.com>
196
197         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
198         between type->data.klass and type->data.generic_class.
199
200 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
201
202         * marshal.c: In MS.NET, StringBuilder objects are not copied by
203         value in out parameters.
204
205 2007-01-08  Raja R Harinath  <rharinath@novell.com>
206
207         Simplify invariant for MonoGenericClass::klass field.
208         * class.c (mono_class_create_generic): Verify 'klass' is null.
209         * metadata.c (do_mono_metadata_parse_generic_class): Don't
210         initialize 'klass' field.
211
212 2007-01-05  Raja R Harinath  <rharinath@novell.com>
213
214         Ongoing work to avoid redundant data and simplify invariants.
215         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
216         'generic_class', and change type to a GenericInst.
217         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
218         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
219
220 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
221
222         * class.c : skip io-layer under PLATFORM_WIN32.
223
224 2007-01-03  Tor Lillqvist  <tml@novell.com>
225
226         Fix #80305: In a bundled executable, look in the bundled exe
227         assembly to determine the runtime version. Add the possibility to
228         bundle also the machine.config file.
229         
230         * assembly.c (mono_assembly_open_from_bundle): Make
231         non-static. Allow being called even if we have no bundled
232         assemblies, and return NULL right away in that case.
233
234         * domain-internals.h: Declare mono_assembly_open_from_bundle()
235         here.
236
237         * domain.c (app_config_parse): Take an assembly exe file name as
238         parameter instead of a config file name. Check for a bundled
239         config file for that assembly by calling
240         mono_config_string_for_assembly_file() (see below) before looking
241         for one in the file system.
242         (get_runtimes_from_exe): Corrsponding change to call of
243         app_config_parse().
244         (get_runtimes_from_exe): Check for bundled assembly exe file first
245         by calling mono_assembly_open_from_bundle(). If no bundled
246         assembly exe file is found, call mono_image_open() as before to
247         look it up in the file system.
248
249         * mono-config.c: Add variable bundled_machinec_onfig.
250         (mono_config_string_for_assembly_file): New function.
251         (mono_config_for_assembly): Move code snippet that looks for a
252         bundled assembly .config file into the above new function. Call
253         it.
254         (mono_register_machine_config, mono_get_machine_config): New
255         functions to set and retrieve
256
257         * assembly.h: Declare mono_register_machine_config().
258
259         * mono-config.h: Declare mono_get_machine_config() and
260         mono_config_string_for_assembly_file().
261
262         * icall.c: No declaration of environ necessary on Win32. It is
263         declared (as a macro expanding to a function call) in stdlib.h.
264         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
265         New internal mono function. Returns the value of
266         mono_get_machine_config() as a Mono string.
267
268         * icall-def.h: Add get_bundled_machine_config().
269
270 2007-01-04  Raja R Harinath  <rharinath@novell.com>
271
272         Remove redundant field
273         * class-internals.h (_MonoGenericContext.container): Remove field.
274         * loader.c (mono_method_get_signature_full): Don't parse a
275         "container" for a signature parse when the signature is inflated
276         immediately.
277         (method_from_methodspec): Likewise, for a generic_inst.
278         * class.c, metadata.c, reflection.c: Update to changes.
279
280 2006-01-04  Raja R Harinath  <rharinath@novell.com>
281
282         * class-internals.h (_MonoGenericClass): Rename 'context' field to
283         'cached_context', and change semantics -- it starts off NULL, and
284         is initialized on demand.
285         * class.c (mono_generic_class_get_context): New accessor to
286         replace 'context' field accesses.
287         (mono_class_get_context): New helper.
288         (*): Update to changes.
289         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
290
291 2007-01-03  Miguel de Icaza  <miguel@novell.com>
292
293         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
294         before the memcpy.   Fixes Marshal2 regression.
295
296 2007-01-02  Jb Evain  <jbevain@gmail.com>
297
298         * blob.h: add a MONO_TYPE_ENUM definition
299         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
300         fix the encoding of arrays of enums in custom attributes.
301
302         Fixes #79666.
303
304 2007-01-01  Miguel de Icaza  <miguel@novell.com>
305
306         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
307         string is null terminated, but only cut the string short if it
308         overflows the buffer.   
309         
310         (mono_string_to_byvalstr): Also fix this routine.   The code here
311         was not properly terminating a string (it was only terminated
312         because of the previous catch-all memset). 
313
314         I left the memset, because I do not know if applications expect
315         the runtime to clear this region. 
316
317         Fixes #79944.
318
319         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
320         Clear the error before returning to unmanaged code to prevent the
321         runtime from being confused later on (fixes  80420).
322         (ves_icall_type_from_name): Always call mono_loader_clear_error
323         after parsing a type that could have failed.
324         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
325
326         * loader.c (mono_loader_clear_error): Fix indentation.
327
328 2006-12-28  Martin Baulig  <martin@ximian.com>
329
330         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
331
332 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
333
334         * reflection.c: patch from Rolf Bjarne Kvinge to fix
335         getting a token for an EnumBuilder.
336
337 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
338
339         * reflection.c: be more careful in case resource generation
340         fails to create the data array.
341
342 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
343
344         * sgen-gc.c: write barrier for clone and fix unregister handles.
345
346 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
347
348         * reflection.c: some fixes needed in the generics code for the moving GC.
349
350 2006-12-22  Robert Jordan  <robertj@gmx.net>
351
352         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
353         account. Fixes bug #80299.
354
355 2006-12-21  Raja R Harinath  <rharinath@novell.com>
356
357         Fix WaitHandle usage in delegates.
358         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
359         * object.c (mono_wait_handle_new): Use the property set method to
360         initialize the handle.
361         (mono_wait_handle_get_handle): New.
362         * threadpool.c (mono_async_invoke): Use it.
363         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
364         Likewise.
365         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
366
367 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
368
369         * marshal.c (emit_marshal): Call emit_marshal_variant and
370         emit_marshal_com_interface when applicable.
371         (emit_marshal_variant, emit_marshal_com_interface): Add
372         methods for this case and remove if's from emit_marshal_object.
373         
374 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
375
376         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
377
378 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
379
380         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
381         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
382         and GlobalFree on Windows. Remove FIXME.
383
384 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
385
386         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
387         implementation for managed objects.
388
389 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
390
391         * object.c: implemented code to be used for checking
392         that no reference field overlaps with non-references.
393
394 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
395
396         * threadpool.c: fix queue code to be compatible with the
397         moving GC.
398
399 2006-12-18  Miguel de Icaza  <miguel@novell.com>
400
401         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
402         in structures by throwing ArgumentNullException.
403
404         (emit_marshal_safehandle): Also when they are null parameters.
405
406         (emit_marshal_safehandle): Add support for ref
407         SafeHandles parameters
408
409 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
410
411         * profiler.c: updated to use the mono-dl API instead of
412         gmodule.
413
414 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
415
416         * profiler.c: updated to use the mono-dl dynamic loading
417         API instead of gmodule.
418
419 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
420
421         * profiler.c: use readlink, older versions of glib don't have
422         g_file_read_link ().
423
424 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
425
426         * profiler.c: try to detect the path to mono if libc fails to provide
427         a useful name (bug #80286).
428
429 2006-12-16  Raja R Harinath  <rharinath@novell.com>
430
431         Fix #80242
432         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
433         instance, use the generic type definition instead.
434         (ves_icall_Type_GetNestedTypes): Likewise.
435         * class.c (mono_class_create_generic): Always set the
436         nested_classes of a generic instance to NULL, even if the generic
437         type definition has nested types.
438
439 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
440
441         * marshal.c (mono_string_from_bstr): Revert previous Windows change
442         and fix on Linux.
443         
444 2006-12-15  Miguel de Icaza  <miguel@novell.com>
445
446         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
447         my arguments were in the wrong order.   I also fixed the Windows
448         version which seems to have had the same issue.
449
450         (mono_free_bstr): On Unix, this is g_free.
451         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
452         conversions (for the tests in corlib to pass).
453
454 2006-12-14  Miguel de Icaza  <miguel@novell.com>
455
456         * marshal.c (emit_ptr_to_object_conv): For now, ignore
457         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
458         exception if a ref SafeHandle in a struct has changed).
459         
460         (emit_struct_conv): Do not perform layout checks for classes
461         derived from SafeHandle, as those are specially handled. 
462
463         (emit_object_to_ptr_conv): Add support for
464         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
465
466         (emit_marshal_safehandle): Implement conversion of return values
467         of safehandles (MARSHAL_ACTION_CONV_RESULT).
468         
469         * threads.c: WaitHandle now is compiled with two different handles
470         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
471         for 2.0.
472         
473         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
474         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
475         these routines to cope with both kinds of fields.
476
477 2006-12-12  Miguel de Icaza  <miguel@novell.com>
478
479         * metadata.c (mono_type_to_unmanaged): Handle the case where
480         type->data.klass is a SafeHandle, and in that case, return the
481         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
482         MONO_MARSHAL_CONV_SAFEHANDLE. 
483
484 2006-12-11  Miguel de Icaza  <miguel@novell.com>
485
486         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
487         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
488         calling emit_marshal_object.
489
490         (emit_marshal_safehandle): Implement marshalling of
491         SafeHandle parameters (no ref support yet).
492
493         (MarshalAction): Document the defines as I implement
494         them for SafeHandle.
495
496         (emit_marshal_object): indentation police.
497
498         * class-internals.h: Define MonoSafeHandle.
499         Add safehandle_class to MonoDefaults type.
500
501         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
502         list of classes to check for fields. 
503
504         * domain.c (mono_init_internal): Add SafeHandle to the list of
505         mono_defaults loaded.
506
507 2006-12-15  Raja R Harinath  <rharinath@novell.com>
508
509         Fix #80253
510         * reflection.c (mono_reflection_bind_generic_parameters): If the
511         generic type definition is a type builder, ensure that it is fully
512         initialized before instantiating it.  Kill some dead code.
513
514 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
515
516         * object.c: clear the loader_error () before loading
517         more metadata stuff (bug #80258).
518
519 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
520
521         * icall.c, icall-defs.h: type modifiers icalls for
522         parameters and properties.
523
524 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
525
526         * object.c, icall.c: fixed warnings.
527
528 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
529
530         * marshal.c: fixed a couple of leaks and coding style in a few places.
531
532 2006-12-08  Dick Porter  <dick@ximian.com>
533
534         * process.c: Cope with NULL ProcessStartInfo arguments on windows
535         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
536         80173.
537
538 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
539
540         * process.c: ProcessStartInfo may have only filename set and
541         arguments can be NULL.
542
543 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
544
545         * icall.c: fix leak found by Robert Jordan.
546
547 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
548
549         * marshal.c, marshal.h: generate managed method to access an element
550         of a multi-dimensional array.
551
552 2006-11-30  Paolo Molaro (lupus@ximian.com)
553
554         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
555
556 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
557
558         * icall.c: back out GetFields () fix until the serialization code is
559         fixed to not depend on the incorrect behaviour.
560
561 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
562
563         * profiler.c: provide defaults if none are set.
564
565 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
566
567         * Makefile.am, attrdefs.h: new public header file with
568         constants for attributes for use by embedders.
569
570 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
571
572         * icall.c: GetFields () fix for bug #80064.
573
574 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
575
576         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
577         removed long unused icalls.
578
579 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
580   
581         * marshal.c: 
582                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
583                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
584                 can be generated without a delegate class.
585                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
586         
587         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
588
589 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
590
591         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
592         #80069.
593
594 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
595
596         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
597         icall-def.h: added icalls needed by System.GC.
598
599 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
600
601         * loader.c: ensure the class in catch clauses is handled
602         correctly for generics methods (fixes bug#79980).
603
604 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
605
606         * monitor.h, monitor.c: added mono_locks_dump () function
607         to help debug deadlocks involving managed locks.
608
609 2006-11-13  Dick Porter  <dick@ximian.com>
610
611         * file-io.c (get_file_attributes): If the file is a symlink try
612         and get the stat data for the target, but also add the
613         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
614         the specs for the windows symlink support, but will probably have
615         to be reworked when I have test data from a vista machine.  Fixes
616         bug 79887.
617
618 2006-11-13  Dick Porter  <dick@ximian.com>
619
620         * gc.c (mono_domain_finalize): 
621         * marshal.c (mono_delegate_begin_invoke): 
622         * threadpool.c (socket_io_init, mono_thread_pool_init)
623         (mono_thread_pool_finish): 
624         * monitor.c (mono_monitor_try_enter_internal): 
625         * threads.c (mono_thread_resume, mono_thread_init)
626         (mono_thread_suspend_all_other_threads)
627         (mono_thread_execute_interruption): 
628         * appdomain.c (mono_domain_unload): Check for NULL error returns
629         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
630         75733.
631
632 2006-11-11  Miguel de Icaza  <miguel@novell.com>
633
634         * process.c
635         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
636         Only close the handle if the value of the handle is not
637         INVALID_HANDLE_VALUE.  This just makes the process a bit more
638         robust.
639
640         Improvement for #75733, so that we do not run into this problem. 
641
642         
643         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
644         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
645         internal variables.  Fixes #79462 
646         
647
648 2006-11-09  Dick Porter  <dick@ximian.com>
649
650         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
651         Use poll() not select().  Fixes bug 79397.
652
653 2006-11-09  Raja R Harinath  <rharinath@novell.com>
654
655         Fix #79872
656         * assembly.c (mono_assembly_load_from_full): Check that the given
657         image has an assembly manifest.
658
659 2006-11-09  Ankit Jain  <jankit@novell.com>
660
661         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
662         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
663         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
664
665 2006-11-07  Dick Porter  <dick@ximian.com>
666
667         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
668         Put the old resolver behaviour back for pre-2.0 profiles.
669
670 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
671
672         * threadpool.c: precise GC and locking fixes.
673
674 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
675
676         * class.c: don't load types that have an explicit unaligned
677         managed reference. Provide better info in the TypeLoad exception.
678         Part of the fix for bug #79744.
679         * object.c: use the correct check for class type load issues.
680
681 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
682
683         * class.c: enforce alignment of fields with managed references
684         even when Pack=1 is forced by the user (bug #77788).
685
686 2006-11-03  Dick Porter  <dick@ximian.com>
687
688         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
689         If the address reverse lookup fails, return it as the hostname
690         anyway.  Fixes bug 79721.
691
692 2006-11-03  Dick Porter  <dick@ximian.com>
693
694         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
695         Fix build on Windows.
696
697 2006-11-02  Dick Porter  <dick@ximian.com>
698
699         * icall-def.h: 
700         * object-internals.h: 
701         * exception.c (mono_get_exception_thread_interrupted): 
702         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
703         Fixes bug 74525.
704
705         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
706         Check for pending Thread.Interrupt.
707
708 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
709         * loader.c: Fixed bug 79684.
710
711 2006-10-27  Dick Porter  <dick@ximian.com>
712
713         * file-io.c (get_file_attributes): Force symlinks to directories
714         to be returned as a regular file.  Fixes bug 79733.
715 2006-10-26  Dick Porter  <dick@ximian.com>
716
717         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
718         CreateFile to open a directory then we need to set the
719         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
720
721 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
722
723         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
724         friends.
725
726 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
727
728         * sgengc.c: small cleanup of timer code.
729
730 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
731
732         * sgen-gc.c: fix some warnings and start adding support for
733         complete object removal on domain unload.
734
735 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
736
737         * assembly.c: build_assembly_name should not consider a version
738         number without build or revision number invalid. Fixes bug #79715.
739
740 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
741
742         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
743         call kernel32 function OutputDebugString directly.
744         
745         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
746         
747 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
748
749         * reflection.c: small cleanup, using a function to insert a MonoString
750         in the string heap.
751
752 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
753
754         * reflection.c: moving GC fixes.
755
756 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
757
758         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
759         all the objects with finalizers belonging to an unloading appdomain.
760
761 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
762
763         * sgen-gc.c: added ability to allocate even when the nursery is fully
764         pinned and fixed a couple of bugs.
765
766 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
767
768         * threads.h: Revert the last change for now.
769
770         * threads.h (mono_thread_get_pending_exception): Rename this to
771         mono_thread_get_undeniable_exception ().
772
773 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
774
775         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
776         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
777         when fname does not refer to valid assembly. This result in a more
778         meaningful error message.
779         * exception.c: added mono_get_exception_bad_image_format2 which 
780         constructs a BadImageFormatException using the ctor taking a custom
781         message and the file name. Passing in a NULL msg results in a default
782         message.
783         * exception.h: define mono_get_exception_bad_image_format2 function.
784         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
785         when file name pointed to an invalid IL image. Use 
786         mono_get_exception_file_not_found2 to construct FileNotFoundException,
787         as this results in a more meaningful error message.
788
789 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
790
791         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
792         #79465.
793
794 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
795
796         * metadata.c (mono_type_size): Change the align parameter to guint32 for
797         consistency with the other _size functions.
798         (mono_type_stack_size): Ditto.
799
800         * class.c object.c icall.c: Fix warnings caused by the above change.
801
802         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
803
804         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
805
806         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
807
808 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
809
810         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
811         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
812         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
813         threadpool.h, threads-types.h: mark more internal functions.
814
815 2006-10-11  Dick Porter  <dick@ximian.com>
816
817         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
818         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
819         reproduce the bug even before applying the fix.)
820
821 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
822
823         * reflection.c: allow retrieving attributes for arguments in generic
824         methods (bug #79241).
825
826 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
827
828         * debug-mono-symfile.c: properly check fopen () result (found by
829         coverity).
830
831 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
832
833         * reflection.c: make error message clearer and fixed two
834         issuelets found by Coverity.
835
836 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
837
838         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
839
840 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
841
842         * object-internals.h, gc-internal.h, profiler-private.h:
843         mark internal functions.
844
845 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
846
847         * reflection.c: put data in the text section.
848         * icall.c: recognize more types in type_from_typename ().
849         * process.c, marshal.c: added some GC FIXMEs.
850
851 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
852
853         * loader.c: check for NULL before initializing.
854
855 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
856
857         * gc.c (finalizer_thread): Use a non-alertable wait here.
858
859         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
860         until the correct solution is found.
861
862 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
863
864         * reflection.c (mono_module_get_object): Avoid an assert when operating on
865         modules with no metadata. Fixes #79596.
866
867         * image.c (load_metadata_ptrs): Put back the error message when
868         the #- heap is encountered since the support is not complete yet.
869
870 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
871
872         * gc.c: do not allow the user to SuppressFinalize () a
873         delegate because it would leak the trampoline if present.
874
875 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
876
877         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
878         PropertyPtr table.
879
880 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
881
882         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
883
884         * metadata.c (mono_metadata_get_param_attrs): Ditto.
885
886         * row-indexes.h: Add definitions for *Ptr tables.
887
888         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
889
890         * metadata.c (mono_metadata_translate_token_index): New helper function to
891         translate table indexes used in uncompressed metadata.
892         (mono_metadata_decode_table_row): Ditto.
893         (mono_metadata_decode_table_row_col): Ditto.
894
895         * metadata.c: Add table schema for *Ptr tables.
896
897         * class.c loader.c: Use the new helper function to access the affected metadata
898         tables.
899         
900         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
901         #38532.
902         
903 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
904
905         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
906         sequences which can be unbounded in size. Fixes #79583.
907
908 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
909
910         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
911         static initialization.
912
913         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
914
915         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
916
917         * domain.c (mono_domain_free): Free up type_init_exception_hash.
918
919         * object.c (mono_runtime_class_init): Implement correct semantics when a static
920         ctor fails, i.e. throw the same exception on subsequent accesses.
921         
922 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
923
924         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
925         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
926         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
927         Handle marshalling of interfaces and VARIANTs contained in structs.
928         
929         Code is contributed under MIT/X11 license.
930         
931 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
932
933         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
934         
935         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
936         mempool.
937
938 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
939
940         * console-io.c: ignore previous SIGINT handler.
941
942 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
943
944         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
945         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
946         #79460, #79461, #79485.
947
948         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
949
950         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
951         #79217.
952
953 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
954
955         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
956         could be generated from it.
957
958 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
959
960         * rand.c: fix read loop to correctly handle EINTR.
961
962 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
963
964         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
965         internal calls are defined to keep methods closer to the declaring
966         type and allow a significant reduction in runtime relocations and
967         memory usage.
968
969 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
970
971         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
972         exception message to have FileNotFoundException use the default
973         assembly load error message. Fixes bug #79426.
974         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
975
976 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
977
978         * threadpool.c: (start_thread_or_queue) use the root domain when
979         creating the thread instead of the async object one.
980
981 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
982
983         * class.c, object.c, class-internals.h, reflection.c:
984         for arrays, store element_size inside MonoClass (speedup
985         for array object creation).
986
987 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
988
989         * icall.c: fixed CodeBase to use the file name and not the module
990         name (bug #79365).
991
992 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
993
994         * mono-debug.c, mono-debug.h: export find_method as
995         mono_debug_find_method ().
996
997 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
998
999         * debug-helpers.c, class-internals.h: added a few functions useful
1000         when debugging under gdb.
1001
1002 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1003
1004         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1005         characters that need special handling.
1006
1007 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1008
1009         * mono-config.c: make the os/cpu specification more flexible,
1010         allowing lists and negation.
1011
1012 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1013
1014         * marshal.c: COM Interop fixes. Handle case where method->klass.
1015         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1016         calling convention on non-windows platforms. This is for
1017         compatibility with XPCOM and MainWin COM.
1018         
1019         Code is contributed under MIT/X11 license.
1020         
1021
1022 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1023
1024         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1025         correctly. Fixes #79217.
1026
1027         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1028
1029 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1030
1031         * mono-config.c: allow both an os and cpu attribute for dllmap
1032         and dllentry elemnets to enable a single config file to be used
1033         for multiple architectures.
1034
1035 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1036
1037         * loader.c: MonoLoaderError was cleared too soon on load failure.
1038         Fixes bug #79424.
1039
1040 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1041
1042         * icall.c: use the defining class vtable when accessing a
1043         static field, not a pobblibly derived class.
1044
1045 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1046
1047         * icall.c string-icalls.c: Remove references to unicode.h.
1048
1049         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1050
1051         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1052
1053         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1054         indicating the image where custom marshaller types should be looked up.
1055         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1056         custom marshallers, instead of corlib. Fixes #79425.
1057
1058 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1059
1060         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1061
1062 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1063
1064         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1065         Implement Environment.ProcessorCount.
1066         
1067         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1068         Implement Environment.ProcessorCount.
1069         
1070         * icall.c: 
1071         Add Environment.ProcessorCount icall.
1072         
1073         Patch by Jason McFall.
1074
1075 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1076
1077         * assembly.c: don't append .exe/.dll when the filename already contains
1078         one of those extensions.
1079
1080 2006-09-12  Martin Baulig  <martin@ximian.com>
1081
1082         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1083         to array interfaces.
1084
1085 2006-09-11  Martin Baulig  <martin@ximian.com>
1086
1087         * reflection.c (mono_image_build_metadata): Create the
1088         MethodImpl's after emitting all types and methods, so we don't
1089         need another fixup pass for them.
1090
1091 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1092
1093         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1094         change.
1095
1096 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1097
1098         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1099         unload.
1100
1101 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1102
1103         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1104         args is not set. Fixes #78926.
1105
1106 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1107
1108         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1109
1110         * image.c (load_class_names): Move this to class.c, and rename it to 
1111         'mono_image_init_name_cache'.
1112         (load_modules): Fix a warning.
1113
1114         * class.c icall.c image.c: Initialize image->name_cache lazily.
1115
1116         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1117         on its name using information in the AOT file.
1118
1119         * class.c (mono_class_from_name): Use the new hook function.
1120
1121 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1122
1123         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1124         correctly.
1125
1126         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1127         Fixes #79289.
1128         
1129 2006-09-06  Martin Baulig  <martin@ximian.com>
1130
1131         * icall.c (mono_lookup_internal_call): Small fix.
1132
1133 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1134
1135         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1136         double g_free.
1137
1138 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1139
1140         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1141         when --debug is specified.
1142
1143 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1144
1145         * class.c (setup_generic_array_ifaces): Fix a warning.
1146
1147 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1148
1149         * Temporarily remove the patch to assemly.c that checks the
1150         assembly versions as it breaks our gacutil.
1151
1152 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1153
1154         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1155
1156         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1157         a net 1.0 runtime.
1158
1159         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1160         created using the default ctor. Fixes #79152.
1161         (mono_string_builder_to_utf16): Ditto.
1162
1163 2006-09-01  Martin Baulig  <martin@ximian.com>
1164
1165         Fix handling of the generic array interfaces.
1166
1167         * class-internals.h
1168         (MonoDefaults): Removed `generic_array_class' and added
1169         `generic_ilist' class.
1170
1171         * class.c
1172         (mono_bounded_array_class_get): Add the new generic array interfaces.
1173         (setup_generic_array_ifaces): New static method; create vtable
1174         entries for each method in the generic array interfaces.
1175
1176         * metadata.c
1177         (select_container): Allow "parent-less" generic methods.
1178
1179         * marshal.c
1180         (mono_marshal_get_generic_array_helper): New public method.
1181
1182         * icall.c
1183         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1184         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1185         moved the interncall into System.Array.
1186
1187 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1188
1189         A few more cases of avoiding work on types with ->byref set.
1190         Has the real fix for #79238
1191         * icall.c (is_generic_parameter): New helper.
1192         (ves_icall_Type_GetGenericParameterPosition): Use it.
1193         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1194         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1195         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1196         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1197         reference types.
1198         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1199         reference types.
1200         (ves_icall_Type_get_IsGenericInstance): Likewise.
1201         (ves_icall_Type_get_IsGenericType): Likewise.
1202
1203 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1204
1205         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1206         class if possible.
1207
1208         * mempool.h (mono_mempool_get_allocated): New helper function.
1209
1210         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1211         change.
1212
1213         * mempool.c: Fix warnings and the calculation of stats.
1214
1215         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1216
1217         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1218
1219         * loader.c (mono_get_method_from_token): Update method_count stat.
1220
1221         * class-internals.h (MonoStats): Add some stats.
1222
1223 2006-08-31 Robert Jordan  <robertj@gmx.net>
1224
1225         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1226         with managed variants.
1227         All code is contributed under the MIT/X11 license.
1228         
1229 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1230
1231         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1232         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1233
1234         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1235
1236         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1237         with cycles in classes.
1238
1239         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1240
1241         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1242         missing a [MarshalAs] directive. Fixes #79203.
1243
1244         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1245         klass->marshal_info. Fixes #79217.
1246
1247 2006-08-30  Martin Baulig  <martin@ximian.com>
1248
1249         Committing a patch from Joachim Ante <joe@otee.dk>:
1250         Add support for binary data symbol stores.
1251
1252         * debug-mono-symfile.c
1253         (mono_debug_open_mono_symbol_file): Renamed into
1254         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1255         arguments.
1256
1257         * mono-debug.c
1258         (mono_debug_open_image): Added `raw_contents' and `size' args.
1259         (mono_debug_init_2_memory): New public function.
1260
1261 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1262
1263         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1264
1265 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1266
1267         * appdomain.c: implement support for ShadowCopyFiles.
1268
1269 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1270
1271         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1272         when value is NULL (and should remove CID #51).
1273
1274 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1275
1276         * image.c: moved 2 functions to ../utils.
1277
1278 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1279
1280         * gc.c: cope with the target object of a GC handle being NULL
1281         (bug #78877).
1282
1283 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1284
1285         * class.c: recursively check parent's explicit implementations
1286         of interface methods (fixes bug #79125).
1287
1288 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1289
1290         * filewatcher.c: Avoid warnings when building, do not redefine
1291         constants that are defined.
1292
1293         Remove warnings.
1294
1295 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1296
1297         * image.c: don't fail when the link points to an absolute path.
1298
1299 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1300
1301         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1302         Fix CID #3.
1303
1304 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1305
1306         * image.c (full_path): A new method used to obtain the actual path
1307         of an assembly even in the presence of symbolic links.  
1308
1309         This is necessary for the case where we are running a binary that
1310         has been GACed, but we are using the "published" path name
1311         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1312         file in the GAC.
1313
1314         This was the source of the failure for the `xsp' command with the
1315         recent AppDomain changes, as far as the runtime was concerned,
1316         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1317         $prefix/mono/gac/blah/version/blah.exe.
1318
1319         (do_mono_image_open): use full path
1320
1321 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1322
1323         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1324
1325 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1326
1327         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1328         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1329
1330 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1331
1332         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1333         small structures. Fixes #78990.
1334
1335 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1336
1337         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1338
1339         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1340
1341 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1342
1343         * appdomain.c:
1344         * marshal.c: don't load all the assemblies from a domain into newly
1345         created ones. The new domains might have different rules and load
1346         assemblies from different locations. Fixes bug #76757.
1347
1348         Patch by Lluis. Conflicts resolved by Brian Crowell.
1349
1350 2006-08-16  Alp Toker  <alp@atoker.com>
1351
1352         * socket-io.c: First half of the fix for #79084.
1353         Set sa_size to the length of the content, not that of the struct.
1354         Don't add NULL suffix to the content, this should be done in
1355         managed code if needed.
1356
1357 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1358
1359         Fix part of #79012
1360         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1361         mono_metadata_parse_type returns NULL.
1362
1363 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1364
1365         * normalization-tables.h : new file for string normalization data.
1366         * locales.c, locales.h, icall.c :
1367           added load_normalization_resource() for string normalization,
1368           and icall as well.
1369         * Makefile.am : added normalization-tables.h to the sources.
1370
1371 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1372
1373         * marshal.c: Add more helper functions to reduce code duplication and use them
1374         everywhere.
1375
1376 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1377
1378         * marshal.c: Fix non-x86 stdcall warnings.
1379         
1380         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1381         them everywhere.
1382
1383 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1384
1385         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1386         type check on multi-dimensional arrays. Fixes #79000.
1387
1388 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1389
1390         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1391         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1392         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1393         * class-internals.h: add is_com_object to class structure.
1394         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1395         null checks to COM object marshalling. Fix .ctor call on RCW.
1396         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1397         
1398         All code is contributed under the MIT/X11 license.
1399
1400 2006-08-09  Dick Porter  <dick@ximian.com>
1401
1402         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1403         racing mono_monitor_allocator_lock() somewhere, so don't delete
1404         the critical section for now.  Found by running and exiting
1405         monodevelop.
1406
1407 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1408
1409         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1410         (ves_icall_System_ComObject_FindInterface): Ditto.
1411         (ves_icall_System_ComObject_CacheInterface): Ditto.
1412
1413         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1414         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1415
1416 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1417
1418         * threadpool.c: treat pipes from process asynchronous reads as sockets
1419         when reading from them, so we get select/poll or epoll to wait for
1420         data.
1421
1422 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1423
1424         * loader.c: Fix a typo (CID #233) in the null check.
1425
1426 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1427
1428         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1429         Hopefully fixes #78949.
1430         
1431         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1432         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1433         bytes. Fixes #78972.
1434
1435 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1436
1437         * filewatcher.c: we need to set errno here.
1438
1439 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1440
1441         * filewatcher.c: let Win32Exception get the error value.
1442
1443 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1444
1445         * filewatcher.c: translate errno into win32 errors for Win32Exception
1446         to know what happened.
1447
1448 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1449
1450         * threadpool.c: Fix more warnings.
1451
1452         * assembly.c (search_loaded): Fix warnings.
1453
1454         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1455         (mono_async_invoke): Ditto.
1456
1457 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1458
1459         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1460         entries for __ComObject type in addition to ComImport types.
1461         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1462         about hash table.
1463         
1464         All code is contributed under the MIT/X11 license.
1465
1466 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1467
1468         * image.c: avoid tentative loading of modulerefs that contain
1469         no metadata (P/Invoke library names).
1470
1471 2006-07-28  Dick Porter  <dick@ximian.com>
1472
1473         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1474         mono_loader_lock() somewhere, so don't delete the critical section
1475         for now.  Found by running and exiting monodevelop.
1476
1477 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1478
1479         * filewatcher.c: define the inotify syscalls when we're building on
1480         linux and have sys/syscall.h. The build system might not have support
1481         for inotify but the target system might have it.
1482
1483 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1484
1485         * domain.c: Documentation updates.
1486
1487         * loader.c (mono_free_method): Do not release the method
1488         information if we are being profiled, as profilers will use this
1489         information at shut down to present some data to the user.
1490
1491         This is needed so that the profiler does not crash, as the
1492         profiler tends to keep MonoMethods around, and they might become
1493         invalid if we free these.
1494
1495         (mono_get_method_constrained): Return the original CIL stream
1496         method as well, so verification can be performed against it.
1497
1498 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1499
1500         * filewatcher.[ch]: support for inotify file system watcher.
1501         * icall.c: add new internal calls for the inotify file system watcher.
1502
1503 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1504
1505         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1506         #78888.
1507
1508 2006-07-20  Dick Porter  <dick@ximian.com>
1509
1510         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1511         warning.
1512
1513 2006-07-20  Dick Porter  <dick@ximian.com>
1514
1515         * threads.c (start_wrapper): Do the thread cleanup while we still
1516         hold a reference to its object.  Fixes bug 78123.
1517
1518 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1519
1520         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1521         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1522           "managed-to-managed".
1523         * icall.c: Redirect string constructors that take sbyte* to
1524           ves_icall_System_String_ctor_RedirectToCreateString.
1525         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1526           to CreateString () methods with matching signature.
1527         * reflection.c: Use original security informations for
1528           MONO_WRAPPER_MANAGED_TO_MANAGED.
1529         * security-manager.c: Use original security informations for
1530           MONO_WRAPPER_MANAGED_TO_MANAGED.
1531         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1532           that is a placeholder and only its address should be used.
1533         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1534           that is a placeholder and only its address should be used.
1535
1536 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1537
1538         Begin implementing COM Interop.
1539         * appdomain.c: Increment corlib version.
1540         * class.c: Set ComImport classes' parent to __ComObject.
1541         * loader.c: Mark cominterop methods as such.
1542         * domain.c: Add __ComObject class to MonoDefaults structure.
1543         * image.c: Add 2 hashtables to the image for COM Interop related methods
1544         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1545         using the mempool allocator
1546         
1547         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1548         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1549         declaration for mono_metadata_type_dup_mp.
1550         
1551         * debug-helpers.c: Added strings for two additional wrapper types
1552         * object.c: Create proxy objects for ComImport classes
1553         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1554         and added __ComObject class to MonoDefaults structure.
1555         
1556         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1557         MonoComInteropProxy and MonoComObject.
1558         
1559         * marshal.c: Added support for COM Interop
1560         (signature_cominterop): Converts managed signature to corresponding
1561         unmanaged COM signature.
1562         (cominterop_get_function_pointer): gets unmanaged function pointer via
1563         COM object vtable
1564         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1565         (cominterop_get_method_interface): returns interface type that method is defined on
1566         (mono_mb_emit_cominterop_call): emits native call to function pointer
1567         gotten from vtable
1568         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1569         that matches signature of unmanaged function.
1570         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1571         (cominterop_get_invoke): forwards call from proxy to __ComObject
1572         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1573         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1574         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1575         
1576         * marshal.h: Added Marshal icall declarations.
1577         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1578         so we can access them in finalizer
1579         
1580 2006-07-14  Dick Porter  <dick@ximian.com>
1581
1582         * object.c (mono_type_initialization_cleanup): Fix a race
1583         condition by temporarily commenting out the critical section
1584         deletion.
1585
1586 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1587
1588         * reflection.c (create_custom_attr): Fix some warnings.
1589         (create_custom_attr_data): Ditto.
1590         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1591         types. Fixes #78855.
1592
1593 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1596
1597         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1598
1599 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1600
1601         * reflection.c (resolve_object): Add support for DynamicMethod.
1602
1603         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1604         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1605
1606 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1607
1608         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1609         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1610
1611 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1612
1613         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1614         Fixes #77888.
1615
1616 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1617
1618         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1619         slightly: remove a shadow local variable.
1620
1621 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1622
1623         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1624         definition that introduces the virtual function slot.
1625         Also fix Coverity #105.
1626
1627 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1628
1629         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1630         for dynamic assemblies. Fixes #78724.
1631
1632 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1633
1634         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1635         Fixes #78722.
1636
1637 2006-06-21  Martin Baulig  <martin@ximian.com>
1638
1639         * reflection.c
1640         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1641         fixes #76484.
1642
1643 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1646
1647 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1648
1649         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1650         nor TYPEREFs.
1651         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1652         Inflate result if necessary.
1653         (mono_class_get_full): Remove old version.  Rename from
1654         'mono_class_get' and add 'context' argument.  Pass it to
1655         ..._create_from_typespec.
1656         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1657         (mono_ldtoken): Revert change below.
1658
1659 2006-06-20  Martin Baulig  <martin@ximian.com>
1660
1661         * class.c (mono_ldtoken): Don't pass the generic context to
1662         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1663
1664 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1665
1666         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1667         and later freeing it. Fixes #78638.
1668
1669 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1670
1671         * icall.c (mono_class_get_throw): Revert over-zealous error
1672         throwing, the caller for mono_class_get_throw will cope with
1673         errors when classes are not properly initialized already.
1674
1675         The code still copes with loader exceptions though.
1676
1677         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1678         
1679 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1680
1681         Fixes the `make run1' version of RuntimeAbort (to be commited,
1682         source is in Bugzilla).
1683         
1684         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1685         FALSE on class loading failure instead of returning true.
1686
1687         * class.c (mono_class_create_from_typedef): It is possible for
1688         mono_metadata_interfaces_from_typedef_full to fail if a class is
1689         not found, cope with this.
1690         
1691
1692 2006-06-14  Dick Porter  <dick@ximian.com>
1693
1694         * socket-io.c: 
1695         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1696         4.1.1
1697
1698 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1699
1700         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1701
1702 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1703
1704         * icall.c: Another fix for building mono in Visual Studio.
1705
1706 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1707
1708         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1709         
1710 2006-06-09  Martin Baulig  <martin@ximian.com>
1711
1712         * debug-mono-symfile.c: Put this back and really fix it this
1713         time. Sorry for all the trouble.
1714
1715 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1716
1717         * icall.c (mono_class_get_throw): Fix a warning.
1718         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1719         ReflectionTypeLoadException if needed. Fixes #78606.
1720
1721         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1722         (mono_class_init): Ditto.
1723
1724         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1725         ref_only exceptions.
1726         (mono_loader_clear_error): Make this work even if there is no error.
1727
1728 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1729
1730         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1731         Marshal.GetComSlotForMethodInfo using internal call.
1732
1733 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1734
1735         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1736         a function for signalling it.
1737
1738         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1739         a referenced assembly is not found.
1740
1741         * loader.c (mono_loader_error_prepare_exception): Add support for 
1742         LOADER_ERROR_ASSEMBLY. Fix formatting.
1743
1744 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1745
1746         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1747         for VARIANT marshalling on windows and increment corlib version
1748         since Variant struct was added.
1749
1750 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1751
1752         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1753         stack trace line information:
1754
1755         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1756         (Martin) when looking up B which is between A and C, return A not C.
1757
1758         Bug is #78573.
1759
1760         Thanks to Alexander Olk for tracking this down.
1761
1762 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1763
1764         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1765         
1766         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1767         avoid clobbering its value.
1768         (mono_string_to_lpstr): Fix a warning on windows.
1769
1770 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1771
1772         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1773
1774         * reflection.c loader.c: Removed references to 'dummy' flag.
1775
1776         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1777
1778         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1779         it gets GC tracking.
1780
1781         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1782         GC tracking.
1783         
1784         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1785
1786         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1787
1788         * appdomain.c: Bump corlib version.
1789
1790 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1791
1792         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1793         CEE_STIND_REF when working with object references.
1794
1795 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1796
1797         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1798         Fixes #78539.
1799
1800 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1801
1802         * loader.c (method_from_memberref): Fix argument value for
1803         mono_loader_set_error_method_load (I was passing the MonoClass
1804         instead of the class name char *).
1805
1806 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1807
1808         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1809         CEE_STIND_REF when working with object references.
1810
1811 2006-05-30  Martin Baulig  <martin@ximian.com>
1812
1813         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1814         mono_method_full_name() change and replace the ':' with a '.'
1815         here.
1816
1817 2006-05-30  Martin Baulig  <martin@ximian.com>
1818
1819         * debug-mono-symfile.c
1820         (mono_debug_symfile_lookup_location): Fix the algorithm:
1821         when looking up B which is between A and C, return A not C.
1822
1823 2006-05-29  Martin Baulig  <martin@ximian.com>
1824
1825         * mono-debug.h
1826         (MonoDebugMethodInfo): Make the typedef public.
1827         (MonoDebugSourceLocation): New public struct.
1828
1829         * mono-debug.c
1830         (mono_debug_source_location_from_address): Removed.
1831         (mono_debug_source_location_from_il_offset): Removed.
1832         (mono_debug_il_offset_from_address): Removed.
1833         (mono_debug_address_from_il_offset): Removed.
1834         (mono_debug_lookup_method): New public function.
1835         (mono_debug_lookup_source_location): New public function; replaces
1836         the old mono_debug_source_location_from_*() functions; see the
1837         inline documentation.
1838         (mono_debug_free_source_location): New public function.
1839         (mono_debug_print_stack_frame): New public function; see the
1840         inline documentation.
1841
1842         * debug-mono-symfile.c
1843         (mono_debug_find_source_location): Renamed into
1844         mono_debug_symfile_lookup_location(); only take a
1845         `MonoDebugMethodInfo *' and an `offset' argument; added inline
1846         documentation.
1847         (mono_debug_find_method): Renamed into
1848         mono_debug_symfile_lookup_method().
1849
1850 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
1851
1852         * assembly.c (mono_assembly_open_full): Dont overwrite the status
1853         returned by mono_image_open_full ().
1854
1855         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1856         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1857         #78517.
1858
1859         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1860         #78518.
1861
1862 2006-05-27  Miguel de Icaza  <miguel@novell.com>
1863
1864         * class.c (mono_class_from_typeref): handle missing images
1865         earlier, deals with bug #78418.   Refactor code; 
1866
1867         Fix a warning introduced in my previous commit (some stale code
1868         from before I revisited my patch).
1869
1870         * class.c (mono_class_create_from_typedef): On failure, remove the
1871         class from the MonoImage->class_cache as the class is not
1872         initialized;   Fixes the leak pointed out by Paolo.
1873
1874 2006-05-25  Dick Porter  <dick@ximian.com>
1875
1876         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
1877         DeleteCriticalSections until I figure out which one may still be
1878         sometimes locked when mono_thread_cleanup is called.
1879
1880 2006-05-24  Dick Porter  <dick@ximian.com>
1881
1882         * threads.c (mono_thread_cleanup): Move the threading cleanup out
1883         of mono_thread_manage and back into its own function, so it can be
1884         called after the finalizer thread has finished.
1885
1886         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1887
1888 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
1889
1890         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1891         Fixes #78495.
1892
1893         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1894         with non-blittable elements.
1895         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1896
1897 2006-05-24  Martin Baulig  <martin@ximian.com>
1898
1899         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1900         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
1901
1902         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1903         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1904         `mono_debugger_event_handler' to NULL.
1905
1906 2006-05-24  Martin Baulig  <martin@ximian.com>
1907
1908         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1909
1910 2006-05-24  Martin Baulig  <martin@ximian.com>
1911
1912         * mono-debug-debugger.h
1913         (mono_debugger_create_notification_function): Added
1914         `MonoCodeManager *' argument.
1915
1916 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1917
1918         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1919
1920 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1921
1922         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1923         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1924         implementation.
1925
1926 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1927
1928         * icall.c: precise GC support: objects can't be stored in unmanaged
1929         memory anymore, even if they are kept alive by other references: since
1930         they can move the GC needs to be able to always find them.
1931
1932 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1933
1934         * object.c: precise GC support for static fields. Support
1935         for moving GCs: write barriers and pinned allocation for interned
1936         strings.
1937
1938 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1939
1940         * domain.c, domain-internals.h: precise GC support for the MonoDomain
1941         structure.
1942
1943 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1944
1945         * class.c, gc.c: sgen and precise GC updates.
1946
1947 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1948
1949         * marshal.h, marshal.c: added write barrier wrapper and precise type
1950         fixes.
1951
1952 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1953
1954         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1955         support.
1956
1957 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1958
1959         * reflection.c: precise and sgen GC updates.
1960
1961 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1962
1963         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1964
1965 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
1966
1967         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1968
1969 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
1970
1971         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1972         MONO_TYPE_OBJECT. Fixes #78462.
1973
1974 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
1975
1976         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
1977         and blittable types.
1978
1979 2006-05-17  Miguel de Icaza  <miguel@novell.com>
1980
1981         * class.c (mono_class_get_exception_for_failure): Implement parts
1982         of a TODO: if the loader error is set (instead of the class
1983         error), we return a Loader exception that can be properly thrown
1984         elsewhere.
1985
1986         This was exposed by some Winforms 2.0 code that I tried to run
1987         (Atsushi pointed me to it).
1988
1989 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
1990
1991         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1992         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1993         
1994         * marshal.c (emit_marshal_vtype): Add limited support for 
1995         UnmanagedType.LPStruct. Fixes #78427.
1996
1997         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
1998         Applied a patch from kangaroo to fix #77523.
1999
2000 2006-05-17  Martin Baulig  <martin@ximian.com>
2001
2002         * threads.c
2003         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2004         (debugger_thread_created): Removed.
2005         (debugger_thread_exited): Removed.
2006
2007 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2008
2009         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2010
2011         * object-internals.h (MonoReflectionResource): Sync with managed version.
2012
2013 2006-05-12  Wade Berrier <wberrier@novell.com>
2014
2015         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2016
2017 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2018
2019         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2020         functions try to allocate from the image mempool.
2021
2022 2006-05-12  Dick Porter  <dick@ximian.com>
2023
2024         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2025
2026 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2027
2028         * object.c: The FieldGetter and FieldSetter methods require the full
2029         name of the class, not only the name. Fixes bug #78277.
2030
2031 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2032
2033         * loader.c (method_from_memberref): Do not pass the NULL klass to
2034         mono_loader_set_error_() methods.  Pass the non-NULL value
2035         (class). 
2036
2037 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2038
2039         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2040         (mono_assembly_close): Null out assembly->image->references after freeing it.
2041
2042         * image.c (mono_image_close): Free image->references.
2043         
2044         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2045
2046 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2047
2048         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2049         before checking if it's NULL (g_assert).
2050
2051 2006-05-10  Martin Baulig  <martin@ximian.com>
2052
2053         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2054         I thought I already killed that two months ago, but now it somehow reappeared.
2055
2056 2006-05-10  Martin Baulig  <martin@ximian.com>
2057
2058         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2059
2060 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2061
2062         * reflection.c: Allocate memory for dynamically created methods in the image
2063         mempools.
2064
2065 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2066
2067         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2068         don't use the ad pointer before checking if it's NULL (g_assert).
2069
2070 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2071
2072         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2073         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2074
2075         * marshal.c: Allocate all signatures from mempools.
2076
2077         * marshal.c: Allocate some more signatures from mempools.
2078
2079 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2080
2081         * object.c (mono_load_remote_field): The code used to provide a
2082         temporary variable for returning results if the user did not
2083         provide a result pointer.  But our temporary variable was allocted
2084         on the satck.
2085
2086         Fix calling code to always pass a result area.   Coverity ID 103.
2087
2088 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2089
2090         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2091         value, not the old. Fixes #78312.
2092         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2093
2094         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2095         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2096         per-image cache.
2097
2098         * assembly.c (mono_assembly_close): Free image->references.
2099
2100         * assembly.c (mono_assembly_names_equal): Fix a warning.
2101         (mono_assemblies_cleanup): Cleanup more global data.
2102
2103         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2104
2105         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2106         ptr_cache and image->modules.
2107
2108         * image.c (mono_image_init): Allocate array_cache lazily.
2109         
2110 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2111
2112         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2113         behavior was changed recently and has bad side effects.
2114
2115 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2116
2117         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2118         
2119         * assembly.c (mono_assembly_close): Remove a debug printf.
2120
2121         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2122
2123         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2124         to also allow for temporary references between mono_image_open ()/close ().
2125
2126         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2127
2128 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2129
2130         * marshal.c: Fix support for dynamic methods.
2131
2132         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2133
2134         * marshal.c (mono_marshal_cleanup): New cleanup function.
2135
2136         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2137         image mempools.
2138
2139         * class.c (mono_class_init): Fix leaking class->nested_classes.
2140
2141         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2142
2143         * image.c (mono_image_init): Initialize the new cashes.
2144
2145         * image.c (mono_image_close): Destroy the new cashes.
2146
2147         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2148
2149         * mempool.c (mono_mempool_strdup): New helper function.
2150
2151         * class-internals.h: Add prototype for mono_loader_unlock ().
2152
2153         * domain.c (mono_jit_info_table_find): Fix a warning.
2154         (mono_debugger_check_runtime_version): Ditto.
2155
2156         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2157         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2158         functions to these modules.
2159
2160         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2161         metadata modules.
2162         
2163         * marshal.c (mono_free_bstr): Fix a warning.
2164
2165         * assembly.c (mono_assembly_open_full): Fix another small leak.
2166
2167         * object.c: Fix some unload leaks in the remoting code.
2168
2169         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2170         function.
2171
2172         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2173
2174         * reflection.c: Fix some unload leaks in dynamic assemblies.
2175
2176 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2177
2178         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2179         * marshal.h: Add BSTR support on Win32
2180         * icall.c: Add BSTR icalls
2181         * metadata.h: Add BSTR enums
2182
2183 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2184
2185         Work to catch the crash from #76795 and turn it into an
2186         exception.   As I stubbed out pieces of the VisualBasic support,
2187         I found a number of places where the code was failing and I added
2188         checks to those places. 
2189         
2190         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2191         function return a status code.  If we fail to parse the signature
2192         from mono_metadata_parse_generic_inst, return FALSE.
2193
2194         * loader.c (mono_get_method_from_token): If we fail to load the
2195         method (mono_class_get) return NULL.   
2196
2197         * (method_from_memberref): Return NULL if we are unable to parse
2198         the method signature
2199
2200         (mono_loader_error_prepare_exception): Since we now use the
2201         loader_error flag internally to stop processing, and obtaining
2202         exceptions that might be thrown will walk this code path the
2203         proper way of going from a MonoLoaderError into a
2204         MonoException was convoluted.   This new routine encapsulates the
2205         process of turning the error into an exception and *clearing* the
2206         error afterwards.
2207         
2208 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2209
2210         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2211         with missing assemblies), and to cope with:
2212
2213                 * Missing fieldref from a non-existing assembly.
2214                 * Missing methodref from a non-existing assembly.
2215
2216         The first batch of work to address *some* of the issues from 76661.
2217         
2218         * object.c (mono_class_create_runtime_vtable): If we fail to
2219         initialize the class raise the exception here. 
2220
2221         * metadata.c (mono_class_get_overrides_full): If any methods fail
2222         to load return the failure to the caller.
2223
2224         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2225         flagging assemblies that failed to load.   
2226
2227         Do not crash if we are unable to load the assembly.
2228
2229         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2230         assemblies. 
2231
2232         * loader.c (mono_loader_set_error_type_load): Change the
2233         convention to always pass unallocated strings, so we make our own
2234         copies (I know our own code had duplicated strings before, but
2235         this keeps the normal conventions).
2236         (method_from_memberref): Call mono_loader_set_error_method_load
2237         for all possible failures of loading the class. 
2238         Remove assert, turn into a loader error.
2239
2240         (mono_loader_error_to_exception): Move this routine from mini
2241         (mini_loader_error_to_exception) there was no need to have that in
2242         mini. 
2243
2244         * class.c (mono_class_from_typeref): If we were not able to load
2245         the assembly with mono_assembly_load_reference, call the
2246         mono_loader_set_error_type_load to register the problem.
2247
2248         (mono_class_setup_fields): If we fail to load the type from
2249         mono_metadata_parse_type_full, call mono_class_set_failure and
2250         break from the loop.
2251
2252         If class->exception_type is set, we do not layout the fields as
2253         that might crash the runtime, and instead return (from breaking
2254         from the previous loop).
2255
2256         (mono_class_setup_vtable): This now returns a boolean indicating
2257         whether the table was properly setup.   The decision is driven by
2258         mono_class_get_overrides_full which might run into non-existing
2259         methods. 
2260         
2261         (mono_class_init): Returns TRUE on success or FALSE if there was a
2262         problem in loading the type (incorrect assemblies, missing
2263         assemblies, methods, etc).
2264
2265         When we call mono_class_setup_fields we also check for a potential
2266         error inside this call (either a class exception or a general
2267         loader exception).
2268
2269         (mono_class_create_from_typedef): If the parent fails to load
2270         (calling mono_class_get_full) return NULL.
2271         
2272         ** Important **
2273
2274         calls to mono_metadata_parse_type_full should be checked
2275         everywhere and set the mono_class_set_failure
2276         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2277
2278         The current patch checks the places where my manually constructed
2279         tests show the errors are showing up, but we should do it
2280         everywhere. 
2281
2282         ** Important2 **
2283
2284         mono_class_init return values should be tested everywhere, like
2285         the previous case this is something that we should audit
2286         everywhere and not only on the cases exposed by the tests I
2287         created. 
2288
2289 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2290
2291         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2292         boolean parameter and instead pass the information on `options'
2293         parameter (FileOptions).
2294
2295         * icall.c: Register the new signature for MonoIO.Open.
2296
2297         * debug-helpers.c (dis_one): Trying to understand how coverity
2298         works.  Fix Run 5, item 78.
2299
2300 2006-04-26  Dick Porter  <dick@ximian.com>
2301
2302         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2303         dereference.
2304
2305 2006-04-25  Martin Baulig  <martin@ximian.com>
2306
2307         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2308
2309         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2310         debugger_thread_created().
2311         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2312         special way.
2313         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2314         (mono_debugger_finalize_threads): New function; undo the effects
2315         of mono_debugger_init_threads().
2316         (mono_debugger_create_all_threads): Removed.
2317
2318 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2319
2320         * image.c (mono_image_close): Tidy up trace messages.
2321
2322         * assembly.c (mono_assembly_close): Ditto.
2323
2324         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2325         no longer references an already freed assembly. Fixes #78168.
2326
2327 2006-04-21  Dick Porter  <dick@ximian.com>
2328
2329         * threads.c (mono_thread_detach): Fix reference counting when
2330         detaching threads.
2331
2332 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2333
2334         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2335         #78155.
2336
2337 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2338
2339         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2340         (mono_type_to_stind): Ditto.
2341
2342         * marshal.c: Use the new helper functions to simplify code.
2343
2344         * image.c (mono_image_close): Add some code for help debug assembly unloading
2345         problems.
2346
2347         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2348         image mempool.
2349
2350         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2351         assembly was already loaded in another appdomain. Fixes #78083.
2352
2353 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2354
2355         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2356         referenced assemblies.
2357         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2358
2359         * domain.c (mono_domain_free): Add a trace message.
2360
2361         * appdomain.c (add_assemblies_to_domain): Ditto.        
2362
2363         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2364         field.  
2365
2366 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2367
2368         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2369
2370 2006-04-12  Martin Baulig  <martin@ximian.com>
2371
2372         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2373         `USE_INCLUDED_LIBGC'.   
2374
2375 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2376
2377         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2378         the patch contains ../ and a small directory name later. Hopefully fixes
2379         #78035.
2380
2381 2006-04-10  Martin Baulig  <martin@ximian.com>
2382
2383         Clean up the debugger's thread-handling code.
2384
2385         The debugger's thread-handling code has been moved from
2386         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2387         over the `threads' hash, keep track of exiting threads and also
2388         use proper locking.
2389
2390         We can now debug XSP and XSP based applications with the debugger.
2391
2392         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2393
2394         * threads.h
2395         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2396         (mono_install_thread_callbacks): Likewise.      
2397
2398         * threads.c (mono_thread_callbacks): Removed.
2399         (debugger_thread_created, debugger_thread_exited): New static functions.
2400         (start_wrapper): Call debugger_thread_created().
2401         (thread_cleanup): Call debugger_thread_exited().
2402         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2403         (mono_debugger_init_threads): New public function.
2404         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2405         iterate directly over the `threads' hash and also use proper locking.
2406
2407         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2408
2409         * mono-debug-debugger.h
2410         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2411
2412 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2413
2414         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2415         argument type=array. Fixes #78057.
2416
2417 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2418
2419         * culture-info-table.h : regenerated. Fixed bug #69652.
2420
2421 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2422
2423         * loader.c metadata.c: Reapply a variant r59116.
2424         
2425         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2426
2427         * class.c (mono_class_setup_interface_offsets): New internal function.
2428
2429         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2430         interfaces too. Fixes #77398.
2431
2432         * reflection.c (encode_cattr_value): Add support for 
2433         parameter type=object, argument type=array.
2434         (load_cattr_value): Ditto. Fixes #77916.
2435
2436         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2437         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2438
2439         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2440         a byval char array and CharSet is Ansi.
2441
2442         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2443
2444 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2445
2446         * metadata.c: Add some locking comments.
2447         
2448         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2449         mempool.
2450         (mono_metadata_free_method_signature): Don't free the signature itself.
2451
2452         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2453
2454         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2455         reference the same MonoImage.
2456         (mono_assembly_load_from_full): Add an assert.
2457
2458 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2459
2460         * image.c (mono_image_close): Don't put the image we are about to free into the
2461         loaded_images_guid_hash.
2462
2463         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2464         to reduce code duplication.
2465
2466         * marshal.c: Register the native functions called by this module as icalls, to
2467         somewhat centralize the creation of MonoMethodSignature's.
2468
2469         * loader.c (mono_method_signature): Add a cache for method signatures.
2470
2471         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2472         the parameter attributes of a method.
2473         (mono_metadata_parse_method_signature_full): Refactored the computation of
2474         parameter attributes into a separate function. Also avoid one allocation in
2475         most cases.
2476
2477         * assembly.c (mono_assembly_close): Ditto.
2478
2479         * image.c (mono_image_close): Log trace messages with INFO level.
2480
2481         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2482
2483         * image.c reflection.c: Correct reference counting of image modules.
2484         
2485         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2486         of this function from the image mempool.
2487         
2488         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2489         to allow more cached types to be used.
2490
2491         * mono-debug.c (mono_debug_add_method): Appled patch from
2492         David S. Miller  <davem@sunset.davemloft.net>: Access 
2493         minfo->lexical_blocks[] entry elements using read32().
2494
2495 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2496
2497         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2498         methods as it is allocated from the mempool.
2499
2500         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2501         image mempool.
2502
2503         * metadata-internals.h: Add comments describing the reference counting scheme
2504         used for MonoImage and MonoAssembly.
2505
2506         * image.c assembly.c reflection.c: Rework reference counting of images and 
2507         assemblies so they are freed when the runtime is shut down. Free some 
2508         additional memory structures when an image is unloaded.
2509         
2510 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2511
2512         * class.c loader.c reflection.c: Allocate more data structures in
2513         the image mempool.
2514
2515 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2516
2517         * icall.c
2518         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2519         build on pre glib 2.4 systems.
2520
2521 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2522
2523         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2524
2525         * icall.c: Fix some warnings.
2526
2527 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2528
2529         * culture-info-table.h : regenerated.
2530
2531 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2532
2533         * threads.c, object-internals.h, verify.c: changed the culture caching
2534         code to use a normal MonoArray for storage so the GC can keep track of
2535         them easily. Fixed bits of the cache logic, too and simplified the
2536         code.
2537
2538 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2539
2540         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2541         thread for non-Boehm GCs.
2542
2543 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2544
2545         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2546         needed to keep track of the data for static fields.
2547
2548 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2549
2550         Fix #75172
2551         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2552         for interface classes.  Use 'num_methods' instead.
2553         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2554         before using '->vtable_size' field.
2555
2556 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2557
2558         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2559         doesn't contain managed pointers, so use a normal hashtable.
2560
2561 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2562
2563         * reflection.c, class-internals.h, domain.c: fixed handling of types
2564         used as values for objects in custom attributes (bug #77915):
2565
2566 2006-03-24  Martin Baulig  <martin@ximian.com>
2567
2568         * class.c (mono_class_setup_fields): Added support for generic
2569         instances; fixes #77580.
2570
2571 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2572
2573         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2574
2575 2006-03-24  Dick Porter  <dick@ximian.com>
2576
2577         * file-io.c (get_file_attributes): More stat macro breakage.
2578         Fixes bug 77759.
2579
2580 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2581
2582         * profiler.c: added the file=filename option in the default profiler
2583         to output the profile data to filename.
2584
2585 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2586
2587         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2588         bug #77877.
2589
2590 2006-03-22  Martin Baulig  <martin@ximian.com>
2591
2592         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2593         allocated `MonoClassField *' in `fb->handle'.
2594
2595 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2596
2597         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2598         allocate interface ID to save memory and allow better ID reuse on
2599         appdomain unload. setup_generic_vtable () removal from Martin.
2600
2601 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2602
2603         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2604         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2605         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2606         write barriers for reference stores with managed objects accessed with
2607         C structures in the runtime and in embedding programs.
2608
2609 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2610
2611         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2612         'interface_id' and 'max_interface_id' fields of MonoClasses
2613         representing open generic types.
2614
2615 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2616
2617         * object.h, object.c, icall.c: added functions to deal with
2618         storing valuetypes that contain references in managed objects.
2619         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2620         fixes and comments around uses of mono_array_addr ().
2621
2622 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2623
2624         * object.h, icall.c, monitor.c: object.GetHashCode ()
2625         implementation that supports the moving garbage collector.
2626
2627 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2628
2629         * icall.c, threads-types.h, threads.c: implemented finalizer for
2630         LocalDataStoreSlot.
2631
2632 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2633
2634         * metadata.c (mono_type_size): Add a fixme.
2635         (mono_type_stack_size): Ditto.
2636
2637         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2638         'type_forwarders' field.
2639
2640         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2641         attribute from net 2.0.
2642
2643         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2644         from class.c.
2645
2646         * class.c (mono_class_setup_fields): Fix a warning.
2647         
2648         * class.c (mono_class_from_name): Add support for assemblyref entries
2649         in the EXPORTEDTYPE table.
2650
2651         * reflection.c: Add support for handling type forwarders under net 2.0.
2652
2653         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2654         
2655 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2656
2657         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2658         overwriting entries in ModuleBuild->types, also clean up the code
2659         a little. Fixes #77774.
2660
2661 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2662
2663         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2664         load friend assembly info when present.
2665
2666 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2667
2668         Fix crasher on gtest-158.cs.
2669         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2670         the return value if the MonoClass we want is yet in an
2671         inconsistent state.
2672         * class.c (mono_class_create_from_typedef): Add an comment
2673         explaining an order dependency between mono_class_setup_parent and
2674         mono_class_setup_mono_type.
2675
2676 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2677
2678         * class.c: documentation updates and events bug fix.
2679
2680 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2681
2682         * class.c: some cleanup, locking fixes.
2683
2684 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2685
2686         * class.c: fix the generics code to setup nested
2687         type info to the instantiated type (bug #77770).
2688
2689 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2690
2691         * marshal.c: fixed a few type correctness issues.
2692
2693 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2694
2695         * loader.c: the Set/Get/Addrtess array methods should be public.
2696
2697 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2698
2699         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2700         
2701         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2702         info->wrapper.
2703
2704 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2707
2708         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2709
2710         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2711         (mono_mempool_alloc0): Ditto.
2712
2713 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2714
2715         * socket-io.c:
2716         (create_object_from_sockaddr): it was allocating 4 extra bytes
2717         for the AF_UNIX data. Fixes bug #77747.
2718
2719 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2720
2721         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2722
2723 2006-03-09  Dick Porter  <dick@ximian.com>
2724
2725         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2726         Fixes bug 76966 again.
2727
2728 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2729
2730         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2731         names from r57532
2732         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2733
2734 2006-03-07  Martin Baulig  <martin@ximian.com>
2735
2736         * object.c
2737         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2738
2739 2006-03-07  Martin Baulig  <martin@ximian.com>
2740
2741         * class.c
2742         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2743         regression introduced in r56970; see gtest-252.cs.
2744
2745         * loader.c (mono_get_method_constrained): Correctly handle generic
2746         methods; see gtest-253.cs.
2747
2748 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2749
2750         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2751
2752 2006-03-04  Martin Baulig  <martin@ximian.com>
2753
2754         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2755         compute the parent type at runtime, just like we're already doing
2756         it for interfaces.
2757
2758         * reflection.c
2759         (mono_reflection_bind_generic_parameters): Don't compute the
2760         parent type anymore.
2761
2762         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2763
2764 2006-03-04  Martin Baulig  <martin@ximian.com>
2765
2766         * mono-debug-debugger.h
2767         (mono_debugger_create_notification_function): Allocate memory at
2768         runtime and return a pointer to it.
2769
2770 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2771
2772         * assembly.c: Fix windows build.
2773         
2774         * assembly.c: Fix build.
2775
2776         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2777
2778         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2779         
2780 2006-03-03  Dick Porter  <dick@ximian.com>
2781
2782         * process.c
2783         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2784         Check parameters before dereferencing them.  Fixes Aaron's part of
2785         bug 77393.
2786
2787 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2788
2789         Fix performance regression.
2790         * loader.c (find_method_in_class): Add 'from_class' argument.
2791         Rename 'klass' argument to 'in_class'.  The signature is compared
2792         against the method in 'in_class', and the corresponding method is
2793         returned from 'from_class'.
2794         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2795         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2796         type definition and generic instantiation in parallel.
2797         (mono_get_method_constrained): Update to changes.
2798
2799 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2800
2801         * threads.c: make sure the domain is correct, too when doing
2802         mono_thread_attach ().
2803
2804 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2807         windows. Fixes #77683.
2808
2809 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2810
2811         * object.h, *: introduced specific way to set elements of an array
2812         of references to be used as write barrier. Still need to audit the
2813         uses of mono_array_addr.
2814
2815 2006-03-01  Miguel de Icaza  <miguel@novell.com>
2816
2817         * object-internals.h: New field to cache the assmebly name, patch
2818         from Tambet Ingo (tambet@ximian.com)
2819
2820 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2821
2822         * decimal.h, class-internals.h, metadata-internals.h,
2823         file-io.h: mark a few function declarations as internal, to
2824         reduce the number of PLT entries.
2825
2826 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2827
2828         * file-io.c: fix typo in warning message.
2829
2830 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2831
2832         * loader.c: on unix, lookup the "*A" version of a function
2833         if charset is auto as a second option before failing.
2834
2835 2006-02-28  Raja R Harinath  <rharinath@novell.com>
2836
2837         * class.h (mono_class_inflate_generic_method): Revert to two
2838         argument version.
2839         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2840         (mono_class_inflate_generic_method_full): Add.
2841         * class.c (mono_class_inflate_generic_method_full): Rename from
2842         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
2843         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
2844         * loader.c, reflection.c: Update to changes.
2845
2846 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2847
2848         * icall.c: const fixes and small improvements.
2849
2850 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2851
2852         * threadpool.c: for asynchronous connect(), enable the same workaround
2853         for BSD 6 as for the Mac. Fixes bug #77637.
2854
2855 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
2856
2857         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2858         formatted classes. Fixes #77524.
2859
2860 2006-02-24  Raja R Harinath  <rharinath@novell.com>
2861
2862         * class.c (inflate_generic_type): Add a couple more
2863         micro-optimizations.
2864         (inflate_generic_context): Don't use the 'gmethod' from
2865         'inflate_with'.
2866         (mono_class_inflate_generic_method): If the method has generic
2867         parameters, but the passed-in context doesn't have a 'gmethod',
2868         create one.  Use the possibly simplified generic instantiation
2869         from the declaring class instead of the one passed in.
2870
2871 2006-02-24  Raja R Harinath  <harinath@gmail.com>
2872
2873         Make generic method signature and method header handling lazy.
2874         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2875         (inflate_generic_header): Likewise.
2876         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
2877         parameter to avoid inflating types.
2878         (mono_get_inflated_method): Empty out.
2879         * class.h (mono_class_inflate_generic_method): Update to changes.
2880         * loader.c (mono_get_method_from_token): Don't parse signature for
2881         generic methods, nor methods of generic classes.
2882         (mono_method_signature): Rename from 'mono_method_signature'.
2883         Inflate signature on demand.
2884         (mono_method_get_header): Inflate method header on demand.
2885         * reflection.c: Update to changes.
2886
2887 2006-02-23  Raja R Harinath  <rharinath@novell.com>
2888
2889         * metadata.c (mono_metadata_inflate_generic_inst): If the
2890         instantiation is closed, don't bother expanding it in the new
2891         context.
2892         * class.c (inflate_generic_class): If the generic instantiation
2893         doesn't change after inflation, return the argument itself.
2894         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2895         Add bounds checks.
2896         (inflate_generic_context): If neither the generic class nor the
2897         generic method instantiations change, return the original context.
2898         * reflection.c (mono_method_get_object): Do
2899         'mono_get_inflated_method' before accessing the ->klass field.
2900         (inflate_mono_method): Don't create a MonoGenericMethod unless
2901         necessary.
2902         (inflate_method): Don't pass a constructed type as the declaring
2903         type of a methodbuilder.
2904
2905 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2906
2907         * object.c: fix memory overwrite.
2908
2909 2006-02-22  Dick Porter  <dick@ximian.com>
2910
2911         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2912         it doesn't work any more.
2913         (mono_threads_request_thread_dump): Fix unused variable warnings.
2914
2915 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2916
2917         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2918         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2919         the public header file.
2920
2921 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
2922
2923         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2924
2925 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2926
2927         * class-internals.h, object.c: reduce the size of MonoVTable
2928         and store the interface_offsets array at negative offsets.
2929
2930 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2931
2932         * metadata.c: tweak table descriptors data structures to reduce
2933         size and runtime relocations.
2934
2935 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2936
2937         * marshal.c: fix some types and opcodes to be type-safe
2938         in marshaling wrappers.
2939
2940 2006-02-21  Ankit Jain  <jankit@novell.com>
2941
2942         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2943
2944 2006-02-21  Raja R Harinath  <rharinath@novell.com>
2945
2946         * metadata.c (get_constraints): Relax debugging checks for monodis.
2947
2948 2006-02-21  Ankit Jain  <jankit@novell.com>
2949
2950         * metadata.c (mono_metadata_load_generic_params): Move the code
2951         checking for ambiguous generic params from here to mono/dis/get.c
2952         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2953
2954 2006-02-21  Raja R Harinath  <harinath@gmail.com>
2955
2956         Fix assertion triggered when compiling nemerle.
2957         * class.c (mono_get_shared_generic_inst): Rename from
2958         get_shared_inst and make non-static.
2959         * loader.c (mono_get_shared_generic_method): New.  Used to create
2960         the MonoGenericContext-equivalent of a MonoGenericContainer.
2961         (mono_get_method_from_token): Initialize the 'context' field of
2962         the created MonoGenericContainer.
2963         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2964         * metadata.c (get_constraints): Add sanity check.
2965         * class-internals.h: Add new internal methods.
2966
2967         * reflection.c (verify_safe_for_managed_space): New sanity check.
2968         Currently checks that owner-less generic parameters aren't allowed
2969         in managed space.
2970         (mono_type_get_object): Use it.
2971         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2972         that are now in mono_type_get_object.
2973         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2974
2975 2006-02-19  Raja R Harinath  <harinath@gmail.com>
2976
2977         * metadata.c (mono_type_create_from_typespec): Rename from
2978         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
2979         argument and caching of types in the generic container.
2980         (unwrap_arrays, find_generic_param): Remove.
2981         * metadata-internals.h: Update.
2982         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2983
2984 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
2985
2986         * class.c (mono_class_get_exception_for_failure): Fix a warning.
2987
2988         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2989         return values. Fixes #77581.
2990
2991         * class.c (mono_fnptr_class_get): Switch name and name_space.
2992
2993         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2994         classes and add support for [In, Out] attributes.
2995         (mono_marshal_free_asany): Ditto. Fixes #77524.
2996
2997 2006-02-18  Raja R Harinath  <harinath@gmail.com>
2998
2999         * class.c (mono_class_from_generic_parameter): Make more robust to
3000         incomplete MonoGenericContainers from monodis.
3001
3002 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3003
3004         * class-internals.h: added some more exception types.
3005         * class.c, metadata.c: added a few checks to handle missing
3006         types.
3007
3008 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3009
3010         Use owner-less generic-params some more.
3011         * class.c (my_mono_class_from_generic_parameter): Remove.
3012         (mono_class_from_generic_parameter): Handle null image,
3013         param->name and param->owner.
3014         (mono_class_from_mono_type): Update.
3015         (mono_class_create_from_typespec): Remove 'container' parameter.
3016         If that parameter is non-null, the result is always inflated by
3017         'mono_class_get_full' anyway.
3018         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3019         parameter.
3020         (mono_class_get_full): Update.
3021
3022         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3023         instance is not open, don't bother inflating.
3024         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3025         parse metadata for inflated classes.
3026         (_mono_class_get): Change GenericContext* parameter to
3027         GenericContainer*.
3028         (mono_class_create_from_typespec): Likewise.  Simplify, and
3029         implement trivially.  All the cases are handled in
3030         mono_class_from_mono_type.  Don't inflate returned class.
3031         (mono_class_get_full): Delegate GENERICINST optimization to
3032         inflate_generic_type.
3033         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3034
3035 2006-02-16  Dick Porter  <dick@ximian.com>
3036
3037         * socket-io.c (create_object_from_sockaddr): Fix typo.
3038         (create_sockaddr_from_object): Check array lengths before
3039         potentially accessing items off the end.
3040         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3041         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3042         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3043         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3044         length checks to avoid wraparound overflows.
3045         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3046         contents of the array of sockets
3047         (hostent_to_IPHostEntry2)
3048         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3049         Check return value of inet_ntop ().
3050         (addrinfo_to_IPHostEntry): Fix typo
3051
3052 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3053
3054         Type metadata parsing doesn't use generic-instantiation information.
3055         * metadata.c (mono_metadata_parse_array_full): Change
3056         MonoGenericContext* parameter to MonoGenericContainer*.
3057         (mono_metadata_parse_type_full): Likewise.
3058         (mono_type_create_from_typespec_full): Likewise.
3059         (mono_metadata_parse_mh_full): Likewise.
3060         (mono_metadata_parse_generic_inst): Likewise.
3061         (do_mono_metadata_parse_generic_class): Likewise.
3062         (do_mono_metadata_parse_type): Likewise.
3063         * metadata-internals.h: Update to changes.
3064         * class.c (mono_class_find_enum_basetype): Likewise.
3065         (mono_class_setup_fields): Likewise.
3066         (mono_class_create_from_typespec): Likewise.
3067         * loader.c (method_from_methodspec): Likewise.
3068         (mono_get_method_from_token): Likewise.
3069         (mono_method_get_header): Likewise.
3070
3071 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3072
3073         * marshal.c: handle additional GENERICINST case (patch from
3074         Thong Nguyen <tum@veridicus.com>).
3075         Fix a few cases where LDIND_I/STIND_I was used for references.
3076
3077 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3078
3079         * reflection.c (mono_reflection_get_token): Remove unused variable.
3080
3081 2006-02-16  Martin Baulig  <martin@ximian.com>
3082
3083         * reflection.c (mono_reflection_get_token): Add support for fields
3084         in instantiated generic types.
3085
3086         * icall.c
3087         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3088
3089 2006-02-15  Martin Baulig  <martin@ximian.com>
3090
3091         * icall.c
3092         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3093         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3094         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3095         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3096
3097 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3098
3099         * class.c, metadata.c, metadata.h, object.c, icall.c,
3100         marshal.c: changed mono_type_get_underlying_type () to do
3101         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3102         Fixed handling of instantiated generic valuetypes (bug #75479).
3103
3104 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3105
3106         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3107         Delegate to mono_metadata_decode_value, and work on the returned value.
3108
3109         * icall.c (ves_icall_MonoType_GetGenericArguments):
3110         Add consistency check here too.
3111         
3112 2006-02-15  Ankit Jain  <jankit@novell.com>
3113
3114         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3115         char/short etc.
3116
3117 2006-02-15  Ankit Jain  <jankit@novell.com>
3118
3119         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3120         signed values, used only for representing lower bounds of arrays.
3121         (mono_metadata_parse_array_full): Use new
3122         mono_metadata_decode_signed_value to decode lower bounds.
3123
3124 2006-02-14  Martin Baulig  <martin@ximian.com>
3125
3126         * reflection.c
3127         (mono_reflection_get_token): Support "MonoGenericMethod" and
3128         "MonoGenericCMethod" and allow generic instances / methods.
3129
3130 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3131
3132         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3133         to obtain the terminal size using an ioctl.
3134
3135         * object.c (mono_nullable_init): Revert this as nullable reference
3136         types are not valid.
3137         (mono_nullable_box): Ditto.
3138
3139 2006-02-09  Dick Porter  <dick@ximian.com>
3140
3141         * threads.c (mono_thread_detach): Drop a reference to the thread
3142         we're detaching.
3143
3144 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3145
3146         * object.c (mono_nullable_init): Handle nullable reference types.
3147         (mono_nullable_box): Ditto. Fixes #77446.
3148
3149 2006-02-07  Martin Baulig  <martin@ximian.com>
3150
3151         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3152
3153 2006-02-07  Ankit Jain  <jankit@novell.com>
3154
3155         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3156         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3157         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3158         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3159         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3160         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3161
3162 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3163
3164         * class.c (mono_class_create_generic): Set type_token as well.
3165
3166         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3167         compatible with MS.
3168
3169 2006-02-02  Martin Baulig  <martin@ximian.com>
3170
3171         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3172         has never been used so far.
3173
3174 2006-02-02  Martin Baulig  <martin@ximian.com>
3175
3176         * mono-debug-debugger.h: Changed comment at the top of this file;
3177         the header is not installed, but it's safe to #include it from
3178         within the JIT.
3179
3180         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3181         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3182
3183 2006-02-02  Martin Baulig  <martin@ximian.com>
3184
3185         * mono-debug.h
3186         (MonoSymbolTable): Removed the `metadata_info' field.
3187
3188         * mono-debug.c
3189         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3190
3191         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3192         (mono_debugger_add_builtin_types): Removed.
3193         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3194         (mono_debugger_create_notification_function): We now operate on a
3195         pre-allocated area; take a `gpointer' and return `void'.
3196
3197         * mono-debug-debugger.c
3198         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3199         (mono_debugger_add_builtin_types): Removed.
3200
3201 2006-02-02  Martin Baulig  <martin@ximian.com>
3202
3203         * threads.c (mono_debugger_create_all_threads): New public method.
3204
3205 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3206
3207         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3208         breaks on several platforms.
3209
3210 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3211
3212         * assembly.c: the VS.NET build doesn't supply default values for
3213         MONO_ASSEMBLIES and MONO_CFG_DIR.
3214
3215 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3216
3217         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3218         helper function.
3219
3220         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3221
3222         * loader.c (method_from_memberref): Fix a warning.
3223
3224         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3225
3226         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3227         with explicit layout. Fixes #77433.
3228
3229 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3230
3231         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3232         max_interface_id is initialized before using it. Fixes #77398.
3233         (ves_icall_Type_GetInterfaces): Ditto.
3234
3235 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3236
3237         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3238         allocate memory for parameter attributes when parsing memberref
3239         signatures.
3240         * loader.c (mono_loader_set_error_method_load): Don't warn.
3241         (method_from_memberref): Ensure MissingMethodException gets thrown
3242         if method is not found.  Make warning more informative.
3243
3244 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3245
3246         Fix #77397
3247         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3248         return true if is byref.
3249         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3250         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3251         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3252
3253 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3254
3255         Fix tests/find-method.2.il
3256         * loader.c (find_method, find_method_in_class): Remove is_inflated
3257         argument.  Revert 2006-01-18 change.
3258         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3259         is generic, search for method in its generic definition.
3260         * class.c (mono_class_setup_vtable_general): Print generic
3261         arguments of generic types in debugging printf.
3262
3263 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3264
3265         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3266
3267         * threads.c (mono_threads_request_thread_dump): New helper function.
3268
3269 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3270
3271         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3272
3273 2006-01-25  Ankit Jain  <jankit@novell.com>
3274
3275         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3276         move definition to ..
3277         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3278         
3279 2006-01-25  Ankit Jain  <jankit@novell.com>
3280             Raja R Harinath  <rharinath@novell.com>
3281
3282         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3283         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3284         as necessary.
3285
3286 2006-01-25  Martin Baulig  <martin@ximian.com>
3287
3288         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3289         `MonoDebuggerThread' into debug-debugger.c.
3290
3291 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3292
3293         * profiler.c: fix printing of data.
3294
3295 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3296
3297         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3298           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3299
3300 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3301
3302         * object.c: fix deadlock related to string interning.
3303
3304 2006-01-23  Martin Baulig  <martin@ximian.com>
3305
3306         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3307
3308         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3309
3310 2006-01-23  Martin Baulig  <martin@ximian.com>
3311
3312         * mono-debug.h: Moved the prototypes of some functions which are
3313         used by the JIT here from mono-debug-debugger.h.
3314
3315 2006-01-21  Martin Baulig  <martin@ximian.com>
3316
3317         * Makefile.am: Don't install mono-debug-debugger.h.
3318
3319 2006-01-21  Martin Baulig  <martin@ximian.com>
3320
3321         * mono-debug-debugger.h: Enforce the private status of this header
3322         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3323         Moved some stuff from mono-debugger-jit-wrapper.h here.
3324
3325 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3326
3327         * class.c (mono_class_from_typeref): Add a sanity test to help
3328         catch lack of assembly load/search hooks.
3329
3330 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3331
3332         * marshal.c (emit_struct_conv): Relax the fields with same offset
3333         check even more. Fixes #77230.
3334
3335 2006-01-18  Martin Baulig  <martin@ximian.com>
3336
3337         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3338         argument; if false, we compare the uninstantiated signatures.
3339         (method_from_memberref): Compare the uninstantiated signatures;
3340         fixes #76417.
3341
3342 2006-01-18  Robert Jordan  <robertj@gmx.net>
3343
3344         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3345         Clear the weak link. Fixes bug #77170.
3346
3347         * gc.c (mono_gchandle_free):
3348         Reflect *-gc.c changes (tiny optimization).
3349
3350 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3351
3352         * metadata.c (mono_metadata_signature_dup): Applied patch from
3353         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3354         Fixes #77288.
3355
3356 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3357
3358         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3359         marshalling from native to managed code. Fixes #77230.
3360
3361 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3362
3363         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3364         connect. Fixes bug #77020.
3365
3366 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3367
3368         * class.c: fixed id assignement for nested interfaces (bug #77275).
3369         Added also better info for --print-vtable debugging.
3370
3371 2006-01-12  Martin Baulig  <martin@ximian.com>
3372
3373         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3374         interfaces on-the-fly; fixes #76625.
3375
3376         * class-internals.h
3377         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3378         don't need that anymore.
3379
3380 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3381
3382         * socket-io.c
3383         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3384         To avoid initing the nested_classes when not needed I turned the
3385         PeerCredData as a toplevel internal class, as it has to be shared
3386         anyways. 
3387
3388         Fixes the CASA issue.
3389
3390 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3391
3392         * domain.c: Accessors for MonoJitInfo
3393
3394         * profiler-private.h: Add jitinfo to the end jit hook
3395
3396         * profiler.[ch]: Define new hooks, called after jitting which give
3397         the MonoJitInfo that was compiled
3398
3399 2006-01-10  Martin Baulig  <martin@ximian.com>
3400
3401         * class.c (mono_class_setup_events): Add support for generic
3402         classes; fixes #76440.
3403
3404 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3405
3406         Fix #77160.
3407         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3408         on passed-in method.
3409
3410 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3411
3412         * object.c (mono_runtime_invoke_array): Add Nullable support.
3413
3414         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3415
3416 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3417
3418         * file-io.c: Don't consider sockets as directory and avoid an endless
3419         loop. Fix bug #76966.
3420
3421 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3422
3423         * object.c (mono_nullable_init): New helper function.
3424         (mono_nullable_box): Ditto.
3425
3426         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3427
3428         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3429
3430         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3431         
3432 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3433
3434         * class.c (mono_class_is_assignable_from): Make T assignable to 
3435         Nullable<T>.
3436
3437 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3438
3439         * appdomain.c: Bump corlib version to 46.
3440         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3441         serialization purpose) and changed ves_icall_System_Reflection_
3442         Assembly_get_code_base signature to accept a boolean (to escape, or 
3443         not, the assembly code base).
3444
3445 2005-12-23  Dick Porter  <dick@ximian.com>
3446
3447         * icall.c: 
3448         * threads-types.h: 
3449         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3450         CreateEvent icall now returns "created" boolean parameter.
3451
3452 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3453
3454         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3455         #76967.
3456
3457         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3458         when attr_klass is an interface. Fixes #77045.
3459
3460 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3461
3462         * marshal.c (emit_struct_conv): Fix previous patch.
3463         
3464         * marshal.c (emit_struct_conv): Add a check for fields with the same
3465         offset.
3466
3467 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3468
3469         Fix regression in Mono.C5.
3470         * class.c (mono_class_create_generic): If 'klass' is an interface
3471         set up the interface offsets.
3472         (mono_class_is_assignable_from): Don't throw away generic arguments.
3473
3474 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3475
3476         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3477         type parameters.
3478
3479 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3480
3481         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3482         dead store.
3483         (do_mono_metadata_parse_generic_class): Don't pass the current
3484         generic context when parsing the type being instantiated: it
3485         cannot use it, anyway.
3486
3487         * loader.c (method_from_memberref): Don't inflate a signature if
3488         it doesn't contain any type parameters.
3489
3490 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3491
3492         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3493
3494 2005-12-14  Martin Baulig  <martin@ximian.com>
3495
3496         * class.c
3497         (mono_type_get_name_recurse): Don't return null for type
3498         parameters and open generic classes.
3499         (mono_class_setup_methods): Don't exclude generic instances.
3500         (mono_get_unique_iid): Use different IDs for different
3501         instantiations of the same generic type.
3502         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3503         open generic instances; create a normal vtable for closed generic
3504         instances.
3505         (mono_class_setup_vtable_general): We're now also called for
3506         closed generic instances.
3507
3508         * reflection.c
3509         (mono_reflection_bind_generic_parameters): Correctly use
3510         mono_metadata_lookup_generic_inst() everywhere.
3511
3512 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3513
3514         * object.c (mono_class_create_runtime_vtable): Call 
3515         mono_class_setup_vtable ().
3516
3517         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3518         function.
3519         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3520         #76959.
3521
3522         * loader.c (mono_loader_set_error_type_load): Print the type load
3523         warnings to the console so they are more visible to the user.
3524         (mono_loader_set_error_method_load): Ditto.
3525
3526         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3527         is still broken.
3528         
3529         * reflection.c (ensure_runtime_vtable): Fix build.
3530
3531         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3532         doesn't work in all cases.
3533
3534 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3535
3536         * object.c (mono_array_new_full): Treat a single dimensional array
3537         with 0 lower bounds as an szarray. Fixes #76973.
3538
3539         * reflection.c (custom_attr_visible): Really fix this.
3540
3541 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3542
3543         * reflection.c (custom_attr_visible): Allow nested public attributes
3544         as well.
3545
3546         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3547         interface check.
3548
3549 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3550
3551         * class.c (set_generic_param_owner): Delete.
3552         (mono_class_create_from_typedef): Don't set ->owner field of
3553         generic parameters to "param containers" of enclosing classes.
3554         * reflection.c (mono_reflection_initialize_generic_parameter):
3555         Likewise.
3556
3557 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3558
3559         * reflection.c (custom_attr_visible): Fix build.
3560
3561 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3562
3563         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3564         private attributes.
3565         
3566         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3567         handling of null parameter defaults.
3568
3569 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3570
3571         * class.c (mono_class_from_generic_parameter): Don't set
3572         klass->generic_container.
3573         (my_mono_class_from_generic_parameter): Likewise.
3574
3575 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3576
3577         * reflection.c (load_public_key): Fix a warning.
3578         (method_encode_code): Fix unaligned accesses.
3579
3580 2005-12-07  Martin Baulig  <martin@ximian.com>
3581
3582         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3583
3584         * reflection.c
3585         (write_generic_param_entry): Encode our custom attrs.
3586
3587         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3588
3589 2005-12-07  Martin Baulig  <martin@ximian.com>
3590
3591         * reflection.c (encode_new_constraint): Removed; we don't use the
3592         `NewConstraintAttribute' anymore.
3593
3594 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3595
3596         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3597         not fire a TypeResolve event when Assembly.GetType () is called.
3598
3599 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3600
3601         Beginning of support for nullable types in the runtime. Parts of
3602         this patch are from Martin.
3603
3604         * appdomain.c (MONO_CORLIB_VERSION): Bump
3605
3606         * domain.c (mono_init_internal): get the nullable type
3607
3608         * class.c (mono_class_is_nullable): New method
3609         (mono_class_get_nullable_param): New mehod
3610         (mono_class_create_generic): In types T? set cast_class to T
3611
3612         * class-internals.h (MonoDefaults): new nullable default class
3613         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3614         new methods.
3615
3616 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3617
3618         * metadata.c (select_container): New.  Refactor code to select the
3619         appropriate GenericContainer given the type of generic parameter
3620         we are looking for.
3621         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3622         not a MonoGenericContext.  Use select_container.  Update parameters.
3623         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3624         and MONO_TYPE_MVAR.
3625         (unwrap_arrays): Remove duplicate tests.
3626         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3627         generic instantiated class to find any arguments that are generic
3628         parameters.
3629         (mono_type_create_from_typespec_full): Use find_generic_param to
3630         avoid evicting some generic instantiations from the typespec
3631         cache.
3632
3633 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3634
3635         * reflection.c: fixed writing of doubles on ARM FPA.
3636
3637 2005-12-02  Robert Jordan  <robertj@gmx.net>
3638
3639         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3640
3641 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3642
3643         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3644         least on SUSE 10 they are not the same (on debian, they are just the
3645         same thing).
3646
3647 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3648
3649         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3650         DeclaringType for VARs and MVARs.
3651         * class.c (set_generic_param_owner): Fix initialization of owner
3652         fields.
3653
3654 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3655
3656         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3657
3658 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3659
3660         * threadpool.c: workaround for a bug that shows up on the Mac:
3661         select()+connect() on a blocking socket is not like it should
3662         be, so we proceed to connect() in that case, wasting the I/O
3663         threadpool thread until connect succeedes. Fixes bug #75436.
3664
3665 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3666
3667         * threadpool.c: fix typo when setting file descriptor states.
3668
3669 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3670
3671         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3672         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3673         create a temporary signature container.
3674         (mono_metadata_parse_generic_param): Update to changes.
3675         (mono_type_create_from_typespec_full): Update to changes.
3676         * loader.c (method_from_memberref): Don't use a
3677         MonoGenericContainer while parsing a memberref signature.
3678         (method_from_methodspec): Remove dead-store of the 'container'
3679         variable.  It's overwritten before use.
3680
3681         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3682         checks tighter.
3683         (mono_metadata_parse_generic_param): Likewise.
3684         * loader.c (find_method_in_class): Does not need a
3685         MonoGenericContainer.  Use 'mono_method_signature' rather than
3686         'mono_method_signature_full'.
3687         (find_method, mono_get_method_constrained, method_from_memberref):
3688         Update to changes.
3689
3690         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3691         owner-less generic-parameters are never evicted from the typespec
3692         cache.
3693
3694         * loader.c (method_from_memberref): Don't use the current context
3695         when parsing signatures.
3696         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3697
3698         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3699         side-effects in g_assert.
3700         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3701         that we don't potentially lose information.
3702
3703 2005-11-26  Dick Porter  <dick@ximian.com>
3704
3705         * icall.c:
3706         * threads.c: icalls to implement basic (ie, not named)
3707         System.Threading.Semaphore.
3708
3709 2005-11-24  Dick Porter  <dick@ximian.com>
3710
3711         * process.c
3712         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3713         Use GetProcessId() if it's available.
3714
3715 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3716
3717         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3718
3719 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3720             Ankit Jain  <jankit@novell.com>
3721
3722         * loader.c (mono_get_method_from_token): Initialize 'method' field
3723         of all generic parameters before parsing the signature.  Remove
3724         code that "fixed"-up MVAR references.
3725
3726 2005-11-23  Ankit Jain  <jankit@novell.com>
3727
3728         * metadata.c (mono_metadata_has_generic_params):
3729         (mono_metadata_load_generic_param_constraints):
3730         (mono_metadata_load_generic_params): Move duplicate code ...
3731         (mono_metadata_get_generic_param_row): ... here. Returns the
3732         first row-id in GenericParam table for a given owner (token).
3733         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3734         prototype.
3735
3736 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3737             Ankit Jain  <jankit@novell.com>
3738
3739         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3740         comparing VARs too.
3741         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3742         type->data.generic_param only if the type is an MVAR.
3743         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3744         leak owner-less VARs and MVARs into managed space.
3745
3746 2005-11-21  Martin Baulig  <martin@ximian.com>
3747
3748         * class-internals.h
3749         (MonoMethod): Moved the `generic_container' here from
3750         `MonoMethodNormal' since we now also need it for
3751         `MonoMethodPInvoke';
3752         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3753         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3754         an union containing both `MonoMethodNormal' and
3755         `MonoMethodPInvoke'.
3756
3757         * loader.c
3758         (mono_get_method_from_token): Allow implementing generic methods
3759         as interncalls.
3760
3761         * threads.c
3762         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3763         icall.
3764
3765 2005-11-17  Dick Porter  <dick@ximian.com>
3766
3767         * icall.c: 
3768         * process.h: 
3769         * process.c: Split the Process Start_internal icall into
3770         ShellExecuteEx_internal and CreateProcess_internal, which are
3771         called depending on whether UseShellExecute is true.  Fixes bug
3772         76670.
3773
3774         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3775
3776 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3777
3778         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3779         'msize' parameters, use the information in 'mspec' instead.
3780         (emit_object_to_ptr_conv): Ditto.
3781
3782         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3783         fields out of order. Fixes #76733.
3784
3785 2005-11-17  Ankit Jain  <jankit@novell.com>
3786
3787         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3788
3789 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3790
3791         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3792           bug #76575.
3793
3794 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3795
3796         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3797         for types with non-auto layout. Fixes #76717.
3798
3799 2005-11-16  Ankit Jain  <jankit@novell.com>
3800
3801         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3802         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3803         if generic_context is null.
3804           (mono_metadata_generic_param_equal): param->owner can be null.
3805           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3806         null.
3807
3808 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3809
3810         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3811         the correct value.
3812
3813 2005-11-15  Martin Baulig  <martin@ximian.com>
3814
3815         * object.c (set_value): Use mono_class_from_mono_type() instead of
3816         the hack for generic instances; fixes #76136.
3817
3818 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
3819
3820         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3821         fields.
3822
3823         * image.c (load_metadata_ptrs): Initialize the new fields.
3824
3825         * reflection.c (create_dynamic_mono_image): Ditto.
3826
3827         * reflection.c (build_compressed_metadata): Use the new fields.
3828
3829         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3830         icall.
3831
3832         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3833         icall.
3834         
3835 2005-11-15  Ankit Jain  <jankit@novell.com>
3836             Raja R Harinath  <harinath@gmail.com>
3837
3838         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3839         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3840         new per-generic_container cache if the cached MonoType's context matches
3841         the current context.
3842           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3843         to the expected context.
3844           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3845
3846 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3847
3848         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3849         we changed the signature of an icall.
3850         * icall.c: Modify to mono_double_ParseImpl return true/false 
3851         depending on the success, instead of throwing the exception. This will
3852         help us in Double.TryParse methods.
3853         
3854 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
3855
3856         * marshal.c (emit_marshal_object): Throw an exception when
3857         marshalling 'object' instead of crashing. Fixes #76696.
3858
3859 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3860
3861         * class-internals.h: Add prototype for mono_type_get_full_name ().
3862
3863 2005-11-11  Dick Porter  <dick@ximian.com>
3864
3865         * threads.c (mono_thread_manage): Make sure the main thread has
3866         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
3867
3868 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3869
3870         * loader.c (mono_loader_set_error_type_load): Log a warning to the
3871         console about the missing type.
3872         (mono_loader_set_error_method_load): Ditto.
3873
3874 2005-11-09  Miguel de Icaza  <miguel@novell.com>
3875
3876         * mono-config.c (mono_get_config_dir): Set the system defaults if
3877         none is specified.
3878
3879         * assembly.c (mono_set_dirs): New API entry point to set the
3880         assembly and the config directory in one call
3881
3882 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
3883
3884         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3885         the ftnptr was created from a delegate in a domain other than the
3886         current domain. Fixes #75377.
3887
3888         * exception.h exception.c: Add mono_get_exception_not_supported ().
3889
3890 2005-11-08  Martin Baulig  <martin@ximian.com>
3891
3892         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3893
3894 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
3895
3896         * security-manager.h: Added definitions to deal with strongname key 
3897         pairs bigger (and smaller) than 1024 bits.
3898         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
3899         adjust wrt the public key length being used.
3900
3901 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3902
3903         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3904           Windows build (r51396-51397).
3905
3906 2005-11-03  Martin Baulig  <martin@ximian.com>
3907
3908         * class.c (mono_class_setup_vtable_general): Also add generic
3909         methods to the vtable; fixes #76581.
3910
3911 2005-11-01  Miguel de Icaza  <miguel@novell.com>
3912
3913         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3914         sure that we lookup GetString method from the System.Text.Encoding
3915         class, not the derived class or we get an empty method.
3916
3917         Fixed class #76612.
3918
3919 2005-10-25  Miguel de Icaza  <miguel@novell.com>
3920
3921         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3922         if it has been previously set (embedders). 
3923
3924         Make mono_set_rootdir available also on Unix.
3925
3926 005-10-24  Robert Jordan  <robertj@gmx.net>
3927
3928         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3929
3930 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
3931
3932         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3933         only calls which are made to native code use this flag.
3934
3935         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3936
3937 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
3938
3939         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3940         Add support for FieldBuilders.
3941
3942 2005-10-29  Martin Baulig  <martin@ximian.com>
3943
3944         * mono-debug.c
3945         (mono_debug_using_mono_debugger): New public method; returns
3946         whether we're running inside the debugger.
3947
3948 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
3949
3950         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3951         for Method/Constructor/FieldBuilders.
3952
3953 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
3954
3955         * reflection.c (module_add_cattrs): Save custom attributes for global methods
3956         and fields as well.
3957
3958 2005-10-26  Martin Baulig  <martin@ximian.com>
3959
3960         * mono-debug-debugger.c
3961         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3962
3963 2005-10-24  Raja R Harinath  <harinath@gmail.com>
3964
3965         * icall.c (base64_to_byte_array): Don't pass an out-of-range
3966         integer to isspace.
3967
3968 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
3969
3970         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3971         when passing valuetypes byref. Fixes #76502.
3972
3973 2005-10-19  Jackson Harper  <jackson@ximian.com>
3974
3975         * profiler.c: Don't put a . in front of types that are not in a
3976         namespace.
3977
3978 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
3979
3980         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3981
3982 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
3983
3984         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3985         #76436.
3986         (mono_marshal_get_ldflda_wrapper): Fix a warning.
3987
3988 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3989
3990         * assembly.c metadata-internals.h icall.c: Define an additional
3991         parameter for mono_assembly_name_parse_full, so we can avoid creating
3992         S.R.AssemblyName.Version when no version info wasn't passed.
3993         
3994 2005-10-09  Miguel de Icaza  <miguel@novell.com>
3995
3996         * class.c (mono_type_get_full_name): Reimplement method that was
3997         removed. 
3998
3999         * image.c: Some docs
4000
4001 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4002
4003         * profiler.c (output_newobj_profile): Fix printing of Total memory
4004         on x86.
4005
4006 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4007
4008         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4009
4010 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4011
4012         * threads.c: remove debug output.
4013
4014 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4015
4016         * threads.c (mono_thread_manage): Fix crashes if more than 64
4017         threads need to be aborted. Hopefully fixes #75899.
4018
4019         * assembly.c (mono_stringify_assembly_name): New helper function.
4020
4021         * class.c: Use mono_stringify_assembly_name instead of the similar
4022         static function.
4023
4024         * assembly.h assembly.c: Add support for calling a postload search 
4025         hook if an assembly cannot be loaded.
4026
4027         * appdomain.c: Register new search hooks which call the AssemblyResolve
4028         events in AppDomain. Fixes #75231
4029
4030 2005-10-07  Martin Baulig  <martin@ximian.com>
4031
4032         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4033         methods without debug info.
4034
4035 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4036
4037         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4038         wrappers.
4039
4040 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4041
4042         * file-io.c: now that we return symlinks, use lstat and, when the file
4043         is a symbolic link, stat, to get the file attributes. Also avoid the
4044         conversion to/from utf16/external.
4045
4046 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4047
4048         * class.c (mono_class_layout_fields): Compute klass->has_references
4049         correctly if an embedded valuetype is not yet initialized. Fixes
4050         #76331.
4051
4052 2005-10-04  Martin Baulig  <martin@ximian.com>
4053
4054         * metadata.c
4055         (mono_metadata_load_generic_param_constraints): New public
4056         function; splitted the constraints loading out from
4057         mono_metadata_load_generic_params().
4058
4059         * class.c (mono_class_create_from_typedef): Call
4060         mono_metadata_load_generic_param_constraints() after setting up
4061         the type and creating our parent; fixes #75329.
4062
4063 2005-10-04  Martin Baulig  <martin@ximian.com>
4064
4065         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4066         non-dynamic parent classes.
4067
4068 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4069
4070         * file-io.c : win32 build fix (ETXTBSY seems not found).
4071
4072 2005-10-04  Martin Baulig  <martin@ximian.com>
4073
4074         * reflection.c
4075         (mono_image_get_methodspec_token): Make the cache actually work;
4076         fixes #75974.
4077
4078 2005-10-04  Martin Baulig  <martin@ximian.com>
4079
4080         * class.c (mono_class_name_from_token): Removed the unneccessary
4081         `MonoGenericContext *' argument.
4082
4083 2005-10-04  Martin Baulig  <martin@ximian.com>
4084
4085         * loader.c
4086         (method_from_methodspec): Make the caching work again; fixes the
4087         performance regression from #76262.
4088
4089 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4090
4091         * file-io.c:
4092         * file-io.h:
4093         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4094         GetFileSystemEntries that performs the same work but without going
4095         into io-layer, locking, etc.
4096
4097 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4098
4099         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4100         ThreadState_Stopped as well. Fixes #76047.
4101
4102 2005-09-29  Martin Baulig  <martin@ximian.com>
4103
4104         * class.c
4105         (inflate_generic_context): If the new context has a `gmethod', set
4106         its `container' that that gmethod's `container'.
4107
4108         * metadata.c
4109         (mono_metadata_parse_generic_param): Simplify things;
4110         `generic_container = generic_context->container;' is just fine.
4111
4112         * loader.c (method_from_methodspec): Code cleanups.
4113
4114 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4115
4116         * decimal.c: fix warning (and let gcc generate correct
4117         code on ARM with optimizations).
4118
4119 2005-09-28  Martin Baulig  <martin@ximian.com>
4120
4121         * loader.c
4122         (method_from_memberref): Added `MonoGenericContext *class_context'
4123         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4124         (method_from_methodspec): If we're a memberref, use the enclosing
4125         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4126
4127 2005-09-28  Martin Baulig  <martin@ximian.com>
4128
4129         * object.c (mono_runtime_invoke_array): Added support for
4130         MONO_TYPE_GENERICINST; fixes #75917.
4131
4132 2005-09-27  Martin Baulig  <martin@ximian.com>
4133
4134         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4135         `k->byval_arg.type' to determine the actual type.
4136
4137         * loader.c (method_from_methodspec): Removed some hacks.
4138
4139 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4140
4141         * class-internals.h (mono_field_is_deleted): Do the test for
4142         rtspecialname before we check the actual name of the field. This
4143         prevents us from dereferencing a pointer into the string table,
4144         saving us from accessing a few pages
4145
4146         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4147         macros. This will allow a deadlock debugger to easily be plugged
4148         in.
4149
4150 2005-09-27  Martin Baulig  <martin@ximian.com>
4151
4152         * loader.c (method_from_methodspec): Create a "signature"
4153         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4154
4155 2005-09-27  Martin Baulig  <martin@ximian.com>
4156
4157         * class.c
4158         (inflate_generic_class): Correctly set the new context's
4159         container.
4160
4161         * loader.c
4162         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4163         instead of a `MonoGenericContext *'.
4164         (mono_method_signature_full): Take a `MonoGenericContainer *'
4165         instead of a `MonoGenericContext *'.
4166
4167         * metadata.c
4168         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4169         instead of a `MonoGenericContext *'.
4170         (mono_metadata_parse_method_signature_full): Likewise.
4171
4172 2005-09-26  Martin Baulig  <martin@ximian.com>
4173
4174         * class.c
4175         (mono_class_from_generic_parameter): Set `klass->generic_container'
4176         (mono_class_from_generic_parameter): Likewise.
4177         (mono_bounded_array_class_get): We inherit the generic container
4178         from the element class.
4179
4180         * loader.c
4181         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4182         argument rather than computing it here.
4183         (method_from_memberref): Correctly set the generic context before
4184         parsing the signature.  Fixes #75681.
4185
4186 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4187
4188         * object.c (mono_class_has_special_static_fields): Fix warnings.
4189
4190 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4191
4192         * assembly.c: Add parse_public_key function, to
4193         par the public keys. Also added mono_assembly_name_parse_full,
4194         to define it the parsed key should be freed or not.
4195         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4196         to parse a long format assembly name.
4197         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4198         private, since calling it to preserve the key requires
4199         freeing it manually.
4200         
4201 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4202
4203         * locales.c : removed HAVE_ICU part.
4204
4205 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4206
4207         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4208         field_is_special_static if the klass has no special static fields.
4209
4210         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4211         (MonoCachedClassInfo): Likewise.
4212
4213         * object.c (mono_class_has_special_static_fields): New helper function.
4214
4215 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4216
4217         * class.c (mono_class_create_from_typedef): Don't call 
4218         interfaces_from_typedef_full for enums.
4219         (mono_class_create_from_typedef): Compute the base types of enums directly
4220         without calling mono_class_setup_fields ().
4221         (mono_class_find_enum_basetype): New helper function.
4222
4223         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4224         one place inside the string heap.
4225         
4226 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4227
4228         * class.c: locking fixes, code cleanups, some docs added.
4229         Allocate some data structures in the image mempool.
4230
4231 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4232
4233         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4234         the example code.
4235         
4236 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4237
4238         * class-internals.h, class.c, reflection.c: reduce memory taken by
4239         MonoClass.
4240
4241 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4242
4243         * metadata.c, metadata.h, loader.h: documentation updates, code and
4244         API cleanups.
4245
4246 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4247
4248         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4249         the example code.
4250
4251         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4252         page faults caused by the runtime while reading metadata.
4253
4254 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4255
4256         * socket-io.c: the field names were changed 3 months ago and no one
4257         realized until bug #76077 got filed!
4258
4259 2005-09-20  Martin Baulig  <martin@ximian.com>
4260
4261         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4262
4263 2005-09-20  Martin Baulig  <martin@ximian.com>
4264
4265         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4266         write the rank into the class entry.
4267
4268 2005-09-20  Martin Baulig  <martin@ximian.com>
4269
4270         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4271
4272 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4273
4274         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4275
4276         * icall.c (custom_attrs_defined_internal): New icall.
4277
4278         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4279         function.
4280         (mono_custom_attrs_construct_by_type): New helper function.
4281
4282 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4283
4284         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4285         terminate the resulting string. Fixes #76123.
4286
4287 2005-09-16  Martin Baulig  <martin@ximian.com>
4288
4289         * mono-debug.c
4290         (mono_debug_add_method): Ignore inflated methods for the moment.
4291
4292 2005-09-14  Martin Baulig  <martin@ximian.com>
4293
4294         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4295
4296 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4297
4298         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4299         return a success/failure indication.
4300         (mono_metadata_interfaces_from_typedef_full): Ditto.
4301         (get_constraints): Ditto.
4302
4303 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4304
4305         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4306         
4307         * marshal.c (emit_marshal_array): Add support for returning string
4308         arrays from delegates. Fixes #76063.
4309
4310         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4311
4312 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4313
4314         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4315         icall.
4316
4317 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4318
4319         * reflection.c icall.c: Fix after mono_get_exception_type_load
4320         signature change.
4321
4322         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4323         (mono_assembly_load_reference): Use the new helper.
4324
4325         * class-internals.h (MonoLoaderError): New structure containing 
4326         information about type loading errors.
4327
4328         * class-internals.h loader.c: Add APIs to store per-thread loader
4329         error information.
4330
4331         * loader.c class.c: Set the loader error if needed.
4332
4333         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4334
4335 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4336
4337         * decimal.c: fixed to handle the broken ARM fp format.
4338
4339 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4340
4341         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4342         broken.
4343
4344 2005-09-06  Martin Baulig  <martin@ximian.com>
4345
4346         * domain.c (supported_runtimes): Added v2.0.50727.
4347
4348 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4349
4350         * culture-info.h: reduce the size of some structures.
4351
4352 2005-09-05  Martin Baulig  <martin@ximian.com>
4353
4354         Reflect latest API changes in the August CTP.
4355
4356         * icall.c
4357         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4358         ("MonoType.HasGenericArguments"): Removed.
4359         ("MonoMethod.BindGenericParameters"): Renamed to
4360         "MakeGenericMethod".
4361         ("MethodBuilder.BindGenericParameters"): Renamed to
4362         "MakeGenericMethod".    
4363
4364 2005-09-05  Martin Baulig  <martin@ximian.com>
4365
4366         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4367
4368 2005-09-05  Martin Baulig  <martin@ximian.com>
4369
4370         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4371
4372         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4373         generic_container is non-NULL.
4374
4375 2005-09-05  Martin Baulig  <martin@ximian.com>
4376
4377         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4378
4379         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4380
4381 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4382
4383         * reflection.c (encode_locals,
4384         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4385         for large generic types.
4386
4387 2005-09-05  Martin Baulig  <martin@ximian.com>
4388
4389         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4390
4391         * class.c (mono_dup_array_type): New public method.
4392         (mono_metadata_signature_deep_dup): New public method.
4393         (dup_type): Correctly duplicate array and function types.
4394
4395 2005-09-05  Martin Baulig  <martin@ximian.com>
4396
4397         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4398
4399         * reflection.c (get_default_param_value_blobs): Handle generic types
4400         and generic methods.
4401
4402 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4403
4404         * class.c: Fixed error reporting (method/class were inversed) for 
4405         inheritance demands.
4406         * security-manager.c|h: Added the AppDomain when calling the managed
4407         System.Security.SecurityManager.InheritanceDemand method.
4408
4409 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4410
4411         * reflection.c (encode_marshal_blob): 'marshaltype' and
4412         'marshaltyperef' are alternate sources for the custom marshaler
4413         name.
4414
4415 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4416
4417         * class.c: fix creation of array classes with rank == 1
4418         (patch by Ankit Jain <jankit@novell.com>).
4419
4420 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4421
4422         * object.c: fix check for creating the bound data for arrays vs
4423         szarrays.
4424
4425 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4426
4427         * object.c: configuration file name is now based on the executable name,
4428         not the image name. Fixes bug #75931.
4429
4430 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4431
4432         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4433         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4434
4435 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4436
4437         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4438
4439 2005-08-24  Ankit Jain  <jankit@novell.com>
4440             Raja R Harinath  <rharinath@novell.com>
4441
4442         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4443           called by it recursively.
4444           (mono_class_init): Remove special case in pending_init handling, since it's
4445           superseded by the fix to mono_class_from_typeref.
4446
4447 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4448
4449         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4450         BROKEN_THREAD_START stuff.
4451
4452 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4453
4454         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4455         trampoline.
4456
4457         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4458         
4459         * object.c (mono_delegate_ctor): Replace the original function address with
4460         a delegate trampoline.
4461
4462 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4463
4464         * icall.c: add boolean argument to base64_to_byte_array and 
4465         InternalFromBase64String to control whether a whitespace-only string
4466         is allowed (or should casue a FormatException to be thrown). We need
4467         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4468         to match the MS behaviour in both profiles.
4469         * appdomain.c: Bump corlib version.
4470
4471 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4472
4473         This patch implements a big portion of publisher policy
4474         support, used to bind assembly versions and redirect
4475         one assembly from version A to version B.
4476
4477         * assembly.c:
4478         New GSList loaded_assembly_bindings, for storing the cached
4479         assembly bindings.
4480         (assembly_binding_maps_name): New static function for checking if a 
4481         assembly binding information maps an assembly name.
4482         (mono_assembly_binding_info_free): New function for freeing
4483         assembly binding information resources.
4484         (get_publisher_policy_info): New static function for retrieving 
4485         assembly binding information from a MonoImage.
4486         (compare_versions): New static function for comparing an assembly
4487         binding information data and the version of an assembly name.
4488         (check_policy_versions): New static function for checking if an
4489         assembly binding info mapping an assembly name is valid for it.
4490         (mono_assembly_load_publisher_policy): New static function for
4491         loading the 'policy.major.minor.MyAssembly' image for an assembly
4492         with an assembly name 'aname'.
4493         (mono_assembly_bind_version): New static function for updating
4494         assembly redirection.
4495         (mono_assembly_apply_binding): New static function for applying
4496         assembly binding.
4497         (search_binding_loaded): New static function for searching 
4498         loaded assembly binding infos in the cache domain.
4499         (mono_assembly_load_full): Don't apply assembly binding for
4500         reflection only assemblies.
4501
4502         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4503         which contains information about assembly binding. Also
4504         declare signature for mono_config_parse_publisher_policy ()
4505         function, used to retrieve pub policy info.
4506         
4507         * mono-config.c:
4508         (publisher_policy_start): New static function used to parse publisher 
4509         policy config files.
4510         (publisher_policy_parser): New static MonoParseHandler containing 
4511         the functions used when parsing config files.
4512         (mono_config_parse_publisher_policy): New function for parsing
4513         publisher policy files.
4514         
4515 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4516
4517         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4518
4519         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4520
4521         * object.c (mono_get_addr_from_ftnptr): New helper function.
4522
4523         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4524
4525         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4526
4527 2005-08-19  Dick Porter  <dick@ximian.com>
4528
4529         * threads.c, threads.h, appdomain.c, appdomain.h,
4530         profiler-private.h, monitor.c, object.c, object-internals.h,
4531         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4532         store the thread ID, so it can hold a 64 bit value if needed.
4533
4534 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4535
4536         * reflection.c (mono_reflection_create_dynamic_method): Store the
4537         handle class into the method references as well so ldtoken works in
4538         dynamic methods.
4539
4540         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4541         types.
4542
4543 2005-08-19  Ankit Jain <jankit@novell.com>
4544
4545         Fix #75847.
4546         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4547           here rather than using the method signature of a arbitrary function
4548           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4549           two arguments.
4550           Hack done with Harinath.
4551
4552 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4553
4554         * threadpool.c: disable printing stack traces when we get a exception
4555         in a threadpool thread. I need to do more testing to figure out which
4556         cases actually print this. Fixes bug #75828.
4557
4558 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4559
4560         * icall.c: there might be ignored whitespace after the last '='. This
4561         fixes length computation and bug #75840.
4562
4563 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4564
4565         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4566         well. Fixes #75809.
4567
4568         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4569         #75784.
4570         
4571         * reflection.c (create_custom_attr_data): Ditto.
4572
4573 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4574
4575         * locales.c, culture-info.h : removed RegionLCIDMap.
4576         * culture-info-tables.h : regenerated.
4577
4578 2005-08-16  Martin Baulig  <martin@ximian.com>
4579
4580         * class.c (mono_type_get_name_recurse): Small fix.
4581
4582 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4583
4584         * locales.c : indentation fixie.
4585
4586 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4587
4588         * object-internals.h,
4589           locales.h,
4590           locales.c,
4591           culture-info.h,
4592           icall.c : added RegionInfo table support.
4593         * culture-info-table.h : regenerated for region support.
4594
4595 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4596
4597         * reflection.c (resolve_object): handle all kinds of MonoMethod
4598         including generic ones
4599
4600 2005-08-12  Ankit Jain <jankit@novell.com>
4601
4602         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4603           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4604
4605 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4606
4607         * process.c: Don't close a thread handle when it's NULL. This is a
4608         workaround for bug #75733.
4609
4610 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4611
4612         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4613
4614 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4615
4616         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4617
4618 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4619
4620         * threadpool.c: if a work item in the thread pool has a callback that
4621         catches a exception, don't propagate it after invoking the callback.
4622         Fixes bug #75336.
4623
4624 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4625
4626         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4627
4628         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4629
4630         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4631
4632         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4633
4634 2005-08-03  Ankit Jain  <jankit@novell.com>
4635
4636         Fix #75683.
4637         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4638           PInvoke calling convention is 0.
4639
4640 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4641
4642         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4643         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4644
4645 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4646
4647         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4648         to handle threads not started by the GC (patch by Michael Meeks
4649         <michael.meeks@novell.com>).
4650
4651 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4652
4653         * reflection.c: Make buffer used in emitting types larger for some
4654         big generic types (patch by Michal Moskal).
4655
4656 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4657
4658         * mono-debug.c: Fix some (not all) alignment problems.
4659
4660 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4661
4662         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4663         Invoke mono_image_load_from_data_full passing the refonly
4664         parameter.
4665
4666         * assembly.c
4667         (mono_assembly_open_from_bundle): Add the refonly argument, 
4668         in order to pass it to other methods it calls to.
4669         (do_mono_assembly_open): Add the refonly argument, in order 
4670         to pass it to other methods it calls to.
4671         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4672         the refonly parameter to it.
4673
4674         * image.c: Add loaded_images_refonly_hash and
4675         loaded_images_refonly_guid_hash to cache the reflection
4676         only loaded images.
4677         (mono_images_init): Initialize the hash tables used for
4678         caching the reflection only images.
4679         (load_modules): Invoke mono_image_open_full passing the refonly
4680         parameter to load the modules the correct way.
4681         (build_guid_table): Add the refonly argument, to re-build the 
4682         correct hash table.
4683         (do_mono_image_open): Added the refonly argument, in order to
4684         define it for the loaded image.
4685         (mono_image_loaded_full): New function, which receives an
4686         additional parameter to look for the image in the refonly or
4687         non-refonly section.
4688         (mono_image_loaded): Updated, using mono_image_loaded_full.
4689         (mono_image_loaded_by_guid_full): The same case that happens
4690         with mono_image_loaded_full.
4691         (mono_image_loaded_by_guid): Likewise.
4692         (register_image): Use the ref_only variable inside MonoImage
4693         to decide in which hash table store the current image.
4694         (mono_image_open_from_data_full): Rename
4695         mono_image_open_from_data to mono_image_open_from_data_full,
4696         adding the refonly argument, to define the ref_only variable 
4697         inside MonoImage.
4698         (mono_image_open_from_data): Return 
4699         mono_image_open_from_data_full.
4700         (mono_image_open_full): Rename mono_image_open to
4701         mono_image_open_full, receiving the new refonly argument,
4702         to pass it to inner methods.
4703         (mono_pe_file_open): Update this function, to open
4704         a MonoImage as a non-refonly image.
4705         (mono_image_close): Use the refonly variable inside
4706         MonoImage to remove the image from the correct caches.
4707
4708         * image.h: Add the signatures of mono_image_open_full,
4709         mono_image_open_from_data_full, mono_image_loaded_full,
4710         mono_image_loaded_by_guid_full.
4711
4712         * metadata-internals.h: Add the ref_only field to 
4713         MonoImage.
4714         
4715 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4716
4717         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4718         Fix the last behavior, which used to load the assemblies and
4719         extract MonoReflectionAssemblyName information, instead of
4720         extract it from the metadata tables. Needed for Reflection
4721         Only assemblies.
4722         
4723 2005-07-29  Martin Baulig  <martin@ximian.com>
4724
4725         * mono-debug-debugger.c
4726         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4727         not initialized.
4728
4729         * mono-debug.c
4730         (mono_debug_address_from_il_offset): Check whether we have
4731         debugging support before attempting to take the lock.
4732         (mono_debug_source_location_from_address): Likewise.
4733         (mono_debug_source_location_from_il_offset): Likewise.
4734         (mono_debug_il_offset_from_address): Likewise.
4735         (mono_debug_address_from_il_offset): Likewise.
4736
4737 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4738
4739         * class.c (mono_class_from_name_case): Add support for dynamic images.
4740         Fixes #75650.
4741
4742         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4743         for #75479.
4744
4745 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4746         
4747         * reflection.c (mono_method_get_object): Fix warning.
4748
4749 2005-07-28  Martin Baulig  <martin@ximian.com>
4750
4751         * mono-debug.c
4752         (mono_debug_add_wrapper): Also write the wrapper type.
4753
4754 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4755
4756         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4757         
4758         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4759         data indicates the class has none.
4760
4761 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4762
4763         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4764         loader lock with the debugger lock. Prevents deadlocks for beagle.
4765
4766         Beagle can now run on an smp box for a weekend without any
4767         issues. Woohoo!
4768
4769 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4770
4771         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4772         in a module. Fixes #75629.
4773
4774 2005-07-26  Martin Baulig  <martin@ximian.com>
4775
4776         * mono-debug.c (mono_debug_add_wrapper): New static method.
4777         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4778         interncall or a wrapper.
4779
4780         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4781         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4782         (MONO_DEBUGGER_VERSION): Bump to 51.
4783
4784         * mono-debug-debugger.c
4785         (mono_debugger_add_type): Removed this empty function.
4786         (mono_debugger_add_method): Likewise.
4787
4788 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4789
4790         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4791         before accessing method->slot.
4792
4793 2005-07-21  Jb Evain  <jbevain@gmail.com>
4794
4795         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4796         Fixes #75010.
4797
4798 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4799
4800         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4801         #75587.
4802
4803 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4804
4805         * image.h image.c: Add mono_image_get_guid () API function.
4806
4807 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4808
4809         There were issues when multiple threads tried to load
4810         assemblies. A deadlock was created between assemblies_mutex and
4811         mono_domain_assemblies_lock. This fixes the issue by making the
4812         assembly ref counting be lock free. See bug 75586.
4813         
4814         * image.c (mono_image_close): The add ref function here was using
4815         Interlocked operations while the unref was using a mutex and a
4816         --. I don't think this was ever a bug that would be exposed in a
4817         non-pendantic way (ie, by an embedder doing a ref on one thread
4818         and an unref on another), but for the sake of correctness, this is
4819         now Interlocked.
4820
4821         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4822         (mono_assembly_load_reference): Call mono_assembly_addref rather
4823         than touching the refcount ourselves.
4824         (mono_assembly_close): Use InterlockedDecrement to unref the
4825         assembly. Don't acquire the lock unless it is actually needed.
4826
4827 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4828
4829         * class.c (mono_class_layout_fields): Fix calculation of has_references
4830         for generic types.
4831
4832 2005-07-12  Martin Baulig  <martin@ximian.com>
4833
4834         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4835
4836         * metadata.c
4837         (mono_type_hash): Provide better hashing for generic instances.
4838         (mono_generic_inst_hash): Improve hashing.
4839         (mono_generic_class_hash): Likewise.
4840
4841         * reflection.c (mymono_metadata_type_hash): Improve hashing for
4842         generic instances.
4843
4844 2005-07-12  Martin Baulig  <martin@ximian.com>
4845
4846         * reflection.c (mono_reflection_create_runtime_class): Remove the
4847         hack for generic type definitions and non-`Run' assemblies.
4848         (mono_reflection_bind_generic_parameters): Also use
4849         `klass->wastypebuilder' to check for TypeBuilders.
4850
4851 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4852
4853         * class.c (mono_class_layout_fields): Fix calculation of has_references
4854         for generic types.
4855
4856         * class.c (inflate_generic_class): Fix a leak.
4857         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4858         for generic types.
4859
4860 2005-07-11  Martin Baulig  <martin@ximian.com>
4861
4862         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4863         on error.
4864
4865 2005-07-11  Martin Baulig  <martin@ximian.com>
4866
4867         * loader.c (find_method): Also lookup in
4868         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4869
4870 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4871
4872         * appdomain.c (mono_domain_unload): Don't free the error message
4873         before passing it to mono_get_exception_...
4874
4875         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4876         
4877 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4878
4879         * threads.c: try to better guess an available RT signal (bug #75387).
4880
4881 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4882
4883         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4884         and CACHE_OBJECT.
4885
4886 2005-07-07  Martin Baulig  <martin@ximian.com>
4887
4888         * class.c (mono_type_get_name_full): Return NULL for
4889         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4890         fixes #75408.
4891
4892 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4893
4894         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4895         exit the appdomain as well being aborted.
4896
4897         * threadpool.c: Create all threadpool threads inside the root appdomain, and
4898         change back to the root domain after calling managed code. This enables
4899         appdomains using threadpools to be unloaded.
4900
4901 2005-07-07  Martin Baulig  <martin@ximian.com>
4902
4903         * class-internals.h
4904         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4905         into `MonoDynamicGenericClass' since we only need it for dynamic
4906         types.
4907
4908         * reflection.c (mono_class_bind_generic_parameters): We don't need
4909         to compute the `parent' here.
4910
4911 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
4912
4913         * culture-info-table.h : regenerated.
4914
4915 2005-07-06  Martin Baulig  <martin@ximian.com>
4916
4917         * icall.c
4918         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4919
4920         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4921
4922 2005-07-06  Martin Baulig  <martin@ximian.com>
4923
4924         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4925         we're doing a signature-only comparision; fixes #74945.
4926
4927 2005-07-06  Martin Baulig  <martin@ximian.com>
4928
4929         * class-internals.h (MonoGenericClass): Moved some things out into
4930         a new `MonoInflatedGenericClass' type.  
4931         (MonoInflatedGenericClass): New type; the `klass' of a
4932         `MonoGenericClass' is now computed lazyly in
4933         mono_get_inflated_generic_class().      
4934
4935         * class.c (mono_get_inflated_generic_class): New public function.
4936         (mono_class_inflate_generic_method): Removed the unused
4937         `MonoClass *' argument.
4938         (setup_generic_vtable): Don't call mono_get_inflated_method() on
4939         all the methods.
4940         (mono_class_create_generic): Make this static and merge it with
4941         mono_class_create_generic_2(); we're now called automatically from
4942         mono_get_inflated_generic_class().
4943
4944         * loader.c (mono_method_signature): Call
4945         mono_get_inflated_method() here.
4946
4947 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
4948
4949         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4950         type of fields with RVA.
4951
4952         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4953         for this pseudo class.
4954         (my_mono_class_from_generic_parameter): Likewise.
4955         (mono_class_init): Allow interfaces to have cctors.
4956
4957 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4958
4959         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4960         lazily for AOT methods.
4961
4962 2005-07-05  Martin Baulig  <martin@ximian.com>
4963
4964         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4965         returns FALSE for a successful match, not TRUE.
4966
4967 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4968
4969         * loader.c (mono_method_get_index): Optimize this a bit.
4970
4971 2005-07-04  Martin Baulig  <martin@ximian.com>
4972
4973         * class.c
4974         (class_compute_field_layout): Move the check for generic type
4975         definitions into mono_class_layout_fields().  Fixes #74684.
4976         (mono_class_from_generic_parameter): Correctly compute
4977         `klass->parent'; fixes #75457.
4978
4979         * reflection.c (register_assembly, register_module): Make sure
4980         `domain->rejobject_hash' is already created.
4981
4982 2005-07-02  Martin Baulig  <martin@ximian.com>
4983
4984         * class-internals.h
4985         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4986         `MonoDynamicGenericClass'.      
4987
4988 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
4989
4990         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4991         returned by a field getter is null, since null is a valid value.
4992
4993 2005-07-01  Martin Baulig  <martin@ximian.com>
4994
4995         * reflection.c (mono_reflection_generic_class_initialize): Update
4996         the `dgclass->fields [i].parent' to the correct class.
4997         (mono_image_get_fieldref_token): Use the declaring type, not the
4998         reflected type.
4999
5000 2005-07-01  Martin Baulig  <martin@ximian.com>
5001
5002         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5003
5004 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5005
5006         * threads.c (thread_cleanup): assert that thread != NULL
5007         (wait_for_tids_or_state_change): We were using the wrong variable
5008         when accessing wait->threads. `i' was always out of the bounds of
5009         the array.
5010
5011 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5012
5013         * loader.c: map user32 and kernel32 to libMonoSupportW
5014
5015 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5016
5017         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5018
5019 2005-06-28  Martin Baulig  <martin@ximian.com>
5020
5021         * loader.c (method_from_methodspec): Fix #75334.
5022
5023 2005-06-28  Martin Baulig  <martin@ximian.com>
5024
5025         Fix #74953 - Arrays now implement the generic IList<T> interface
5026         on the 2.0 platform.
5027
5028         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5029
5030         * reflection.c (mono_class_bind_generic_parameters): New public
5031         function; similar to mono_reflection_bind_generic_parameters(),
5032         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5033
5034         * domain.c (mono_init_internal): Try to initialize.
5035         `mono_defaults.generic_array_class' here; this'll only succeed if
5036         we're using the 2.0 corlib.
5037
5038         * icall.c
5039         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5040         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5041         (mono_lookup_internal_call): Added support for nested classes.
5042
5043         * loader.c
5044         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5045         we're an interncall and have generic arguments.
5046
5047         * class.c
5048         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5049         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5050         instance of System.Array.InternalArray<T> for arrays, so they
5051         implement the generic IList<T> interface.
5052
5053 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5054
5055         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5056         (chastamar@yahoo.com). Fixes #75374.    
5057
5058 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5059
5060         * culture-info-table.h: regenerated.
5061
5062 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5063
5064         * icall.c: handle spaces correctly for base64 strings.
5065
5066 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5067
5068         * *.c: Kill some warnings.
5069
5070 2005-06-23  Duncan Mak  <duncan@novell.com>
5071
5072         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5073         that this builds on Solaris 10 (x86).
5074
5075 2005-06-23  Martin Baulig  <martin@ximian.com>
5076
5077         * class.c
5078         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5079         generic type definitions.
5080
5081 2005-06-23  Martin Baulig  <martin@ximian.com>
5082
5083         Fix #75331.
5084
5085         * metadata.c (mono_class_get_overrides): Renamed to
5086         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5087         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5088         pass it to mono_get_method_full().
5089
5090 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5091
5092         * reflection.c (mono_reflection_create_runtime_class): take the
5093         mono_domain_lock in this method. Prevents deadlocks
5094
5095 2005-06-22  Martin Baulig  <martin@ximian.com>
5096
5097         * loader.c (method_from_methodspec): Fix #75330.
5098
5099 2005-06-22  Martin Baulig  <martin@ximian.com>
5100
5101         * reflection.c (type_get_qualified_name): Use
5102         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5103         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5104         argument; use it if we don't have an assembly name.
5105
5106 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5107
5108         * object.c: In mono_message_init, set "copy out" flag for in
5109         parameters with the [Out] flag.
5110
5111 2005-06-21  Martin Baulig  <martin@ximian.com>
5112
5113         * class.c
5114         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5115         and MONO_TYPE_PTR.
5116
5117 2005-06-21  Martin Baulig  <martin@ximian.com>
5118
5119         * class.c (mono_class_init): Don't initialize `class->fields' for
5120         generic instances since they're initialized again in
5121         compute_field_layout(). 
5122         (compute_field_layout): Set the field's `generic_info' here; fix
5123         #75320. 
5124
5125 2005-06-21  Martin Baulig  <martin@ximian.com>
5126
5127         * class-internals.h
5128         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5129
5130         * metadata.c (mono_metadata_generic_method_equal): Also
5131         distinguish the `generic_class'; fixes #75334.
5132
5133 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5134
5135         * domain.c:
5136         * appdomain.c:
5137         * domain-internals.h:
5138         * reflection.c: 'domain_assemblies' field is now protected by its own
5139         lock. Don't call into managed code to run the AssemblyLoad event if we
5140         now there are no registered delegates for it.
5141
5142 2005-06-20  Martin Baulig  <martin@ximian.com>
5143
5144         * class.c (mono_class_is_assignable_from): Use a custom version of
5145         mono_class_has_parent() to make things work for generic instances;
5146         fix #75300.
5147
5148 2005-06-20  Martin Baulig  <martin@ximian.com>
5149
5150         * loader.c (method_from_methodspec): Apply a patch from
5151         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5152
5153 2005-06-20  Martin Baulig  <martin@ximian.com>
5154
5155         * class.c (mono_class_init): Reverted Zoltan's last change; it
5156         breaks generics.
5157
5158 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5159
5160         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5161
5162 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5163
5164         * socket-io.c: fix the index in the socket array for writable/error
5165         sockets. Fixes bug #75306.
5166
5167 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5168
5169         * class.c (mono_class_init): Allow interfaces to have static ctors.
5170
5171 2005-06-17  Martin Baulig  <martin@ximian.com>
5172
5173         * loader.c (method_from_methodspec): Use `context->container' when
5174         parsing the `gmethod->inst'.
5175
5176 2005-06-17  Martin Baulig  <martin@ximian.com>
5177
5178         * class.c (mono_type_get_name_recurse): Don't add the assembly
5179         name for type arguments.
5180
5181 2005-06-15  Martin Baulig  <martin@ximian.com>
5182
5183         * reflection.c (mono_image_get_inflated_method_token): Encode
5184         correct klass; fixes #75260.
5185
5186 2005-06-13 Michal Moskal <malekith@nemerle.org>
5187
5188         * icall.c: Make GetCorrespondingMethod/Constructor take
5189         MonoReflectionMethod method not MonoMethod. Removed
5190         MonoType.GetCorrespondingField, and make
5191         MonoGenericType.GetCorrespondingField take name not
5192         MonoClassField.
5193
5194 2005-06-13  Michal Moskal <malekith@nemerle.org>
5195
5196         * reflection.c (field_encode_signature, encode_locals):
5197          Make sizes of buffers for types larger (for big generic types).
5198          (create_generic_typespec,
5199          mono_reflection_sighelper_get_signature_local,
5200          mono_reflection_sighelper_get_signature_field):
5201          Add asserts for too small buffers.
5202
5203 2005-06-15  Martin Baulig  <martin@ximian.com>
5204
5205         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5206         if our parent is not a dynamic type.
5207
5208 2005-06-15  Martin Baulig  <martin@ximian.com>
5209
5210         * class-internals.h (MonoTypeNameFormat): New enum.
5211
5212         * class.c
5213         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5214         (mono_type_get_full_name): Removed.
5215         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5216         argument instead of the boolean's.
5217
5218         * icall.c (ves_icall_System_MonoType_getFullName):
5219         Added `gboolean assembly_qualified'.    
5220
5221         * reflection.h
5222         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5223
5224         * reflection.c (mono_reflection_parse_type): Parse the new type
5225         name format.
5226
5227 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5228
5229         * icall.c: no need to convert from utf16 to utf8 and then back again
5230         after the call to GetLogicalDrives.
5231
5232 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5233
5234         * icall.c: frombase64. Fix problems exposed by new tests.
5235
5236 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5237
5238         * icall.c: added internal calls for converting char [] and strings in
5239         base64 into byte [].
5240
5241 2005-06-10  Martin Baulig  <martin@ximian.com>
5242
5243         * class.c (mono_class_create_generic_2): Read the nested classes
5244         from the metadata rather than from `gklass->nested_classes' since
5245         `gklass' might not be initialized yet.
5246
5247 2005-06-09  Duncan Mak  <duncan@novell.com>
5248
5249         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5250         all public headers. Fixes #74919.
5251
5252 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5253
5254         * domain.c: The key for proxy_vtable_hash is now a pointer
5255         array. Added new GHashFunc and GCompareFunc functions for this.
5256
5257         * class.h: The list of interfaces in MonoRemoteClass is known in
5258         advance and can't grow (we create a new MonoRemoteClass if needed),
5259         so now the interface array can be allocated together with
5260         MonoRemoteClass.
5261         
5262         * object.c: Added a new method create_remote_class_key.
5263         Fixed mono_remote_class so it does not depend on
5264         mono_upgrade_remote_class.
5265         Removed extend_interface_array.
5266         Added new method clone_remote_class(), which makes a copy of a remote
5267         class and adds a new interface or class to it.
5268         mono_upgrade_remote_class() now creates a new remote class (or gets
5269         it from the cache) if an vtable upgrade is needed. In this way
5270         we make sure that other objects sharing the same remote class
5271         don't get the new vtable with unwanted interfaces.
5272         
5273         * object-internals.h:
5274         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5275         
5276         * marshal.c: Track changes in mono_upgrade_remote_class().
5277
5278 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5279         * icall.c: Add runtime methods for obtaining members of inflated
5280         class, which were created from supplied non-inflated members. It
5281         is used in internal Get{Method,Constructor,Field} methods in
5282         System.Type
5283
5284 2005-06-09  Martin Baulig  <martin@ximian.com>
5285
5286         * reflection.c
5287         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5288
5289 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5290         * reflection.c (mono_image_basic_init): Define
5291         Version in MonoDynamicAssembly. 
5292         
5293 2005-06-08  Martin Baulig  <martin@ximian.com>
5294
5295         Fix #75136.
5296
5297         * loader.c
5298         (mono_method_signature_full): New public method; takes a
5299         `MonoGenericContext *'.
5300         (find_method): Use mono_method_signature_full() and pass the
5301         klass'es context to it.
5302
5303         * class.c (mono_class_is_inflated_method): Use
5304         mono_method_signature_full() and pass the context to it.
5305
5306 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5307
5308         * object.c: add proper locking in mono_remote_class_vtable(),
5309         fixes possible memory corruption.
5310
5311 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5312
5313         * marshal.c (mono_remoting_marshal_init): set
5314         initialized after initialization.
5315
5316 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5317
5318         * locales.c : hush.
5319
5320 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5321
5322         * object.c (extend_interface_array): fix really silly
5323         memory corrupting / comparison bug.
5324
5325 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5326
5327         * reflection.c: Functions added to support the creation
5328         of CustomAttributeData, which includes Attribute data
5329         used by ReflectionOnly methods.
5330
5331         * reflection.h:  mono_reflection_get_custom_attrs_data and
5332          mono_custom_attrs_data_construct added (functions exposed).
5333
5334          * icall.c: Added mono_reflection_get_custom_attrs_data
5335          as icall.
5336         
5337 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5338
5339         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5340         lupus's request.
5341
5342 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5343
5344         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5345
5346         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5347         dynamic DllImportAttribute.
5348
5349         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5350         dynamic DllImportAttribute.
5351
5352         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5353         Fixes #75162.
5354
5355 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5356
5357         * threads.c: avoid segfault when an unstarted thread is aborted.
5358
5359 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5360
5361         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5362         Returns the name and version of the runtime for reporting.
5363
5364 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5365
5366         * appdomain.c: bump corlib version.
5367         * object-internals.h: new field in MonoReflectionAssembly.
5368
5369 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5370
5371         * object-internals.h: Carlos forgot to add this field.
5372
5373 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5374
5375         * icall.c: Added create_version to create instances
5376         of Version of MonoReflectionAssemblyName. This change helps
5377         the AssemblyName tests to keep running fine.
5378         
5379 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5380   
5381         * object.c (mono_method_return_message_restore): A somehow less
5382         intrusive fix for #75138.
5383
5384 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5385
5386         * object.c (mono_method_return_message_restore): Fix computation
5387         of expected number of out args.
5388
5389 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5390
5391         * reflection.c (mono_image_get_method_info): Fix the case when the
5392         charset is empty.
5393
5394 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5395
5396         * object.c: Added missing null check in
5397           mono_method_return_message_restore.
5398
5399 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5400
5401         * reflection.c (mono_image_get_method_info): Handle the case when
5402         dllentry is empty.
5403
5404 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5405
5406         * object.c: When creating the vtable for a proxy, take into account
5407         all inherited interfaces, not only the ones registered in
5408         iclass->interfaces. This fixs bug #74996.
5409         Also, in mono_method_return_message_restore, verify that the array
5410         of out args has the expected lengh.
5411
5412 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5413
5414         * socket-io.c: update the timeout in Poll when the call is interrupte.
5415
5416 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5417
5418         * socket-io.c: support abort/suspend in Select_internal after last
5419         change.
5420
5421 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5422
5423         * threadpool.c: remove warning.
5424
5425 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5426
5427         * icall.c:
5428         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5429         removing the 1024 limit from select(). Runtime part of the fix for
5430         bug #71203.
5431
5432 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5433
5434         * socket-io.c: when resolving the addresses for the same
5435         host returned by gethostname(), get the local IPs from the interface
5436         list. Loopback addresses are discarded if the are interfaces up with
5437         non-loopback ones. Fixes bug #63265.
5438
5439 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5440
5441         * appdomain.c, verify.c, object-internals.h, reflection.c:
5442         bumped corlib number to 36, and added new extra_flags field
5443         to ReflectionMethodBuilder and friends.  Fixes #75060.
5444
5445 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5446
5447         * gc.c: register a new weak link only if the object is non-null
5448         (fixes bug#75047).
5449
5450 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5451
5452         * culture-info.h : short time pattern too.
5453
5454 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5455
5456         * culture-info.h : expand long time pattern string length.
5457
5458 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5459
5460         * culture-info-table.h : update (more French date format; #72788).
5461
5462 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5463
5464         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5465         the method is static. Fixes #75029.
5466
5467 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5468
5469         * reflection.c: Update the table_idx field of method builders after
5470         saving the module, since it can change. This is a workaround for
5471         bug #74914. 
5472
5473 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5474
5475         * culture-info-table.h : update (additional French date format).
5476
5477 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5478
5479         * icall.c (ves_icall_type_Equals): Revert last change.
5480         
5481         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5482
5483         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5484
5485 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5486
5487         * class-internals.h: Added executioncontext_class field to 
5488         MonoDefaults structure.
5489         * domain.c: Cache System.Threading.ExecutionContext class in 
5490         mono_defaults.
5491         * object.c: Capture the ExecutionContext for asynchroneous calls in
5492          mono_async_result_new.
5493         * object-internals.h: Added execution_context and original_context 
5494         fields to MonoAsyncResult. Added execution_context to MonoThread.
5495         * security-manager.c|.h: Added mono_get_context_capture_method to 
5496         return the capture method (if required by the security manager or by
5497         the framework version used).
5498         * threadpool.c: Apply capture (if present) ExecutionContext in 
5499         mono_async_invoke and revert to original context after it completes.
5500
5501 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5502
5503         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5504
5505 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5506
5507         * culture-info-table.h : zh-CHT related workaround.
5508
5509 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5510
5511         * marshal.c (emit_marshal_custom): Add some error checking and call the
5512         methods in the ICustomMarshaler interface. Fixes #74875.
5513         
5514         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5515         native->managed wrappers.
5516
5517 2005-05-12  Martin Baulig  <martin@ximian.com>
5518
5519         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5520         here and use the loader lock.
5521
5522         * mono-debug.c: Properly lock when the debugger is not attached.
5523         (mono_debug_init): Release the initial lock if we're not running
5524         in the debugger.
5525
5526 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5527
5528         * marshal.c (emit_marshal_custom): Pass through NULL values without
5529         calling the custom marshalling routines.
5530
5531         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5532         conversion in structures. Fixes #74882.
5533
5534 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5535
5536         * culture-info-table.h : zh-* cultures were missing.
5537
5538 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5539
5540         * threads.c: Added a new event background_change_event which is signaled
5541         when a thread changes its background mode.
5542         Moved here several checks previously done in managed code. The checks
5543         require the thread lock, and using the thread lock in managed code
5544         can result in deadlocks.
5545         Merged Start_internal and Thread_internal into a single method. Now 
5546         Thread_internal does all work of creating and starting a thread.
5547         Added icalls for setting and getting the state of the object. Moved from
5548         managed code to avoid locking there.
5549         Added wait_for_tids_or_state_change() which is called instad of
5550         wait_for_tids when waiting for non-backround threads to end. This method
5551         will return if one of the threads ends or the background_change_event
5552         is signaled.
5553         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5554         the background mode. This method signals the background_change_event
5555         event.
5556         * icall.c:
5557         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5558         removed Start_internal.
5559         
5560 2005-05-11  Martin Baulig  <martin@ximian.com>
5561
5562         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5563         to order of some fields to get proper alignment on 64-bit machines.
5564
5565 2005-05-11  Martin Baulig  <martin@ximian.com>
5566
5567         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5568         changes as they're broken and completely fuck up the debugger.
5569
5570         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5571
5572 2005-05-10  Martin Baulig  <martin@ximian.com>
5573
5574         * reflection.c (mono_reflection_generic_class_initialize): Don't
5575         call mono_class_setup_parent() here.
5576
5577 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5578
5579         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5580         send/receive timeout use an integer in milliseconds. We were using a
5581         struct timeval.
5582
5583 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5584
5585         * locales.c:
5586         (internal_get_cultures): reserve the first slot of the array for the
5587         InvariantCulture, which will be filled in managed code.
5588
5589 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5590
5591         * reflection.c (mono_image_fill_module_table): Initialize the
5592         GENERATION field as well.
5593
5594 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5595
5596         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5597         Monitor.Enter on the object.
5598
5599 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5600
5601         * threads.c: Enable the wait for running threads when exiting.
5602         * icall.c: Suspend all threads before exiting.
5603
5604 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5605
5606         * assembly.c (mono_assembly_load_reference): Fix warning.
5607
5608 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5609
5610         * threadpool.c: changed the default number of threads per cpu. From now
5611         on, the default will be 20 + (5 * number of cpus) instead of 50.
5612
5613 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5614
5615         * loader.c (mono_method_get_signature_full): Add locking here.
5616
5617 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5618
5619         * appdomain.c: Moved methods for parsing and freeing assembly
5620         names to assembly.c.
5621         * assembly.c, domain-internals.h: Created public methods for parsing
5622         assembly names. Fixed mono_assembly_load_with_partial_name:
5623         it now finds the best match, taking into account the version,
5624         token and culture specified in the partial name. Also return
5625         the latest version if no version information is specified.
5626
5627 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5628
5629         * threadpool.c: replace check for SocketAsyncCall class.
5630
5631 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5632
5633         * threadpool-internals.h:
5634         * Makefile.am: added threadpool-internals.h
5635
5636         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5637         that happen in threadpool threads (tested on MS).
5638         (mono_thread_pool_remove_socket): new function that dispatch any pending
5639         AIO call on a socket that is closing. By now only epoll really needs it,
5640         as select/poll wake up when the socket closes.
5641
5642
5643         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5644
5645 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5646
5647         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5648
5649 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5650
5651         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5652
5653 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5654
5655         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5656         has an abort request, convert it into a suspend request.
5657
5658 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5659
5660         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5661         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5662         is not supported yet.
5663
5664 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5665
5666         * image.c: register assemblies loaded from data (bundles) in the loaded
5667         assemblies hash. Fixes bug #74772.
5668
5669 2005-04-29  Martin Baulig  <martin@ximian.com>
5670
5671         * class.c (mono_type_get_name_recurse): Update to the new naming
5672         schema from the latest .NET 2.x beta2.
5673         (mono_class_setup_vtable_general): If we're a generic instance,
5674         copy the vtable from our generic type definition and inflate all
5675         the methods in it.
5676
5677         * loader.c (find_method): Update to the new naming schema from the
5678         latest .NET 2.x beta2.
5679
5680 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5681
5682         * class.c (mono_class_init): Add a mono_loader_unlock to the
5683         #74734 fix.
5684
5685 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5686
5687         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5688         suspend_all_other_threads () call for the time being, since it can hang.
5689
5690         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5691         the background threads to exit, since it can also hang.
5692
5693         * class.c (mono_class_init): Applied patch from Ankit Jain 
5694         (radical@gmail.com). Avoid pending init errors when a field refers
5695         to a nested class using a typeref. Fixes #74734.
5696
5697         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5698         this for dynamic modules.
5699
5700 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5701
5702         * threads.c: don't wait for threads that are in the process of aborting
5703         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5704         and waiting for background threads to finish. This makes xsp and
5705         mod-mono-server exit without random length delays and/or hangs.
5706
5707 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5708
5709         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5710
5711 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5712
5713         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5714         dynamic types to prevent infinite loops. Fixes #74727.
5715
5716         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5717         ..._is_assignable_to.
5718
5719 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5720
5721         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5722
5723 2005-04-25  Martin Baulig  <martin@ximian.com>
5724
5725         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5726
5727         * domain.c
5728         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5729
5730         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5731
5732         * reflection.c (build_compressed_metadata): Set metadata header
5733         version to 2.0.
5734
5735 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5736
5737         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5738         number into an integral and a decimal part. Fixes #70473.
5739
5740         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5741
5742 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5743
5744         * culture-info-table.h : reflected the latest locale-builder output.
5745
5746 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5747
5748         * threadpool.c: check for SuspendRequested too when deciding if
5749         mono_thread_interruption_checkpoint should be called.
5750
5751 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5752
5753         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5754         * threads.c: remove interruption_mutex and use Interlocked instead. When
5755         suspending all the threads, wait for all the suspended events at once.
5756         If we're shutting down and get an APC that is going to be queued,
5757         call mono_thread_execute_interruption immediately, as the thread might
5758         be sleeping on a pthread condition or mutex.
5759
5760         * icall.c: call mono_runtime_set_shutting_down before suspending the
5761         threads.
5762
5763         Fixes bug #74693. And now xsp is happier when exiting.
5764
5765 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5766
5767         * loader.c (mono_stack_walk): Fix #74690.
5768
5769 2005-04-22  Martin Baulig  <martin@ximian.com>
5770
5771         * mono-debug.h (MonoDebugMethodJitInfo): Added
5772         `MonoDebugMethodJitInfo *jit'.
5773
5774         * mono-debug.c (mono_debug_read_method): Cache the
5775         MonoDebugMethodJitInfo in `address->jit'.
5776         (mono_debug_free_method_jit_info): New public method.
5777
5778 2005-04-22  Martin Baulig  <martin@ximian.com>
5779
5780         * class.c (mono_class_is_assignable_from): Disallow
5781         type parameter -> interface.
5782
5783 2005-04-21  Dick Porter  <dick@ximian.com>
5784
5785         * threads.c (mono_thread_create): Turn an assertion into an error.
5786
5787 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5788
5789         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5790         
5791         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5792         Fix some gcc 4.0 warnings.
5793
5794 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5795
5796         * file-io.c: fix alt dir separator char on unix systems
5797         and cleanup (fixes bug #71214).
5798
5799 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5800
5801         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5802         a call to a remote domain, since the method may be an
5803         interface method in the client domain. This fixes bug #74192.
5804
5805 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5806
5807         * threadpool.c: recv/send are now performed before going back to managed
5808         code to save one transition.
5809
5810 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5811
5812         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5813
5814         * metadata/threadpool.c: removed hack to workaround the bug above.
5815
5816         Fixes bug #74618.
5817
5818 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5819
5820         * reflection.c reflection.h: Fix handling of parameter defaults in
5821         dynamic methods. Also fixes handling of parameter attributes.
5822         Fixes #74609.
5823
5824         * mono-debug.c (mono_debug_close_image): Fix warning.
5825
5826 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5827
5828         * socket-io.h: replaced old unused field with new 'blocking'.
5829         * threadpool.c: restore socket blocking state on windows(tm).
5830
5831 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5832
5833         * icall.c: don't return the codebase in the AssemblyName[] returned by
5834         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5835         * object-internals.h: Removed FIXME (fields were presents) and fixed
5836         versioncompat declaration.
5837
5838 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5839
5840         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5841         not closed, so don't cleanup when it happens.
5842
5843 2005-04-13  Chris Toshok  <toshok@ximian.com>
5844
5845         * mono-debug-debugger.h: change prototype for
5846         mono_debugger_lookup_type.
5847
5848         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5849         this function, although it should probably be named
5850         mono_debugger_init_type.
5851
5852 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5853
5854         * threadpool.c: fix non-AIO case.
5855
5856 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5857
5858         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5859         the built-in profiler to measure just JIT compilation times.
5860
5861 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5862
5863         * threadpool.c: the epollfd might be closed by another thread at
5864         any time, so ignore EBADF at treat it as a "we're closing" sign.
5865
5866 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5867
5868         * threadpool.c: release the semaphores with a count equals to the number
5869         of working threads in both IO and regular pools. Fixed typo that messed
5870         up the count of IO pool threads. Don't initialize the pipe handles if
5871         we're using epoll.
5872
5873 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5874
5875         * threadpool.c: some systems don't like a NULL when deleting the socket
5876         from epoll.
5877
5878 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5879
5880         * threadpool.c: fix semaphore allocation.
5881
5882 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5883
5884         * threadpool.c: added epoll() based implementation for asynchronous IO
5885         that is used instead of the default poll() when available.
5886         It can be disabled by setting MONO_DISABLE_AIO.
5887
5888 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5889
5890         * threadpool.c: windows needs 'closesocket' and instead of returning
5891         0 when the stream is closed while in select, it returns -1. Fixes bug
5892         #74573.
5893
5894 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
5895
5896         * class.c (class_compute_field_layout): Fix the regression caused by
5897         the previous try.
5898
5899 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5900
5901         * threadpool.c: separate pool for socket async. IO.
5902         * threadpool.h: mono_max_worker_threads is not a global any more.
5903
5904 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5905
5906         * class.c (class_compute_field_layout): Fix #74549.
5907
5908 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5909
5910         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5911         use 2 connected sockets instead.
5912
5913 2005-04-08  Miguel de Icaza  <miguel@novell.com>
5914
5915         * mono-config.c: Add new entry point for mkbundle
5916         mono_config_parse_memory. 
5917
5918 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5919
5920         * threadpool.c: removed another unused function.
5921
5922 2005-04-08  Ankit Jain  <radical@corewars.org>
5923
5924         * reflection.c (get_default_param_value_blobs): Add 'types'
5925         parameter to get the types encoded in the constant table.
5926         (mono_param_get_objects): Use the type from the constant table,
5927         not the type of the parameter, when creating default values.
5928         Handle null default values correctly.
5929
5930 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5931
5932         * file-io.c:
5933         * file-io.h:
5934         * threadpool.c:
5935         * threadpool.h:
5936         * icall.c:
5937         * socket-io.c: removed dead code for async IO.
5938
5939 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5940
5941         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5942
5943         * threadpool.c: intercept socket async. calls and pass them to a thread
5944         that is polling and dispatching the job items to the threadpool as
5945         socket become ready. Fixes bugs #71217, #71933.
5946
5947         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5948         between char and short/ushort arrays.
5949
5950         * socket-io.c: remove dead code.
5951
5952 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5953
5954         * locales.c,
5955           icall.c : removed InternalToUpper_Comp() and
5956           InternalToLower_Comp().
5957
5958 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5959
5960         * char-conversions.h : The tables were incorrectly generated. Should
5961           be generated against invariant culture.
5962
5963 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5964
5965         * object.c (mono_runtime_invoke_array): Fix return value when 
5966         passing pre-created valuetype objects to ctors.
5967
5968         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
5969         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5970         Fixes #74338.
5971
5972 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
5973
5974         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
5975         only used with --security and hides the wrong corlib version error.
5976
5977 2005-03-30  Joshua Tauberer  <tauberer@for.net>
5978
5979         * class.c: Changed mono_class_name_from_token so that types
5980         outside of a namespace don't have an initial period.  Improved
5981         the g_warning message used in _mono_class_get when loading
5982         fails.
5983         * assembly.c: In mono_assembly_load_reference, when an assembly
5984         can't be found, "No such file or directory" is misleading and
5985         unhelpful because a few paths were checked for the presence of
5986         the assembly.  When that happens (ENOENT), display a nicer
5987         message indicating the directories that were searched.  In all
5988         cases, the warning is made easier to read for non-hackers.
5989
5990 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5991
5992         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5993         project/solution.
5994         * appdomain.h|domain.c: Removed inline from functions.
5995         * appdomain.c: Reduced warnings when compiling on windows.
5996         * icall.c: Fixed output_debug declaration to gunichar2*.
5997         * mono-config.c: Reduced warnings when compiling on windows.
5998         * rand.c: Added missing "windows.h". Added missing return value.
5999         * rawbuffer.c: Added missing winsock2.h for windows.
6000         * sysmath.h: Added mono-compiler.h header to allow/ease 
6001         compilation with non-GCC compilers.
6002         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6003         Removed cast warnings.
6004
6005         Adapted from the work of J Lothian (for VC6).
6006
6007 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6008
6009         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6010         from default_path.
6011
6012 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6013
6014         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6015         the 2.0 profile.
6016
6017 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6018
6019         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6020         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6021         stuff, and it would probably use $(prefix)/share rather than
6022         $(prefix)/lib.
6023
6024 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6025
6026         * console-io.c: added 2 includes that might be missing.
6027
6028 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6029
6030         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6031         profile.
6032
6033         * reflection.c (create_custom_attr): Allocate the params array using
6034         alloca so it gets GC tracking.
6035
6036 2005-03-23  Chris Toshok  <toshok@ximian.com>
6037
6038         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6039         out some spew.
6040
6041 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6042
6043         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6044         changes to pick up any changes in prefix, etc.
6045
6046 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6047
6048         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6049         
6050         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6051         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6052
6053 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6054
6055         * class-internals.h object-internals.h class.c reflection.c: Extend the
6056         mono_lookup_dynamic_token () function to return the class of the
6057         token as well. 
6058
6059         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6060         well. Fixes #73848.
6061
6062 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6063
6064         * security-manager.c: Skip inheritance checks for intra-corlib
6065         class inheritance and method overrides. This skips a lot of checks
6066         and (anyway) permissions cannot work until corlib is loaded.
6067
6068 2005-03-23  Martin Baulig  <martin@ximian.com>
6069
6070         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6071         MONO_TYPE_GENERICINST.  
6072
6073 2005-03-23  Martin Baulig  <martin@ximian.com>
6074
6075         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6076
6077 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6078
6079         * class.c: added locking comments to some functions.
6080         Cache the interface offsets arrays (saves about 20 KB
6081         of runtime memory in a typical app).
6082         Reduce the time overhead in mono_class_setup_supertypes ().
6083
6084 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6085
6086         * icall.c: speedup and fix leaks in GetMethodsByName and
6087         GetPropertiesByName.
6088
6089 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6090
6091         * reflection.c: some locking fixes.
6092
6093 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6094
6095         * metadata.c: added missing break in case statement.
6096
6097 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6098
6099         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6100         typedbyref return values. Fixes #73941.
6101
6102 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6103
6104         * security-manager.c|h: Added demandunmanaged method and 
6105         suppressunmanagedcodesecurity class to MonoSecurityManager.
6106         Renamed aptc class to allowpartiallytrustedcallers.
6107
6108 2005-03-17  Martin Baulig  <martin@ximian.com>
6109
6110         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6111
6112 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6113
6114         * file-io.c: disabled file async. IO using aio_*. It uses the
6115         threadpool now. Workaround for bug #73718.
6116
6117 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6118
6119         * assembly.h, mono-config.c: added code to deal with bundled configs
6120         for bundled assemblies.
6121
6122 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6123
6124         * *.c, private.h: cleanup, removing old private.h header file.
6125
6126 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6127
6128         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6129         and throw_on_unmappable_char attributes.
6130
6131 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6132
6133         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6134         _ProcessName_internal.
6135
6136 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6137
6138         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6139         #73631.
6140
6141         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6142         are no longer used.
6143
6144 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6145
6146         * object.c (compute_class_bitmap): Add support for generics. Fixes
6147         #73527.
6148
6149 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6150
6151         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6152
6153 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6154
6155         * filewatcher.c: commented out the code for windows watcher, as we don't
6156         use it (we use the managed implementation instead).
6157
6158 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6159
6160         * object-internals.h (MonoThread): Remove 'unused1' field.
6161
6162         * appdomain.c: Bump corlib version.
6163
6164         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6165
6166         * reflection.c (mono_reflection_create_runtime_class): Remove the
6167         AssemblyBuilder.Save optimization since it causes too many problems.
6168
6169 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6170
6171         * exception.c|h: Added mono_get_exception_reflection_type_load to
6172         create a ReflectionTypeLoadException object.
6173         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6174         to return NULL is a InheritanceDemand fails during reflection. Updated
6175         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6176         ReflectionTypeLoadException if an InheritanceDemand fails during 
6177         reflection. Added icall mapping for GetLinkDemandSecurity.
6178         * security-manager.c|h: Added ves_icall_System_Security_
6179         SecurityManager_GetLinkDemandSecurity internal call to return the
6180         class and methods permissions set for a LinkDemand. Removed unused
6181         fields in MonoSecurityManager.
6182
6183 2005-03-10  Martin Baulig  <martin@ximian.com>
6184
6185         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6186         it's a generic instance.
6187
6188 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6189
6190         * reflection.c (mono_get_object_from_blob): Applied patch from
6191         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6192
6193         * class.c (mono_class_is_assignable_from): Another try at fixing 
6194         #73469 without breaking anything.
6195
6196 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6197
6198         * class.c: (mono_class_is_assignable_from): Revert the last changes
6199         since they don't work with generics.
6200         
6201         * class.c (mono_class_is_assignable_from): Fix build bustage.
6202
6203         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6204         the managed IsAssignableFrom method. Fixes #73469.
6205
6206         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6207         function.
6208
6209 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6210
6211         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6212         memory when the remoting callback does not sets the out arguments.
6213         Fixes #73007.
6214
6215         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6216         by mistake.
6217
6218         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6219
6220         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6221
6222         * appdomain.c: Bump corlib version.
6223
6224 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6225
6226         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6227         function.
6228
6229         * threads.c (mono_thread_attach): Detect threads which are not started
6230         by the GC pthread wrappers.
6231
6232 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6233
6234         * icall.c: Added new icall for RNG.
6235         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6236         single handle on Linux to access /dev/urandom and fix #73183.
6237
6238 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6239
6240         * object.c: setting the new vtable in a transparent proxy object must
6241         not change the GC descriptor.
6242
6243 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6244
6245         * object.c: fixed compilation without GCJ support.
6246         * reflection.c: for runtime-created types ensure klass->has_references
6247         is correct (bug #73215).
6248
6249 2005-03-02  Martin Baulig  <martin@ximian.com>
6250
6251         * class.c (mono_class_is_assignable_from): Make this work if
6252         `oklass' is a generic instance; fixes #72831.
6253
6254 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6255
6256         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6257         with hasthis set.
6258         
6259         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6260
6261         * marshal.c: Reorganize native->managed marshalling code to also use
6262         the emit_marshal_... functions.
6263
6264 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6265
6266         * object.c: typed allocs have issues with bitmap sizes > 30,
6267         so check for max_set >= 30.
6268
6269 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6270
6271         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6272         managed code. Fixes #73012.
6273
6274         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6275
6276         * metadata.c reflection.c: Load/Emit elem_mult as well.
6277         
6278         * metadata.h (MonoMarshalSpec): Add comment.
6279
6280         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6281
6282         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6283         num_elem to -1 if not given.
6284
6285         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6286
6287         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6288         given values.
6289
6290 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6291
6292         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6293
6294 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6295
6296         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6297
6298         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6299
6300 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6301
6302         * object.c: generalized the reference bitmap creation
6303         and added hooks for the new GC.
6304         * class-internals.c: removed the gc_bitmap field from MonoClass.
6305
6306 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6307
6308         * domain.c: help the compiler to produce better code
6309         in mono_jit_info_table_find ().
6310
6311 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6312
6313         * object.c: make all allocations look typed.
6314
6315 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6316
6317         * socket-io.c: load Mono.Posix if it's not loaded already
6318         (fixes bug#73033).
6319
6320 2005-02-24  Martin Baulig  <martin@ximian.com>
6321
6322         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6323         * reflection.c (dup_type): Likewise.
6324
6325 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6326
6327         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6328         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6329
6330 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6331
6332         * domain.c, threads.c, object-internals.h: make the critical thread
6333         local vars use the fast access mode (even when we're compiled in
6334         a lib). Provide accessors to be used by the jit during codegen.
6335
6336 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6337
6338         * appdomain.c: Changed hook functios behavior to include
6339         support for the reflection only assemblies. Some icalls were changed
6340         to support the mentioned assemblies too. Signatures of static methods
6341         try_assembly_resolve and real_load now have an additional parameter:
6342         refonly.
6343
6344         * assembly.c: General changes to mono_assembly_ methods to support
6345         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6346         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6347         suffix, to support an additional gbool parameter to specify whether
6348         the assembli is reflection only or not. Created some new hook functions 
6349         to add support for reflection only assemblies. Signatures of static 
6350         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6351         have now an additional parameter: refonly.
6352
6353         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6354         indicating whether the assembly is reflection only or not.
6355
6356         * exception.c: Add mono_get_exception_invalid_operation.
6357
6358         * icall.c: Throw an InvalidOperationException when trying to invoke
6359         a property/method/event, or trying to set/get the value of a field.
6360         Also add an icall to retrieve the ref_only flag to the
6361         MonoReflectionAssembly.
6362
6363 2005-02-23  Chris Toshok  <toshok@ximian.com>
6364
6365         Part of fix for #72827.
6366         * mono-debug.c (mono_debug_add_method): add lexical block data to
6367         the info we write.  Kind of a hack at the moment - we copy the
6368         lexical block info from the MonoDebugMethodInfo to the
6369         MonoDebugMethodJitInfo here, before writing it.
6370         (mono_debug_read_method): read the lexical block info.
6371
6372         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6373
6374         * debug-mono-symfile.h: add lexical block support.
6375
6376         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6377         support.
6378
6379 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6380
6381         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6382
6383         * object.c (mono_runtime_free_method): Call mono_free_method () and
6384         put the TODOs there.
6385
6386         * loader.c (mono_free_method): Free up most memory allocated for 
6387         dynamic methods.
6388
6389 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6390
6391         * reflection.c: properly flag a Type argument to a
6392         named custom attr value (bug #72248).
6393
6394 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6395
6396         * reflection.c: reduce code duplication in named custom
6397         attribute encoding.
6398
6399 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6400
6401         * reflection.c: properly encode custom attrs of type object
6402         (bug #72649).
6403
6404 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6405
6406         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6407
6408 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6409
6410         * socket-io.c: load System.dll if it's not loaded already
6411         (bug #72850 and #70477).
6412
6413 2005-02-21  Martin Baulig  <martin@ximian.com>
6414
6415         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6416         generic instances.
6417
6418 2005-02-21  Martin Baulig  <martin@ximian.com>
6419
6420         * reflection.c (mono_image_build_metadata): We also need to
6421         "fixup" the MethodImpl table after we computed the final method
6422         indices.  Call fixup_methodimpl() to do that.
6423         (fixup_methodimpl): New private method.
6424
6425 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6426
6427         * assembly.c: special case mscorlib.dll (bug#72536),
6428         patch from Carlos Alberto Cortez.
6429
6430 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6431
6432         * threads-types.h threads.c: Fix build bustage.
6433
6434         * threads.c: Use a union for long<->double conversions.
6435
6436         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6437         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6438
6439         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6440         containing the checkpoint call with NOT_TAKEN.
6441         
6442         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6443         checkpoint before pushing the arguments, so they won't have to be
6444         spilled to stack.
6445
6446 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6447
6448         * domain.c, assembly.c, domain-internals.h: make some data
6449         const and relocation-free.
6450
6451 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6452
6453         * object.c, appdomain.c, class-internals.h: introduce the
6454         MonoClassRuntimeInfo structure to hold the info needed to
6455         use a class at runtime. Made mono_class_vtable() lock-free
6456         for all the appdomains.
6457
6458 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6459
6460         * metadata-internals.h, image.c: introduce a per-image mempool to
6461         be used for memory that has the same lifetime as the image.
6462
6463 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6464
6465         * domain.c: In mono_init_internal(), instead of selecting the first
6466         runtime version supported by an executable, get a list of all
6467         supported versions and select the one for which an mscorlib exists
6468         (since even if the runtime supports a given version, it doesn't mean
6469         that the framework for that version is installed).
6470         Modified get_runtimes_from_exe to support this behavior.
6471         In supported_runtimes, added information about additional system
6472         assembly versions.
6473         
6474         * assembly.c: Added support for more than one system assembly version
6475         per runtime version. Updated the assembly list.
6476         In mono_assembly_remap_version, removed the initial version check,
6477         since we don't know to which version we need to compare until we
6478         get the version set on which the assembly is based.
6479         Moved the code for loading corlib into the new method
6480         mono_assembly_load_corlib(), so it can be used by the initialization
6481         code.
6482         
6483         * domain-internals.h: Updated data structures and added declaration
6484         for mono_assembly_load_corlib.
6485
6486 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6487
6488         * reflection.c (resolve_object): Fix the creation of the signature in 
6489         the SignatureHelper case.
6490
6491         * assembly.c (mono_assembly_remap_version): Fix binary search.
6492         
6493 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6494  
6495         * class.c: Added inheritance check when a method is overloaded (from a
6496         virtual method or when implementing an interface) and when a class is
6497         inherited. Added functions to set a failure for a class and to 
6498         retreive the exception from a failure.
6499         * class-internals.h: Added fields to MonoClass to keep the exception
6500         information status for inheritance (or other exceptions) to be thrown
6501         later (i.e. not at load time).
6502         * object.c: Throw the inheritance SecurityException when a type is to 
6503         be created with either class or method inheritance violations.
6504         * reflection.c|h: Fix when getting declsec from a class. Removed 
6505         unrequired code for class. Improved sanity in parameter naming.
6506         * security-manager.c|h: Added functions to check for class and method
6507         inheritance.
6508
6509 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6510
6511         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6512         and has_finalize in dynamic types as well.
6513
6514 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6515
6516         * culture-info-table.h : fixed currency format for en-GB (and so on).
6517
6518 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6519
6520         * gc.c: ensure the GC handles never have 0 as a value.
6521
6522 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6523
6524         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6525         a pointer to a struct to unmanaged code. Fixes #72625.
6526
6527 2005-02-16  Martin Baulig  <martin@ximian.com>
6528
6529         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6530
6531 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6532
6533         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6534
6535 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6536
6537         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6538
6539         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6540         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6541         etc. Fixes #71471.
6542
6543         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6544
6545         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6546
6547 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6548
6549         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6550         changes to make the current context a field in MonoThread.
6551
6552 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6553
6554         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6555         the last change.
6556         
6557         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6558         extracted from mono_marshal_get_native_wrapper.
6559
6560         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6561         to create wrappers around native functions.
6562
6563         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6564         delegates for arbitrary function pointers. Fixes #71472.
6565
6566 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6567
6568         * threads.c: cleaned up the code a little.
6569
6570 2005-02-15  Martin Baulig  <martin@ximian.com>
6571
6572         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6573         the data table.
6574
6575         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6576         allocate larger chunks if needed.
6577
6578 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6579
6580         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6581         in by mistake.
6582
6583 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6584
6585         * domain.c: keep the domains in an array and ensure the domain ids
6586         are kept small, so they can be used as indexes to domain-specific data
6587         with a small memory overhead.
6588
6589 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6590
6591         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6592
6593 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6594
6595         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6596
6597 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6598
6599         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6600
6601         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6602         values.
6603
6604         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6605         
6606 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6607
6608         * domain-internals.h: add the hashtable here.
6609
6610         * class-internals.h: Remove `info' from MonoMethod
6611
6612         * domain.c: Add a new hashtable, jit_trampoline_hash
6613
6614 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6615
6616         * object.c: don't set the value of static fields
6617         (fixes bug#72494).
6618
6619 2005-02-11  Martin Baulig  <martin@ximian.com>
6620
6621         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6622         (mono_debug_add_method): Silently ignore the method if it's too big.
6623         (mono_debug_add_type): Likewise.
6624
6625 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6626
6627         * threads.c, appdomain.c: remove #ifdefs from the code.
6628
6629 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6630
6631         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6632         common security informations. This allows us to stay in unmanaged code
6633         when doing LinkDemand and it's special cases (except for the first 
6634         time for initialization). The flags a very much used with --security.
6635         * reflection.c|h: Added code to get declarative security attributes 
6636         for LinkDemand and InheritanceDemand. This required to refactor the
6637         existing code for Demand.
6638         * security-manager.c|h: Added new method fields for the special cases
6639         of LinkDemand.
6640
6641 2005-02-10  Martin Baulig  <martin@ximian.com>
6642
6643         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6644         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6645
6646 2005-02-10  Martin Baulig  <martin@ximian.com>
6647
6648         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6649         debugging code; this is almost a complete rewrite.
6650
6651         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6652
6653 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6654
6655         * domain.c, object.h: expose mono_string_equal () and 
6656         mono_string_hash ().
6657         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6658         it's implemented in managed code.
6659
6660 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6661
6662         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6663         lo leak objects between appdomains.
6664
6665 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6666
6667         * assembly.c: old compilers compilation fix from 
6668         robertj@gmx.net (Robert Jordan).
6669
6670 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6671
6672         * class-internals.h: Little reminder for the future.
6673
6674         * debug-helpers.c: Fix up wrapper_type_names
6675
6676 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6677
6678         * image.c, metadata-internals.h: when loading an image from a file,
6679         mmap all of it and use the same codepaths as when using a
6680         in-memory image: the code is simpler and we use less memory
6681         (both writable and readonly).
6682
6683 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6684
6685         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6686         API to alloc runtime data structures that need to be tracked by the
6687         GC and contain pointers.
6688         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6689         make the code more readable and eventually use a different GC.
6690
6691 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6692
6693         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6694         for out arguments.
6695         
6696 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6697
6698         * object.c: In release_type_locks(), don't release the cctor lock
6699         if it has already been released. This fixes a crash in the
6700         thread5 test.
6701
6702 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6703
6704         * gc.c, marshal.c, icall.c: register a delegate for finalization
6705         only when the native function pointer has been allocated for it.
6706
6707 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6708
6709         * object.c: cleaned up some code, allocate objects that are
6710         pointer free with the atomic malloc variant. Allocate memory
6711         for static data from the mempool if it's pointer-free.
6712         Allocate the bounds array at the end of the array data, when needed.
6713         * object-internals.h, object.h: move a private function in a private
6714         header.
6715         * class.c: handle missing case in tracking references in fields.
6716
6717 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6718
6719         * class.c, class-internals.h: keep track if a type has
6720         reference fields in either the instance or static fields.
6721
6722 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6723
6724         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6725         and renamed to MonoRuntimeInfo. Added fields to store the expected
6726         framework assembly version. Changed mono_get_framework_version and
6727         mono_get_runtime_version for a single mono_get_runtime_info method.
6728         
6729         * assembly.c: Added method to remap system assembly versions to the
6730         current executing runtime version. Removed old mapping code.
6731         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6732         
6733         * icall.c, reflection.c: Track api changes.
6734
6735 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6736
6737         * loader.c (method_from_memberref): Improve error reporting,
6738         produce the class name instead of the typeref/typedef index. 
6739
6740 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6741
6742         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6743
6744 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6745
6746         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6747         stdcall and charset name mangling.  Reorganize the code and add
6748         some tracing stuff.
6749
6750 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6751
6752         * monodiet.c: More iters!
6753
6754         * marshal.c: Iter usage.
6755
6756         * icall.c: Iter usage.
6757
6758         * object.c: Use iters.
6759
6760         * debug-helpers.c: More iters
6761
6762 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6763
6764         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6765         under win32.
6766
6767 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6768
6769         * mono-debug-debugger.c: use iters
6770
6771         * class.c, class-internals.h: mono_class_setup_events is static
6772         now
6773
6774         * All callers: use iters
6775
6776 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6777
6778         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6779         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6780
6781 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6782
6783         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6784
6785         * marshal.h: Add prototypes for ldfld/stfld_remote.
6786
6787         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6788         this is called during startup.
6789         
6790 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6791
6792         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6793         MonoThreadsSync struct private in monitor.c. Changed the way
6794         MonoThreadsSync is allocated so it's faster and there is no
6795         need to keep track of it with a finalizer and it uses less memory.
6796         This also finally allows us to allocate mono objects as ptrfree when
6797         there are no reference fields.
6798
6799 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6800
6801         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6802         disappearing link to the GC interface and use them to simplify
6803         the gchandles code.
6804
6805 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6806
6807         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6808         stfld_remote which call mono_load/store_field_new. This allows methods
6809         calling ldfld/stfld wrappers to be AOTed.
6810
6811         * console-io.c: Include sys/filio.h under solaris.
6812         
6813         * console-io.c: Include curses.h if needed correctly.
6814
6815 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6816         
6817         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6818         method->klass as well.
6819
6820         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6821
6822         * class.c (mono_class_init): Switch on lazy initialization of 
6823         methods.
6824
6825         * class.c (mono_class_get_finalizer): Handle the case when the 
6826         finalizer is inherited.
6827
6828 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6829
6830         * console-io.c: <curses.h> is needed by term.h on solaris.
6831
6832 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
6833
6834         * icall.c, class-internals.h, monodiet.c, class.c: Remove
6835         mono_class_setup_properties where possible. Remove this ftn from
6836         the header file, and make it static.
6837
6838 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * loader.c: Add missing setup_... call.
6841
6842         * class.c: Add missing setup_... calls.
6843
6844         * class.c (mono_class_init): Switch on lazy initialization of 
6845         the generic vtable.
6846         
6847         * class.c (mono_class_init): Fix generics broken by the recent changes.
6848
6849         * monodiet.c (handle_type): Add missing setup_... calls.
6850
6851         * class.c: Back out garbage in previous patch.
6852         
6853         * class.c: Add missing setup_... calls.
6854
6855         * class.c (mono_class_get_method_from_name_flags): Avoid calling
6856         mono_class_setup_methods () if possible.
6857
6858         * class-internals.h (MonoClass): Add 'has_cctor' flag.
6859
6860         * class-internals.h (MonoCachedClassInfo): New structure.
6861
6862         * class.c: Initialize properties and events fields of MonoClass lazily.
6863
6864         * class.c: Add infrastructure for lazily initializing the methods and
6865         vtable fields of MonoClass. Not yet used.
6866
6867         * class.c (mono_class_get_finalizer): New helper function.
6868
6869         * class.c: Add infrastructure for loading some class related data from
6870         an AOT file.
6871
6872         * object.c: Add infrastructure for initializing the vtable from data
6873         in the AOT file.
6874
6875         * gc.c (run_finalize): Use mono_class_get_finalizer ().
6876
6877         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6878         appropriate initialization function before accessing parts of the
6879         MonoClass structure.
6880
6881         * marshal.c: Fix warnings.
6882         
6883         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6884
6885         * mono-debug-debugger.c (get_exception_message): Use 
6886         mono_class_get_method_from_name_flags ().
6887
6888 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
6889
6890         * reflection.c, appdomain.c: Replace a few manual searches that
6891         Zoltan missed. (Paolo approved this part of my initial patch).
6892
6893 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6894
6895         * profiler.c: disable recording statistical events at report time.
6896
6897 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6898
6899         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6900         to byteswap arrays of enum values, too (bug #72080).
6901
6902 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6903
6904         * appdomain.c (set_domain_search_path): Allow this to be called if
6905         domain->setup is not yet set.
6906
6907         * loader.c (mono_method_get_index): New helper function.
6908
6909         * loader.c reflection.c: Use mono_method_get_index ().
6910
6911         * class.c (mono_class_get_method_from_name_flags): New helper method.
6912
6913         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6914         this.
6915
6916         * class.c (mono_class_get_cctor): New helper method.
6917
6918         * string-icalls.c object.c class.c marshal.c reflection.c: Use
6919         mono_class_get_method () to look up methods.
6920
6921 2005-02-01  Miguel de Icaza  <miguel@novell.com>
6922
6923         * console-io.c: Fix the build, this should work on Windows.
6924
6925 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
6926
6927         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6928         be set to null to keep things valid
6929
6930 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6931
6932         * icall.c: added Console 2.0 icalls.
6933         * Makefile.am: added console-io.[ch]
6934         * console-io.[ch]: internal calls for Console 2.0 API.
6935
6936 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6937
6938         * class.c: make sure we consider all the interfaces
6939         when calculating max_interface_id (bug found by
6940         Jeroen Frijters running ikvm).
6941
6942 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6943
6944         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6945         valuetype fields to null.
6946
6947         * object.c (set_value): Ditto. Fixes #71669.    
6948
6949 2005-01-31  Martin Baulig  <martin@ximian.com>
6950
6951         * metadata.c (mono_metadata_has_generic_params): New public
6952         function; checks whether something is a generic method.
6953
6954 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6955
6956         * appdomain.c: fix infinite recursion when adding assemblies.
6957
6958 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
6959
6960         * object.c: Fix small typo to return all items for Environment.
6961         GetCommandLineArgs.
6962
6963 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6964
6965         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6966         reflection.c: more domain and assembly-unload related fixes
6967         and memory leaks plugs.
6968
6969 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6970
6971         * 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.
6972
6973 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6974
6975         * loader.c (mono_method_signature): Make this method lazy
6976         (mono_get_method_from_token): Don't computate the signature here.
6977
6978         Doing this saves quite a bit of memory. I got 90 kb on starting up
6979         monodoc. It should also save some disk reads on startup.
6980
6981         * *: MonoMethod->signature might be NULL now. You *MUST* use
6982         mono_method_signature.
6983
6984 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
6985
6986         * object.c (mono_runtime_get_main_args): Return an array from the
6987         current domain here. Fixes #71938.
6988
6989 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6990
6991         * monitor.c: formatting changes to comply with the
6992         mono coding style and remove #ifdefs from the code.
6993
6994 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6995
6996         * metadata.c, private.h: remove some unneeded data
6997         and use a more compact representation for table schemas.
6998
6999 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7000
7001         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7002         to get a better distribution in hash tables.
7003         * *.c: use mono_aligned_addr_hash() where appropriate.
7004         * assembly.c: make var static.
7005
7006 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7007
7008         * domain-internals.h: Put MonoJitInfo on a diet.
7009
7010         * domain.c: Fix a warning.
7011
7012 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7013
7014         * gc.c: rework the gc handles code to reuse handles
7015         when freed.
7016
7017 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7018
7019         * domain.c: fixed long standing bug in mono_string_equal() which
7020         was brought to light with the ldstr changes.
7021
7022 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7023
7024         * reflection.c: Remove warning by adding missing include for marshal.h
7025
7026 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7027
7028         * domain.c, object.c: change the ldstr_table to hold
7029         MonoString* as keys: makes the runtime isinterned lookup
7030         faster and simplifies memory management.
7031
7032 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7033  
7034         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7035         possible to add imperative security checks before calling the icall.
7036         * reflection.c: Return security attributes on the original MonoMethod
7037         (and not the wrapped one). This fix permissions on icalls.
7038
7039 2005-01-25  Dick Porter  <dick@ximian.com>
7040
7041         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7042         the check for mktime() support actually test the mktime() return
7043         value.  "Fixes" bug 71682, though the output is still different to
7044         MS.
7045
7046 2005-01-25  Martin Baulig  <martin@ximian.com>
7047
7048         * class.c (mono_class_is_assignable_from): Make this work for
7049         generic instances.
7050
7051 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7052
7053         * marshal.c (mono_string_utf8_to_builder)
7054         (mono_string_builder_to_utf16): We might not have ownership of the
7055         string. In thise case, we need to create a new buffer.
7056
7057         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7058         be null, in which case, use the default capacity.
7059
7060 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7061
7062         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7063         GC events to the profiler.
7064
7065 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7066
7067         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7068         if you don't want the GC to run.
7069
7070 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7071
7072         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7073         start providing a GC API and keeping different implementations in
7074         their own file.
7075         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7076
7077 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7078
7079         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7080         mmap rather than allocating a huge buffer.
7081         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7082         above.
7083
7084 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7085
7086         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7087         and CheckExecutionRights.
7088         * reflection.c|h: Keep the index of the declarative security to be 
7089         used, instead of the pointer, when AOT compiler is used. Also add 
7090         class initialization when requesting demands.
7091         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7092         CheckExecutionRights. Both properties are now FALSE by default, and
7093         unmodifiable, unless the --security option is used.
7094
7095 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7096
7097         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7098         reflection.c: properly refcount images and assemblies, many leaks fixed.
7099
7100 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7101
7102         * threadpool.c: increase the timeout for threads in the thread pool to
7103         10s.  Fixes bug #67159.
7104
7105 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7106
7107         * class-internals.h: Sun's compiler insists on explicit
7108         signed on bit fields to handle then correctly.
7109
7110 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7111
7112         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7113         Make the size of the array fit only the number of invalid path
7114         chars that we have.
7115
7116         * class.c (_mono_class_get): Improve the error reporting when a
7117         class referenced is not found, to assist debugging. 
7118
7119 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7120
7121         * threads.c: fix off-by-one error.
7122         * domain.c: free data allocated in the domain.
7123
7124 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7125
7126         * reflection.c (mono_method_body_get_object): Fill out exception info
7127         as well.
7128
7129         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7130         structure.
7131         
7132 2005-01-19  Martin Baulig  <martin@ximian.com>
7133
7134         * loader.c (mono_get_method_constrained): Make this work again.
7135
7136 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7137
7138         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7139         guint16 to match the managed side.
7140
7141         * reflection.c (mono_reflection_body_get_object): Fill out local
7142         variables array.
7143
7144         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7145         as well.
7146
7147         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7148         'local_var_sig_token'.
7149
7150 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7151
7152         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7153         System.Drawing.
7154
7155         * reflection.c (mono_method_body_get_object): Handle abstract and
7156         runtime methods.
7157
7158 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7159
7160         * marshal.c, loader.c, class-internals.h, reflection.c:
7161         store the emthod data for a wrapper in an array instead of a list.
7162
7163 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7164
7165         * marshal.c: change the code to allocate memory more
7166         conservatively for method wrappers.
7167
7168 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7169
7170         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7171         fields from MonoClass to the marshal info structure where they belong.
7172
7173 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7174
7175         * class.c, object.c, class-internals.h, marshal.c: rearrange
7176         some fields and tweak some types to lower memory usage.
7177
7178 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7179
7180         * threads.c (signal_thread_state_change): Handle the case when the
7181         target thread is the current thread.
7182
7183         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7184
7185         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7186         emit_ptr_to_object_conv. 
7187
7188         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7189         marshalling. Fixes #71352.
7190
7191 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7192
7193         * metadata.h, blob.h: move table enum to blob.h so it can be included
7194         in any header.
7195         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7196         cut the size of MonoImage/MonoDynamicImage.
7197
7198 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7199
7200         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7201
7202 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7203
7204         * reflection.c, reflection.h, icall.c: add a function to check
7205         if an attribute type is defined for a metadata object.
7206
7207 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7208
7209         * object-internals.h: Added some needed fields from StringBuilder class.
7210         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7211
7212 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7213
7214         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7215         threads before shutting down the runtime.
7216
7217         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7218
7219 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7220
7221         * object-internal.h, threads.c: implement stacksize and 
7222         parameterized thread start functionality (requires
7223         matching corlib). Marked broken code for later removal.
7224
7225 2005-01-12  Martin Baulig  <martin@ximian.com>
7226
7227         * class-internals.h (MonoGenericClass): Moved the `initialized'
7228         flag to MonoDynamicGenericClass, removed `init_pending'.
7229         (MonoGenericInst): Added `is_reference' flag.
7230
7231 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7232
7233         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7234         inside the MSDOS header. Fixes #71201.
7235
7236         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7237         gc thread.
7238         (mono_domain_finalize): Ditto.
7239
7240 2005-01-12  Martin Baulig  <martin@ximian.com>
7241
7242         * class.c (mono_get_shared_generic_class): Use the cache for
7243         non-dynamic generic classes.
7244
7245         * class-internals.h (mono_class_create_generic_2): Removed
7246         function prototype, this function is now static inside class.c.
7247
7248         * class.c (mono_class_create_generic_2): Made this static, only
7249         call it from mono_class_init() and mono_class_setup_parent().
7250         (collect_implemented_interfaces_aux): Call mono_class_init() on
7251         the interfaces we collect.
7252         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7253
7254 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7255
7256         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7257         it a real thread handle.
7258
7259         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7260         MonoJitExceptionInfo, since each catch clause needs its own variable.
7261         
7262 2005-01-11  Dick Porter  <dick@ximian.com>
7263
7264         * image.c (mono_pe_file_open): New variant on mono_image_open()
7265         that does not set up the CLI metadata; used for FileVersionInfo so
7266         it can get the data for windows binaries too.
7267         
7268         * process.c (process_read_string_block): Don't read off the end of
7269         the StringTable block.
7270
7271         These both fix bug 70766.
7272
7273 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7274
7275         * gc.c: set some fields to NULL at GC cleanup time.
7276         * threads.c: if we quit the main thread, call exit ().
7277
7278 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7279
7280         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7281
7282 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7283
7284         * threads.h, threads.c, object.c: added accessor and settor for
7285         main_thread. Handle it specially when exiting from it: wait
7286         for other foreground threads to exit.
7287
7288 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7289
7290         * process.c, verify.c: remove some bloat.
7291
7292 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7293
7294         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7295         the calling convention to cdecl under win32.
7296
7297 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7298
7299         * object.c (mono_object_get_size): New function to get the size of
7300         an object instance.
7301
7302         * profiler.c (simple_allocation): Use above.
7303
7304 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7305
7306         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7307         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7308         get an appdomain by it's id and we can't assume the root's id is 0).
7309         * domain-internals.h: Change the function prototype to match.
7310         * icall.c: Change the icall table for AppDomain.
7311
7312 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7313
7314         * locales.c (string_invariant_compare_char): Only compute
7315         GUnicodeTypes in the case where we need them.  Test for ordinality
7316         first and return if so.
7317
7318         From the commit:
7319
7320                 /*
7321                  * FIXME: here we must use the information from c1type and c2type
7322                  * to find out the proper collation, even on the InvariantCulture, the
7323                  * sorting is not done by computing the unicode values, but their
7324                  * actual sort order.
7325                  */
7326
7327 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7328
7329         * loader.c: for P/Invoke methods, allow the "Internal" shared
7330         library name to refer to the calling process symbol namespace.
7331
7332 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7333
7334         * Makefile.am: Add the security manager to the build.
7335         * security-manager.c|h: New. Initialization of the security manager.
7336
7337 2005-01-07  Dick Porter  <dick@ximian.com>
7338
7339         * threads.c: 
7340         * monitor.c: Update thread state during Monitor and WaitHandle
7341         waits.  Fixes bug 71031.
7342
7343 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7344
7345         * reflection.c (property_encode_signature): Correctly handle when the
7346         property has no methods.
7347
7348 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7349
7350         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7351         
7352         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7353         fields from mb, not rmb. Fixes #71017.
7354
7355         * marshal.c (emit_ptr_to_str_conv): Add support for 
7356         ByValTStr -> string conversion. Fixes #71015.
7357
7358         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7359
7360         * mempool.c (mono_mempool_contains_addr): New helper function.
7361
7362 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7363
7364         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7365         HasSematics encoded fields.
7366         
7367         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7368         invalid string marshalling.
7369
7370         * metadata.c: Fix warnings.
7371         
7372 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7373
7374         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7375         profiler support.
7376
7377 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7378
7379         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7380         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7381         tests.
7382
7383 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7384
7385         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7386         so methods containing these can be AOTed.
7387
7388 2005-01-03  Martin Baulig  <martin@ximian.com>
7389
7390         * loader.c (find_method): Removed the hack for generic instances.
7391         (method_from_memberref): If our parent is a generic instance, pass
7392         its generic type definition to find_method() and then inflate the
7393         method.
7394         (mono_get_method_constrained): Pass the generic type definition to
7395         find_method() and inflate the method later.
7396
7397         * class-internals.h (MonoStats): Added `generic_class_count'.
7398
7399         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7400         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7401
7402         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7403         generic type definitions.
7404
7405 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7406
7407         * loader.c icall.c: Fix warnings.
7408
7409 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7410
7411         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7412         blittable types. Fixes #70864.
7413
7414 2004-12-29  Martin Baulig  <martin@ximian.com>
7415
7416         * icall.c
7417         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7418
7419         * reflection.c (mono_method_get_object): Create a
7420         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7421         call mono_get_inflated_method().
7422
7423         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7424
7425 2004-12-27  Martin Baulig  <martin@ximian.com>
7426
7427         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7428         (MonoMethodInflated): Added `inflated' field.
7429
7430         * class.c (mono_class_inflate_generic_method): Don't really
7431         inflate the method here; just set the `is_inflated' flag in the
7432         MonoMethod.
7433         (mono_class_get_inflated_method): Actually inflate the method here
7434         if it's not already inflated; we use the MonoMethodInflated's new
7435         `inflated' field as a cache.
7436
7437 2004-12-26  Martin Baulig  <martin@ximian.com>
7438
7439         * class.c
7440         (inflate_generic_class): Moved some code out of inflate_generic_type().
7441         (mono_class_inflate_generic_method): If we're already inflated,
7442         inflate the context and use the declaring method; ie. make sure
7443         the declaring method of an inflated method is always the generic
7444         method definition.
7445         (mono_class_create_from_typedef): Create
7446         `class->generic_container->context->gclass'.
7447
7448 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7449
7450         * metadata-internals.h, marshal.c, reflection.c: More
7451         MonoGHashTable->GHashTable.
7452
7453         * domain-internals.h, class.c: Change MonoGHashTable's into
7454         GHashTables for some cases where no gc stuff is used
7455
7456         All users: update apis
7457
7458 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7459
7460         * metadata.c (builtin_types): Make this `const'. Makes this get
7461         put into the shareable section.
7462         (mono_metadata_init): Casts to make gcc happy.
7463
7464 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7465
7466         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7467
7468 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7469
7470         * icall.c: Added an internal call to retrieve the position and length
7471         of assembly-level declarative security attributes (RequestMinimum, 
7472         RequestOptional and RequestRefuse). This is used by the Assembly class
7473         to re-create the corresponding permission sets.
7474
7475 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7476
7477         * marshal.c: fix the stelemref wrapper to be type correct
7478         (and faster).
7479
7480 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7481
7482         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7483         to do key & 0x7fffffff. Hashtable already does this. It just
7484         results in longer code.
7485
7486 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7487
7488         * appdomain.c: Bump corlib version.
7489         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7490         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7491         * reflection.c|h: Add functions to get declarative security infos
7492         (blob position and length) for assemblies, classes and methods.
7493
7494 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7495
7496         * reflection.c: sort the constant table (bug #70693).
7497
7498 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7499
7500         * object-internals.h, threads.c, domain.c: add accessors for
7501         the MonoThread and MonoDomain tls keys.
7502
7503 2004-12-18  Martin Baulig  <martin@ximian.com>
7504
7505         * class.c (inflate_generic_type): If we're inflating a generic
7506         instance, set `ngclass->context->container = context->container';
7507         ie. the container we inflated into.
7508
7509         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7510         inflate_generic_type() changes.
7511
7512 2004-12-17  Martin Baulig  <martin@ximian.com>
7513
7514         * class-internals.h
7515         (MonoGenericClass): Replaced `MonoType *generic_type' with
7516         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7517         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7518         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7519
7520 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7521
7522         * exception.c (mono_exception_from_token): New helper function.
7523
7524 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7525
7526         * assembly.c (mono_assembly_load_with_partial_name): Call 
7527         mono_assembly_loaded before invoking the preload hooks. Fixes
7528         #70564.
7529
7530         * object-internals.h (MonoThread): Change culture_info and 
7531         ui_culture_info into an array.
7532
7533         * threads.c: Cache culture info objects from more than one appdomain.
7534
7535         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7536         current UI culture.
7537
7538 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7539
7540         * threads.h threads.c appdomain.c: Clear the culture_info field of
7541         all threads during unloading if they point to an object in the dying
7542         appdomain.
7543
7544 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7545
7546         * culture-info.h (TextInfoEntry): New struct
7547         * object-internals.h: sync with managed
7548         * locales.c: fill the `text_info_data' field
7549         * culture-info-tables.h: update
7550
7551 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7552
7553         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7554         collector.
7555
7556 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7557
7558         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7559         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7560
7561 2004-12-12  Martin Baulig  <martin@ximian.com>
7562
7563         * mono-debug-debugger.c (write_type): If we're an enum and the
7564         builtin types have already been initialized, call mono_class_init().
7565
7566 2004-12-11  Martin Baulig  <martin@ximian.com>
7567
7568         * metadata.c (mono_metadata_load_generic_params): Added
7569         `MonoGenericContainer *parent_container' argument; automatically
7570         compute `container->is_method'; pass the correct owner to
7571         get_constraints().      
7572
7573         * reflection.c (compare_genericparam): Sort the GenericParam table
7574         according to increasing owners. 
7575
7576 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7577
7578         * profiler.c: allow disabling the default profiler.
7579
7580 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7581
7582         * decimal.c, icall.c: allow disabling System.Decimal support.
7583
7584 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7585
7586         * reflection.c: Add support for null attribute arguments.
7587
7588 2004-12-09  Martin Baulig  <martin@ximian.com>
7589
7590         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7591         names to get rid of compiler warnings.
7592
7593 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7594
7595         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7596         mono_marshal_load_type_info (). Fixes #69625.
7597         (mono_marshal_get_ptr_to_struct): Likewise.
7598
7599 2004-12-08  Martin Baulig  <martin@ximian.com>
7600
7601         * mono-debug.h: Bumped version number to 47.
7602
7603         * mono-debug-debugger.c
7604         (mono_debugger_event_handler, mono_debugger_event): Take two
7605         guint64 arguments insteed of a gpointer and a guint32.  
7606
7607 2004-12-08  Martin Baulig  <martin@ximian.com>
7608
7609         * debug-mono-symfile.h
7610         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7611         `address' to `native_offset'.
7612
7613 2004-12-08  Martin Baulig  <martin@ximian.com>
7614
7615         * class.c (mono_class_create_from_typespec): Only inflate if we
7616         either have `context->gclass' or `context->gmethod'.
7617
7618 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7619
7620         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7621
7622         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7623
7624         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7625
7626         * reflection.c (mono_assembly_get_object): Remove the workaround put
7627         in for the release.
7628         
7629         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7630
7631         * appdomain.c: Bump corlib version.
7632
7633         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7634         be visible in other appdomains.
7635
7636 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7637
7638         * threads.c: Interlocked inc and dec for longs were messed up,
7639         use a KISS based impl for this. Fixes 70234
7640
7641 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7642
7643         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7644
7645 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7646
7647         * icall.c: fix to follow policy not to allow struct
7648         arguments in icalls.
7649
7650 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7651
7652         * process.c: make the patch that handles spaces in file paths work
7653         on mono/windows too.
7654
7655 2004-12-06  Martin Baulig  <martin@ximian.com>
7656
7657         * class.c (mono_class_create_generic): Call
7658         mono_class_setup_supertypes() if we're dynamic.
7659         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7660
7661 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7662
7663         * object-internals.h: Add new fields to MonoThread.
7664
7665         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7666
7667         * icall.c threads-types.h threads.c: Add new icalls.
7668
7669         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7670
7671         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7672         managed side.
7673
7674         * appdomain.c: Bump corlib version.
7675
7676         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7677         internal assemblies. Fixes #69181.
7678
7679 2004-12-05  Martin Baulig  <martin@ximian.com>
7680
7681         * class.c (mono_class_inflate_generic_signature): Make this a
7682         no-op if `context' is NULL or we don't have any type parameters;
7683         also copy `sentinelpos'.        
7684
7685 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7686
7687         * image.c: Add unbox_wrapper_cache.
7688
7689         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7690
7691         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7692         function generator.
7693         
7694         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7695         Fixes #70173.
7696
7697         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7698         
7699 2004-12-04  Martin Baulig  <martin@ximian.com>
7700
7701         * loader.c (mono_method_get_signature_full): New public function;
7702         like mono_method_get_signature(), but with an additional
7703         `MonoGenericContext *' argument.
7704
7705         * class.c (mono_class_inflate_generic_signature): Formerly known
7706         as inflate_generic_signature(); make this public.
7707
7708 2004-12-04  Martin Baulig  <martin@ximian.com>
7709
7710         * metadata.c
7711         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7712         instead of a `MonoGenericContainer *'.  
7713         (mono_metadata_parse_array_full): Likewise.
7714         (mono_metadata_parse_signature_full): Likewise.
7715         (mono_metadata_parse_method_signature_full): Likewise.
7716         (mono_metadata_parse_generic_inst): Likewise.
7717         (mono_metadata_parse_generic_param): Likewise.
7718         (mono_metadata_parse_mh_full): Likewise.
7719         (mono_type_create_from_typespec_full): Likewise.
7720
7721 2004-12-03  Martin Baulig  <martin@ximian.com>
7722
7723         * class-internals.h (MonoGenericContainer): Replaced the
7724         `MonoGenericContext * pointer with a `MonoGenericContext'
7725         structure and made it the first element.
7726
7727 2004-12-03  Martin Baulig  <martin@ximian.com>
7728
7729         * class.c
7730         (inflate_generic_type): Set the `context->container' when creating
7731         a new MonoGenericContext.
7732         (mono_class_inflate_generic_method): Likewise.
7733         (mono_class_create_from_typespec): Just use `context->container'
7734         to get the container.
7735
7736         * loader.c (method_from_methodspec): Set `context->parent' from
7737         `context->container' - and if that's a method container, use its
7738         parent.  Also set the `context->container' when creating a new
7739         MonoGenericContext.
7740         (mono_get_method_from_token): Use just `context->container' to get
7741         the container.
7742
7743         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7744         `gclass->context->container'.
7745
7746         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7747         the `context->container' when creating a new MonoGenericContext.
7748
7749 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7750
7751         * reflection.c (compare_genericparam): Sort params with identical
7752         owner by their number. Fixes gen-111 on sparc.
7753
7754 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7755
7756         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7757         around the domain changes.
7758
7759         * appdomain.c (mono_domain_unload): Handle the case when the thread
7760         calling Unload is itself being aborted during unloading. Fixes #70022.
7761
7762         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7763
7764         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7765         checkpoint_func as an icall so it gets a wrapper.
7766         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7767         in the cross-appdomain wrappers too.
7768
7769         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7770
7771         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7772
7773         * reflection.c: Fix some memory leaks.
7774         
7775 2004-12-02  Martin Baulig  <martin@ximian.com>
7776
7777         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7778
7779         * metadata.c (generic_class_cache): New static hashtable.
7780         (mono_metadata_lookup_generic_class): New public method.
7781
7782 2004-12-02  Martin Baulig  <martin@ximian.com>
7783
7784         * class.c (mono_class_create_from_typedef): Call
7785         mono_class_setup_parent() and mono_class_create_mono_type() before
7786         parsing the interfaces.
7787
7788 2004-12-02  Martin Baulig  <martin@ximian.com>
7789
7790         * metadata.c (generic_inst_cache): New static hashtable.
7791         (mono_metadata_lookup_generic_inst): New public function.
7792         (mono_metadata_inflate_generic_inst): New public function.
7793         (mono_metadata_parse_generic_inst): New public function.
7794         (do_mono_metadata_parse_generic_class): Use the new
7795         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7796         since this'll also use the cache.
7797
7798         * reflection.c (mono_reflection_bind_generic_method_parameters):
7799         Use mono_metadata_lookup_generic_inst() to use the new cache.
7800
7801         * class.c (inflate_mono_type): Use
7802         mono_metadata_inflate_generic_inst() to inflate a generic
7803         instance; this'll also use the new cache.
7804
7805         * loader.c (method_from_methodspec): Use
7806         mono_metadata_parse_generic_inst() and
7807         mono_metadata_inflate_generic_inst() rather than parsing it
7808         manually, so we can use the new cache.
7809
7810 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7811
7812         * threads.c (wait_for_tids): Do not incorrectly free threads when 
7813         the wait times out.
7814
7815 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7816
7817         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7818         iter->args based on whether parameters are passed in registers (i.e.
7819         MONO_ARCH_REGPARMS is defined)
7820
7821 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
7822
7823         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7824         the exception message. Fixes #70070.
7825         (method_from_methodspec): Fix warnings.
7826
7827 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7828
7829         * process.c: (complete_path) return the path quoted
7830
7831 2004-12-01  Martin Baulig  <martin@ximian.com>
7832
7833         * class-internals.h (MonoGenericInst): New structure.
7834         (MonoGenericClass): Replaced `type_argc', `type_argv' and
7835         `is_open' with `MonoGenericInst *inst'.
7836         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7837         `is_open' with `MonoGenericInst *inst'.
7838
7839 2004-11-30  Martin Baulig  <martin@ximian.com>
7840
7841         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7842
7843         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7844         to `generic_class_cache'.
7845
7846         * metadata.c
7847         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7848         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7849         (mono_generic_inst_is_valuetype): Renamed to
7850         mono_generic_class_is_valuetype().
7851
7852         * class-internals.h
7853         (MonoGenericInst): Renamed to MonoGenericClass.
7854         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7855         (MonoClass): Renamed `generic_inst' to `generic_class'.
7856         (MonoGenericContext): Renamed `ginst' to `gclass'.
7857
7858         * object-internals.h
7859         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7860
7861         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7862         mono_reflection_generic_class_initialize().
7863
7864         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7865         now known as "System.Reflection.MonoGenericClass".
7866         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7867
7868 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
7869
7870         * class-internals.h: Added a flag field to MonoClass to cache the
7871         declarative security attributes actions associated with the class.
7872         * domain-internals.h: Added booleans to MonoJitInfo to cache the
7873         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7874         applicable to the JITted method.
7875         * reflection.c|h: Added functions to extract (as flags) which security
7876         actions are available (declaratively) for a method, class or assembly.
7877         * metadata.c|h: Added functions to search the declarative security
7878         table in the metadata.
7879         
7880 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
7881
7882         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7883         EXPORTEDTYPES are already in the class name cache, so there is no
7884         need to add extra code here to look at them. Just removes a bit of
7885         cruft.
7886
7887         (ves_icall_System_Environment_get_TickCount): No need for #if
7888         WINDOWS. We already have the code in io-layer.
7889
7890 2004-11-28  Martin Baulig  <martin@ximian.com>
7891
7892         * loader.c
7893         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7894         Fixes gen-112.cs.
7895
7896 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
7897
7898         * assembly.c (do_mono_assembly_open): Instead of having a
7899         conditional WITH_BUNDLE, incorporate support for bundles here, by
7900         having a global `bundles' variable holding a pointer to the actual
7901         bundles. 
7902
7903         (mono_register_bundled_assemblies): New API call used by the
7904         bundle code. 
7905
7906         See mkbundle.1 for details.
7907         
7908 2004-11-27  Martin Baulig  <martin@ximian.com>
7909
7910         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7911         the vtable for generic methods.
7912
7913 2004-11-26  Martin Baulig  <martin@ximian.com>
7914
7915         * metadata.c
7916         (mono_metadata_generic_method_hash): New public function.
7917         (mono_metadata_generic_method_equal): Likewise.
7918
7919         * class-internals.h
7920         (MonoGenericContainer): Added `GHashTable *method_hash'.
7921
7922         * reflection.c (ReflectionMethodBuilder): Added
7923         `MonoGenericContainer *generic_container'.
7924         (reflection_methodbuilder_to_mono_method): Don't create a new
7925         MonoGenericContainer each time we're called.
7926         (mono_reflection_bind_generic_method_parameters): Use
7927         `container->method_hash' to cache the results so we don't create a
7928         different method if we're called several times with the same
7929         arguments.
7930
7931         * loader.c (method_from_methodspec): Use the new
7932         `container->method_hash' here, too.
7933
7934 2004-11-26  Martin Baulig  <martin@ximian.com>
7935
7936         * class.c (inflate_generic_signature): Correctly compute
7937         `res->has_type_parameters'.
7938         (mono_class_vtable): Use the `has_type_parameters' flag to
7939         determine whether we're a generic method.
7940
7941         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7942
7943 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7944
7945         * object.c (mono_runtime_run_main): Fix a small memory leak.
7946
7947 2004-11-25  Martin Baulig  <martin@ximian.com>
7948
7949         * class.c (set_generic_param_owner): Fixed the loop.
7950
7951 2004-11-25  Martin Baulig  <martin@ximian.com>
7952
7953         * object.c (mono_class_vtable): Don't create any JIT wrappers for
7954         generic methods.
7955
7956 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7957
7958         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7959         names. Fixes #69787.
7960
7961 2004-11-24  Martin Baulig  <martin@ximian.com>
7962
7963         * class.c (mono_class_create_generic_2): If we don't have a
7964         `ginst->parent', inflate `gklass->parent' to get our parent.
7965
7966 2004-11-24  Martin Baulig  <martin@ximian.com>
7967
7968         * reflection.c (compare_genericparam): Correctly sort the
7969         GenericParam table; fixes #69779.
7970
7971 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
7972
7973         * reflection.c: When writing a PE file, don't create a huge
7974         buffer in memory. Just write the arrays we have to the file.
7975         This reduces memory usage.
7976
7977         * metadata-internals.h: MonoDynamicStream pefile is no longer used
7978         globally.
7979
7980 2004-11-17  Martin Baulig  <martin@ximian.com>
7981
7982         * class.c (mono_class_init): Don't setup `class->parent' for
7983         dynamic instances; moved this to mono_class_generic_2().
7984         (mono_class_create_generic): Also set `klass->inited' for dynamic
7985         generic instances.
7986         (mono_class_create_generic_2): Don't do anything for dynamic
7987         generic instances.  Set `klass->parent' here and also call
7988         mono_class_setup_parent() here. 
7989
7990         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7991         `MonoType *parent' argument; set `ginst->parent' before calling
7992         mono_class_create_generic_2(), so we set the correct parent.
7993
7994 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7995
7996         * reflection.c: allow getting attributes from ModuleBuilder
7997         (used by ikvm).
7998
7999 2004-11-17  Martin Baulig  <martin@ximian.com>
8000
8001         * class.c (mono_class_create_from_typedef): If a type parameter is
8002         inherited from an outer class, set its owner to that class.
8003
8004 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8005
8006         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8007           for (int*) written size. This fixes bug #69592.
8008
8009 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8010
8011         * icall.c: Added IsAuthenticodePresnet internal call.
8012         * image.c|h: New function that check a MonoImage for an Authenticode
8013         signature in the certificate PE data directory.
8014         * security.c|h: New internal call to ask the runtime if an 
8015         Authenticode signature seems referenced in the PE header.
8016
8017 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8018
8019         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8020
8021         * reflection.c (mono_image_create_pefile): Free the assembly streams
8022         after writing out the assembly file.
8023
8024         * object.c (mono_runtime_run_main): Fix small memory leak.
8025
8026         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8027         property access modifiers. Fixes #69389.
8028
8029 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8030
8031         * domain.c, object.c, object-internals.h, domain-internals.h,
8032         object.h, marshal.c: keep dynamic code info per domain.
8033
8034 2004-11-15  Martin Baulig  <martin@ximian.com>
8035
8036         * class.c (mono_type_get_name_recurse): Put type arguments in
8037         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8038         see bug #68387.
8039
8040 2004-11-15  Martin Baulig  <martin@ximian.com>
8041
8042         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8043         (mono_class_setup_vtable): When computing `the_cname' for a
8044         generic instance, don't include the namespace since we'd otherwise
8045         add it twice.
8046
8047 2004-11-15  Martin Baulig  <martin@ximian.com>
8048
8049         * class.c (mono_class_create_generic): Changed return type to void.
8050         (mono_class_create_generic_2): New public function; setup
8051         `class->method', `class->field' and `class->interfaces' here
8052         instead of in mono_class_init().
8053
8054         * class.h (mono_class_create_generic): Moved to class-internals.h.
8055
8056 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8057
8058         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8059         rather than writing to memory, write to this file. Right now,
8060         we are just writting into a buffer, and copying that. However
8061         we can avoid the buffer later.
8062
8063         (mono_dynamic_stream_reset): new function
8064
8065         * icall.c, object-internals.h: update for the above.
8066
8067 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8068
8069         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8070         have been using gc'd memory. First it is slower, unlikely
8071         the comment in the source code said, secondly, it increases
8072         our footprint to do it in the gc.
8073
8074         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8075         the method so that it does not have to copy to managed code.
8076
8077 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8078
8079         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8080
8081 2004-11-12  Martin Baulig  <martin@localhost>
8082
8083         * reflection.c (mono_image_create_token): Allow generic method
8084         definitions here, since they may appear in an `.override'; see
8085         gen-98/gen-99 for an example.
8086
8087 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8088
8089         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8090         #69365.
8091
8092         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8093         descriptive.
8094
8095 2004-11-11  Martin Baulig  <martin@ximian.com>
8096
8097         * class.c (mono_class_setup_vtable): In an explicit interface
8098         implementation, the method name now includes the arity.
8099
8100 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8101
8102         * object.c (mono_array_full_copy): Fix warning.
8103
8104 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8105
8106         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8107         mono_class_get_method_from_name() instead.
8108         
8109         * class-internals.h: Added two new types of wrappers. 
8110         Added MonoRemotingTarget enum. Added new trampoline function type, which
8111         takes an additional MonoRemotingTarget value as parameter, so it is
8112         possible to request a trampoline for a specific target.
8113         
8114         * class.c: Added new mono_class_get_method_from_name() method.
8115         
8116         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8117         general remoting sinks and one specific for cross domain calls.
8118         
8119         * debug-helpers.c: Added new wrapper names.
8120         
8121         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8122         of a remote class.
8123         
8124         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8125         
8126         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8127         with several other methods (mono_marshal_get_xappdomain_dispatch,
8128         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8129         and others) can generate a fast remoting wrapper for cross domain calls.
8130         More information can be found in docs/remoting.
8131         Other changes: Removed mono_find_method_by_name, and used
8132         mono_class_get_method_from_name instead.
8133         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8134         is stored in the remoting invoke hashtable.
8135         
8136         * marshal.h: published the new method for getting the xdomain wrapper,
8137         and also added a method for getting the adequate wrapper for a given
8138         method and target.
8139         
8140         * object-internals.h, object.c: Added a couple of methods for capying and
8141         cloning arrays.
8142         Modified mono_install_remoting_trampoline, which takes the new remoting
8143         trampoline that has a remoting target as parameter.
8144         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8145         will return the most suitable vtable for the target.
8146         Added mono_remote_class_vtable, which returns the vtable of a remote class
8147         (which can be the normal remoting vtable or the xdomain vtable).
8148         
8149         * threads.c: the xdomain invoke and dispatch wrappers must also be
8150         protected against interruptions.
8151
8152 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8153
8154         * icall.c: use memmove in BlockCopyInternal when the source and
8155         destination arrays are the same.
8156
8157 2004-11-09  Martin Baulig  <martin@ximian.com>
8158
8159         * class-internals.h (MonoGenericContainer): Removed `method' and
8160         `signature', replaced them with `is_method' and `is_signature'
8161         flags.  Added `context'.
8162
8163         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8164         instead of a `MonoGenericContainer *'.
8165
8166         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8167         for dynamic type parameters.
8168         (mono_metadata_load_generic_params): Setup `container->context'.
8169
8170         * reflection.c (mono_reflection_setup_generic_class): Setup
8171         `tb->generic_container->context'.
8172         (do_mono_reflection_bind_generic_parameters): Use
8173         mono_class_inflate_generic_type() to correctly inflate types,
8174         rather than using our own hack just for MONO_TYPE_VAR.
8175
8176 2004-11-09  Martin Baulig  <martin@ximian.com>
8177
8178         * class.c (mono_class_inflate_generic_method): Small fix; don't
8179         crash here.
8180
8181         * icall.c
8182         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8183         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8184         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8185         (ves_icall_Type_BindGenericParameters): Likewise.
8186         (ves_icall_Type_get_IsGenericInstance): Likewise.
8187         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8188         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8189         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8190         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8191
8192 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8193
8194         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8195         assembly versions and public key tokens. Fixes #69113.
8196
8197 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8198
8199         * metadata.c: fix bug introduced with the type cache changes
8200         on 2004-11-06.
8201
8202 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8203
8204         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8205         the MonoClass pointer instead of the token in exception clauses.
8206         * reflection.c: updates for the above and make the code not depend
8207         on the structure of MonoExceptionClause.
8208
8209 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8210
8211         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8212         Add support for dynamic assemblies. Fixes #69114.
8213
8214         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8215
8216 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8217
8218         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8219         since most only those methods use it. the code member of
8220         MonoMethodPInvoke was dead, so that can be removed too. Also,
8221         remove inline_count (again, not used), and move slot so that it
8222         can share bits with some other flags. This saves 8 bytes in the
8223         structure and gives us about 50 kb back for mcs helloworld.cs
8224
8225         * *.[ch]: Do naming changes for the above.
8226
8227         * loader.c (mono_method_get_header): Lazily init the header
8228         on first access.
8229         (mono_get_method_from_token): don't init the header here
8230         (mono_free_method): the header may never be allocated
8231
8232         Overall, this saves 150 kb of unmanaged allocations
8233         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8234         memory at runtime.
8235         
8236         * loader.c, loader.h (mono_method_get_header): new accessor.
8237
8238         * *.[ch]: use the above method. Prepares us to lazily load
8239         the header.
8240
8241         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8242         three warnings, which are actual bugs (see 69206).
8243
8244         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8245         unused. Saves a cool 4 bytes / method.
8246
8247 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8248
8249         * metadata.c (builtin_types): Add types for System.Object here.
8250         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8251         for a class or valuetype from klass->this_arg or klass->byval_arg.
8252
8253         On mcs for a hello world, this gets us down from 21836 MonoType's
8254         to 14560.
8255
8256         (mono_metadata_free_type): Account for the above change.
8257
8258 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8259
8260         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8261         exception instead of asserting if name is null.
8262         (ves_icall_System_AppDomain_GetData): Ditto.
8263
8264 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8265
8266         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8267         EnumBuilder.
8268
8269         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8270         Return NULL when the domain does not have entry_assembly set.
8271
8272         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8273         Add a 'resource_modules' argument.
8274         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8275
8276         * reflection.c (mono_reflection_create_runtime_class): Move setting
8277         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8278         for enums too.
8279
8280         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8281         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8282         Throw an ArgumentNullException if 'ptr' is null.
8283
8284         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8285         assemblies here. Fixes #69020.
8286
8287 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8288
8289         * reflection.c (build_compressed_metadata): Fix the previous patch for
8290         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8291         the stack.
8292
8293 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8294
8295         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8296         the cultures is false. Fixes #69090.
8297
8298         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8299         detected by valgrind.
8300         
8301         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8302         TypeResolve multiple times for the same type. Fixes #65577.
8303
8304 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8305
8306         * marshal.c: Avoid using ldftn to call managed functions. It is
8307         much slower than just a call.
8308
8309         * reflection.c (mono_module_get_object): free the basename we
8310         allocate here from glib.
8311         
8312         * reflection.c (ensure_runtime_vtable): make sure to free
8313         overrides.  Also, we were allocating an array of MonoMethod not an
8314         array of MonoMethod*.
8315
8316         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8317
8318         * image.c (mono_image_close): free image->guid here.
8319
8320 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8321
8322         * reflection.c: Fix some spec conformance issues with the PE file
8323         structures so mcs compiled apps run on the Net 2.0 beta.
8324
8325 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8326
8327         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8328         Implement this. Fixes #67264.
8329
8330         * debug-helpers.h debug-helpers.c marshal.c: Move 
8331         mono_find_method_by_name to debug-helpers.c.
8332
8333 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8334
8335         * object.c (mono_release_type_locks): type_initialization_hash is
8336         a GHashTable.
8337
8338         * reflection.c object.c object-internals.h: Fix warnings.
8339
8340         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8341         without accessors. Fixes #61561.
8342
8343         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8344         application base from the root domain if not set. Fixes #65641.
8345         (mono_runtime_init): Fix warning.
8346
8347 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8348
8349         * appdomain.c: call mono_thread_pool_init.
8350         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8351         of worker threads based on the number of CPUs and the environment
8352         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8353         for non-windows (windows) systems.
8354
8355 2004-10-27  Chris Toshok  <toshok@ximian.com>
8356
8357         * mono-debug-debugger.c (write_class): don't call mono_class_init
8358         here, as even with the check for (!klass->init_pending), we get
8359         into a situation where we're hitting cycles in class
8360         initialization.  Fixes #68816.
8361
8362 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8363
8364         * image.c: Avoid overwriting values in the loaded_images_hash when an
8365         assembly is loaded multiple times. Fixes #61152.
8366
8367         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8368         so multiple satellite assemblies for the same name can be loaded.
8369         Fixes #68259.
8370
8371         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8372         not NULL.
8373
8374         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8375         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8376
8377         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8378         pending finalizers are not invoked after the appdomain has been 
8379         unloaded. Fixes #67862.
8380
8381 2004-10-22  Martin Baulig  <martin@ximian.com>
8382
8383         * mono-debug-debugger.c
8384         (mono_debugger_runtime_invoke): Don't box valuetypes.
8385
8386 2004-10-22  Chris Toshok  <toshok@ximian.com>
8387
8388         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8389         don't hide private methods.
8390
8391 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8392
8393         * icall.c: Allows the runtime to "share" (when known) the public key
8394         token of an assembly. This avoid the need to recalculate the token 
8395         (from the public key) in managed code.
8396
8397 2004-10-21  Chris Toshok  <toshok@ximian.com>
8398
8399         * debug-helpers.c (append_class_name): argh, revert last patch.
8400         
8401 2004-10-21  Chris Toshok  <toshok@ximian.com>
8402
8403         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8404         not '/', so that it matches what the debugger uses to look up
8405         methods.
8406
8407 2004-10-21  Martin Baulig  <martin@ximian.com>
8408
8409         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8410         public method; this is called each time an exception is thrown and
8411         allows the debugger to use exception catch points.
8412
8413 2004-10-21  Martin Baulig  <martin@ximian.com>
8414
8415         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8416         the stack pointer and the exception object in some struct and pass
8417         that to the debugger.
8418
8419 2004-10-21  Chris Toshok  <toshok@ximian.com>
8420
8421         * mono-debug-debugger.c (do_write_class): add instance/static
8422         event support.  We don't expose "raise" or "other" yet.
8423         (event_is_static): new method.
8424
8425 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8426
8427         * mono-debug-debugger.c
8428         (mono_debugger_handle_exception): Remove
8429         bogus return value for fussy compilers.
8430
8431 2004-10-20  Martin Baulig  <martin@ximian.com>
8432
8433         * mono-debug-debugger.c
8434         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8435         (mono_debugger_handled_exception): Likewise.
8436
8437 2004-10-20  Martin Baulig  <martin@ximian.com>
8438
8439         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8440         MONO_DEBUGGER_EVENT_EXCEPTION.
8441
8442         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8443         public function to send the debugger a notification for an
8444         exception and inform it about a catch/finally clause.
8445
8446 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8447
8448         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8449         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8450         fix 2.95 build. 
8451
8452         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8453
8454 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8455
8456         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8457         marshalled as [In,Out]. Fixes #58325.
8458
8459 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8460
8461         * reflection.c (mono_method_body_get_object): Implement some fields.
8462
8463 2004-10-12  Martin Baulig  <martin@ximian.com>
8464
8465         * reflection.c (mono_reflection_bind_generic_parameters): Small
8466         fix, correctly retrieve our parent from a generic instance.
8467
8468 2004-10-12  Martin Baulig  <martin@ximian.com>
8469
8470         * metadata.c (mono_metadata_generic_param_equal): We always have
8471         an owner.
8472
8473         * class.c
8474         (mono_class_from_generic_parameter): We need to have an owner.
8475         (my_mono_class_from_generic_parameter): Likewise.
8476
8477         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8478         mono_reflection_create_generic_class() and added a new
8479         mono_reflection_setup_generic_class().  
8480         (mono_reflection_initialize_generic_param): If we're a nested
8481         generic type and inherited from the containing class, set our
8482         owner to the outer class.
8483
8484 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8485
8486         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8487
8488         * reflection.c (mono_method_body_get_object): New function to create
8489         a MethodBody object.
8490
8491         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8492
8493 2004-10-11  Martin Baulig  <martin@ximian.com>
8494
8495         * metadata.c (_mono_metadata_type_equal): Renamed to
8496         do_mono_metadata_type_equal() and made static.
8497
8498 2004-10-11  Martin Baulig  <martin@ximian.com>
8499
8500         * appdomain.c: Bump corlib version number to 28.
8501
8502 2004-10-10  Martin Baulig  <martin@ximian.com>
8503
8504         * class-internals.h
8505         (MonoGenericInst): Added `MonoGenericContainer *container'.
8506         (MonoGenericMethod): Likewise.
8507         (MonoGenericContext): Likewise.
8508         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8509
8510         * metadata.c
8511         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8512         (do_mono_metadata_parse_generic_inst): Likewise.
8513         (mono_metadata_parse_type_full): New public method.  This is the actual
8514         mono_metadata_parse_type() implementation - with an additional
8515         `MonoGenericContainer *' argument.
8516         (mono_metadata_parse_array_full): Likewise.
8517         (mono_metadata_parse_signature_full): Likewise.
8518         (mono_metadata_parse_method_signature_full): Likewise.
8519         (mono_metadata_parse_mh_full): Likewise.
8520         (mono_type_create_from_typespec): Likewise.
8521         (mono_metadata_interfaces_from_typedef_full): New public method;
8522         this is similar to the other _full() methods, but we take a
8523         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8524         (mono_metadata_parse_generic_param): Take an additional
8525         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8526         from that container.
8527         (mono_metadata_generic_param_equal): New static method to compare
8528         two type parameters.
8529         (_mono_metadata_type_equal): New static method; takes an
8530         additional `gboolean signature_only' argument - if true, we don't
8531         compare the owners of generic parameters.
8532         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8533         with a TRUE argument - do a signature-only comparision.
8534
8535         * loader.c: Use the new _full() methods and pass the
8536         MonoGenericContainer to them.
8537
8538         * object-internals.h (MonoReflectionTypeBuilder): Added
8539         `MonoGenericContainer *generic_container' field.
8540         (MonoReflectionMethodBuilder): Likewise.
8541
8542 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8543
8544         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8545         case initial images of dynamic assemblies.
8546
8547         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8548
8549         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8550
8551         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8552         length of event->other array.
8553         (typebuilder_setup_events): Ditto.
8554
8555         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8556         'assembly_by_name' and add an 'assemblies' list.
8557
8558         * assembly.h assembly.c: Add a new search hook for determining whenever
8559         an assembly is already loaded. Use this instead of searching in the
8560         loaded_assemblies list.
8561
8562         * domain.c appdomain.c: Implement the new search hook so loaded 
8563         assemblies are now scoped by appdomain. Fixes #67727.
8564
8565 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8566
8567         * threads.c (mono_thread_attach): Initialize synch_lock field so
8568         mono_thread_detach works again.
8569
8570         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8571         'lib' too. Fixes #63130.
8572
8573 2004-10-06  Jackson Harper  <jackson@ximian.com>
8574
8575         * culture-info-tables.h: regenerated.
8576
8577 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8578
8579         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8580         implemented by other interfaces in the result. Fixes #65764.
8581         
8582         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8583         Handle unloadable modules without crashing.
8584
8585         * image.c (load_modules): Revert the previous patch since modules must
8586         have a fixed index inside the array.
8587         
8588         * image.c (load_modules): Don't include native modules in the modules
8589         array.
8590
8591 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8592
8593         * reflection.h: Add param_defaults field.
8594
8595         * reflection.c: Add support for parameter defaults in dynamic methods.
8596         Fixes #64595.
8597
8598         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8599         an empty string when a type has no namespace. Fixes #64230.
8600
8601 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8602
8603         * tabledefs.h: Added "internal" security actions to support non-CAS
8604         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8605         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8606
8607 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8608
8609         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8610         constructor of abstract class. Fixes #61689.
8611
8612 2004-10-04  Martin Baulig  <martin@ximian.com>
8613
8614         * class-internals.h (MonoGenericContainer): New type.
8615         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8616         `MonoGenericContainer *generic_container'.
8617         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8618         `MonoGenericContainer *generic_container'.
8619
8620         * metadata.c (mono_metadata_load_generic_params): Return a
8621         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8622         removed the `num' argument.
8623
8624 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8625
8626         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8627         for dynamic images.
8628
8629         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8630         machine fields.
8631
8632         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8633
8634         * reflection.c: Save pe_kind and machine values into the generated
8635         image file.
8636
8637         * appdomain.c: Bump corlib version number.
8638
8639         * object-internals.h: Reorganize layout of LocalBuilder.
8640
8641         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8642         New helper function.
8643
8644         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8645         created MonoType for dynamic types. Fixes #66180.
8646
8647 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8648
8649         * threadpool.c: the ares hashtable needs a critical section around it.
8650         this prevents some nasty segfaults
8651
8652 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8653
8654         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8655         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8656         bug 67324).
8657         
8658 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8659
8660         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8661         
8662 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8663
8664         * image.c: Always canonicalize image file names, to avoid loading
8665         the same assembly twice when referenced using a relative path.
8666
8667 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8668
8669         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8670
8671         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8672
8673         * marshal.c: Fix warnings.
8674
8675 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8676
8677         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8678         attempting to marshal the delegate_trampoline as the method_addr.
8679         This patch has a static hashtable of marshalled delegates so that 
8680         we can map delegate_trampoline addresses back to delegates.  This
8681         allows a delegate passed to managed code to be passed back into native
8682         code.  Fixes #67039
8683
8684 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8685
8686         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8687
8688         * reflection.c (method_encode_code): Align method headers properly.
8689         Fixes #66025.
8690
8691 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8692
8693         * marshal.c: In the runtime invoke wrapper, reset the abort
8694         exception if it is cached. This avoids the automatic rethrowal of 
8695         the exception after the catch of the wrapper. Also check for pending
8696         interruptions before calling the managed method. This is done using
8697         the new method emit_thread_force_interrupt_checkpoint, since the
8698         normal checkpoint method is ignored when running the invoke wrapper.
8699         * object.c: If the abort exception is rethrown, set the abort_exc
8700         field of the thread, so it will be rethrown aftere every catch.
8701         * threadpool.c: Only run an interruption checkpoint if what has been
8702         requested is a stop of the thread (aborts will be ignored).
8703         * threads.c: By default, a thread will now never be interrumped while
8704         running the runtime invoke wrapper (this ensures that runtime_invoke
8705         will always return to the caller if an exception pointer is provided).
8706         There is a new special method mono_thread_force_interruption_checkpoint()
8707         to force an interruption checkpoint even if running a protected
8708         wrapper, which is used by the same runtime invoke wrapper to do a check
8709         at a safe point.
8710
8711 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8712
8713         * object.c, object-internals.h: Implemented mono_release_type_locks,
8714         which releases the cctor locks held by a thread.
8715         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8716         by a thread. Added mono_thread_exit() method to be used to safely stop
8717         a thread.
8718
8719 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8720
8721         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8722         Move null check before dereference.  Avoid indexing beyond the end
8723         of the 'modules' array.
8724
8725 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8726
8727         * metadata-internals.h (MonoImage): Add module_count field.
8728         * image.c (load_modules): Set image->module_count.
8729         (mono_image_load_file_for_image): Use image->module_count.
8730         * reflection.c (mono_image_load_module): Append to image->modules array 
8731         of dynamic assembly.
8732         (mono_module_get_object): Fix loop to actually increment index.
8733         Use image->module_count.
8734         * assembly.c (mono_assembly_load_references): Use image->module_count.
8735         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8736         Likewise.
8737
8738 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8739
8740         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8741         Avoid assert on generic types.
8742
8743 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8744
8745         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8746
8747         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8748
8749         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8750         function to convert a MarshalSpec structure to its managed counterpart.
8751
8752         * reflection.c: Fix warnings.
8753         
8754         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8755         field.
8756
8757         * icall.c (mono_create_icall_signature): Fix build.
8758
8759 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8760
8761         * icall.c: Add MakePointType icall.
8762
8763         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8764         warnings.
8765
8766 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8767
8768         * threadpool.c: reuse allocated slots in the queue.
8769
8770 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8771
8772         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8773
8774         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8775
8776         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8777         previous change.
8778
8779         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8780         ThrowOnUnmappableChar.
8781
8782         * icall.c (ves_icall_Type_GetPacking): New icall.
8783
8784 2004-09-24  Martin Baulig  <martin@ximian.com>
8785
8786         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8787
8788 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8789
8790         * appdomain.c:
8791         (mono_domain_set): allow setting a domain that is being unloaded.
8792         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8793         being unloaded.
8794
8795 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8796
8797         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8798         the GetCustomAttributes icall.
8799
8800 2004-09-23  Martin Baulig  <martin@ximian.com>
8801
8802         * object-internals.h (MonoReflectionGenericParam): Replaced
8803         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8804         with `guint32 attrs'.
8805
8806 2004-09-23  Martin Baulig  <martin@ximian.com>
8807
8808         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8809
8810 2004-09-23  Martin Baulig  <martin@ximian.com>
8811
8812         * object-internals.h (GenericParameterAttributes): New enum.
8813
8814 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8815
8816         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8817         
8818         * class.c (init_events): Fill out event->other field.
8819
8820         * class.c: Fix warnings.
8821
8822         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8823
8824 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8825
8826         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8827         walk which doesn't supply the IL offset.
8828
8829 2004-09-22  Martin Baulig  <martin@ximian.com>
8830
8831         * reflection.c (mono_reflection_setup_internal_class): If we're
8832         System.ValueType, System.Object or System.Enum, set
8833         `klass->instance_size' and create the vtable.
8834         (mono_reflection_create_internal_class): If we're an enum type,
8835         get the base class from our current corlib.
8836
8837 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
8838
8839         * reflection.h (MonoResolveTokenError): New type.
8840
8841         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8842         icall.
8843
8844         * icall.c: Add an 'error' argument to the ResolveToken icalls.
8845
8846 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
8847
8848         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8849         Support also calling constructors, but only for already allocated objects.
8850
8851 2004-09-17  Geoff Norton <gnorton@customerdna.com>
8852
8853         * reflection.c (type_get_qualified_name): If the klass is null
8854         return the typename to avoid a NullRefEx.
8855         (encode_cattr_value): Get the qualified name of the boxed type,
8856         not the underlying enumtype.  Fixes #62984.
8857
8858 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
8859
8860         * marshal.c: Fix problems with previous checkin.
8861
8862 2004-09-21    <vargaz@freemail.hu>
8863
8864         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8865         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8866
8867         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8868
8869 2004-09-21  Geoff Norton <gnorton@customerdna.com>
8870
8871         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8872         should only return a type for pointers, arrays, and passbyref types.
8873         Fixes bug #63841.
8874
8875 2004-09-21  Martin Baulig  <martin@ximian.com>
8876
8877         * domain.c (mono_debugger_check_runtime_version): New public
8878         function.
8879
8880         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
8881
8882 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
8883
8884         * reflection.c: Added missing sort to the declarative security 
8885         attributes table. MS implementation stops seeing the attributes if the
8886         token number regress in the table (as shown by ildasm and permview).
8887
8888 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
8889
8890         * object-internals.h (MonoReflectionModule): Add 'token' field.
8891         
8892         * reflection.c (mono_reflection_get_token): Add support for Module
8893         and Assembly.
8894         (mono_module_get_object): Set 'token' field.
8895         (mono_module_file_get_object): Set 'token' field.
8896
8897         * icall.c: Add new Assembly and Module icalls.
8898
8899         * appdomain.c: Bump corlib version.
8900
8901 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
8902
8903         * loader.h loader.c class.h class.c: Add helper functions for obtaining
8904         tokens of metadata objects.
8905
8906         * reflection.h reflection.c (mono_reflection_get_token): New function
8907         to obtain the token of a metadata object.
8908
8909         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8910
8911 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
8912
8913         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8914         
8915         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8916
8917 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
8918
8919         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8920         * object-internals.h: Added 3 MonoArray* members to MonoReflection
8921         AssemblyBuilder to access the permissions set in the class lib.
8922         * reflection.c: Added security attributes encoding step in 
8923         mono_image_build_metadata.
8924         * tabledefs.h: Added new security actions defined in 2.0:
8925         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8926
8927 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8928
8929         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8930         macro parameter.
8931
8932 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8933  
8934         * locales.c: nullify the ICU_collator member of CompareInfo when it is
8935           finalized. There where random SIGSEVs at program termination, when
8936           an object being finalized was trying to do a string comparison and
8937           the current culture was already finalized.
8938  
8939 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8940
8941         * threads.c: call thread_cleanup before finishing the thread if we get
8942         there.
8943
8944 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
8945
8946         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8947         assemblies from the parent. Fixes #65665.
8948
8949 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
8950
8951         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8952         modifiers.
8953
8954 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
8955
8956         * reflection.h: add prototype for mono_get_dbnull_object
8957         * reflection.c: add prototypes for get_default_param_value_blobs 
8958         and mono_get_object_from_blob for fussier compilers
8959
8960 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
8961  
8962         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8963         false deadlock checks in class initialization.
8964  
8965 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
8966
8967         * image.c (mono_image_addref): Fix comment.
8968
8969         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8970         possible.
8971
8972 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
8973
8974         * reflection.c (mono_param_get_objects): Modified to return
8975         ParameterInfo.DefaultValue object.
8976
8977         (get_default_param_value_blobs):
8978         (mono_get_object_from_blob):
8979         (mono_get_dbnull_object): New helper routines. 
8980
8981         * object.c (mono_get_constant_value_from_blob): New helper routine
8982         carved out from get_default_field_value ()
8983
8984         * object-internals.h (mono_get_constant_value_from_blob): Added
8985         function declaration.
8986
8987 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
8988
8989         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
8990         referenced assemblies. Fixes #62135.
8991
8992         * exception.h exception.c (mono_get_exception_file_not_found2): New
8993         helper function.
8994
8995 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
8996
8997         * class.h class.c: Add mono_type_get_underlying_type ().
8998
8999 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9000
9001         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9002         Fix GetTypes() to support dynamically created assemblies.
9003
9004 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9005
9006         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9007         
9008         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9009         previous patch.
9010
9011         * reflection.h reflection.c loader.c: Allow dynamic construction of
9012         pinvoke methods. Fixes #65571.
9013         
9014         * reflection.c (mono_reflection_get_type): Revert previous change since
9015         it causes regressions.
9016
9017 2004-09-08  Martin Baulig  <martin@ximian.com>
9018
9019         * class.c (class_compute_field_layout): Don't call
9020         mono_class_layout_fields() for open generic instances.
9021
9022 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9023         * threads.c appdomain.c: fix typo in GC macro
9024
9025 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9026
9027         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9028         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9029
9030 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9031
9032         * image.c (mono_image_close): Applied patch from 
9033         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9034         assembly is loaded multiple times from data.
9035         
9036         * image.c (mono_image_open): Fix warning.
9037
9038 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9039
9040         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9041         once. Fixes #58334.
9042         
9043         * reflection.c (mono_reflection_create_runtime_class): Initialize
9044         klass->nested_classes. Fixes #61224.
9045
9046 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9047
9048         * threads.c: sched_yield() on exit, to allow threads to quit.
9049
9050 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9051
9052         * object.c (mono_unhandled_exception): Remove leftover debug code.
9053
9054 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9055
9056         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9057
9058 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9059
9060         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9061         
9062         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9063
9064 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9065
9066         * marshal.c (emit_marshal_array): Null terminate string arrays.
9067         
9068         * marshal.c (raise_auto_layout_exception): Fix warning.
9069
9070         * reflection.c (mono_param_get_objects): Initialize the default value
9071         with DBNull.Value, not null. Fixes #62123.
9072
9073 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9074
9075         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9076         throw an exception with a cute explanation.
9077
9078 2004-09-06  Dick Porter  <dick@ximian.com>
9079
9080         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9081         Close the new process's thread handle, as we don't use it.  The
9082         handle stays around forever otherwise.
9083
9084 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9085
9086         * object.c (arith_overflow): Fix warning.
9087
9088         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9089         calling conventions in method refs. Fixes #65352.
9090
9091         * reflection.c: Fix warnings.
9092
9093 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9094
9095         * icall.c: Add a new icall for Array.Clear
9096
9097 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9098
9099         * object.c: When allocating an array, we have to throw
9100         an overflow exception if any of the lengths are < 0.
9101
9102 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9103
9104         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9105         properly. Also move implementation of string array marshalling to 
9106         managed code. Fixes #42316.
9107
9108 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9109
9110         * assembly.c: provide more information when loading an assembly fails.
9111
9112 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9113
9114         * filewatcher.c: don't expect the development fam package to be
9115         installed.
9116
9117 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9118
9119         * marshal.c: Make a copy of the signature cookie since it will be
9120         freed by the caller.
9121         
9122         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9123
9124         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9125
9126         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9127         marshal specs.
9128
9129         * marshal.c: More refactoring.
9130         
9131         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9132         smaller functions.
9133
9134 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9135
9136         * object.c: In mono_message_invoke, fill the output parameter array after
9137           calling the managed method (it was done before the call). This fixes
9138           bug #59299.
9139
9140 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9141
9142         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9143         as well.
9144
9145 2004-09-02  Martin Baulig  <martin@ximian.com>
9146
9147         * class.c (mono_class_instance_size): Don't allow generic type
9148         definitions or open generic instances.
9149         (mono_class_array_element_size): If we're a value type, call
9150         mono_class_instance_size() on the original class.
9151
9152         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9153         handle generic instances.
9154
9155         * mono-debug-debugger.c (write_type): Handle generic instances
9156         like classes.
9157
9158 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9159
9160         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9161         the allocation request fails. Fixes #65089.
9162
9163         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9164         
9165         * object.c (mono_runtime_free_method): New function to free a dynamic
9166         method.
9167
9168         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9169         delegate trampoline.
9170
9171         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9172         with hasthis as dynamic,
9173
9174         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9175
9176         * domain.c (mono_jit_info_table_remove): New function to remove an
9177         entry from the jit info table.
9178
9179         * class-internals.h (MonoMethod): Add 'dynamic' field.
9180
9181         * loader.c: Fix warnings.
9182
9183 2004-09-01  Martin Baulig  <martin@ximian.com>
9184
9185         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9186         instead of mono_debugger_lock() because the latter one is a no-op
9187         unless running in the debugger.
9188
9189 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9190
9191         * class.c (class_compute_field_layout): Classes with auto-layout or
9192         reference fields are not blittable.
9193         
9194 2004-09-01  Dick Porter  <dick@ximian.com>
9195
9196         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9197         mono_image_get_filename() to get the assembly location.
9198
9199         * icall.c:
9200         * metadata.h: Fix compile warnings
9201
9202 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9203
9204         * class.c (class_compute_field_layout): System.Object is blittable.
9205
9206         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9207         as in/out. Fixes #59909.
9208
9209 2004-09-01  Martin Baulig  <martin@ximian.com>
9210
9211         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9212         mono_metadata_generic_inst_is_valuetype() if we're a generic
9213         instance to check whether our underlying type is a reference type.
9214
9215 2004-09-01  Martin Baulig  <martin@ximian.com>
9216
9217         * metadata.c (mono_type_size): If we're a generic instance, call
9218         mono_class_value_size() for value types.
9219
9220 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9221
9222         * marshal.c: Implement more custom marshalling functionality. Fixes
9223         #64915.
9224
9225 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9226
9227         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9228
9229 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9230
9231         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9232
9233         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9234
9235         * icall.c: Fix some warnings.
9236
9237         * threads.c (abort_appdomain_thread): Fix unref errors.
9238         (mono_thread_current): Fix THREAD_DEBUG define.
9239
9240 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9241
9242         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9243
9244         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9245
9246 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9247
9248         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9249         string arrays.
9250
9251 2004-08-28  Martin Baulig  <martin@ximian.com>
9252
9253         * metadata.c
9254         (mono_metadata_generic_inst_is_valuetype): New public function.
9255
9256         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9257         mono_metadata_generic_inst_is_valuetype() if we're a generic
9258         instance to check whether our underlying type is a valuetype.
9259
9260 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9261
9262         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9263         #63768.
9264
9265 2004-08-25  Martin Baulig  <martin@ximian.com>
9266
9267         * loader.c (mono_get_method_from_token): Abstract methods can also
9268         be generic and thus have type parameters.
9269
9270         * metadata-internals.h
9271         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9272
9273         * reflection.c (mono_image_get_generic_param_info): Don't create a
9274         metadata row, just add an entry to the `gen_params' array.
9275         (build_compressed_metadata): Sort the `gen_params' array and then
9276         actually create the metadata.
9277
9278 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9279
9280         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9281
9282 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9283
9284         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9285
9286 2004-08-24  Martin Baulig  <martin@ximian.com>
9287
9288         * class.cs (mono_class_is_subclass_of): Like an interface, a
9289         generic instance also derives from System.Object.
9290
9291 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9292
9293         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9294         custom modifiers to be in any order. Fixes #61990.
9295
9296 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9297
9298         * object.c: Register mono_object_new_fast icall.
9299         
9300         * object.c (mono_class_get_allocation_ftn): Return to calling
9301         mono_object_new_fast, since it seems faster to compute the object 
9302         size in unmanaged code than passing it as a parameter.
9303
9304         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9305
9306         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9307         this function with Boehm as the oom handler, so we don't have to check
9308         the result of GC_malloc.
9309
9310         * object.c: Remove checks for oom.
9311
9312         * object.h object.c (mono_class_get_allocation_ftn): New function to
9313         return the icall which can be used to allocate an instance of a given
9314         class. 
9315
9316         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9317
9318         * class-internals.h: Add 'enabled' field.
9319
9320 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9321
9322         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9323
9324 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9325         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9326         value 0x0010.
9327
9328 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9329
9330         * appdomain.c: use the Tls function for appdomain too,
9331         at Zoltan's request. Actually return in mono_context_get
9332
9333         * appdomain.c, profiler.c, threads.c: use __thread
9334
9335 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9336
9337         * appdomain.c threads.c: Call GC_CreateThread on windows.
9338
9339         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9340         multiple libraries since this don't work on windows.
9341
9342 2004-08-18  Martin Baulig  <martin@ximian.com>
9343
9344         * class-internals.h
9345         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9346         MonoMethodHeader.
9347
9348         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9349         MonoMethodNormal since we also need it for abstract and interface
9350         methods.
9351
9352         * reflection.c
9353         (build_compressed_metadata): Sort the GenericParam table.
9354         (mono_image_create_token): Added `gboolean create_methodspec'
9355         argument; this is false when generating a MethodImpl token.
9356         (reflection_methodbuilder_to_mono_method): Abstract and interface
9357         methods may also have generic parameters.
9358
9359 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9360
9361         * appdomain.c: thread local alloc
9362
9363 2004-08-17  Martin Baulig  <martin@ximian.com>
9364
9365         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9366
9367         * icall.c
9368         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9369         argument.
9370
9371         * class.c (mono_type_get_full_name): New public function.
9372         (mono_type_get_name): Don't include the type arguments.
9373
9374 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9375
9376         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9377         for inclusion into the mono executable.
9378
9379 2004-08-16  Martin Baulig  <martin@ximian.com>
9380
9381         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9382         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9383
9384 2004-08-14  Martin Baulig  <martin@ximian.com>
9385
9386         * class.c (dup_type): Also copy the `byref' field.
9387
9388 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9389
9390         * reflection.c (create_dynamic_mono_image): Revert the last change 
9391         since it breaks bootstrap.
9392
9393 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9394
9395         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9396
9397         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9398         not free them with g_free.
9399
9400 2004-08-11  Martin Baulig  <martin@ximian.com>
9401
9402         * reflection.c (mono_reflection_setup_internal_class): Also call
9403         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9404
9405 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9406
9407         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9408         called during default (first) AppDomain creation. Keep track of
9409         Evidence when loading assemblies.
9410
9411 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9412
9413         * opcodes.c, opcodes.h: reduce runtime relocations.
9414
9415 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9416
9417         * culture-info.h, locales.c: fixes and chages to sue the new
9418         optimized format of the locale data.
9419         * culture-info-tables.h: regenerated.
9420
9421 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9422         
9423         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9424
9425 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9426
9427         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9428         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9429         * domain-internals.h: icall declaration.
9430         * icall.c: icall registration.
9431         * object-internals.h: New fields in MonoAssembly for CAS.
9432
9433 2004-08-05  Duncan Mak  <duncan@ximian.com>
9434
9435         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9436         CEE_LDELEM_ANY.
9437
9438 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9439
9440         * reflection.c: fix to deal with object[] arrays in custom ctors
9441         (bug #62550).
9442
9443 2004-08-05  Martin Baulig  <martin@ximian.com>
9444
9445         * class.c (mono_class_array_element_size): Added support for
9446         generic instances and correctly handle "recursive" types.
9447
9448 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9449
9450         * assembly.c: Fix warnings.
9451
9452 2004-08-04  Martin Baulig  <martin@ximian.com>
9453
9454         * class.c
9455         (mono_type_get_name_recurse): Added `gboolean include_arity'
9456         argument specifying whether or not we should include the generic
9457         arity in the type name.
9458         (_mono_type_get_name): New static function.
9459         (mono_class_setup_vtable): If we're a generic instance, don't
9460         include the generic arity in the names of explicit method
9461         implementations.        
9462
9463 2004-08-03  Martin Baulig  <martin@ximian.com>
9464
9465         * class.c (mono_type_get_name_recurse): Enclose the generic type
9466         arguments in `<', '>'.
9467
9468 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9469
9470         * gc.c: make GC warning messages use the trace API, they are just
9471         noise to most of the users.
9472
9473 2004-08-03  Martin Baulig  <martin@ximian.com>
9474
9475         * debug-mono-symfile.c (read_string): Correctly read the string.
9476
9477 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9478
9479         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9480         
9481         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9482         icalls.
9483         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9484
9485 2004-07-30  Martin Baulig  <martin@ximian.com>
9486
9487         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9488         Reflect latest symbol writer changes.   
9489
9490 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9491
9492         * object.c: always create an object if null is passed
9493         to Invoke() where a valuetype is expected.
9494
9495 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9496
9497         * marshal.c (mono_marshal_init): make managed
9498         signatures match native ones better for 64bits.
9499
9500 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9501
9502         * appdomain.c: hack to build correctly the private bin path on windows.
9503         Fixes bug #61991.
9504
9505 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9506
9507         * assembly.c: Load mscorlib from the correct framework directory
9508           (mono/<version>/mscorlib.dll).
9509         * appdomain.h: Added prototypes for new functions.
9510         * internals.h: Added some prototypes.
9511         * domain.c: When initializing the runtime, get from the executable and
9512           the configuration files the runtime version that the app supports.
9513           Added support methods for reading app.exe.config. Added list of versions
9514           supported by the JIT. Added two new methods: mono_init_from_assembly,
9515           which initializes the runtime and determines the required version from
9516           the provided exe file, and mono_init_version, which initializes
9517           the runtime using the provided version.
9518         * icall.c: Get machine.config from version-specific directory.
9519         * reflection.c: When generating an image, embed the version number
9520           of the current runtime.
9521
9522 2004-07-28  Dick Porter  <dick@ximian.com>
9523
9524         * socket-io.c
9525         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9526         returned sockaddr size before creating the remote address object.
9527         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9528         61608.
9529
9530 2004-07-28  Dick Porter  <dick@ximian.com>
9531
9532         * locales.c (string_invariant_compare_char): Fix invariant char
9533         compares between upper and lower cases.  Fixes bug 61458.
9534
9535 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9536         
9537         * marshal.c: actually cache stelem.ref wrappers.
9538         
9539 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9540
9541         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9542         sections and remove the mono_cli_rva_map () function.
9543
9544 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9545
9546         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9547         by Geoff Norton (<gnorton@customerdna.com>).
9548
9549 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9550
9551         * class.c: fix class loads for pointer types (typeof(int) !=
9552         typeof(int*)).
9553
9554 2004-07-27  Martin Baulig  <martin@ximian.com>
9555
9556         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9557         reading the debugging information from an external ".mdb" file.
9558
9559 2004-07-24  Martin Baulig  <martin@ximian.com>
9560
9561         * reflection.c (mono_image_get_type_info): Only write a class
9562         layout entry if we actually have a size or a packing size.
9563
9564 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9565
9566         * reflection.c (type_get_fully_qualified_name): 
9567         insert cast to get type checking of ?: with non-gcc compilers
9568
9569 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9570
9571         * rand.c: use g_getenv for both lookups of
9572         MONO_EGD_SOCKET
9573
9574 2004-07-17  Martin Baulig  <martin@ximian.com>
9575
9576         * reflection.c (mono_reflection_bind_generic_method_parameters):
9577         Set `gmethod->reflection_info'.
9578
9579 2004-07-17  Martin Baulig  <martin@ximian.com>
9580
9581         * class.c (mono_class_create_from_typedef): Insert the newly
9582         created class into the hash table before computing the interfaces
9583         since we could be called recursively.
9584
9585 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9586
9587         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9588         function to implement stelem.ref in managed code
9589         * class-internals.h, debug-helpers.c: a new wrapper type
9590         for the above.
9591
9592 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9593
9594         * gc.c: allow GC handles to work even when no GC is compiled in.
9595         Fix part of bug #61134 (GetAddrOfPinnedObject).
9596
9597 2004-07-13  Peter Williams  <peter@newton.cx>
9598  
9599         * process.c (complete_path): Make sure we don't attempt to execute
9600         directories.
9601  
9602 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9603
9604         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9605           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9606           and will add/subtract the hour if needed
9607
9608 2004-07-12  Martin Baulig  <martin@ximian.com>
9609
9610         * reflection.c (mono_field_get_object): If we have
9611         `field->generic_info', take the attributes from
9612         `field->generic_info->generic_type'.    
9613
9614 2004-07-12  Martin Baulig  <martin@ximian.com>
9615
9616         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9617         This function must be called before initializing the runtime.
9618         (mono_debug_init_1): New function; call this after initializing
9619         the runtime, but before loading the assembly.  It tells the
9620         debugger to load corlib and the builtin types.
9621
9622         * mono-debug-debugger.c: Did some larger changes in the debugging
9623         code; support recursive class declarations, make sure we actually
9624         add all classes.
9625
9626 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9627
9628         * debug-helpers.c: undo my previous patch and fixed the real issue in
9629         ../mini/exceptions-x86.c
9630
9631 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9632
9633         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9634         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9635         called from other .cctors.
9636
9637 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9638
9639         * loader.c: Removed the mono_loader_wine_init hack now that we are
9640         doing a managed version of Windows.Forms.
9641
9642 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9643
9644         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9645         threadpool.c, threads.c: remove static data from rootset.
9646
9647 2004-07-09  Dick Porter  <dick@ximian.com>
9648
9649         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9650         Don't do any more processing if the matched length was 0.  It was
9651         increasing the size of the string before.  Fixes bug 61167.
9652
9653 2004-07-09  Dick Porter  <dick@ximian.com>
9654
9655         * socket-io.h:
9656         * socket-io.c
9657         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9658         Add support for SO_PEERCRED if its available.
9659
9660 2004-07-09  Peter Bartok <pbartok@novell.com>
9661         * loader.c: winelib.exe.so error message is now only displayed if
9662         MONO_DEBUG is set. To help us avoid questions when people are trying
9663         out the new Managed.Windows.Forms.
9664
9665 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9666
9667         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9668         for isinst and castclass wrappers.
9669
9670         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9671         to libmetadata from the JIT, so they could be used by the marshalling
9672         code and the interpreter.
9673
9674         * marshal.c: Register marshalling related JIT icalls here instead of
9675         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9676         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9677
9678         * metadata.h: Remove unneeded marshalling conversions.
9679
9680         * opcodes.c: Update for new opcodes.
9681         
9682 2004-07-08  Martin Baulig  <martin@ximian.com>
9683
9684         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9685         (mono_debug_get_domain_data): Make this function static.
9686
9687 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9688
9689         * gc.c, object.h: add nice GC handle API for embedders.
9690
9691 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9692
9693         * reflection.c: more changes for the new api
9694
9695         * object.c: When we reflect on a field w/ a constant value, it
9696         will not have a memory location, so we must access metadata. Also,
9697         allow easier reading of strings so that we can read them from
9698         the constant data.
9699
9700         * class.c (mono_class_layout_fields): no need for literal fields here.
9701
9702         * class-internals.h: api changes for const fields
9703
9704         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9705
9706 2004-07-06  Martin Baulig  <martin@ximian.com>
9707
9708         * mono-debug.h: Increment version number to 44.
9709
9710         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9711         now a gpointer, rewrote this whole method.
9712
9713         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9714         function.  Add information about the wrapper in a new "misc table".
9715
9716         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9717         for the new misc table.
9718
9719 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9720
9721         * metadata-internals.h image.c: Add a cache for helper signatures.
9722
9723         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9724
9725 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9726
9727         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9728         delegates from a delegate. Fixes #61033.
9729         
9730         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9731         marshalling of stringbuilder arrays. Fixes #59900.
9732
9733 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9734
9735         * icall.c: Add EnumBuilder:setup_enum_type icall.
9736
9737 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9738
9739         * icall.c: Added a new icall for the property version of
9740         OffsetOfStringData.
9741
9742 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9743
9744         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9745         it has a constant size across platforms.
9746
9747         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9748         stack trace.
9749
9750 2004-06-29  Martin Baulig  <martin@ximian.com>
9751
9752         * mono-debug.c (mono_debug_add_method): Protect the whole function
9753         in mono_debugger_lock(), not just parts of it.
9754
9755 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9756
9757         * reflection.c: make sure padding bytes in heaps are zeroed.
9758
9759 2004-06-24  David Waite  <mass@akuma.org>
9760
9761         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9762         image.c, loader.c, locales.c, marshal.c, metadata.c,
9763         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9764         string-icalls.c, threads.c: change to C90-style comments from C99 /
9765         C++ -style
9766
9767 2004-06-24  Dick Porter  <dick@ximian.com>
9768
9769         * threads.c
9770         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9771         return createdNew.  Fixes bug 60412.
9772
9773         * threads-types.h: 
9774         * icall.c: Add createdNew parameter to CreateMutex icall
9775
9776 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9777
9778         * reflection.c, object-internals.h: save default value in params.
9779
9780 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9781
9782         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9783         no need to build a new path combining that with the application base.
9784         Fixes bug #60442.
9785
9786 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9787
9788         * reflection.c: fixed minor standard compliance issues.
9789
9790 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9791
9792         * reflection.c: fixed issue with encoding some custom attributes
9793         (arrays in properties and fields, bug #60411).
9794
9795 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9796
9797         * reflection.c: fix start address when copying the public key token.
9798
9799 2004-06-23  Martin Baulig  <martin@ximian.com>
9800
9801         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9802         the `exc' object in a static object to put it into the GC's root set.
9803
9804 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9805
9806         * reflection.c: make mono_reflection_setup_internal_class ()
9807         callable a second time to setup a new parent class.
9808
9809 2004-06-23  Dick Porter  <dick@ximian.com>
9810
9811         * threads.c: Check for WAIT_IO_COMPLETION return values.
9812
9813 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
9814
9815         * appdomain.c: Removed the g_free on the public key token. Now copy 
9816         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9817         * assembly.c: Added public key token string value when loading 
9818         assemblies. Fix bug #60439.
9819         * icall.c: Added missing informations (like public key) in 
9820         GetReferencedAssemblies. Fix #60519.
9821         * image.h: Changed definition for public key token from const char*
9822         public_tok_value to guchar public_key_token [17];
9823         * reflection.c: Updated for changes to public key token.
9824
9825 2004-06-22  Lluis Sanchez Gual
9826
9827         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
9828         for the field in base classes.
9829
9830 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9831
9832         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9833         mark headers as not supported, they are installed only for use by the
9834         debugger.
9835
9836 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9837
9838         * *.c, *.h: avoid namespace pollution in public headers.
9839
9840 2004-06-21  Martin Baulig  <martin@ximian.com>
9841
9842         * exception.c (mono_get_exception_security): It's in
9843         "System.Security", not in "System".
9844
9845         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9846         the exception classes.
9847
9848 2004-06-21  Martin Baulig  <martin@ximian.com>
9849
9850         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9851         Protect the exception object from being finalized.
9852
9853 2004-06-21  Martin Baulig  <martin@ximian.com>
9854
9855         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9856         public function.
9857
9858 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
9859
9860         * reflection.c: Load the assembly in mono_reflection_type_from_name,
9861         if it was not loaded before. Fix parts of #60439.
9862
9863 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9864
9865         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9866         code that was broken since Ben's change: wrappers are now
9867         dependent on the method signature only again.
9868
9869 2004-06-21  Martin Baulig  <martin@ximian.com>
9870
9871         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9872         added interface support.
9873
9874 2004-06-21  Martin Baulig  <martin@ximian.com>
9875
9876         * class.c (mono_vtable_get_static_field_data): New public method.
9877
9878 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
9879
9880         * filewatcher.c : Windows build fix to be compliant with API changes.
9881
9882 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9883
9884         * class.h, class.c: more accessors.
9885         * metadata.h, metadata.c: prepare for hiding MonoType and
9886         MonoMethodSignature: people should use the accessors from now on
9887         outside of the tree.
9888
9889 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9890
9891         * *.c, *.h: more API cleanups.
9892
9893 2004-06-18  Jackson Harper  <jackson@ximian.com>
9894
9895         * assembly.c: Trace loading assemblies.
9896         * loader.c: Trace loading native libraries.
9897         * mono-config.c: Trace loading config files.
9898         
9899 2004-06-18  Dick Porter  <dick@ximian.com>
9900
9901         * locales.c: Tell ICU the lengths of strings, it can cope with
9902         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
9903
9904 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9905
9906         * image.c: swapped name/filename;
9907
9908 2004-06-18  Martin Baulig  <martin@ximian.com>
9909
9910         * mono-debug-debugger.c (write_class): Write the parent class at
9911         the end of the header.
9912
9913 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9914
9915         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9916
9917 2004-06-17  Raja R Harinath  <rharinath@novell.com>
9918
9919         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
9920         (bundle_obj): New conditional define.
9921         (BUILT_SOURCES): Remove.
9922         ($(bundle_srcs)): Make parallel-make safe.
9923         (libmonoruntime_la_LIBADD): Make unconditional.
9924         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
9925         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9926
9927 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
9928
9929         * culture-info-tables.h: It was inconsistent with the latest
9930           supp info files.
9931
9932 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
9933
9934         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9935         be loaded.
9936
9937         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9938         with gcc 2.95.
9939
9940 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9941
9942         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9943         cleaned up public header threads.h.
9944
9945 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9946
9947         * Makefile.am, *.c, *.h: more API cleanups.
9948
9949 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9950
9951         * Makefile.am: removed monosn from compilation.
9952         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9953         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9954         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9955         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9956         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9957         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9958
9959 2004-06-15  Jackson Harper  <jackson@ximian.com>
9960
9961         * assembly.c: Make locales lower case when searching the GAC for
9962         assemblies. gacutil will always make locales lowercase when
9963         installing so this effectively makes them case insensitive.
9964         
9965 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
9966
9967         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9968         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9969           parameter which allows to choose whether the wait can be interrupted or 
9970           not. Also added the method mono_monitor_enter(), which locks the monitor
9971           using an infinite wait and without allowing interruption.
9972           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9973           interrupted.
9974         * object.h: Added new fields in MonoThread. suspend_event holds the event
9975           used to susped/resume the thread. synch_lock is the lock object to use for
9976           modifying the thread state.
9977         * threads.c: Use the new synch_lock object for locking, instead of "this",
9978           which can generate deadlocks.
9979           Moved thread state change in Thread.Sleep and Thread.Join from managed
9980           to unmanaged code. This avoids a deadlock when the thread was suspended
9981           just after acquiring the thread lock.
9982           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9983           Implemented Thread.Suspend using an event instead of ThreadSuspend,
9984           which is not fully implemented in the io-layer.
9985         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9986
9987 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9988
9989         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9990         threads-types.h: more API cleanups.
9991
9992 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9993
9994         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9995         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9996         threadpool.c, threads.c: first pass at the exported API cleanup.
9997
9998 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9999
10000         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10001
10002 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10003
10004         * icall.c: added internalGetHome.
10005
10006 2004-06-14  Dick Porter  <dick@ximian.com>
10007
10008         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10009         possible to return successfully when '.' or '..' were the only
10010         entries in a directory, but were skipped.  The MonoIOStat was not
10011         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10012         Fixes bug 59574.
10013
10014 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10015
10016         * reflection.c: make binaries run on .Net 1.1 by default.
10017
10018 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10019
10020         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10021
10022 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10023
10024         * marshal.c: keep track of struct size with explicit layout
10025         (bug #59979).
10026
10027 2004-06-12  Martin Baulig  <martin@ximian.com>
10028
10029         * mono-debug-debugger.c: Comment out a debugging g_message().
10030
10031 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10032
10033         * reflection.c, reflection.h: do not free custom attrs that are cached.
10034         * icall.c: use braces to make code clearer.
10035
10036 2004-06-11  Martin Baulig  <martin@ximian.com>
10037
10038         * class.h (MonoInflatedField): New type.
10039         (MonoClassField): Replaced `MonoType *generic_type' with
10040         `MonoInflatedField *generic_info'.
10041
10042         * icall.c
10043         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10044
10045 2004-06-11  Martin Baulig  <martin@ximian.com>
10046
10047         * reflection.c (mono_image_create_method_token): Correctly encode
10048         varargs methods.
10049
10050 2004-06-11  Martin Baulig  <martin@ximian.com>
10051
10052         * metadata.c (mono_metadata_parse_method_signature): When parsing
10053         a MethodDef which has VarArgs, also set sentinelpos if we don't
10054         have any parameters.
10055
10056 2004-06-11  Martin Baulig  <martin@ximian.com>
10057
10058         * verify.c (mono_method_verify): In CEE_CALL, use
10059         mono_method_get_signature() to get the method's signature, unless
10060         we're a PInvoke method.
10061
10062 2004-06-10  Jackson Harper  <jackson@ximian.com>
10063
10064         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10065         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10066         logical name as the supplied path is just a prefix to the gac not
10067         the direct path to it.
10068         
10069 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10070
10071         * reflection.c: make the token for a created method match
10072         the token of the MethodBuilder it was created from
10073         (IKVM requires this behaviour now).
10074
10075 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10076
10077         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10078         reflection.c, socket-io.c: leak fixes.
10079
10080 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10081
10082         * icall.c: handle sentinel pos in vararg methods in position different
10083         from 0.
10084
10085 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10086
10087         * culture-info-tables.h: freshly generated.
10088
10089 2004-06-09  Martin Baulig  <martin@ximian.com>
10090
10091         * loader.c (mono_get_method_constrained): Call `mono_class_init
10092         (constrained_class)'.   
10093
10094 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10095
10096         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10097         any methods. Fixes #59629.
10098
10099 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10100
10101         * culture-info-tables.h: reflecting locale-builder updates.
10102
10103 2004-06-08  Dick Porter  <dick@ximian.com>
10104
10105         * object.h:
10106         * locales.c: Fixed compile warnings, including a real bug in
10107         CompareInfo_internal_compare.
10108         
10109 2004-06-08  Dick Porter  <dick@ximian.com>
10110
10111         * locales.c
10112         (ves_icall_System_Globalization_CompareInfo_internal_index):
10113         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10114         Double-check the resuls of usearches, because ICU currently
10115         ignores most of the collator settings here.  Fixes bug 59720.
10116         
10117 2004-06-08  Dick Porter  <dick@ximian.com>
10118
10119         * locales.c
10120         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10121         Fix memory leak and segfault-causing typo.  No idea how this one
10122         lasted so long without being noticed.
10123
10124 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10125
10126         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10127         any methods. Fixes #59629.
10128
10129 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10130
10131         * assembly.c:
10132         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10133         own the critical section before). Removed dead code (that's done
10134         in the preload hook).
10135
10136         (mono_assembly_load_with_partial_name): call the preload hook.
10137
10138 2004-06-08  Martin Baulig  <martin@ximian.com>
10139
10140         * metadata.c (mono_metadata_signature_alloc): Default
10141         `sentinelpos' to -1.
10142
10143         * reflection.c (mono_image_get_array_token): Likewise.
10144
10145 2004-06-08  Martin Baulig  <martin@ximian.com>
10146
10147         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10148
10149         * metadata.c (mono_metadata_parse_method_signature): When parsing
10150         a MethodDef which has VarArgs, set sentinelpos.
10151
10152         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10153         `gint16' since we're using -1 for non-varargs methods.
10154
10155         * reflection.c
10156         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10157         (method_encode_signature): Added varargs support.
10158         (method_builder_encode_signature): Likewise.
10159         (mono_image_get_varargs_method_token): New static method.
10160         (mono_image_create_method_token): New public method; this is
10161         called via an icall instead of mono_image_create_token() when
10162         calling a varargs method.       
10163
10164 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10165
10166         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10167
10168 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10169
10170         * culture-info-tables.h : Reflecting the latest locale-builder that
10171           fixed empty array representation ({} to {0}).
10172
10173 2004-06-07  Jackson Harper  <jackson@ximian.com>
10174
10175         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10176         looking up extra gac paths. This allows MONO_GAC_PATH to act
10177         exactly like a prefix.
10178         
10179 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10180
10181         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10182         type name before modifying it. Fixes #59405.
10183
10184 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10185
10186         * culture-info.h: added fields for "all datetime patterns".
10187         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10188           _construct_datetime_format ()): fill xxx_patterns fields.
10189         * object.h: added fields for "all datetime patterns" to
10190           MonoDateTimeFormatInfo.
10191         * culture-info-tables.h: reflecting locale-builder updates.
10192
10193 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10194
10195         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10196         the event has no add and remove methods. Fixes #59629.
10197
10198 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10199
10200         * object.c: Fixed possible integer overflow when allocating large
10201         strings.
10202
10203 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10204
10205         * culture-info-tables.h: reflecting locale-builder updates.
10206
10207 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10208
10209         * culture-info-tables.h: reflecting locale-builder updates.
10210
10211 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10212
10213         * culture-info-tables.h: reflecting locale-builder updates.
10214
10215 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10216
10217         * threads.c: Made Thread.Sleep abortable.
10218
10219 2004-06-02  Martin Baulig  <martin@ximian.com>
10220
10221         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10222
10223         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10224
10225 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10226
10227         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10228
10229 2004-05-30  Jackson Harper  <jackson@ximian.com>
10230
10231         * reflection.c: Do not hardcode assembly versions or public key
10232         tokens anymore. All of this except the corlib section was dead
10233         code anyways.
10234         
10235 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10236
10237         * object.c (mono_runtime_invoke_array): Automatically create boxed
10238         objects for byref valuetypes if needed. Fixes #59300.
10239         
10240         * object.c (mono_method_return_message_restore): Handle 
10241         MONO_TYPE_OBJECT as well.
10242
10243 2004-05-28  Jackson Harper  <jackson@ximian.com>
10244
10245         * reflection.c: The modified type encoding was causing build
10246         problems. Reverted for now.
10247         
10248 2004-05-28  Jackson Harper  <jackson@ximian.com>
10249
10250         * reflection.c/h: Take an assembly ref so that we dont create
10251         fully qualified names when encoding types in the same assembly as
10252         the custom attribute being emitted.
10253         * appdomain.c: Increment version number.
10254         
10255 2004-05-26  Duncan Mak  <duncan@ximian.com>
10256
10257         * icall.c
10258         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10259         Set the full version number (major, minor, build, revision).
10260
10261 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10262
10263         * marshal.c (emit_struct_conv): increment src/dst after blit
10264         (mono_marshal_get_managed_wrapper,
10265         mono_marshal_get_native_wrapper): make sure we have marshalling
10266         info before marshalling params (info computation affects
10267         blittable)
10268
10269         * class.c (class_compute_field_layout): correctly deal with
10270         blittable
10271         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10272         value types (as per what windows dows by default)
10273         (mono_class_setup_mono_type): System.ValueType is blittable
10274         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10275         blittable
10276
10277         * marshal.c (mono_marshal_load_type_info): flag types  as
10278         non-blittable if the native layout doesn't match the managed
10279         layout
10280
10281 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10282
10283         * appdomain.c: don't add stuff in the private search path that is
10284         above the application base. If application base is not set, there's
10285         no private search path.
10286
10287 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10288
10289         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10290         byref struct arguments in native->managed marshalling.
10291
10292 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10293
10294         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10295         cache methods using signature (special case for methods
10296         that are value type or string class)
10297         
10298         * image.c (mono_image_close): clean up allocated GSList's
10299         in runtime_invoke_cache.
10300
10301 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10302
10303         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10304         there's no MONO_CFG_DIR environment variable defined.
10305
10306 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10307
10308         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10309
10310 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10311
10312         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10313           is interrumped.
10314         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10315           before waiting for it, and call CloseHandle after the wait to unref it.
10316           This will make sure that handles are not disposed too early.
10317
10318 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10319
10320         * appdomain.c:
10321         * appdomain.h:
10322         * icall.c: removed
10323         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10324         needed now.
10325
10326         * object.c: se the application_base only for the domain that runs
10327         Main. Fixes bug #59216,
10328
10329 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10330
10331         * appdomain.c:
10332         * object.c: only the domain in which Main is run have
10333         SetupInformation.ConfigurationFile set, so moved a few lines from
10334         appdomain.c to object.c.
10335
10336 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10337
10338         * appdomain.c: we tried to load [name].(dll|exe), but according
10339         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10340         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10341         There's a test case attached to bug #58922.
10342
10343 2004-05-27  Dick Porter  <dick@ximian.com>
10344
10345         * icall.c:
10346         * file-io.c: Implemented icalls for locking and unlocking regions
10347         in a file.
10348         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10349         FALSE on error (fixes both compiler warning and real bug.)
10350
10351 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10352
10353         * culture-info-tables.h: reflecting locale-builder updates.
10354
10355           (Added missing ChangeLog entry for 05/26)
10356
10357 2004-05-27  Jackson Harper  <jackson@ximian.com>
10358
10359         * locales.c: Fix some cut and paste errors.
10360         
10361 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10362
10363         * mono-config.c: set the correct path for config. directory on windows.
10364
10365 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10366
10367         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10368           on win32.
10369
10370 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10371
10372         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10373         from pinvoke functions.
10374         
10375         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10376
10377 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10378
10379         * culture-info-tables.h: reflecting locale-builder updates.
10380
10381 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10382
10383         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10384         #59086.
10385
10386 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10387
10388         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10389         * icall.c: Modified icalls for RNG.
10390         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10391         Windows (CryptoAPI).
10392
10393 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10394
10395         * locales.c: Fix build.
10396
10397 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10398
10399         * culture-info-tables.h: reflecting locale-builder updates.
10400
10401 2004-05-25  Jackson Harper  <jackson@ximian.com>
10402
10403         * locales.c: When creating the current culture use the $LANGs
10404         specific culture. So DateTimeFormat and NumberFormat entries are created.
10405         
10406 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10407
10408         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10409         a char array as parameter.
10410
10411 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10412
10413         * image.c: In mono_image_open(), always use an absolute path name to
10414           look for already loaded images.
10415
10416 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10417
10418         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10419         missing in the windows build (like older cygwin include files).
10420
10421 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10422
10423         * icall.c: Fixed check for possible integer overflow in Buffer_
10424         BlockCopy icall. Replaced comments style // by /* */.
10425
10426 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10427
10428         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10429         
10430         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10431         check after MONO_VTADDR. Fixes pinvoke2.exe.
10432
10433         * marshal.h marshal.c metadata.h: Add beginnings of support for
10434         ftnptr -> delegate marshalling.
10435
10436 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10437
10438         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10439         * threads.c: Fix warnings.
10440
10441 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10442
10443         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10444         * icall.c: Registered icalls for Suspend and Resume.
10445         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10446           Thread.Abort.
10447         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10448         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10449         * process.c: Use WaitForSingleObjectEx.
10450         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10451           checkpoints.
10452         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10453           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10454           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10455           background threads. Added basic support for Abort in Windows.
10456           Start new threads using a managed delegate invoke wrapper. This wrapper
10457           has an interruption checkpoint that is needed since an interruption
10458           can be requested before the thread leaves the unmanaged code that starts 
10459           the thread.
10460         * marshal.c: Added interruption checkpoint after every native call, and
10461           also before managed calls for wrappers called from unmanaged code to
10462           go into managed code.
10463         * object.h: Added new field in MonoThread to keep track of interruption
10464           requests.
10465
10466 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10467
10468         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10469         calls.
10470
10471 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10472
10473         * appdomain.c:
10474         * assembly.c:
10475         * gc.c:
10476         * locales.c:
10477         * mono-config.c:
10478         * rand.c: getenv -> g_getenv (windows!)
10479
10480         * process.c: complete_path is also used on non-windows platforms.
10481
10482 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10483
10484         * icall.c: new signature for Process_Start.
10485
10486         * process.[ch]: new signature for Process_Start. If we're on windows
10487         and UseShellExecute is false, we have to search for the program by
10488         ourselves if we don't get a full path.
10489
10490 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10491
10492         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10493         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10494
10495 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10496
10497         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10498         Fixes bug #58373.
10499
10500 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10501
10502         * process.c: use double quotes to quote program name and arguments on
10503         windows. Fixes bug #58575.
10504
10505 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10506
10507         * file-io.c: don't return "." and ".." when using windows Find*File.
10508
10509 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10510
10511         * marshal.c: Don't pass wrappers to message init because method 
10512         addressed used to lookup metadata. part of remoting[2|3] fix.
10513
10514 2004-05-15  Jackson Harper  <jackson@ximian.com>
10515
10516         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10517         path is essentially the same as MONO_PATH except that it points to
10518         GACs instead of lib directories.
10519         * loader.h: The user gac is gone so we dont need function to
10520         enable/disable it.
10521         * mono-config.c: user gac option is now gone.
10522         
10523 2004-05-15  Jackson Harper  <jackson@ximian.com>
10524
10525         * culture-info.h: Make defines more consistent, add calendar data
10526         to the culture info table.
10527         * culture-info-tables.h: Add basic calendar data. Basically
10528         everyone gets default gregorian until all the data is
10529         updated.
10530         * locales.c: Use the new consistent defines. Set calendar data for
10531         culture info objects.
10532         * object.h: add a field for calendar data to CultureInfo
10533         
10534 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10535
10536         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10537         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10538         a signature.
10539         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10540         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10541         an extra param that is the pointer of the method to invoke. The IL for
10542         the invoke method is no longer specific to the method, but to the
10543         signature of the method. Thus, we can share the same code for multiple
10544         methods. This reduces the number of methods that have to be compiled.
10545
10546 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10547
10548         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10549
10550         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10551
10552         * icall.c: Optimize Buffer.BlockCopy.
10553
10554 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10555
10556         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10557         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10558         quote). Changed them to "MMMM yyyy".
10559
10560 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10561
10562         * rand.c
10563         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10564
10565 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10566
10567         * reflection.h: Updated after changes to managed structures.
10568
10569         * appdomain.c: Bump corlib version.
10570
10571 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10572
10573         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10574         windows.
10575
10576 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10577
10578         * Makefile.am: link to ../os/libmonoos.la on windows.
10579
10580         * assembly.c:
10581                 -If MONO_DEBUG, warn about non-existing directories in
10582                 MONO_PATH.
10583                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10584                 compile time variable.
10585                 -Removed init_default_path and call mono_set_rootdir from
10586                 libmonoos.a instead (windows only).
10587
10588         * assembly.h: declare mono_assembly_getrootdir().
10589
10590         * domain.c:
10591         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10592
10593         * loader.c: s/getenv/g_getenv/
10594
10595 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10596
10597         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10598
10599         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10600
10601         * metadata.h: Add new marshalling conversions.
10602
10603         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10604         function.
10605
10606         * reflection.c (mono_reflection_get_type): Lookup the type in all
10607         modules of a multi-module assembly. Fixes #58291.
10608
10609 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10610
10611         * threads.c: Before aborting a background, set the StopRequested
10612         state.  This avoids throwing the Abort exception.
10613         In mono_thread_manage, don't continue with the shutdown until all
10614         aborted threads have actually stopped.
10615
10616 2004-05-10  Jackson Harper  <jackson@ximian.com>
10617
10618         * locales.c: Remove the modifier from culture names.
10619         
10620 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10621
10622         * Makefile.am: monosn is not installed any more. It has been deprecated
10623         in favor of sn.
10624
10625 2004-05-07  Jackson Harper  <jackson@ximian.com>
10626
10627         * locales.c
10628         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10629         Fix array construction, add bailout if the length is 0.
10630
10631 2004-05-07  Dick Porter  <dick@ximian.com>
10632
10633         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10634         machine doesn't have a DNS entry.  Patch by Urs Muff
10635         (umuff@quark.com), fixes bug 57928.
10636
10637 2004-05-06  Jackson Harper  <jackson@ximian.com>
10638
10639         * reflection.c: Handle null PublicTokens properly. alloc mem for
10640         assembly names culture so we dont crash when freeing it.
10641         
10642 2004-05-06  Jackson Harper  <jackson@ximian.com>
10643
10644         * assembly.c: Check the usergac when loading with partial names.
10645         
10646 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10647
10648         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10649         does nothing for now (not required for Linux/Windows) but the class
10650         library can call it (and a newer or modified runtime could need it).
10651         * icall.c: Registred icall.
10652
10653 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10654
10655         * loader.c: prints a message on module loading error we set MONO_DEBUG
10656         environment variable.
10657
10658 2004-05-05  Jackson Harper  <jackson@ximian.com>
10659
10660         * appdomain.c: Handle PublicKeyToken=null properly.
10661         
10662 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10663
10664         * environment.c|h: Added icall ves_icall_System_Environment_
10665         GetOSVersionString to get the current OS version as a string.
10666         * icall.c: Registred icall.
10667
10668 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10669
10670         * object.c: in mono_object_get_virtual_method(), take into account that
10671         non-virtual methods don't have a slot in the vtable. Check needed when
10672         the object is a proxy.
10673
10674 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10675
10676         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10677         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10678
10679         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10680
10681         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10682         passed when a valuetype is expected.
10683
10684         * object.c (mono_unhandled_exception): Only set the exit code if the
10685         exception happens in the main thread. Fixes thread5.exe.
10686
10687         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10688         invalid names. Fixes #58047.
10689
10690 2004-05-03  Jackson Harper  <jackson@ximian.com>
10691
10692         * assembly.c: This line was committed accidently and is unneeded.
10693         
10694 2004-05-03  Jackson Harper  <jackson@ximian.com>
10695
10696         * icall.c: Add new icall for Assembly::LoadWithPartialName
10697         * assembly.c/.h: new function that probes the GAC to load partial
10698         assembly names by Paolo Molaro.
10699         
10700 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10701
10702         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10703         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10704         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10705         full type name.
10706
10707 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10708
10709         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10710         * reflection.c: fix bug when parsing a full type name and Version is not
10711         the last thing in the string.
10712
10713 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10714
10715         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10716         crashes when it is freed.
10717
10718 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10719
10720         * assembly.c: print the compat warning to stderr.
10721
10722 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10723
10724         * assembly.c (mono_assembly_load_references): Add a compatibility
10725         hack to run old applications that might be still referencing the
10726         3300-based assemblies, only do this for System.xxx.
10727
10728 2004-05-01  Jackson Harper  <jackson@ximian.com>
10729
10730         * appdomain.c: If the culture is neutral we set it to "".
10731         
10732 2004-04-29  Jackson Harper  <jackson@ximian.com>
10733
10734         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10735
10736 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10737  
10738         * string-icalls.c: added low overhead function for copying chars
10739         * icall.c: added needed icall for the above function
10740  
10741 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10742
10743         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10744         Environment.GetLogicalDrives.
10745
10746 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10747
10748         * rand.c: try and talk to egd or prngd
10749         for random bytes if opening devices fail.
10750
10751 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10752
10753         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10754         alignment for the type using the native alignment of its members 
10755         instead of using klass->min_align.
10756
10757         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10758
10759 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10760
10761         * file-io.c:
10762         * socket-io.c: added check for sys/aio.h.
10763
10764 2004-04-28  Dick Porter  <dick@ximian.com>
10765
10766         * threads.c: Don't abort a thread thats already aborting, when
10767         terminating everything.
10768
10769 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10770
10771         * icall.c: added 2 new async calls for Socket.
10772
10773         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10774         IO on *nix systems.
10775
10776         * threadpool.c: removed unused variable.
10777
10778 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10779
10780         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10781
10782 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10783
10784         * locales.c: put back string_invariant_tolower () and
10785         string_invariant_toupper ().
10786
10787 2004-04-26 David Waite <mass@akuma.org>
10788
10789         * file-io.h:
10790         * socket-io.h:
10791         * threads.h:
10792         * unicode.h: remove comma from end of enumeration declarations
10793
10794 2004-04-26 David Waite <mass@akuma.org>
10795
10796         * debug-mono-symfile.h:
10797         * decimal.c:
10798         * mono_debug.h:
10799         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10800
10801
10802 2004-04-26  Jackson Harper  <jackson@ximian.com>
10803
10804         * appdomain.c: Increment version number.
10805         
10806 2004-04-26  Jackson Harper  <jackson@ximian.com>
10807
10808         * appdomain.c: Set assembly references public token value when
10809         PublicKeyToken is specified, not the hash_value. Free public token
10810         values when free assembly name data. Previously the public key
10811         token was hex decoded, however we are using hex encoded public key
10812         tokens, so this is not neccasary.
10813         * assembly.c: Lookup assemblies in the gac if their public token
10814         value is set. Add function to allow enabling user gac
10815         lookups. Specify whether or not the assembly was loaded from the
10816         GAC. Compare full assembly names when checking the cache for
10817         assemblies (Temporarily disabled see comment in code). Remove
10818         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10819         specifies trace-loader they get extra info to stdout on the
10820         loading of assemblies.
10821         * image.h: Add a field for an assembly references public token
10822         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10823         whether an assembly has been loaded from the GAC.
10824         * image.c: Remove a corlib -> mscorlib name mapping.
10825         * loader.h: Add function to enable/disable the user gac.
10826         * mono-config.c: Check if the usergac is enabled in the config
10827         file.
10828         * icall.c: New icall to determine whether or not an assembly has
10829         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10830         * tabldefs.h: Add constant for assemblyref flag that specifies a
10831         full public key is used instead of a public token.
10832         * reflection.c: Remove mscorlib -> corlib mappings. Set
10833         PublicTokenValue instead of hash value. This value is a hex
10834         string so it does not need to be expanded.
10835
10836 2004-04-26  Martin Baulig  <martin@ximian.com>
10837
10838         * mono-debug-debugger.c (mono_debugger_initialize): Set
10839         `mono_debugger_initialized' before calling mono_debug_lock().
10840
10841 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
10842
10843         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10844           InternalToUpper/InternalToLower.
10845         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10846           removed invariant culture shortcut.  This is now done in managed code.
10847         * locales.c: (string_invariant_toupper/tolower) removed.
10848
10849 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10850
10851         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10852         Added Poll internal call.
10853
10854         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10855         call for Poll. Select was too heavy for polling a single socket.
10856
10857         * threadpool.[ch]: added mono_threadpool_cleanup.
10858         * threads.c: use it. Don't use Thread_Abort on windows.
10859
10860 2004-04-23  Martin Baulig  <martin@ximian.com>
10861
10862         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10863
10864 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
10865
10866         * icall.c: Registred new icalls for key pair protection and added an
10867         icall for Environment.GetFolderPath on Windows.
10868         * security.c|h: Added new icalls for key pair protection.
10869
10870 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10871
10872         * socket-io.c: don't display the non-supported family warning for known
10873         families. Now this is not displayed on windows when checking support
10874         for IPv4/IPv6.
10875
10876 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10877
10878         * class.c: don't display the layout warning for static fields.
10879
10880 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
10881
10882         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10883         * locales.c, locales.h: Added new icalls for culture-specific
10884         Char.ToLower and Char.ToUpper.
10885
10886 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10887
10888         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10889         by David Waite.
10890
10891 2004-04-20  Martin Baulig  <martin@ximian.com>
10892
10893         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10894         of the type name before passing it to mono_reflection_type_from_name().
10895
10896 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
10897
10898         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10899         encodings here. Fixes #56965.
10900
10901 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
10902
10903         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10904         fix test on strstr result not that I can see anything that
10905         relies on the result.
10906
10907 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
10908
10909         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10910         Fixes #57081.
10911
10912         * marshal.c (mono_marshal_get_string_encoding): New helper function.
10913
10914         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10915         function to determine which marshalling to use for strings. Fixes
10916         #56965.
10917
10918         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10919
10920         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10921
10922 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
10923
10924         * icall.c: #include mono-config.h
10925
10926 2004-04-15  Jackson Harper  <jackson@ximian.com>
10927
10928         * culture-info-tables.h: Fix date formats for en-US culture.
10929         
10930 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
10931
10932         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
10933         ThreadPool.SetMinThreads.
10934         * threadpool.c: Implemented ThreadPool.GetMinThreads and
10935         ThreadPool.SetMinThreads.
10936
10937 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10938
10939         * mono-config.c: also load the .config file in the directory
10940         where the assembly was found.
10941
10942 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10943
10944         * assembly.c: load per-assembly config files.
10945         * icall.c: decrapified code to get the config dir and moved to
10946         mono-config.c.
10947         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10948         per-assembly config files. When doing a dll map lookup give precedence
10949         to the per-assembly data.
10950
10951 2004-04-14  Martin Baulig  <martin@ximian.com>
10952
10953         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10954         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10955         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10956
10957         * mono-debugger-debugger.c: While the debugger is locked, remember
10958         whether the symbol tables have changes and send one single
10959         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10960
10961 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
10962
10963         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10964
10965         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
10966         function.
10967
10968         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10969         account when marshalling string arrays. Fixes #56965.
10970
10971 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
10972
10973         * icall.c: Add new icalls mapping for security.
10974         * security.c|h: Add internal calls for WindowsIdentity,
10975         WindowsImpersonationContext and WindowsPrincipal.
10976
10977 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
10978
10979         * class.c: Added comment to ensure the System.MonoDummy class
10980         is removed when no longer necessary
10981
10982 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
10983
10984         * appdomain.c: Pass arguments to the bootstraping exceptions to
10985         minimize JITed methods at boot
10986
10987         * metadata.c (mono_exception_from_name_two_strings): Allow for the
10988         second string to be null.
10989
10990         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10991         Change the protocol to minimize the JIT methods at startup.  Now
10992         it Returns the internal codepage, if the value of "int_code_page"
10993         is 1 at entry, and we can not compute a suitable code page
10994         number, returns the code page as a string.
10995
10996 2004-04-13  Jackson Harper  <jackson@ximian.com>
10997
10998         * culture-info-tables.h: Fix number of decimal digits for all
10999         english locales.
11000
11001 2004-04-13  Jackson Harper  <jackson@ximian.com>
11002
11003         * icall.c: Clairfy out of sync error message. It is not always
11004         your corlib that is out of sync.
11005
11006 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11007
11008         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11009         properties when only the set accessor is overriden. Fixes #55874.
11010
11011 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11012
11013         * assembly.c (mono_assembly_load_references): Make this thread safe.
11014         Fixes #56327.
11015
11016 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11017
11018         * monosn.c: Add missing initialization calls.
11019
11020 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11021
11022         * locales.c:
11023         ves_icall_System_Globalization_CultureInfo_construct_number_format
11024         Fix g_assert so it compiles on fussier compilers re int/ptr
11025         mismatch
11026
11027 2004-04-08  Dick Porter  <dick@ximian.com>
11028
11029         * socket-io.h:
11030         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11031         53992.  Also rearrange the code so that the internal calls return
11032         an error value and exceptions are thrown from managed code.
11033
11034         * icall.c: Add type info to the socket icalls.
11035
11036 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11037
11038         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11039         owes me a beer.
11040
11041 2004-04-07  Martin Baulig  <martin@ximian.com>
11042
11043         * class.c (mono_class_from_generic_parameter): Don't default
11044         `klass->parent' to `mono_defaults.object_type'.
11045
11046 2004-04-07  Martin Baulig  <martin@ximian.com>
11047
11048         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11049         `param->pklass->reflection_info'.       
11050
11051 2004-04-07  Jackson Harper  <jackson@ximian.com>
11052
11053         * culture-info-tables.h: Fix date separator symbol.
11054         
11055 2004-04-07  Martin Baulig  <martin@ximian.com>
11056
11057         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11058         from System.Type to System.MonoType.
11059
11060 2004-04-07  Martin Baulig  <martin@ximian.com>
11061
11062         * reflection.h
11063         (MonoReflectionGenericParam): Added `has_reference_type' and
11064         `has_value_type' fields.
11065
11066         * reflection.c (mono_image_get_generic_param_info): Encode the
11067         correct flags if we have the `class' or `struct' constraint.
11068
11069 2004-04-07  Martin Baulig  <martin@ximian.com>
11070
11071         * reflection.h
11072         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11073
11074 2004-04-07  Jackson Harper  <jackson@ximian.com>
11075
11076         * appdomain.c: Revert extra patches, just wanted to bump the
11077         version number.
11078         
11079 2004-04-07  Jackson Harper  <jackson@ximian.com>
11080
11081         * Makefile.am: Add culture-info private headers.
11082         * icall.c: Add new icalls for contructing locales.
11083         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11084         * locales.h: Declare new culture info construction methods.
11085         * object.h: Add new fields used to avoid the CultureMap to
11086         MonoCultureInfo.
11087         * culture-info.h: Definition of structs used in the culture info
11088         tables.
11089         * culture-info-tables.h: Autogenerated tables that contain culture
11090         info data. This file was generated with the locale-builder tool.
11091         * appdomain.c: Incement corlib version number.
11092         
11093 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11094
11095         * appdomain.c: (mono_runtime_init) move mono_thread_init
11096         to before mono_object_new calls so critical sections
11097         are initialized before use.
11098
11099 2004-04-07  Martin Baulig  <martin@ximian.com>
11100
11101         * icall.c
11102         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11103         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11104         (ves_icall_MonoGenericParam_initialize): Removed.
11105         (monogenericparam_icalls): Removed.
11106         (generictypeparambuilder_icalls): Added new table for
11107         System.Reflection.Emit.GenericTypeParameterBuilder.
11108
11109         * reflection.c
11110         (mono_reflection_define_generic_parameter): Removed.
11111         (mono_reflection_initialize_generic_parameter): This is now called
11112         from GenericTypeParameterBuilder's .ctor.
11113
11114 2004-04-06  Martin Baulig  <martin@ximian.com>
11115
11116         * class.c (mono_class_init): Don't inflate nested classes in a
11117         generic instance.
11118         (mono_type_get_name_recurse): Include the generic arguments for
11119         generic instances and generic type declarations.
11120         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11121         (_mono_class_get_instantiation_name): Removed.
11122         (mono_class_create_generic): Always use `gklass->name' as our name.
11123
11124         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11125
11126         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11127         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11128         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11129         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11130         closed generic methods here.
11131
11132         * reflection.c
11133         (mono_reflection_generic_inst_get_nested_types): Removed.
11134         (inflate_mono_method): Copy the generic parameters from the
11135         MonoMethodHeader into out MonoGenericMethod.
11136
11137 2004-04-06  Martin Baulig  <martin@ximian.com>
11138
11139         * row-indexes.h
11140         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11141
11142         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11143
11144         * reflection.c (build_compressed_metadata): If we have any entries
11145         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11146         set the header version to 1.1.
11147
11148 2004-04-06  Martin Baulig  <martin@ximian.com>
11149
11150         * class.c (mono_class_init): If we're a generic instance,
11151         initialize our nested classes, too.
11152         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11153         suffix. 
11154
11155 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11156
11157         * process.c: quote the argument passed to the shell on windows.
11158
11159 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11160
11161         * threads.c (mono_alloc_special_static_data): Allow this to be
11162         called during startup.
11163
11164 2004-04-02  Martin Baulig  <martin@ximian.com>
11165
11166         * icall.c
11167         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11168
11169 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11170
11171         * icall.c: Fix build.
11172
11173 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11174
11175         * Makefile.am: Added security.c|h.
11176         * icall.c: Added icall for get_UserName;
11177         * security.c: New file for security related icalls. Added function
11178         get_UserName for System.Environment (fix #56144).
11179         * security.h: New. Header file for security.c
11180
11181 2004-04-02  Dick Porter  <dick@ximian.com>
11182
11183         * icall.c: Deleted the icalls that were obsoleted some time ago
11184         by the ICU string code, and which were mixed into the icall
11185         rearranging.  Fixes bug 55969.
11186
11187         * string-icalls.h: 
11188         * string-icalls.c: Deleted the code that those icalls reference.
11189
11190 2004-04-01  Martin Baulig  <martin@ximian.com>
11191
11192         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11193
11194         * class.c (mono_class_from_generic_parameter): Don't set 
11195         TYPE_ATTRIBUTE_INTERFACE.
11196         (my_mono_class_from_generic_parameter): Likewise.
11197
11198 2004-04-01  Martin Baulig  <martin@ximian.com>
11199
11200         * loader.c (find_method): Added an optional `MonoClass *ic'
11201         argument to search in a specific interface.
11202         (mono_get_method_constrained): New public function.
11203
11204 2004-04-01  Martin Baulig  <martin@ximian.com>
11205
11206         * reflection.c (mono_image_get_generic_field_token): Use the
11207         `handleref' cache here.
11208
11209 2004-04-01  Martin Baulig  <martin@ximian.com>
11210
11211         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11212
11213         * reflection.c (create_generic_typespec): Use the `typespec' hash
11214         here, not the `typeref' one.    
11215
11216 2004-04-01  Martin Baulig  <martin@ximian.com>
11217
11218         * class.c (mono_class_inflate_generic_type): Moved the
11219         functionality into a new static inflate_generic_type() which
11220         returns NULL if it didn't do anything.  Only increment the
11221         `mono_stats.inflated_type_count' if we actually inflated
11222         something.
11223         (mono_class_get_full): Check the classes type to see whether we
11224         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11225
11226 2004-04-01  Jackson Harper  <jackson@ximian.com>
11227
11228         * reflection.c: Set culture for assembly references.
11229         
11230 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11231
11232         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11233
11234 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11235
11236         * assembly.c:
11237         (do_mono_assembly_open): the critical section also covers
11238         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11239
11240 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11241
11242         * threads.c:
11243         (mono_manage_threads): abort the background threads when finishing.
11244         Fixes bug #47232.
11245
11246 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11247
11248         * gc.c: only close the done_event handle if there was no timeout.
11249         C-ified comments.
11250
11251 2004-03-30  Martin Baulig  <martin@ximian.com>
11252
11253         * icall.c (icall_entries): It's called "System.Activator", not
11254         "System.Activation".    
11255
11256 2004-03-30  Martin Baulig  <martin@ximian.com>
11257
11258         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11259         (mono_class_create_from_typespec): Likewise.
11260
11261 2004-03-30  Martin Baulig  <martin@ximian.com>
11262
11263         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11264         `has_ctor_constraint' and `initialized'.
11265
11266 2004-03-30  Martin Baulig  <martin@ximian.com>
11267
11268         * reflection.c (encode_new_constraint): New static function to add
11269         the constructor constraint attribute to a type parameter.
11270         (encode_constraints): Call encode_new_constraint() if necessary.
11271
11272         * reflection.h
11273         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11274
11275         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11276         
11277 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11278
11279         * reflection.c, icall.c: add support for pinning variables. 
11280
11281 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11282
11283         * marshal.c (mono_marshal_get_managed_wrapper):
11284         init bool local with zero rather than null.
11285
11286 2004-03-29  Martin Baulig  <martin@ximian.com>
11287
11288         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11289         the "official" behavior here.
11290         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11291
11292 2004-03-29  Martin Baulig  <martin@ximian.com>
11293
11294         * icall.c: Reflect latest API changes.
11295
11296 2004-03-29  Martin Baulig  <martin@ximian.com>
11297
11298         * loader.c (mono_get_method_from_token): Also call
11299         mono_metadata_load_generic_params () for abstract and interface
11300         methods; replace the type arguments in the method signature with
11301         the ones which are loaded from the metadata.
11302
11303 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11304
11305         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11306         of the lock is not the current thread. MS.NET don't do it, in spite of
11307         what the documentation says. See bug #56157.
11308
11309 2004-03-28  Martin Baulig  <martin@ximian.com>
11310
11311         * class.c (mono_class_init): Don't call init_properties() and
11312         init_events() for generic instances; set `prop->parent' when
11313         inflating properties.
11314
11315         * reflection.c (mono_generic_inst_get_object): Call
11316         `mono_class_init (ginst->klass)'.
11317         (mono_type_get_object): Only create a MonoGenericInst if your
11318         generic type is a TypeBuilder.
11319         (do_mono_reflection_bind_generic_parameters): Only set
11320         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11321
11322 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11323
11324         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11325         Fixes #56091.
11326
11327 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11328
11329         * icall.c: added Kill_internal icall.
11330         * process.[ch]: added Kill_internal icall.
11331
11332 2004-03-25  Martin Baulig  <martin@ximian.com>
11333
11334         * class.h (MonoStats): Added `generic_instance_count',
11335         `inflated_method_count', `inflated_type_count' and
11336         `generics_metadata_size'.       
11337
11338 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11339
11340         * reflection.c: no warnings now.
11341
11342 2004-03-25  Martin Baulig  <martin@ximian.com>
11343
11344         * class.c (mono_class_get_full): New public function; does a
11345         mono_class_get(), but also takes a `MonoGenericContext *'.
11346
11347         * loader.c (mono_field_from_memberref): Renamed to
11348         `field_from_memberref', made static and added `MonoGenericContext *'
11349         argument.
11350         (mono_field_from_token): Added `MonoGenericInst *' argument.
11351         (method_from_memberef): Likewise.
11352         (mono_get_method_from_token): Likewise.
11353         (mono_get_method_full): New public function; does a
11354         mono_get_method(), but also takes a `MonoGenericContext *'.
11355
11356         * verify.c (mono_method_verify): Get the method's generic context
11357         and pass it to mono_field_from_token(), mono_get_method_full() and
11358         mono_class_get_full().
11359
11360 2004-03-25  Martin Baulig  <martin@ximian.com>
11361
11362         * class.c (mono_class_inflate_generic_type): Take a
11363         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11364         `MonoGenericMethod *'.
11365
11366 2004-03-25  Martin Baulig  <martin@ximian.com>
11367
11368         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11369         instead of the MonoGenericMethod here.
11370
11371 2004-03-25  Martin Baulig  <martin@ximian.com>
11372
11373         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11374         each time we create a new MonoGenericInst, we also create a new
11375         context which points back to us.
11376
11377         * class.c (inflate_method): Use `ginst->context' instead of
11378         creating a new context.
11379
11380         * loader.c (method_from_memberref): Use
11381         `klass->generic_inst->context' instead of creating a new context.
11382
11383 2004-03-25  Martin Baulig  <martin@ximian.com>
11384
11385         * class.h (MonoGenericContext): New struct.
11386         (MonoGenericMethod): Removed `generic_inst'.
11387
11388         * class.c (mono_class_inflate_generic_method): Take a
11389         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11390
11391 2004-03-25  Martin Baulig  <martin@ximian.com>
11392
11393         * loader.h (MonoMethodInflated): New typedef.
11394
11395         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11396         `generic_param_count' consume just 30 bits, added `is_inflated'
11397         and `has_type_parameters' flags (one bit each).
11398
11399         * class.c (mono_class_inflate_generic_method): Create a
11400         MonoMethodInflated instead of a MonoMethodNormal and set
11401         `is_inflated' in the method signature.
11402
11403         * class.h (MonoGenericMethod): Removed `generic_method'.
11404
11405 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11406
11407         * image.c: Make sure the name of a MonoImage is always an absolute path.
11408           This fixes bug #54415.
11409
11410 2004-03-24  Martin Baulig  <martin@ximian.com>
11411
11412         * class.c (mono_class_setup_vtable): If we're a generic instance,
11413         use our generic type's vtable size.
11414
11415 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11416
11417         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11418         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11419         problems.
11420
11421 2004-03-23  Martin Baulig  <martin@ximian.com>
11422
11423         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11424         `MonoEvent *events'.
11425
11426         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11427         (typebuilder_icalls): Added "get_event_info"; calls
11428         mono_reflection_event_builder_get_event_info(). 
11429
11430         * reflection.c (mono_reflection_generic_inst_initialize): Added
11431         `MonoArray *events'.
11432         (mono_reflection_event_builder_get_event_info): New function.
11433
11434 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11435
11436         * object.h: add mono_type_initialization_init
11437
11438         * object.c (mono_runtime_class_init): 
11439         implement class constructor synchronization rules
11440         to cope with threading issues.  
11441         add mono_type_initialization_init
11442
11443         * appdomain.c (mono_runtime_init): call 
11444         mono_type_initialization_init
11445
11446         * class.h: removing initializing field from MonoVTable
11447
11448 2004-03-23  Martin Baulig  <martin@ximian.com>
11449
11450         * class.c (my_mono_class_from_generic_parameter): Use
11451         `param->name' if it's not NULL. 
11452
11453 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11454
11455         * class.c: do not insert non-virtual methods in the vtable.
11456         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11457         that means the method is non-virtual. This never would have
11458         happened before.
11459
11460 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11461
11462         * profiler.c: Added lock for accessing coverage_hash.
11463
11464 2004-03-22  Martin Baulig  <martin@ximian.com>
11465
11466         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11467         `method->method->signature->generic_param_count != 0' to make it
11468         work for interface methods.
11469
11470 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11471
11472         * process.c: quote the string passed to the shell using g_shell_quote.
11473
11474 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11475
11476         * threads.c:
11477         (mono_threads_manage): don't remove the finalizer thread and self
11478         from the threads hash table so that mono_thread_manage can be called
11479         more than once.
11480
11481 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11482
11483         * process.c: quote the arguments when UseShellExecute is true. Fixes
11484         bug #55790.
11485
11486 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11487
11488         * threads.c: set mono_thread_detach as a cleanup routine for every
11489         thread. This way it's always executed upon thread termination, either
11490         aborted or finished normally. No more xsp hangs!
11491
11492 2004-03-17  Martin Baulig  <martin@ximian.com>
11493
11494         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11495         `int count_nested' and a `MonoType **nested'.
11496
11497         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11498         most of the functionality into a new static
11499         do_mono_reflection_bind_generic_parameters() and don't take a
11500         `MonoType *nested_in' argument any more.  Don't compute nested
11501         types here.
11502         (mono_reflection_generic_inst_get_nested_types): New public method
11503         to get nested types.
11504
11505         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11506         we're a nested class.
11507
11508         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11509         mono_reflection_generic_inst_get_nested_types() to compute the
11510         nested types.
11511
11512 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11513
11514         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11515         descriptive error message under windows.
11516         
11517 2004-03-17  Martin Baulig  <martin@ximian.com>
11518
11519         * class.c (dup_type): Added `const MonoType *original' argument;
11520         copy the attrs from the original type.
11521
11522 2004-03-17  Martin Baulig  <martin@ximian.com>
11523
11524         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11525         `m->generic_inst_cache' here.
11526
11527 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11528
11529         * exception.h exception.c: Add stack_overflow_exception.
11530
11531 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11532
11533         * threadpool.c:
11534         (overlapped_callback): call SetEvent *after* invoking the callback.
11535         No need to call CloseHandle.
11536
11537 2004-03-16  Martin Baulig  <martin@ximian.com>
11538
11539         * reflection.c (mono_image_get_fieldref_token): Take a
11540         `MonoReflectionField *' instead of a `MonoClassField *' and a
11541         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11542
11543 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11544
11545         * appdomain.c: don't add the culture to the filename we're looking for
11546         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11547
11548 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11549
11550         * locales.c: don't ignore symbols when doing case insensitive compares.
11551         Thanks Dick! Fixes bug #54046.
11552
11553         * threads.c: surround 'threads' usage with enter/leave in
11554         mono_thread_manage.
11555
11556 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11557
11558         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11559         implicitly marshalled as [Out]. Fixes #55450.
11560
11561         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11562         an exception.
11563
11564 2004-03-16  Martin Baulig  <martin@ximian.com>
11565
11566         * class.c (mono_class_from_generic_parameter): Use the actual
11567         parameter name. 
11568
11569 2004-03-16  Martin Baulig  <martin@ximian.com>
11570
11571         * reflection.c (type_get_signature_size): New static function.
11572         Compues the size of the type in a method signature.
11573         (method_get_signature_size): New static function; calls
11574         type_get_signature_size() to compute the actual size of the
11575         method's signature.
11576         (method_encode_signature): Use method_get_signature_size() to get
11577         the signature's size rather than using `nparams * 10'.
11578
11579 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11580
11581         * file-io.h: define here WapiOverlapped on windows. I don't want the
11582         regular OVERLAPPED one.
11583
11584         * file-io.c:
11585         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11586         Disabling AIO on windows.
11587
11588 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11589
11590         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11591         bug #55385.
11592
11593 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11594
11595         * appdomain.c: upgraded corlib version.
11596
11597         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11598         and BeginWrite. Allow opening files for asynchrnous operations.
11599
11600         * file-io.h: new struct that maps FileStreamAsyncResult.
11601         * icall.c: added new icalls.
11602         * process.[ch]: support setting child process environment variables
11603         and use the SHELL or COMSPEC when UseShellExecute is true.
11604
11605         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11606         callback for async. IO is here and also BindHandle.
11607
11608         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11609         from here.
11610
11611 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11612
11613         * reflection.c (create_custom_attr): Allow len == 0.
11614
11615         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11616         computation on big-endian machines.
11617
11618 2004-03-13  Martin Baulig  <martin@ximian.com>
11619
11620         * class.h (MonoGenericInst): Added `int count_ifaces'.
11621
11622         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11623         `ginst->count_ifaces' instead `klass->interface_count' since we
11624         may get called before the vtable is created.
11625
11626         * loader.c (mono_method_get_param_names): If we're a generic
11627         instance, return and don't initialize the class.
11628
11629         * reflection.c (mono_reflection_setup_generic_class): Don't call
11630         ensure_runtime_vtable().
11631         (mono_reflection_bind_generic_parameters): Set
11632         `ginst->count_ifaces'.
11633
11634 2004-03-11  Jackson Harper <jackson@ximian.com>
11635
11636         * icall.c:
11637         * unicode.c:
11638         * unicode.h: Remove unused System.Char icalls.
11639         
11640 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11641
11642         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11643         code when we P/Invoke the first library in Windows.Forms, instead
11644         of when we first open the assembly.
11645
11646         * assembly.c: Drop the lookup from here.
11647
11648 2004-03-10  Martin Baulig  <martin@ximian.com>
11649
11650         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11651         class for properties, fields and events.  Finally fixes #54945.
11652
11653 2004-03-10  Martin Baulig  <martin@ximian.com>
11654
11655         * metadata.c (mono_metadata_class_equal): New static function;
11656         checks whether two generic instances or two generic parameters are
11657         equal.
11658         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11659         compare classes.        
11660
11661 2004-03-10  Martin Baulig  <martin@ximian.com>
11662
11663         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11664
11665         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11666         argument and write it into the `reflection_info' field.
11667
11668         * icall.c
11669         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11670         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11671
11672 2004-03-09  Jackson Harper  <jackson@ximian.com>
11673
11674         * char-conversions.h: use 8 bits for numeric data its all we need
11675         * icall.c: numeric data is only 8 bits now.
11676
11677 2004-03-09  Martin Baulig  <martin@ximian.com>
11678
11679         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11680
11681         * class.c (init_properties, init_events): Initialize the new
11682         `parent' field.
11683
11684         * reflection.c (typebuilder_setup_properties): Likewise.
11685         (typebuilder_setup_events): Likewise.
11686
11687         * reflection.h (MonoEventInfo): Replaced `parent with
11688         `declaring_type' and `reflected_type'.
11689
11690         * icall.c (ves_icall_get_property_info): Distinguish between
11691         declaring and reflected type.
11692         (ves_icall_get_event_info): Likewise.
11693
11694 2004-03-09  Martin Baulig  <martin@ximian.com>
11695
11696         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11697         (ves_icall_Type_GetField): Correctly set field->klass.
11698
11699 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11700
11701         * loader.h: Fix warning.
11702
11703 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11704
11705         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11706         library routine if present.  Notice that it will still continue
11707         executing even if its missing, for those working on the Gtk#
11708         edition of Windows.Forms.
11709
11710         * assembly.c (do_mono_assembly_open): If loading the
11711         System.Windows.Forms call mono_loader_wini_init.
11712
11713 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11714
11715         * class.h: Added MonoRemoteClass struct.
11716         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11717         function for MonoStrings.
11718         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11719         Added internal call for getting the proxy type.
11720         * marshal.c: Get the type of transparent proxies from its remote_class.
11721         Added methods that generate the IL for type checks and casts:
11722         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11723         mono_marshal_get_proxy_cancast.
11724         * marshal.h: Declaration of the previous new methods.
11725         * object.c: Added new moethods for creating and updating MonoRemoteClass
11726         instances: mono_remote_class, mono_upgrade_remote_class, 
11727         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11728         * verify.c: FIx transparent_proxy_fields layout.
11729         * appdomain.c: Bump corlib version.
11730
11731 2004-03-04  Jackson Harper  <jackson@ximian.com>
11732
11733         * icall.c: Add icall to access char conversion tables.
11734         * char-conversions.h: Character conversion tables.
11735         * Makefile.am: Add char-conversions.h private header file.
11736         
11737 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11738
11739         * appdomain.c (unload_thread_main): Increase unloading timeout to
11740         10 sec as a temporary workaround for Nant problems.
11741
11742 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11743
11744         * gc.c: Add checks for GC_enable and GC_disable.
11745
11746         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11747         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11748         (bug #54988).
11749         
11750 2004-02-27  Martin Baulig  <martin@ximian.com>
11751
11752         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11753         `MonoReflectionType *' instead of a `MonoType *'.
11754
11755 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11756
11757         * gc.c (run_finalize): Avoid finalizing the object representing the
11758         finalizer thread.
11759         (finalizer_thread): Fix warning.
11760
11761 2004-02-25  Martin Baulig  <martin@ximian.com>
11762
11763         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11764         argument for nested types.
11765         (mono_class_create_generic): Added support for nested generictypes.
11766
11767         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11768         `GList *nested'.
11769
11770         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11771
11772         * reflection.c (method_encode_signature): Increase the minimum
11773         value of `size' from 10 to 11.
11774         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11775         and `MonoType **types' arguments instead of the `MonoArray
11776         *types'; added `MonoType *nested_in'.  Recursively instantiate
11777         nested classes. 
11778
11779 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11780
11781         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11782         stack_overflow_ex members which are used by exception handling.
11783
11784         * appdomain.c (mono_runtime_init): Initialize the new members.
11785
11786         * gc.c (mono_gc_enable): New helper function.
11787         * gc.c (mono_gc_disable): New helper function.
11788
11789 2004-02-23  Martin Baulig  <martin@ximian.com>
11790
11791         * icall.c: I must have been really stupid - make it actually work
11792         this time ;-)
11793
11794 2004-02-23  Martin Baulig  <martin@ximian.com>
11795
11796         * loader.c (method_from_memberref): Only inflate the method if
11797         it's in another klass.
11798
11799 2004-02-23  Martin Baulig  <martin@ximian.com>
11800
11801         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11802         (mono_class_init): If we're a generic instance and an interface,
11803         compute `class->interface_id'; also create `class->interfaces'
11804         here and inflate them.
11805
11806         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11807         `ginst->is_open'.
11808         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11809
11810         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11811
11812 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
11813
11814         * reflection.c (method_encode_code): Improved the error message
11815         generated by the exception.
11816
11817 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11818
11819         * icall.c: Martin did not do what he said in the ChangeLog for
11820         2004-02-18, but put back the changes for properties and events.
11821         Commenting those changes out again and adding comment to bug #54518.
11822         
11823         * process.c: removed warning.
11824
11825 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
11826
11827         * marshal.c (emit_struct_conv): Print an error message instead of
11828         asserting when a type does not have the StructLayout attribute.
11829
11830 2004-02-20  Martin Baulig  <martin@ximian.com>
11831
11832         * reflection.c (mono_type_get_object): Also use the cache for
11833         generic instances.
11834         (mono_reflection_bind_generic_parameters): Always compute
11835         `ginst->ifaces'.        
11836
11837 2004-02-20  Martin Baulig  <martin@ximian.com>
11838
11839         * class.h (MonoGenericMethod): Removed `klass'.
11840
11841         * class.c (mono_class_inflate_generic_method): Added `MonoClass
11842         *klass' argument.
11843
11844 2004-02-20  Martin Baulig  <martin@ximian.com>
11845
11846         * reflection.c (method_encode_methodspec): Actually use the
11847         uninflated signature for the memberref.
11848
11849 2004-02-20  Martin Baulig  <martin@ximian.com>
11850
11851         * class.h (MonoGenericMethod): Removed `declaring'.
11852
11853         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11854         is NULL, compute it here.
11855
11856 2004-02-20  Martin Baulig  <martin@ximian.com>
11857
11858         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11859
11860         * metadata.c (mono_metadata_generic_inst_hash): New method.
11861         (mono_metadata_generic_inst_equal): New method.
11862
11863         * reflection.c (mono_reflection_bind_generic_parameters): Use the
11864         `klass->image->generic_inst_cache' cache to avoid creating
11865         duplicate MonoGenericInst's.
11866
11867         * class.c (mono_class_inflate_generic_type): Use the cache.
11868
11869 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11870
11871         * object.c: fixed gc descriptor calculation for embedded valuetypes.
11872
11873 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11874
11875         * icall.c: added Socket.WSAIoctl icall.
11876
11877         * socket-io.[ch]: implemented
11878         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11879
11880 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
11881
11882         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11883
11884 2004-02-18  Urs C Muff  <umuff@quark.com>
11885
11886         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11887         this work on PPC and other big-endian architectures.
11888
11889         * debug-mono-symfile.h: Prepended the names of all the `guint32'
11890         fields with an underscore to make sure they're only accessed by
11891         the read32() macro.
11892
11893 2004-02-18  Martin Baulig  <martin@ximian.com>
11894
11895         * icall.c: Put the klass->refclass changes back for methods and
11896         fields, but not for properties and events.  We're currently not
11897         distinguishing between DeclaringType and ReflectedType for
11898         properties and events, that's what caused the regressions.
11899
11900 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11901
11902         * object.c:
11903         (mono_async_result_new): the handle can be NULL.
11904
11905         * threadpool.c: Use an event instead of a semaphore, don't initialize
11906         it until needed. This saves quite a few semaphores from being created
11907         when using the threadpool.
11908
11909 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
11910
11911         * object.c (mono_string_is_interned_lookup): Fix interning of long
11912         strings. Fixes #54473.
11913
11914         * domain.c (ldstr_equal): Optimize if the two strings are equal.
11915
11916         * icall.c: Revert the klass->refclass changes since they introduce
11917         regressions (bug #54518).
11918
11919 2004-02-18  Martin Baulig  <martin@ximian.com>
11920
11921         * class.c (mono_class_init): If we're a generic instance and don't
11922         come from a TypeBuilder, inflate our members here.
11923         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11924         (mono_class_create_generic): New public method.
11925         (mono_class_initialize_generic): Removed.
11926         (get_instantiation_name): Renamed to
11927         _mono_class_get_instantiation_name() and made it public.
11928
11929 2004-02-18  Martin Baulig  <martin@ximian.com>
11930
11931         * class.c (mono_class_inflate_generic_type): Clear the new
11932         instance's `nginst->klass' when inflating a generic instance.
11933         (mono_class_is_subclass_of): Added (basic) support for generic
11934         instances.
11935
11936 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11937
11938         * appdomain.h, domain.c: use a MonoCodeManager instead of a
11939         MonoMempool to hold compiled native code.
11940
11941 2004-02-17  Martin Baulig  <martin@ximian.com>
11942
11943         * class.h (MonoDynamicGenericInst): Added `count_properties' and
11944         `properties'.
11945
11946         * reflection.c (mono_reflection_generic_inst_initialize): Added
11947         `MonoArray *properties' argument.
11948
11949         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
11950
11951 2004-02-17  Martin Baulig  <martin@ximian.com>
11952
11953         * icall.c (ves_icall_Type_GetFields): Renamed to
11954         ves_icall_Type_GetFields_internal() and added a
11955         `MonoReflectionType *rtype' argument; pass it to
11956         mono_field_get_object() to set the field's "reflected" type.
11957         (ves_icall_Type_GetConstructors): Likewise.
11958         (ves_icall_Type_GetEvents): Likewise.
11959         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11960         argument; pass it to mono_method_get_object() to set the method's
11961         "reflected" type.       
11962
11963 2004-02-17  Martin Baulig  <martin@ximian.com>
11964
11965         * class.h (MonoDynamicGenericInst): New type.
11966         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11967
11968         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11969         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11970         (ves_icall_MonoGenericInst_GetFields): New interncall.
11971
11972         * class.c (mono_class_from_generic): Don't call
11973         mono_class_initialize_generic() if this is a dynamic instance;
11974         ie. it's being created from a TypeBuilder.
11975         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11976         `class->byval_arg.type'.
11977
11978         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11979         to `inflate_method' and made static.
11980         (mono_reflection_inflate_field): Removed.
11981         (mono_reflection_generic_inst_initialize): New public method.
11982
11983         * reflection.h (MonoReflectionGenericInst): Removed `methods',
11984         `ctors' and `fields'; added `initialized'.
11985
11986 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
11987
11988         * debug-helpers.c (mono_method_full_name): Fix output for empty
11989         namespaces.
11990
11991 2004-02-12  Martin Baulig  <martin@ximian.com>
11992
11993         * class.h (MonoClassField): Added `MonoType *generic_type'.
11994
11995         * reflection.c (mono_image_get_fieldref_token): Added support for
11996         instantiated generic types.
11997         (field_encode_inflated_field): Removed.
11998         (mono_image_get_inflated_field_token): Removed.
11999         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12000
12001         * reflection.h (MonoReflectionInflatedField): Removed.
12002
12003 2004-02-12  Martin Baulig  <martin@ximian.com>
12004
12005         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12006         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12007
12008         * reflection.c (mono_image_get_methodspec_token): Take a
12009         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12010         (mono_image_create_token): Check whether we have a
12011         `method->signature->gen_method' and call
12012         mono_image_get_methodspec_token() if appropriate.
12013         (inflated_method_get_object): Removed.
12014         (mono_reflection_bind_generic_method_parameters): Return a
12015         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12016         (mono_reflection_inflate_method_or_ctor): Likewise.
12017
12018         * reflection.h (MonoReflectionInflatedMethod): Removed.
12019
12020 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12021
12022         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12023         for custom valuetype marshalling.
12024
12025         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12026
12027 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12028
12029         * icall.c: fixed WSAGetLastError_internal name.
12030
12031 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12032
12033         * threads.c (mono_thread_attach): Allow this to be called multiple
12034         times for a thread.
12035         
12036         * threads.c (build_wait_tids): Do not wait for ourselves.
12037
12038         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12039         appdomain list is empty.
12040
12041         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12042         memory returned by mono_string_builder_to_utf16, since it points into
12043         managed memory. Thanks to Bernie Solomon for noticing this.
12044
12045         * icall.c: Add AppDomainSetup icalls.
12046
12047         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12048
12049         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12050         types.
12051
12052         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12053         custom attributes to the method_aux struct. Also fix array indexes etc.
12054
12055         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12056         
12057 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12058
12059         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12060         (both static and runtime) and reduce startup time.
12061
12062 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12063
12064         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12065         AsAny marshalling conversion instead of crashing.
12066
12067         * marshal.c: Fix warnings.
12068
12069 2004-02-09  Martin Baulig  <martin@ximian.com>
12070
12071         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12072
12073         * reflection.h (MonoReflectionInflatedMethod): Removed the
12074         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12075
12076         * reflection.c (method_encode_methodspec): Removed the `method'
12077         argument; we get it from `gmethod->declaring'.
12078         (inflated_method_get_object): Removed the `declaring' argument.
12079
12080 2004-02-09  Martin Baulig  <martin@ximian.com>
12081
12082         * class.h (MonoGenericMethod): New type.
12083         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12084         `generic_method'.
12085
12086         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12087         a `MonoGenericMethod *gen_method' one.
12088
12089         * class.c (mono_class_inflate_generic_type): Take an additional
12090         `MonoGenericMethod * argument.  This is only non-NULL if we're
12091         inflating types for a generic method.   
12092         (mono_class_inflate_generic_signature): Renamed to
12093         inflate_generic_signature() and made static; take a
12094         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12095         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12096         instead of a `MonoGenericInst *' one.
12097         (mono_class_inflate_generic_method): Likewise.
12098
12099         * reflection.c (encode_generic_method_sig): Take a
12100         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12101         (method_encode_methodspec): Likewise.
12102         (inflated_method_get_object): Likewise. 
12103
12104         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12105         field with a `MonoGenericMethod *gmethod' one.  
12106
12107 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12108
12109         * class.h (mono_class_has_parent): add parens to expansion
12110         so you can ! this.
12111
12112 2004-02-08  Martin Baulig  <martin@ximian.com>
12113
12114         * image.h (MonoImage): Removed `generics_cache'.
12115
12116         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12117         instead of a `MonoType *' argument; removed the `inflate_methods'
12118         argument.  Don't inflate methods here.
12119
12120         * loader.c (find_method): If it's a generic instance, call
12121         mono_class_init() on the `sclass->generic_inst->generic_type'.
12122
12123         * metadata.c (mono_type_size): Make this work on uninitialized
12124         generic instances; call it on the `ginst->generic_type's class.
12125
12126         * reflection.c (mono_reflection_bind_generic_parameters): Call
12127         mono_class_from_generic() to create the `ginst->klass'.
12128
12129 2004-02-08  Martin Baulig  <martin@ximian.com>
12130
12131         * class.h (MonoClass): Changed type of `generic_inst' from
12132         `MonoType *' to `MonoGenericInst *'.
12133
12134 2004-02-08  Martin Baulig  <martin@ximian.com>
12135
12136         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12137         mono_type_get_object(), this is now creating a `MonoGenericInst'
12138         for MONO_TYPE_GENERICINST.
12139         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12140         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12141
12142         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12143         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12144         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12145         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12146         and reflected type.
12147
12148         * reflection.h (MonoReflectionInflatedMethod): Removed
12149         `declaring_type' and `reflected_type'.
12150
12151 2004-02-08  Martin Baulig  <martin@ximian.com>
12152
12153         * class.h (MonoGenericInst): Added `MonoType *parent' and
12154         `MonoType **ifaces'.
12155
12156         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12157         `parent' and `interfaces'.
12158
12159         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12160         `MonoType *' argument and return a `MonoType *'.
12161
12162         * icall.c
12163         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12164         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12165
12166 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12167
12168         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12169         valuetype marshalling.
12170
12171 2004-02-06  Martin Baulig  <martin@ximian.com>
12172
12173         * class.c
12174         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12175         (my_mono_class_from_generic_parameter): Likewise.
12176
12177 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12178
12179         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12180         contents of the symbol files lazily.
12181
12182         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12183
12184         * threads.h threads.c icall.c: New icalls for getting and setting the
12185         threads name.
12186
12187 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12188
12189         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12190         Raise an exception when the domain is not found.
12191
12192 2004-02-03  Martin Baulig  <martin@ximian.com>
12193
12194         * reflection.c (mono_image_get_methodspec_token): Use the
12195         uninflated signature; fixes gen-33.
12196
12197 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12198
12199         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12200         the finalizer code can use thread functionality.
12201
12202         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12203         the finalizer thread.
12204
12205         * threads.c: Make some functions more robust.
12206
12207         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12208
12209         * metadata.h: Add new marshalling conventions.
12210
12211         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12212         stringbuilder marshalling. Fixes #53700.
12213
12214         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12215
12216         * reflection.c (mono_image_get_type_info): Save declarative security
12217         info.
12218
12219         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12220         unmanaged fields as well.
12221
12222         * appdomain.c: Bump corlib version.
12223
12224 2004-02-01  Martin Baulig  <martin@ximian.com>
12225
12226         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12227         method type arguments.  
12228
12229 2004-01-30  Duncan Mak  <duncan@ximian.com>
12230
12231         * marshal.h: Add prototype for
12232         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12233         and
12234         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12235         fix the build.
12236
12237 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12238
12239         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12240         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12241
12242 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12243
12244         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12245         custom marshalling of valuetypes.
12246
12247         * marshal.c: Fix some warnings.
12248
12249 2004-01-29  Martin Baulig  <martin@ximian.com>
12250
12251         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12252         for generic method parameters.
12253
12254         * reflection.c (method_encode_methodspec): Write the uninflated
12255         signature into the methodspec table.
12256         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12257         is always the uninflated method.
12258         (reflection_methodbuilder_to_mono_method): Copy the generic
12259         parameters from the MethodBuilder into `header->gen_params'.
12260
12261 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12262
12263         * class.c (mono_class_from_generic_parameter): Fix warning.
12264
12265 2004-01-27  Martin Baulig  <martin@ximian.com>
12266
12267         * class.c (mono_class_from_generic_parameter): Don't create
12268         `klass->methods' here.  
12269
12270 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12271
12272         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12273         extension since it does not work with libraries named lib<FOO>.dll.so.
12274
12275 2004-01-25  Martin Baulig  <martin@ximian.com>
12276
12277         * class.c (mono_class_inflate_generic_type): Added support for
12278         MONO_TYPE_GENERICINST.
12279
12280         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12281         inflate methods on open constructed types.      
12282
12283 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12284
12285         * object.c: fire ProcessExit event in the root AppDomain after running
12286         Main. Fixes bug #53299.
12287
12288 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12289
12290         * socket-io.c: include the new socket-wrappers.h header.
12291         Use the wrappers instead of the unix socket functions to make the code
12292         more clear.
12293
12294 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12295
12296         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12297
12298         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12299         Fixes #22532.
12300
12301 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12302
12303         * reflection.c (mono_image_create_pefile): Handle the case when the
12304         entry point is not a MethodBuilder.
12305
12306         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12307         field to ReflectionMethod since it is not allways a builder.
12308
12309         * reflection.c (type_get_fully_qualified_name): New helper function to
12310         return the fully qualified name of a type.
12311
12312         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12313         type name for custom marshallers.
12314
12315         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12316
12317         * class.c (mono_class_setup_vtable): If a parent class already 
12318         implements an interface, use the implementing methods from that class.
12319         Fixes #53148.
12320
12321 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12322
12323         * threadpool.c: just return instead of ExitThread to allow for thread
12324         clean up earlier.
12325
12326 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12327
12328         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12329         when closing resource modules.
12330
12331         * reflection.c (mono_image_create_pefile): Handle the case when the
12332         entry point is not a MethodBuilder.
12333
12334         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12335         field to ReflectionMethod since it is not allways a builder.
12336
12337 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12338
12339         * marshal.c (mono_marshal_get_managed_wrapper): 
12340         mono_marshal_alloc takes native int so CONV_I
12341         the arg for 64bits.
12342
12343 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12344
12345         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12346         tokens in the cattr table. Fixes #53108.
12347
12348 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12349
12350         * loader.c: don't trim ".dll" before looking up in the config file.
12351         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12352
12353 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12354
12355         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12356         Return the module which contains the resource as well.
12357         (ves_icall_System_Reflection_Module_Close): New icall.
12358
12359         * appdomain.c: Bump corlib version number.
12360
12361         * image.c (mono_image_addref): New public function.
12362
12363         * assembly.c: Call mono_image_addref.
12364
12365         * reflection.c (mono_module_get_object): Increase reference count of 
12366         the image.
12367
12368         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12369         Fixes #22532.
12370
12371         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12372         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12373         proper exceptions on DllImport problems.
12374
12375 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12376
12377         * class.c, metadata.c: eliminate CSIZE macro.
12378
12379 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12380
12381         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12382         * object.h: Added async_callback field in MonoAsyncResult.
12383         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12384         * verify.c: Added async_callback in MonoAsyncResult layout.
12385
12386 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12387
12388         * reflection.c (mono_reflection_get_custom_attrs): Add support
12389         for Modules.
12390
12391 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12392
12393         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12394         marshalling.
12395         (mono_marshal_method_from_wrapper): Add null pointer check.
12396
12397 2004-01-16  Martin Baulig  <martin@ximian.com>
12398
12399         * debug-mono-symfile.h: Set version number to 36 and reflect
12400         latest symbol writer changes.
12401
12402 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12403
12404         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12405         multi-dimensional arrays.
12406         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12407         (mono_class_from_mono_type): Use bounded_array_class_get.
12408         
12409         * class.c (mono_bounded_array_class_get): New function which takes
12410         a 'bounded' bool argument to distinguish vectors from one dimensional
12411         arrays.
12412
12413         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12414         bounded_array_class_get if the array has bounds.
12415
12416         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12417         Search modules loaded using AssemblyBuilder:AddModule as well.
12418
12419 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12420
12421         * appdomain.c: increased corlib version.
12422         * filewatcher.c: removed g_print.
12423         * icall.c:
12424         (get_property_info): only allocate what is actually requested.
12425         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12426
12427 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12428
12429         * Makefile.am: added filewatcher.[ch]
12430         * filewatcher.[ch]: FileSystemWatcher runtime support.
12431         * icall.c: added new FSW icalls.
12432
12433 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12434
12435         * string-icalls.c: fix stringbuilder regression as suggested by
12436         Iain McCoy <iain@mccoy.id.au>.
12437
12438 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12439
12440         * process.c (process_read_stringtable_block): Recognize '007f' as
12441         a language neutral stringtable block.
12442
12443 2004-01-12  Patrik Torstensson
12444
12445         * object.h (MonoStringBuilder) : Changed layout to support our
12446         new stringbuilder class.
12447         * marshal.c: Change marshalling to support the new layout of 
12448         string builder.
12449         * appdomain.c: increased version number because new layout of
12450         string builder.
12451
12452 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12453
12454         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12455         assembly name as an string instead of an AssemblyName, since it is
12456         easier to extract info from it.
12457
12458         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12459         the culture subdirectories too. Fixes #52231.
12460
12461 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12462
12463         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12464         It takes 2 new parameters with an optional name for the method to look
12465         for and case ignoring info.
12466
12467         * threadpool.c: removed unused variable.
12468
12469 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12470
12471         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12472         It takes 2 new parameters with an optional name for the property to look
12473         for and case ignoring info.
12474         Fixes bug #52753.
12475
12476 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12477
12478         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12479         Fix #52451.
12480
12481 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12482
12483         * appdomain.c:
12484         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12485         Fixes bug #52630.
12486
12487 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12488
12489         * reflection.c: Add support for more than one unmanaged resource.
12490
12491         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12492         in field->def_value, as done in all other cases.
12493
12494         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12495         TypeBuilders.
12496
12497         * reflection.c (mono_reflection_create_runtime_class): Remove 
12498         errorneous assignment to klass->element_class, since it is already
12499         done in mono_reflection_setup_internal_class.
12500
12501 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12502
12503         * gc.c: added missing LeaveCriticalSection.
12504         * icall.c: indented a couple of lines.
12505         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12506         if we call EndInvoke inside a callback. Fixes bug #52601.
12507
12508 2004-01-07  Martin Baulig  <martin@ximian.com>
12509
12510         * mono-debug-debugger.h
12511         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12512
12513 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12514
12515         * appdomain.c: Use messages in NotImplementedException.
12516
12517         * exception.c (mono_get_exception_not_implemented): Now this takes
12518         a message argument.
12519
12520         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12521         exception instead of g_asserting an aborting when something is not
12522         implemented.
12523
12524         Add some inline docs.
12525
12526 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12527
12528         * reflection.h: Update after changes to object layout.
12529
12530         * reflection.c: Implement saving of unmanaged aka win32 resources.
12531
12532         * appdomain.c: Bump version number.
12533
12534         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12535         Handle missing domains gracefully.
12536
12537 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12538
12539         * file-io.c : On Windows, there are much more invalid_path_chars.
12540
12541 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12542
12543         * class.h, object.c: prepare for GetType () speedup.
12544
12545 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12546
12547         * profiler.c: workaround for --profile null reference exception on
12548           cygwin. Patch by Patrik Torstensson.
12549
12550 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12551
12552         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12553         make work for unaligned access.
12554
12555 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12556
12557         * class.c: small cleanup (class->fields [i] -> field).
12558         * image.c: check address of metadata is valid.
12559
12560 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12561
12562         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12563         search the list of loaded assemblies.
12564
12565         * reflection.c (mono_reflection_type_from_name): Use 
12566         mono_assembly_loaded instead of mono_image_loaded.
12567
12568         * reflection.c: Fix warnings.
12569
12570 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12571
12572         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12573         is dynamic. This is needed since an assembly can contain both dynamic and
12574         non-dynamic images.
12575
12576         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12577         assembly->dynamic.
12578
12579         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12580
12581         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12582         to store modules loaded using AddModule.
12583
12584         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12585         on Modules.
12586
12587         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12588
12589         * reflection.c (mono_image_fill_export_table_from_module): New function to
12590         fill out the EXPORTEDTYPES table from a module.
12591
12592         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12593         into a separate function. Also handle loaded non-dynamic modules.
12594
12595         * reflection.c (mono_image_basic_init): Fix memory allocation.
12596
12597         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12598
12599         * assembly.c (mono_assembly_load_references): Make this public.
12600
12601 2003-12-19  Martin Baulig  <martin@ximian.com>
12602
12603         * class.c (mono_class_initialize_generic): Made this static, take
12604         a `MonoGenericInst *' instead of a `MonoClass *'.
12605         (mono_class_from_generic): Call mono_class_initialize_generic()
12606         unless we're already initialized or being called from
12607         do_mono_metadata_parse_generic_inst().
12608
12609         * class.h (MonoGenericInst): Added `initialized' and
12610         `init_pending' flags.
12611
12612         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12613         `mono_class_init (gklass)' or mono_class_initialize_generic()
12614         here; set `generic_inst->init_pending' while parsing the
12615         `type_argv'.
12616
12617 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12618
12619         * locales.c: include string.h for memxxx prototypes
12620
12621 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12622
12623         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12624         constructor when accessing literal fields.
12625
12626 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12627
12628         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12629
12630         * reflection.c (assembly_add_resource_manifest): New function to fill
12631         the MANIFESTRESOURCE table.
12632
12633         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12634
12635         * reflection.h: Update to changes in class layout.
12636
12637         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12638         Reenable call to mono_runtime_is_shutting_down ().
12639
12640         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12641         determine if the runtime is shutting down.
12642
12643 2003-12-16  Jackson Harper <jackson@ximian.com>
12644
12645         * icall.c: comment out call to mono_runtime_is_shutting_down to
12646         fix build.
12647         
12648 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12649
12650         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12651         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12652
12653 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12654
12655         * reflection.c: move definition of swap_with_size
12656         to before its first call
12657
12658 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12659
12660         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12661
12662         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12663         icall.
12664
12665         * object.c: Fix warnings.
12666
12667         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12668         members if FlattenHierarchy is set.
12669
12670         * reflection.c (mono_image_add_decl_security): New function to emit
12671         declarative security.
12672
12673         * reflection.h reflection.c: Add support for declarative security.
12674
12675         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12676         
12677 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12678
12679         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12680         
12681         * appdomain.c verify.c: Moved corlib version checking into its own
12682         function in appdomain.c since it needs to create vtables etc.
12683
12684 2003-12-13  Patrik Torstensson <p@rxc.se>
12685
12686         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12687         instead of unwrapped server.
12688
12689 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12690
12691         * verify.c (check_corlib): Fix field index.
12692
12693 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12694
12695         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12696         GetGacPath icall.
12697
12698 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12699
12700         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12701         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12702         cope with sizeof(size_t) != sizeof(guint32).
12703
12704 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12705
12706         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12707         in case of failure.
12708
12709 2003-12-10  Mark Crichton <crichton@gimp.org>
12710
12711         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12712         in managed code.
12713
12714         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12715
12716 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12717
12718         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12719         marked as deleted.
12720
12721 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12722
12723         * verify.c (check_corlib): Handle the case when the version field is 
12724         initialized by a static constructor.
12725
12726 2003-12-08  Patrik Torstensson  <p@rxc.se>
12727
12728     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12729
12730 2003-12-08  Martin Baulig  <martin@ximian.com>
12731
12732         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12733         a MonoReflectionGenericParameter, also take the parameter index
12734         and name as arguments.
12735         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12736         (ves_icall_MonoGenericParam_initialize): New interncall.
12737         (ves_icall_Type_make_byref_type): New interncall.
12738
12739         * reflection.h (MonoReflectionGenericParam): Derive from
12740         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12741         `index' fields.
12742
12743         * reflection.c (mono_reflection_define_generic_parameter): Create
12744         and return a new MonoReflectionGenericParam; don't initialize the
12745         constraints here.
12746         (mono_reflection_initialize_generic_parameter): New public method;
12747         initializes the constraints and creates the `param->pklass'.
12748
12749 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * reflection.h reflection.c: Use the new fields 'num_types', 
12752         'num_fields' and 'num_methods' to track the number of types etc.
12753
12754         * verify.c (check_corlib): Check corlib version number.
12755
12756 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12757
12758         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12759         function works on all methods.
12760
12761 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12762
12763         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12764         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12765         the custom_type_info flag of the transparent proxy.
12766         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12767         objects that supports IRemotingTypeInfo.
12768         * object.h: Added custom_type_info field in transparent proxy.
12769
12770 2003-12-06  Martin Baulig  <martin@ximian.com>
12771
12772         * class.c (mono_class_create_from_generic): Removed.
12773         (mono_class_from_generic): Check `ginst->klass' before doing
12774         anything else.  This is important to fully support "recursive"
12775         generic types.
12776
12777         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12778         empty `generic_inst->klass' before doing anything else.
12779
12780 2003-12-06  Dick Porter  <dick@ximian.com>
12781
12782         * verify.c: 
12783         * object.h:
12784         * icall.c:
12785         * locales.c: Use C structs to access class fields.  Don't do a
12786         conversion between MonoString and UChar because both are
12787         platform-endian UTF-16.  Compare now takes startindex and count
12788         parameters.  Add a char overload for IndexOf.  Speed up the
12789         invariant string IndexOf.
12790
12791 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12792
12793         * Makefile.am (monosn_LDADD): Fix parallel build.
12794
12795 2003-12-04  Martin Baulig  <martin@ximian.com>
12796
12797         * icall.c
12798         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12799         (ves_icall_Type_make_array_type): New interncall.       
12800
12801 2003-12-04  Martin Baulig  <martin@ximian.com>
12802
12803         * locales.c: also change it in the !HAVE_ICU case.
12804
12805 2003-12-04  Dick Porter  <dick@ximian.com>
12806
12807         * icall.c:
12808         * locales.c: construct_compareinfo is now in CompareInfo, not
12809         CultureInfo.
12810
12811 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
12812
12813         * image.c (mono_image_load_file_for_image): Cache loaded images in the
12814         image->files array.
12815
12816         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12817         table as well.
12818
12819         * assembly.c (mono_assembly_load_references): Only load references
12820         once.
12821
12822         * class.c (mono_class_from_name): Avoid linear search of the 
12823         EXPORTEDTYPE table.
12824
12825         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12826
12827 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
12828
12829         * image.h (MonoImage): Add 'field_cache' field.
12830
12831         * loader.c (mono_field_from_token): Cache field lookups.
12832         
12833         * reflection.c (mono_module_get_object): Fix name property.
12834
12835         * icall.c (ves_icall_get_enum_info): Update after changes to 
12836         mono_metadata_get_constant_index ().
12837
12838         * icall.c: Get rid of get_type_info icall, use a separate icall for
12839         each type property to avoid needless memory allocations. Fixes #51514.
12840
12841         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12842         to avoid needless binary searches.
12843
12844         * class.c (class_compute_field_layout): Move the initialization of
12845         field->def_value to mono_class_vtable ().
12846
12847         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12848         non-corlib types.
12849
12850         * object.c (mono_object_allocate): Make it inline.
12851
12852         * object.c (mono_object_allocate_spec): Make it inline.
12853         
12854 2003-12-02  Dick Porter  <dick@ximian.com>
12855
12856         * locales.c (create_NumberFormat): NumberFormatInfo construction.
12857         Patch by Mohammad DAMT (mdamt@cdl2000.com).
12858
12859 2003-12-01  Dick Porter  <dick@ximian.com>
12860
12861         * threads.c: Fix signature and call in CreateMutex and
12862         CreateEvent.
12863
12864 2003-12-01  Dick Porter  <dick@ximian.com>
12865
12866         * icall.c: 
12867         * locales.c: Implement string compares and searching
12868
12869         * object.h: Add extra Thread field
12870
12871 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
12872
12873         * reflection.c (fixup_method): Add support for MonoCMethod.
12874
12875 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
12876
12877         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12878
12879         * reflection.c (assembly_name_to_aname): Allow extra characters in
12880         assembly names. Fixes #51468.
12881
12882 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
12883
12884         * exception.c (mono_exception_from_name_domain): New helper function.
12885
12886         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12887         exception object in the correct domain.
12888
12889         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
12890         formatting + make a copy a the input data.
12891
12892         * loader.c (mono_get_method_from_token): Methods which contain
12893         native code do not have entries in the ImplMap.
12894
12895         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12896         Thanks to Gonzalo for spotting this.
12897         
12898         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12899         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12900
12901         * assembly.h (mono_assembly_load_from): Split the second part of 
12902         assembly loading into a new public function.
12903
12904         * exception.h (mono_get_exception_bad_image_format): New function.
12905
12906 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
12907
12908         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12909         Enumerate all modules inside a dynamic assembly. Fixes #51293.
12910         
12911         * icall.c: Add new icall for creating dynamic methods.
12912
12913         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12914
12915         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12916
12917         * reflection.c (mono_reflection_create_dynamic_method): New icall to
12918         create a dynamic method.
12919
12920         * reflection.c (resolve_object): New helper function.
12921
12922         * reflection.c: Generalize ReflectionMethodBuilder and the functions
12923         which manipulate it so they can also work on dynamic methods.
12924
12925         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
12926         creating the MonoReflectionMethodAux structure if it is not needed.
12927         
12928         * reflection.h verify.c: Update after changes to object layout.
12929
12930         * reflection.c (method_builder_encode_signature): Fix compilation on
12931         gcc 2.95.x.
12932
12933 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
12934
12935         * appdomain.h: Added support for context static fields. Added static_data
12936           field to MonoAppContext and renamed thread_static_fields to a more
12937           generic special_static_fields in MonoAppDomain, since it can now contain
12938           context static fields.
12939         * domain.c: Updated hashtable name.
12940         * object.c: Replaced field_is_thread_static() for a more generic
12941           field_is_special_static() which also checks for context static attribute.
12942           In mono_class_vtable(), added support for static context fields.
12943         * threads.c: Changed methods that manage thread static fields to more
12944           generic methods so they can be reused both for thread and context static
12945           data.
12946         * threads.h: Declared some new methods.
12947
12948 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
12949
12950         * reflection.h: Update after changes to the managed types.
12951
12952         * reflection.c (encode_custom_modifiers): New helper function.
12953
12954         * reflection.c (method_encode_signature): Emit custom modifiers.
12955
12956         * reflection.c (field_encode_signature): Emit custom modifiers.
12957
12958 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
12959
12960         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12961
12962         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
12963         implementation.
12964
12965         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
12966         icall.
12967
12968         * object.c (mono_field_get_value_object): New function.
12969
12970         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12971         specific.
12972
12973 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
12974
12975         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12976         return a preallocated out-of-memory exception instance.
12977
12978         * object.c (out_of_memory): Use the new function.
12979
12980         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12981         flag is before the custom modifiers. Fixes #49802.
12982
12983 2003-11-16  Martin Baulig  <martin@ximian.com>
12984
12985         * class.c (mono_class_is_open_constructed_type): Implemented the
12986         MONO_TYPE_GENERICINST case.
12987
12988 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
12989
12990         * assembly.c (mono_assembly_fill_assembly_name): New function to
12991         fill out the MonoAssemblyName structure.
12992         (mono_assembly_open): Use the new function.
12993
12994         * icall.c (fill_reflection_assembly_name): New helper function.
12995
12996         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12997         new function.
12998
12999         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13000
13001 2003-11-15  Martin Baulig  <martin@ximian.com>
13002
13003         * class.c (mono_class_is_open_constructed_type): New public
13004         function; checks whether a type is an open constructed type,
13005         ie. whether it still contains type parameters.
13006         (mono_class_inflate_generic_type): If we're a type parameter and
13007         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13008         type.
13009
13010         * class.h (MonoGenericInst): Added `guint32 is_open'.
13011
13012         * loader.c (method_from_methodspec): Check whether we're an open
13013         or closed constructed type and set `ginst->is_open'.
13014
13015         * reflection.c (mono_reflection_bind_generic_parameters): Check
13016         whether we're an open or closed constructed type and set
13017         `ginst->is_open'.
13018         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13019         from open constructed types.
13020
13021 2003-11-15  Martin Baulig  <martin@ximian.com>
13022
13023         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13024         a generic instance (instead of a generic type declaration) with
13025         unbound generic parameters, bind them to our actual types.
13026
13027 2003-11-14  Martin Baulig  <martin@ximian.com>
13028
13029         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13030
13031         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13032         an interface type, populate `res->interfaces' with instantiated
13033         versions of all the interfaces we inherit.
13034
13035 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13036
13037         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13038         when MONO_PATH is set but doesn't contain the install dir.
13039
13040 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13041
13042         * icall.c:
13043         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13044         it's also implemented in base classes. Fixes bug #50927.
13045
13046 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13047
13048         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13049         if this method is called from a finalizer. Fixes #50913.
13050
13051 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13052
13053         * threads.c: Implement VolatileRead/VolatileWrite
13054
13055         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13056
13057 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13058
13059         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13060         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13061         2.95.3.
13062
13063         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13064         from Peter Ross (pro@missioncriticalit.com).
13065         
13066 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13067
13068         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13069
13070 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13071
13072         * assembly.c (mono_assembly_load_references): Disable check because it
13073         triggers on older corlibs which lots of people have.
13074
13075 2003-11-12  Jackson Harper  <jackson@ximian.com>
13076
13077         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13078         load corlib.dll if mscorlib.dll is not found.
13079         * assembly.h: Remove corlib name define.
13080         * class.c:
13081         * domain.c:
13082         * image.c: Change corlib name to mscorlib.
13083         
13084 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13085
13086         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13087
13088 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13089
13090         * appdomain.h: Added loader_optimization here to sync with the C#
13091         code, and add disallow_binding_redirects field.
13092
13093 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13094
13095         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13096
13097         * reflection.c (mono_image_build_metadata): Fix crash on modules
13098         with no types.
13099
13100         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13101
13102         * icall.c (ves_icall_get_method_info): Return callingConvention as
13103         well.
13104
13105         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13106         namespaces from the EXPORTEDTYPE table as well.
13107
13108         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13109         from all modules inside the assembly.
13110         
13111 2003-11-11  Martin Baulig  <martin@ximian.com>
13112
13113         * reflection.c (mono_reflection_bind_generic_parameters): Make
13114         this work for interfaces.
13115
13116 2003-11-11  Martin Baulig  <martin@ximian.com>
13117
13118         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13119
13120 2003-11-11  Martin Baulig  <martin@ximian.com>
13121
13122         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13123         "MonoInflatedMethod" and "MonoInflatedCtor".
13124
13125 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13126
13127         * reflection.c (resolution_scope_from_image): Use the assembly table
13128         from the manifest module, since other modules don't have it.
13129
13130         * debug-helpers.c (mono_type_full_name): New helper function.
13131
13132         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13133
13134         * image.c (mono_image_load_file_for_image): New public function which
13135         is a replacement for the load_file_for_image in class.c.
13136
13137         * assembly.c (mono_assembly_load_module): A wrapper for the function
13138         above which does assembly association and reference loading too.
13139
13140         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13141
13142 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13143
13144         * appdomain.c: not all of the attributes for the full assembly name
13145         are required and the order doesn't matter. Fixes bug #50787.
13146
13147 2003-11-10  Dick Porter  <dick@ximian.com>
13148
13149         * locales.c: Use platform-endian UTF16
13150
13151 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13152
13153         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13154         
13155 2003-11-10  Martin Baulig  <martin@ximian.com>
13156
13157         * metadata.c
13158         (mono_metadata_load_generic_params): Make this actually work.
13159
13160         * reflection.c (mono_reflection_bind_generic_parameters): If our
13161         parent is a generic instance, pass all the `types' to it, no
13162         matter whether it has the same number of type parameters or not.
13163
13164 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13165
13166         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13167
13168         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13169         assignment code to this function so it gets called recursively for all
13170         modules.
13171
13172         * image.c (load_modules): Remove the assembly assignment since it is
13173         now done by mono_assembly_load_references.
13174         
13175         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13176         Add 'module' argument.
13177         (mono_module_get_types): New helper function.
13178         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13179
13180 2003-11-08  Martin Baulig  <martin@ximian.com>
13181
13182         * class.c (mono_class_inflate_generic_method): Interface method
13183         don't have a header.
13184
13185         * reflection.c (mono_image_get_methodspec_token): Take an
13186         additional `MonoGenericInst *' argument instead of reading it from
13187         the header; this is necessary to support interfaces.
13188         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13189         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13190         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13191         argument.
13192
13193         * reflection.h (MonoReflectionInflatedMethod): Added
13194         `MonoGenericInst *ginst'.
13195
13196 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13197
13198         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13199
13200 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13201
13202         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13203
13204 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13205
13206         * reflection.c 
13207         (reflection_methodbuilder_from_method_builder):
13208         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13209         initialize a ReflectionMethodBuilder structure.
13210         (mono_image_get_methodbuilder_token):
13211         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13212         tokens which point to types in another module inside the same assembly.
13213
13214         * reflection.c: Use the new helper functions.
13215         
13216         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13217
13218         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13219         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13220
13221         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13222         neccesary.
13223
13224         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13225         current module. Emit the manifest only for the main module.
13226
13227         * reflection.c (mono_image_create_token): Add assertion when a 
13228         memberref needs to be created.
13229
13230         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13231
13232         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13233         larger buffer for the custom attribute blob. Fixes #50637.
13234         
13235 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13236
13237         * threadpool.c: notify listener on async processing handles after
13238         invoking the async callback. Thanks to Zoltan.
13239
13240 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13241
13242         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13243         avoid code duplication.
13244
13245         * reflection.h (MonoDynamicImage): New type which is currently unused,
13246         but will be used through the ref.emit code in place of 
13247         MonoDynamicAssembly.
13248
13249         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13250         object layout.
13251
13252         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13253         a MonoDynamicImage instead of just a MonoImage.
13254         
13255         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13256         icalls to ModuleBuilder but keep their semantics, so they will work
13257         with moduleb->assemblyb. This will change later.
13258         
13259 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13260
13261         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13262         object layout.
13263
13264         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13265         main module, since it is now done by the managed code.
13266
13267 2003-11-03  Martin Baulig  <martin@ximian.com>
13268
13269         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13270         `ginst->klass' here.
13271         (method_encode_methodspec): Don't use the `ginst->generic_method's
13272         klass if it's a generic instance, use `ginst->klass' in this case.
13273
13274 2003-11-03  Martin Baulig  <martin@ximian.com>
13275
13276         * reflection.c (mono_image_get_generic_method_param_info):
13277         Removed, use mono_image_get_generic_param_info() instead.
13278         (mono_image_get_type_info): Write the GenericParam table before
13279         the Method table.  This is neccessary because in the GenericParam
13280         table, type parameters of the class (ie. '!0' etc.) must come
13281         before the ones from its generic methods (ie. '!!0' etc).
13282
13283 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13284
13285         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13286
13287 2003-11-02  Martin Baulig  <martin@ximian.com>
13288
13289         * reflection.c (create_generic_typespec): Take a
13290         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13291         the generic parameters from it.
13292
13293 2003-11-02  Martin Baulig  <martin@ximian.com>
13294
13295         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13296         instead of a `MonoClassField *' since we just need the type.
13297         (create_generic_typespec): New static function.  Creates a
13298         TypeSpec token for a generic type declaration.
13299         (mono_image_get_generic_field_token): New static function.
13300         (mono_image_create_token): If we're a FieldBuilder in a generic
13301         type declaration, call mono_image_get_generic_field_token() to get
13302         the token.
13303
13304 2003-11-02  Martin Baulig  <martin@ximian.com>
13305
13306         * reflection.h
13307         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13308         `MonoReflectionGenericInst *declaring_type' and
13309         `MonoReflectionGenericInst *reflected_type' fields.
13310
13311         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13312         `MonoReflectionGenericInst *declaring_type' and a
13313         `MonoReflectionGenericInst *reflected_type' argument instead of a
13314         single `MonoReflectionGenericInst *type' one.  Set
13315         `res->declaring_type' and `res->reflected_type' from them.
13316         (mono_reflection_inflate_field): Likewise.      
13317
13318 2003-11-02  Martin Baulig  <martin@ximian.com>
13319
13320         * class.c (mono_class_setup_vtable): Don't store generic methods
13321         in the vtable.  
13322
13323 2003-11-02  Martin Baulig  <martin@ximian.com>
13324
13325         * reflection.h (MonoReflectionGenericInst): Added
13326         `MonoReflectionType *declaring_type'.
13327
13328         * reflection.c (mono_reflection_bind_generic_parameters): Use
13329         `if (tb->parent)' instead of `klass->parent'.
13330
13331 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13332
13333         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13334         with an empty ASSEMBLY table.
13335
13336         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13337         variable in the inner and outer loops.
13338
13339 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13340
13341         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13342         argument.
13343
13344         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13345         
13346         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13347         icalls. Instead, do everything in managed code. This is needed since
13348         it is hard to restore the original domain etc. in unmanaged code in the
13349         presence of undeniable exceptions.
13350
13351         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13352         New icalls to push and pop appdomain refs.
13353
13354 2003-10-31  Martin Baulig  <martin@ximian.com>
13355
13356         * class.c (inflate_generic_type): Renamed to
13357         mono_class_inflate_generic_type() and made it public.
13358
13359         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13360         New interncall.
13361
13362         * loader.c (mono_field_from_memberref): Also set the retklass for
13363         typespecs.
13364
13365         * fielder.c (mono_image_get_inflated_field_token): New static
13366         method; creates a metadata token for an inflated field.
13367         (mono_image_create_token, fixup_method): Added support for
13368         "MonoInflatedField".
13369         (fieldbuilder_to_mono_class_field): New static function.
13370         (mono_reflection_inflate_field): New public function.
13371
13372         * reflection.h
13373         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13374         (MonoReflectionInflatedField): New typedef.     
13375
13376 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13377
13378         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13379         for Solaris and other platforms without s6_addr16
13380
13381 2003-10-30  Martin Baulig  <martin@ximian.com>
13382
13383         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13384         argument instead of two.
13385         (mono_class_inflate_generic_signature): Likewise.
13386         (inflate_generic_header): Likewise.
13387         (mono_class_inflate_generic_method): Likewise.  In addition, if
13388         `ginst->klass' is set, it becomes the new `method->klass'.
13389
13390         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13391         field.
13392
13393         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13394         first byte. [FIXME]
13395         (method_encode_methodspec): If we have generic parameters, create
13396         a MethodSpec instead of a MethodRef.
13397         (fixup_method): Added support for "MonoInflatedMethod" and
13398         "MonoInflatedCtor".
13399         (mono_image_create_token): Added support for "MonoInflatedMethod"
13400         and "MonoInflatedCtor".
13401         (inflated_method_get_object): New static function; returns a
13402         managed "System.Reflection.MonoInflatedMethod" object.
13403         (mono_reflection_bind_generic_method_parameters): Return a
13404         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13405         (mono_reflection_inflate_method_or_ctor): Likewise.
13406         (mono_image_get_generic_method_param_info): Initialize unused
13407         fields to zero.
13408         (mono_image_get_generic_param_info): Likewise.
13409
13410         * reflection.h (MonoReflectionInflatedMethod): New public
13411         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13412         "S.R.MonoInflatedCtor" classes.
13413
13414         * loader.c (method_from_memberref): If we're a TypeSpec and it
13415         resolves to a generic instance, inflate the method.
13416
13417 2003-10-28  Dick Porter  <dick@ximian.com>
13418
13419         * object.c (mono_runtime_run_main): Convert command-line arguments
13420         into utf8, falling back to the user's locale encoding to do so.
13421
13422 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13423
13424         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13425         at this time.
13426
13427         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13428
13429         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13430         up icalls at method definition time. Partially fixes #33569.
13431
13432 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13433
13434         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13435         marshalling of arrays. Fixes #50116.
13436
13437         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13438
13439         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13440         points to a vtable in the dying appdomain.
13441
13442         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13443         listeners into unmanaged code inside the lock.
13444
13445         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13446         domains and add some comments.
13447
13448 2003-10-25  Martin Baulig  <martin@ximian.com>
13449
13450         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13451
13452         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13453
13454         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13455         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13456         currently parsing.  Create the generic class and store it in
13457         `generic_inst->klass' before parsing the type arguments.  This is
13458         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13459         for an example.
13460         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13461         to support recursive typespec entries.
13462
13463         * class.c (mono_class_setup_parent): If our parent is a generic
13464         instance, we may get called before it has its name set.
13465         (mono_class_from_generic): Splitted into
13466         mono_class_create_from_generic() and mono_class_initialize_generic().
13467
13468 2003-10-25  Martin Baulig  <martin@ximian.com>
13469
13470         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13471         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13472         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13473         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13474
13475         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13476         (create_typespec): Likewise.
13477         (mono_reflection_bind_generic_parameters): Return a
13478         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13479         (mono_reflection_inflate_method_or_ctor): New public function.
13480
13481         * reflection.h (MonoReflectionGenericInst): New typedef.        
13482
13483 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13484
13485         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13486         inside the domain lock. Fixes #49993.
13487         
13488         * object.c (mono_class_vtable): When typed allocation is used, 
13489         allocate vtables in the GC heap instead of in the mempool, since the
13490         vtables contain GC descriptors which are used by the collector even
13491         after the domain owning the mempool is unloaded.
13492
13493         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13494
13495         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13496         reflect what it does. Also invalidate mempools instead of freeing
13497         them if a define is set.
13498
13499         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13500         of the appdomain.
13501         
13502         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13503         hold the finalizable objects in this domain.
13504
13505         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13506         appdomain.
13507
13508         * appdomain.c (mono_domain_set): New function to set the current
13509         appdomain, but only if it is not being unloaded.
13510
13511         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13512         appdomain which is being unloaded.
13513         
13514         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13515         unloading of the root appdomain.
13516
13517         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13518         icall to execute a method in another appdomain. Intended as a 
13519         replacement for InternalSetDomain, which can confuse the code 
13520         generation in the JIT.
13521
13522         * appdomain.c (mono_domain_is_unloading): New function to determine
13523         whenever an appdomain is unloading.
13524
13525         * appdomain.c (mono_domain_unload): New function to correctly unload
13526         an appdomain.
13527
13528         * assembly.c (mono_assembly_load_references): Check that an assembly
13529         does not references itself.
13530
13531         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13532         domain manually, it asks the finalizer thread to do it, then waits for
13533         the result. Also added a timeout.
13534
13535         * icall.c: Register the new icalls.
13536
13537         * threads.h threads.c: Export the mono_gc_stop_world and 
13538         mono_gc_start_world functions.
13539         
13540         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13541         function to fill out the mempool with 0x2a.
13542
13543 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13544
13545         * reflection.h (MonoReflectionMethodAux): New structure to store
13546         information which is rarely used, thus is not in the MonoMethod
13547         structure.
13548
13549         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13550         store the aux info.
13551
13552         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13553         and marshalling info into the aux structure.
13554
13555         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13556         from the aux structure.
13557
13558         * loader.c (mono_method_get_param_names): Retrieve the param names from
13559         the aux structure.
13560         
13561 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13562
13563         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13564         warning.
13565
13566 2003-10-21  Dick Porter  <dick@ximian.com>
13567
13568         * socket-io.c
13569         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13570         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13571
13572 2003-10-21  Martin Baulig  <martin@ximian.com>
13573
13574         * reflection.c (mono_reflection_bind_generic_parameters):
13575         `klass->parent' is NULL for interfaces.
13576
13577 2003-10-21  Martin Baulig  <martin@ximian.com>
13578
13579         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13580
13581 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13582
13583         * exception.c (mono_exception_from_name_msg): New helper function for
13584         creating exceptions and initializing their message field.
13585
13586         * exception.c: Simplify functions using the new helper.
13587
13588         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13589         New function.
13590
13591         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13592         mono_raise_exception, since otherwise gcc doesn't generate the function
13593         epilog for raise_exception, confusing the stack unwinding in the JIT.
13594         Fixes #45043.
13595
13596         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13597         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13598         Fixes #49499.
13599
13600 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13601
13602         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13603         utf8.
13604
13605 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13606
13607         * icall.c: Removed GetUninitializedObject method because
13608           AllocateUninitializedClassInstance does the same.
13609
13610 2003-10-18  Martin Baulig  <martin@ximian.com>
13611
13612         * class.c (inflate_generic_signature): Renamed to
13613         mono_class_inflate_generic_signature() and made it public.
13614         (my_mono_class_from_generic_parameter): New static function; if we
13615         don't already have the generic parameter's MonoClass, create a
13616         very simple one which is just used internally in the runtime and
13617         not passed back to managed code.
13618
13619         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13620
13621         * metadata.h (MonoMethodSignature): Moved the
13622         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13623         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13624
13625         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13626         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13627         interncall on the MonoMethod class, not on MethodInfo.
13628         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13629         calling mono_reflection_bind_generic_method_parameters() directly.
13630
13631         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13632         return the already computed `method->signature'.
13633         (method_from_methodspec): New static function to load a method
13634         from a MethodSpec entry.
13635         (mono_get_method_from_token): Call the new method_from_methodspec()
13636         for MethodSpec tokens.  
13637         (mono_get_method_from_token): If we're a generic method, load the
13638         type parameters.
13639
13640         * reflection.c (mono_image_get_memberref_token): Allow
13641         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13642         table.
13643         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13644         (mono_image_create_token): First check whether it's a generic
13645         method (so we'd need to create a MethodSpec), then do the other
13646         two alternatives.
13647         (mono_reflection_bind_generic_method_parameters): Return a
13648         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13649         called directly from the interncall.
13650
13651 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13652
13653         * reflection.c (load_public_key): Move loading of the public key
13654         into managed code.
13655
13656         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13657
13658         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13659         fields.
13660
13661         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13662         culture, hash_alg and public_key. Fixes #49555.
13663
13664 2003-10-17  Martin Baulig  <martin@ximian.com>
13665
13666         * class.h (MonoGenericInst): Moved this declaration here and added
13667         `MonoMethod *generic_method'.
13668
13669         * icall.c
13670         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13671         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13672
13673         * metadata.c (mono_metadata_type_equal): Two types of
13674         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13675         index; ie. don't compare the address of the `MonoGenericParam'
13676         structure.
13677         (mono_metadata_load_generic_params): Removed the `MonoMethod
13678         *method' argument.
13679
13680         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13681         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13682
13683         * reflection.c (method_encode_signature): Encode the number of
13684         generic parameters.
13685         (encode_generic_method_sig): New static function.
13686         (method_encode_methodspec): New static function; creates an entry
13687         in the MethodSpec table for a generic method.
13688         (mono_image_get_methodspec_token): New static function.
13689         (mono_image_create_token): Call mono_image_get_methodspec_token()
13690         for generic methods.
13691         (mono_reflection_bind_generic_method_parameters): New public
13692         function.  Instantiates a generic method.
13693
13694 2003-10-16  Martin Baulig  <martin@ximian.com>
13695
13696         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13697         *gen_params' here from MonoMethodHeader.
13698
13699         * metadata.c (mono_metadata_parse_method_signature): If we have
13700         generic parameters, initialize `method->gen_params' and then set
13701         the correct `type->data.generic_param' in all the parameters.
13702
13703 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13704
13705         * threads.c (mono_threads_get_default_stacksize): New function to 
13706         return the default stacksize.
13707
13708         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13709         termination of the finalizer thread, since the previous method had
13710         race conditions. Fixes #49628.
13711
13712         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13713         as for the other managed threads.
13714
13715 2003-10-16  Martin Baulig  <martin@ximian.com>
13716
13717         * class.c (inflate_generic_signature): Copy `generic_param_count'
13718         and `gen_params'.
13719
13720         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13721         New interncall.
13722
13723         * metadata.c (mono_metadata_parse_method_signature): Actually set
13724         the `method->generic_param_count' here.
13725         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13726
13727 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13728
13729         * object.h: Add a new field to TypedRef to simplify the implementation
13730         of the REFANY opcodes in the JIT.
13731
13732         * icall.c: Make use of the new field.
13733
13734         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13735         dynamically.
13736
13737 2003-10-15  Martin Baulig  <martin@ximian.com>
13738
13739         * class.c (mono_class_from_gen_param): Renamed to
13740         mono_class_from_generic_parameter() and moved most of the
13741         functionality from mono_reflection_define_generic_parameter()
13742         here; ie. we create a "real" class here.
13743         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13744         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13745         previously been called.
13746
13747         * class.h (MonoGenericParam): Moved the declaration of this struct
13748         here from metadata.h and added `MonoMethod *method'.
13749
13750         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13751         interncall.
13752
13753         * loader.c (mono_get_method_from_token): If we have any generic
13754         parameters, call mono_metadata_load_generic_params() to read them
13755         from the MONO_TABLE_GENERICPAR.
13756
13757         * metadata.c (mono_metadata_load_generic_params): Added
13758         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13759
13760         * metadata.h (MonoMethodSignature): Replaced
13761         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13762         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13763
13764         * reflection.c (mono_reflection_define_generic_parameter): Moved
13765         most of the functionality into the new
13766         mono_class_from_generic_parameter(); set the `method' field if
13767         we're a method parameter.       
13768
13769 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13770
13771         * marshal.c (emit_struct_conv): if native size is 0
13772         emit no code.
13773
13774 2003-10-14  Martin Baulig  <martin@ximian.com>
13775
13776         * icall.c: The generics API has changed in the spec since it was
13777         added to System.Type; these modifications make it match the spec
13778         again.
13779         (ves_icall_Type_GetGenericParameters): Renamed to
13780         `ves_icall_Type_GetGenericArguments'.
13781         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13782         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13783         `ves_icall_MonoType_get_HasGenericArguments'.
13784         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13785         `ves_icall_MonoType_get_IsGenericParameter'.
13786         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13787         this is no interncall anymore.
13788         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13789         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13790
13791 2003-10-14  Martin Baulig  <martin@ximian.com>
13792
13793         * reflection.c (mono_reflection_bind_generic_parameters): Also
13794         inflate generic methods if we're reading the class from IL.
13795
13796 2003-10-13  Martin Baulig  <martin@ximian.com>
13797
13798         * reflection.c (mono_reflection_define_generic_parameter): This
13799         method isn't called directly from the icall anymore; take a
13800         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13801         method generic parameters.
13802         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13803         (method_builder_encode_signature): Encode generic parameters.
13804         (mono_image_get_method_info): Write generic params to the
13805         MONO_TABLE_GENERICPARAM table.
13806
13807         * reflection.h (MonoReflectionMethodBuilder): Added
13808         `MonoArray *generic_params'.
13809
13810         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13811
13812         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13813         wrapper for mono_reflection_define_generic_parameter().
13814         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
13815
13816 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
13817
13818         * marshal.h: Add missing function to fix build.
13819
13820         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
13821         the SetLastError pinvoke attribute.
13822
13823         * marshal.c (mono_marshal_set_last_error): New helper function called
13824         by the generated code.
13825         
13826         * marshal.c (mono_mb_emit_branch): New helper function.
13827
13828         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13829
13830         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13831         classes as parameters and return values of delegates. Fixes #29256. 
13832
13833 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
13834
13835         * locales.c: use gint32 in non HAVE_ICU case
13836
13837 2003-10-11  Martin Baulig  <martin@ximian.com>
13838
13839         * mono-debug.c (mono_debug_add_method): Added a workaround for
13840         bug #48591.
13841
13842 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
13843
13844         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13845         delegates passed to native code must use the STDCALL calling 
13846         convention. Fixes #35987.
13847
13848 2003-10-10  Martin Baulig  <martin@ximian.com>
13849
13850         * class.c (inflate_generic_type): If we're inflating for a generic
13851         type instance (and not for a generic method), return
13852         MONO_TYPE_MVAR unchanged.
13853
13854 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13855
13856         * string-icalls.c: Join ignores null strings in the source array.
13857         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13858         * threads.c: GetAvailableTheads is slightly more accurate.
13859
13860 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
13861
13862         * threads.h threads.c : add mono_threads_set_default_stacksize
13863         and pass default to CreateThread calls.
13864
13865 2003-10-09  Dick Porter  <dick@ximian.com>
13866
13867         * icall.c:
13868         * locales.h:
13869         * locales.c: Internal calls for constructing CultureInfo and
13870         related objects from libicu (if its available.)
13871
13872 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
13873
13874         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13875
13876 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13877
13878         * threadpool.c: added an argument to async_invoke_thread that is the
13879         item to process, pass the MonoAsyncResult to the thread start function
13880         when creating a new thread. This way we don't need to acquire any lock
13881         when we're creating a new thread. Readded a semaphore for faster
13882         response times (instead of that Sleep i added).
13883
13884 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
13885
13886         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13887         get daylight change dates better on Windows, fix handling
13888         of platforms without tm_gmtoff.
13889
13890 2003-10-06  Martin Baulig  <martin@ximian.com>
13891
13892         * class.c (inflate_generic_method): Renamed to
13893         mono_class_inflate_generic_method() and made public.
13894         (mono_class_init): Don't inflate the generic methods here.
13895         (mono_class_from_generic): Added `gboolean inflate_methods'
13896         argument.  Inflate the methods here.
13897
13898         * loader.c (mono_method_get_param_names): Ignore instances of
13899         generic types for the moment.
13900
13901         * reflection.c (fixup_method): Added support for inflated methods.
13902         (mono_image_create_token): Use mono_image_get_methodref_token()
13903         for inflated methods.
13904         (mono_custom_attrs_from_param): Ignore instances of generic types
13905         for the moment.
13906         (mono_reflection_bind_generic_parameters): New public function.
13907         Moved all the functionality from
13908         ves_icall_Type_BindGenericParameters() here and added support for
13909         dynamic types.
13910         (mono_reflection_define_generic_parameter): Initialize
13911         `klass->methods' here.
13912
13913         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13914         functionality into mono_reflection_define_generic_parameter().
13915         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13916         TypeBuilder, return that TypeBuilder.
13917
13918 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13919
13920         * appdomain.c: removed mono_delegate_semaphore.
13921
13922         * threadpool.c:
13923         (mono_thread_pool_add): moved hash table creation inside and the thread 
13924         creation outside of the critical region.
13925         (mono_thread_pool_finish): removed obsolete code.
13926         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13927         continue or exit the thread depending on the queue.
13928
13929 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
13930
13931         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13932         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13933         handle more bool marshalling options
13934
13935 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
13936
13937         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13938         arrays of structs. Also add a more descriptive error message when
13939         a structure member is marshalled as LPArray.
13940
13941 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
13942
13943         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13944         marshalling arrays of complex types. Fixes #29098. Also remove an
13945         usused and incomplete function.
13946
13947 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13948
13949         * gc.c: report heap_size - free_bytes as total memory allocated
13950         (bug#49362).
13951
13952 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
13953
13954         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
13955         fix timezone handling problems on Windows.
13956         
13957         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13958         asserts when the year is outside the range handled by ms the functions.
13959
13960         * class.c (setup_interface_offsets): If the class is an interface,
13961         fill out its interface_offsets slot.
13962
13963 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13964
13965         * threadpool.c: mark threadpool threads as background.
13966
13967 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
13968
13969         * decimal.c - define DECINLINE to nothing if not using GCC
13970
13971 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
13972
13973         * assembly.c: More refcount fixes.
13974
13975 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13976
13977         * string-icalls.c: if we're not trimming, return the same string.
13978         When not splitting, don't create a new string.
13979
13980 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13981
13982         * image.c:
13983         (mono_image_open): increment the ref_count inside the critical section.
13984
13985 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
13986
13987         * image.c (mono_image_open): Fix reference counting bug.
13988
13989 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
13990
13991         * marshal.c (mono_marshal_type_size) struct alignment changed for 
13992         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
13993         64bits. Avoid leak in mono_marshal_get_native_wrapper when
13994         mono_lookup_pinvoke_call throws.        
13995
13996 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
13997
13998         * reflection.c (mono_reflection_parse_type): Fix #49114.
13999
14000         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14001         temporary workaround for cygwin header problem.
14002
14003         * object.c (mono_object_isinst): Synchronize this with the code
14004         generated by the JIT for casts.
14005
14006 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14007
14008         * reflection.c (encode_type): Fix #38332.
14009
14010 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14011
14012         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14013         the original method from the wrapper method.
14014
14015 2003-09-25  Martin Baulig  <martin@ximian.com>
14016
14017         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14018         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14019         (ves_icall_Type_get_IsGenericInstance): New interncall.
14020
14021 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14022
14023         * object.c: fix cast warning in big endian code.
14024
14025 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14026
14027         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14028         
14029 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14030
14031         * assembly.c: don't call check_env from mono_assembly_load. It's
14032         already done once in mono_assemblies_init and may cause headaches when
14033         multiple threads are loading assemblies.
14034
14035 2003-09-19  Martin Baulig  <martin@ximian.com>
14036
14037         * reflection.c (mono_reflection_define_generic_parameter): Don't
14038         allocate `klass->methods', set `klass->flags' to
14039         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14040
14041 2003-09-18  Martin Baulig  <martin@ximian.com>
14042
14043         * class.c (mono_class_init): Don't create `class->methods' if it's
14044         already initialized.
14045
14046         * metadata.c (mono_metadata_load_generic_params): Make this
14047         actually work.
14048
14049         * reflection.c (mono_reflection_define_generic_parameter): Set
14050         parent class and interfaces from the constraints.
14051
14052         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14053         to keep this struct in sync with the declaration in TypeBuilder.cs.
14054
14055 2003-09-17  Martin Baulig  <martin@ximian.com>
14056
14057         * metadata.h (MonoType): Replaced the data's `int type_param'
14058         field with `MonoGenericParam *generic_param'.
14059         (MonoGenericParam): Added `MonoClass *klass'.
14060
14061         * class.c (mono_class_from_gen_param): Removed the
14062         `MonoImage *image' and `int type_num' arguments.
14063
14064         * metadata.c (mono_metadata_parse_generic_param): New static
14065         method; creates a MonoGenericParam which just contains the index.
14066         (do_mono_metadata_parse_type): Call
14067         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14068         MONO_TYPE_MVAR.
14069
14070         * reflection.c (mono_image_typedef_or_ref): Generic type
14071         parameters may be in the same assembly, but never use a typedef
14072         for them.
14073         (mono_reflection_define_generic_parameter): We're now creating a
14074         "real" class for the type parameter; it's now safe to call
14075         mono_class_from_mono_type() on the class'es type, it'll do the
14076         right thing.
14077
14078 2003-09-16  Martin Baulig  <martin@ximian.com>
14079
14080         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14081         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14082         the `symfile' data structure must be fully initialized before it
14083         gets added to the table.
14084
14085 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14086
14087         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14088
14089         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14090         class init trampolines.
14091
14092 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14093
14094         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14095         to the built-in profiler to turn off time and allocation profiling
14096         respectively.
14097
14098 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14099
14100         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14101         g_direct_equal.
14102
14103         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14104         in human readable form.
14105
14106 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14107
14108         * reflection.c icall.c: Fixed warnings.
14109
14110         * image.c (load_class_names): Use a temporary hash table to hold the
14111         namespaces in order to avoid doing many string comparisons.
14112
14113         * image.h: Fix typo.
14114
14115         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14116         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14117         since the NULL case is short-circuited inside g_hash_table_lookup, 
14118         leading to better performance.  
14119
14120         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14121         obtain the first custom attribute for a given index. Depends on the
14122         CustomAttribute table being sorted by the parent field.
14123
14124         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14125         for better performance.
14126
14127 2003-09-07  Martin Baulig  <martin@ximian.com>
14128
14129         * class.c (mono_class_init): If we're a generic instance, inflate
14130         all our methods instead of loading them from the image.
14131         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14132
14133 2003-09-07  Martin Baulig  <martin@ximian.com>
14134
14135         * mono-debug-debugger.c: Added support for constructors.
14136
14137 2003-09-06  Martin Baulig  <martin@ximian.com>
14138
14139         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14140         New interncall.
14141
14142         * reflection.c (mono_reflection_setup_generic_class): Call
14143         ensure_runtime_vtable() to create the vtable.
14144
14145 2003-09-05  Martin Baulig  <martin@ximian.com>
14146
14147         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14148         MONO_TYPE_MVAR.
14149
14150 2003-09-04  Martin Baulig  <martin@ximian.com>
14151
14152         * reflection.c (mono_reflection_define_generic_parameter): Generic
14153         parameters start with zero.
14154
14155 2003-09-04  Martin Baulig  <martin@ximian.com>
14156
14157         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14158
14159         * reflection.h (MonoReflectionGenericParam): New typedef.
14160         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14161         the generic parameters from the managed TypeBuilder.
14162
14163         * reflection.c (mono_reflection_define_generic_parameter): New function.
14164         (mono_reflection_create_runtime_class): Encode generic parameters.
14165         (mono_reflection_setup_generic_class): New function; this is
14166         called after adding adding all generic params to the TypeBuilder.
14167         (encode_type): Added MONO_TYPE_VAR.
14168
14169 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14170
14171         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14172         here from the JIT.
14173
14174         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14175         load hook.
14176
14177 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14178
14179         * reflection.h reflection.c class.h class.c: Delete duplicate 
14180         definition of mono_type_get_name () from reflection.c and export the
14181         one in class.c.
14182
14183         * class.c: Class loading fixes from Bernie Solomon 
14184         (bernard@ugsolutions.com).
14185
14186         * reflection.c: Endianness fixes from Bernie Solomon 
14187         (bernard@ugsolutions.com).
14188         
14189 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14190
14191         * assembly.h assembly.c: Define a file format version for AOT
14192         libraries.
14193         
14194         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14195
14196         * appdomain.h (MonoJitInfo): New field to determine whenever the
14197         code is domain neutral.
14198         
14199 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14200
14201         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14202
14203 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14204
14205         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14206         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14207         Avoid caching the result since strings must be domain specific. Fixes
14208         #48050.
14209
14210 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14211
14212         * marshal.c (mono_marshal_init): Make this callable multiple times
14213         since it is hard to find a correct place to call it.
14214
14215         * object.c (mono_runtime_class_init): Execute static constructors in
14216         the correct appdomain.
14217
14218         * image.c (build_guid_table): Handle the case when multiple images have
14219         the same GUID.
14220
14221 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14222
14223         * icall.c: added a couple of icalls for System.Web.
14224
14225 2003-08-28  Martin Baulig  <martin@ximian.com>
14226
14227         * icall.c (ves_icall_Type_BindGenericParameters): Use
14228         `klass->generic_inst' instead of `&klass->byval_arg' in the
14229         mono_type_get_object() call.  The returned type must be
14230         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14231
14232 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14233
14234         * NOTES: New file.
14235
14236         * object.c (mono_class_proxy_vtable): Make it thread safe.
14237
14238         * pedump.c: Fix warning.
14239
14240         * object.c appdomain.h: Get rid of metadata_section. 
14241         It is no longer needed and it was causing deadlocks with domain->lock.
14242
14243         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14244
14245 2003-08-26  Martin Baulig  <martin@ximian.com>
14246
14247         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14248
14249 2003-08-26  Martin Baulig  <martin@ximian.com>
14250
14251         * pedump.c (main): Call mono_metadata_init(),
14252         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14253         and mono_loader_init().
14254
14255 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14256
14257         * loader.h: Add missing include to fix build.
14258
14259         * image.h: mono_image_load_references is no more.
14260
14261         * assembly.c: Reworked assembly loading to make it really thread safe.
14262         After these changes, the assembly returned by mono_assembly_open is
14263         fully initialized, i.e. all its references assemblies are loaded.
14264
14265         * assembly.c (mono_image_load_references): Renamed to 
14266         mono_assembly_load_references, and made private, since clients no
14267         longer need to call it.
14268
14269         * class.c: Removed calls to mono_assembly_load_references, since it was
14270         a source of deadlocks.
14271
14272         * loader.h loader.c class.h class.c: Protect data structures using a 
14273         new lock, the loader lock.
14274
14275         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14276         GPtrArrays only when needed.
14277
14278         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14279         into empty structures by mcs. Fixes pinvoke7.cs.
14280         
14281         * domain.c (mono_init): Call a new initialization function.
14282
14283         * appdomain.c (mono_runtime_init): Call the new initializer function
14284         of the marshal module.
14285
14286         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14287         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14288
14289         * marshal.h marshal.c: Added locks around the wrapper caches to make
14290         this module thread safe.
14291
14292         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14293         this argument. Fixes pinvoke1.exe.
14294
14295 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14296
14297         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14298         enumeration of values. Removed fields to store remote call output values in
14299         MonoAsyncResult. Not needed any more.
14300         * object.c: Initialize call_type and async_result fields in mono_message_init.
14301         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14302         dispatching the message.
14303         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14304         async call to finish. To do it use a message with EndInvoke call type.
14305
14306 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14307
14308         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14309         determines whenever a method has marshalling info.
14310
14311 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14312
14313         * assembly.c: fix the build on windows.
14314
14315 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14316
14317         * object.cs: Fixed bug #47785.
14318
14319 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14320
14321         * string-icalls.c (StringReplace): If their are no occurances of
14322         the old string found return a reference to the supplied
14323         string. This saves some memory and matches MS behavoir.
14324         
14325 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14326
14327         * socket-io.c: fixed compilation for systems that define AF_INET6
14328         and don't define SOL_IP/SOL_IPV6.
14329
14330 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14331
14332         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14333         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14334
14335         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14336
14337         * domain.c: Make this module thread safe.
14338
14339         * domain.c (mono_init): Call new initialization function.
14340
14341         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14342         reference types too. Fixes #38812.
14343
14344         * image.c (mono_image_init): Fixed warnings.
14345
14346         * class.c (mono_class_from_typeref): Handle assembly load failure
14347         correctly.
14348
14349         * appdomain.c (add_assemblies_to_domain): Handle the case when
14350         the references of an assembly are not yet loaded.
14351
14352         * metadata.c image.c assembly.c: Moved initialization of global
14353         variables to a separate function called at startup since lazy 
14354         initialization of these variables is not thread safe.
14355         
14356         * image.c assembly.c: Made this module thread safe by adding locks in 
14357         the appropriate places.
14358
14359         * domain.c (mono_init): Call the new initialization functions of the
14360         three modules.
14361
14362 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14363
14364         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14365           make a direct call. It is proxy's work to make the call asynchronous.
14366           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14367           the return values.
14368         * object.cs: mono_method_call_message_new(): read AsyncResult and
14369           state object from parameters list, if this info is requested.
14370         * object.h: Added fields to store remote call output values in
14371           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14372
14373 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14374
14375         * object.h: add needed fields to MonoThread.
14376         * threads.c, threads.h: allow registering a function to cleanup data
14377         allocated per thread by the JIT.
14378
14379 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14380
14381         * loader.h: portability fix by Bernie Solomon
14382         * <bernard@ugsolutions.com>.
14383
14384 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14385
14386         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14387         return a MonoArray. This simplifies the code and also ensures that
14388         the cache allways contains an object reference as a value.
14389
14390         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14391         function.
14392
14393 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14394
14395         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14396         fixes a problem with byte ordering when getting the address family for
14397         a socket.
14398
14399 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14400
14401         * .cvsignore: Added monosn.
14402
14403         * reflection.h reflection.c loader.c: Added support for parameter
14404         marshalling to dynamically created types. Fixes #47295.
14405
14406 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14407
14408         * rand.c: remove useless warnings.
14409
14410 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14411
14412         * class.c: implemented ldtoken for methods and fieldrefs.
14413
14414 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14415
14416         * threadpool.c: when mono_async_invoke was called, no one took care of
14417         monitoring the queue. So if the method invoked took some time and we
14418         got new async invoke requests after 500 ms (the thread created waited
14419         that long in WaitForSingleObject), the new async invoke was not called
14420         until the previous one finished.
14421
14422         This is fixed now. Thanks to Totte for helping with it.
14423
14424 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14425
14426         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14427
14428 2003-08-11  Martin Baulig  <martin@ximian.com>
14429
14430         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14431
14432 2003-08-06  Martin Baulig  <martin@ximian.com>
14433
14434         * mono-debug-debugger.c: Added support for static fields,
14435         properties and methods.
14436
14437 2003-08-06  Martin Baulig  <martin@ximian.com>
14438
14439         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14440         make this work for applications with multiple application domains.
14441
14442 2003-08-04  Martin Baulig  <martin@ximian.com>
14443
14444         * mono-debug-debugger.c: Completely reworked the type support; the
14445         most important thing is that we're now just using one single
14446         `MonoType' instance per type.
14447
14448 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14449
14450         * mono-endian.h, mono-endian.c, icall.c: Added icall
14451         ves_icall_System_Double_AssertEndianity to assert double word endianity
14452         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14453
14454 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14455
14456         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14457         support, icalls and fixes.
14458
14459 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14460
14461         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14462         classes that are a punctuation character in .NET is not the same a
14463         g_unichar_ispunct.
14464
14465 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14466
14467         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14468
14469 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14470
14471         * icall.c: Add new MemCopy internalcall.
14472         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14473         Simplified code; It is not necessary to handle all the cases here,
14474         as the C# code takes care of it.  Only handle the case of the name
14475         resource embedded into the assembly.
14476
14477         Changed signature to return the data pointer and the size of the
14478         data. 
14479
14480 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14481
14482         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14483         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14484
14485 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14486
14487         * socket-io.c: ignore EINTR error in select.
14488
14489 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14490
14491         * class.h, class.c: removed unused subclasses field in MonoClass.
14492
14493 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14494
14495         * icall.c: improve fix of get_base_definition(). If the parent class
14496           doesn't have the mehod, look at the parent of the parent.
14497         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14498           to check if a parameter is an in or out parameter
14499           (PARAM_ATTRIBUTE_IN is not set by default).
14500           mono_method_return_message_restore(): Use mono_class_value_size to
14501           get the size of a value type. mono_type_stack_size (parameterType)
14502           does not return the correct value if parameterType is byRef.
14503           mono_load_remote_field(), mono_load_remote_field_new(),
14504           mono_store_remote_field(), mono_store_remote_field_new():
14505           raise exception if the remote call returns an exception.
14506
14507 2003-07-28  Martin Baulig  <martin@ximian.com>
14508
14509         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14510         method.  This is a wrapper around mono_runtime_invoke() which
14511         boxes the instance object if neccessary.
14512
14513 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14514
14515         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14516         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14517
14518 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14519
14520         * icall.c: disable mcs bug workaround.
14521
14522 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14523
14524         * object.c (mono_runtime_class_init): Take the metadata_section
14525         mutex before obtaining the domain mutex.
14526
14527         * appdomain.h: Added definition of metadata_section mutex here. 
14528
14529         * object.c: define metadata_mutex here.
14530
14531 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14532
14533         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14534         fixed.
14535
14536 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14537
14538         * reflection.c: Fix bug #46669
14539
14540 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14541
14542         * exception.c:
14543         * exception.h:
14544         * icall.c:
14545         * object.h: fill in the type name for TypeLoadException.
14546
14547 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14548
14549         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14550         relationship between TypeBuilders while compiling corlib) and bug
14551         45993 (Array types returned from the runtime while compiling
14552         corlib were from the loaded corlib).
14553
14554 2003-07-22  Martin Baulig  <martin@ximian.com>
14555
14556         * mono-debug-debugger.c: Reworked the type support a bit more;
14557         distinguish between types and classes.
14558
14559 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14560
14561         * icall.c: add IsArrayImpl icall.
14562
14563 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14564
14565         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14566         initializing real_size only once. Also fix bug #46602.
14567
14568 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14569
14570         * object.c: Renamed mono_metadata_section to metadata_section.
14571
14572 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14573
14574         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14575           empty array if the type is an array. Fixed.
14576           ves_icall_MonoMethod_get_base_definition: if the base method
14577           is abstract, get the MethodInfo from the list of methods of
14578           the class.
14579         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14580           and it was 1-based. Fixed in mono_param_get_objects.
14581
14582 2003-07-20  Martin Baulig  <martin@ximian.com>
14583
14584         * mono-debug.h: Set version number to 31.
14585         (mono_debug_init): Added `MonoDomain *' argument.
14586
14587         * mono-debug-debugger.c: Reworked the type support; explicitly
14588         tell the debugger about builtin types; pass the `klass' address to
14589         the debugger.
14590
14591 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14592
14593         * image.c: Allow new metadata tables to be loaded without a
14594         warning. Also update the warning message to give the new constant value.
14595                 
14596 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14597
14598         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14599         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14600         array type representation changes.
14601
14602 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14603
14604         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14605         on Environment.Exit () call.
14606
14607 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14608
14609         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14610         requires a matching corlib.
14611
14612 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14613
14614         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14615           Committed again without the CRs.
14616         
14617 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14618
14619         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14620           getting it from the "this" socket instance. Did not work
14621           if the socket is a subclass of Socket.
14622           Also fixed bug #35371.
14623
14624 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14625
14626         * metadata.c: fixed size for TypedByRef.
14627         * loader.c: when searching for a method, consider the vararg amrker.
14628         * unicode.c, decimal.c: constify some arrays.
14629
14630 2003-07-15  Dick Porter  <dick@ximian.com>
14631
14632         * socket-io.c: Fixed compilation for gcc < 3.2.
14633
14634         Fixed compilation for machines that don't have AF_INET6 (thanks to
14635         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14636
14637         Fixed compile warnings.
14638         
14639         Fixed formatting and line endings.
14640
14641 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14642
14643         * socket-io.h:
14644         * socket-io.c: Added IPv6 support.
14645
14646 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14647
14648         * class.c (mono_class_is_assignable_from): New function to implement
14649         the is_assignable_from logic. Used by mono_object_isinst, 
14650         Type::IsAssignableFrom () and the interpreter.
14651
14652         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14653         Object, even interfaces.
14654         
14655         * object.c (mono_object_isinst): Implement in terms of 
14656         is_assignable_from.
14657
14658         * icall.c (ves_icall_type_is_assignable_from): New icall.
14659
14660 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14661
14662         * domain.c (foreach_domain): fix compiler warning.
14663
14664 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14665
14666         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14667         not available on all plattforms
14668
14669 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14670
14671         * image.h image.c: Store the metadata version string in MonoImage.
14672         * icall.c: New icall to retrieve the image version.
14673         * reflection.c (create_dynamic_image): Fill in the image version field
14674         * reflection.c (build_compressed_metadata): Use the image version
14675         from the image structure.
14676
14677 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14678
14679         * appdomain.c: modified comment.
14680         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14681         That will be its last iteration when mono_gc_cleanup is called from
14682         mono_runtime_cleanup and before the domain is unloaded.
14683
14684         Fixes bug #45962.
14685
14686 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14687
14688         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14689         attributes.
14690
14691 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14692
14693         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14694         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14695         Bernie Solomon <bernard@ugsolutions.com>.
14696
14697 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14698
14699         * object.c, object.h: provide mono_object_new_fast() for faster
14700         allocation in some special cases.
14701
14702 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14703
14704         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14705         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14706
14707 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14708
14709         * threadpool.c: fix leaks.
14710
14711 2003-07-01  Dick Porter  <dick@ximian.com>
14712
14713         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14714         using MonoGHashTables.  Fixes threadpool bug posted to list.
14715
14716 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14717
14718         * image.h, image.c: added support to load an assembly from a byte array.
14719         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14720         assembly bundle support.
14721
14722 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14723
14724         * threadpool.c (mono_thread_pool_add): keep a reference to the
14725         AsyncResult to prevent GC
14726
14727 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14728
14729         * class.c: leak fix.
14730
14731 2003-06-25  Dick Porter  <dick@ximian.com>
14732
14733         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14734         for the async object, the WaitHandle object will close the handle.
14735         Fixes bug 45321.
14736
14737 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14738
14739         * class.c: in mono_array_class_get (), lookup from the hash with the
14740         same type we insert: this works around a bug in
14741         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14742         lluis. The real fix will have to wait for after the release.
14743
14744 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14745
14746         * icall.c: fix memory leak when getting type members.
14747
14748 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14749
14750         * reflection.c: added more pubtoken special cases.
14751
14752 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14753
14754         * class.c: handle field offset correctly when class size
14755         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14756
14757 2003-06-20  Martin Baulig  <martin@ximian.com>
14758
14759         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14760         *image' field.
14761
14762 2003-06-20  Martin Baulig  <martin@ximian.com>
14763
14764         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14765
14766 2003-06-20  Martin Baulig  <martin@ximian.com>
14767
14768         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14769         just distinguish between variables in registers and variables at
14770         an offset relative to a register.
14771
14772 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14773
14774         * icall.c: #ifdef out latest changes until mcs is fixed.
14775
14776 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14777
14778         * icall.c: return members in metadata order.
14779
14780 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14781
14782         * icall.c: avoid infinite loop in GetTimeZoneData.
14783
14784 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14785
14786         * icall.c: added Marshal.Prelink/All icalls.
14787
14788 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14789
14790         * object.c, object.h: fix warnings and do some overflow checking
14791         when creating arrays.
14792
14793 2003-06-17  Dick Porter  <dick@ximian.com>
14794
14795         * file-io.h:
14796         * file-io.c: File attributes need to be tweaked slightly when
14797         passed from the managed to the w32 world.
14798
14799 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14800         * profiler.h profiler-private.h profiler.c: Rework last patch
14801         based on suggestion by Paolo.
14802         
14803 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14804
14805         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14806         instruction level coverage data collection.
14807         * profiler.h profiler.c (: Added new callback function which can be
14808         used by the profiler to limit which functions should have coverage
14809         instrumentation.
14810         * profiler.c (mono_profiler_load): Call g_module_build_path to
14811         generate the file name of the profiler library.
14812
14813 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14814
14815         * profiler.c, profiler.h, profiler-private.h: added basic block 
14816         coverage profiling API.
14817
14818 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
14819
14820         * reflection.c (mono_reflection_create_runtime_class): Add support
14821         for events in dynamically generated code.
14822
14823         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14824         not allocated.
14825
14826 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14827
14828         * icall.c: when getting timezone info, return reasonable values if we
14829         can't get the actual data.
14830
14831 2003-06-14  Dick Porter  <dick@ximian.com>
14832
14833         * threads.c (start_wrapper): Remove the reference to the thread
14834         object in the TLS data, so the thread object can be finalized.
14835         This won't be reached if the thread threw an uncaught exception,
14836         so those thread handles will stay referenced :-( (This is due to
14837         missing support for scanning thread-specific data in the Boehm GC
14838         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14839
14840 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14841
14842         * reflection.c: ensure streams and tables are first allocated with
14843         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14844
14845 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14846
14847         * icall.c: fixed GetElementType for byrefs (bug# 44792).
14848
14849 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
14850
14851         * reflection.c (mono_reflection_create_runtime_class): Add support for
14852         properties to dynamically created classes.
14853         * reflection.c: Fix a few places where non-MonoObjects were inserted
14854         into the tokens hashtable.
14855
14856 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14857
14858         * object.c: some support to handle out of memory exceptions.
14859
14860 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
14861
14862         * marshal.c (mono_marshal_get_native_wrapper): support reference
14863         return types
14864
14865 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14866
14867         * object.h, object.c: more portability stuff from Bernie Solomon.
14868         Unexport mono_object_allocate(). Added mono_object_unbox ().
14869         Set exitcode when an unhandled exception is thrown.
14870
14871 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
14872
14873         * marshal.c (mono_marshal_get_native_wrapper): use custom
14874         marshaler for return types.
14875
14876 2003-06-10  Dick Porter  <dick@ximian.com>
14877
14878         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14879         ip_mreq is available
14880
14881 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14882
14883         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14884         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14885         by Bernie Solomon <bernard@ugsolutions.com>.
14886
14887 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
14888
14889         * gc.c (mono_gc_init): Avoid error message on shutdown when
14890         GC_DONT_GC=1 is used.
14891
14892         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
14893         New icall to return the GUID of a module.
14894
14895 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14896
14897         * class.c: ensure instance size always includes the parent's size
14898         even whem class size is set explicitly (fixes bug#44294).
14899
14900 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14901
14902         * profiler.h, profiler.c: made the simple profiler thread-safe,
14903         get more accurate timing info. Allow the loading of an
14904         externally-developed profiler module.
14905
14906 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
14907
14908         * marshal.c (mono_marshal_get_native_wrapper): improved
14909         class/byref arguments.
14910         (mono_marshal_get_native_wrapper): better string marshaling support.
14911
14912 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14913
14914         * class.c: ensure .pack and .size are handled correctly and
14915         simplified layout of static fields.
14916
14917 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
14918
14919         * appdomain.c
14920         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14921
14922         * loader.c (mono_lookup_pinvoke_call): look for modules in the
14923         current directory (fix bug 44008)
14924
14925 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
14926
14927         * marshal.c (mono_marshal_get_native_wrapper): started support for
14928         custom marshalers.
14929         (mono_delegate_to_ftnptr): consider marshalling specifications
14930
14931 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14932
14933         * reflection.c, reflection.h: emit custom marshal info.
14934
14935 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14936
14937         * object.c: free the GError.
14938         * icall.c: added CloseEvent_internal.
14939         * threads.[ch]:
14940         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14941         call.
14942
14943 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
14944
14945         * loader.c (mono_method_get_signature): Add support for dynamic
14946         assemblies.
14947
14948 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14949
14950         * reflection.c: fixed bug #43905.
14951
14952 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14953
14954         * class.c, domain.c, icall.c, metadata.h, object.h: support for
14955         handling TypedReference and ArgIterator.
14956         * loader.c, loader.h: added function to get signature at call site.
14957
14958 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14959
14960         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
14961         data readonly. Buglets and warning fixes. Some MethodSpec support.
14962
14963 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14964
14965         * class.h, class.c, object.c: remove relative numbering support.
14966
14967 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
14968
14969         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14970         free the string, until we get a chance to fix Gtk#
14971
14972 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14973
14974         * marshal.c: revert last patch.
14975
14976 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14977
14978         * icall.c: updates for new mono_class_vtable() not calling
14979         the type constructor anymore.
14980
14981 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14982
14983         * object.h, object.c: separate vtable creation from type
14984         initialization. Make running the .cctor thread safe.
14985
14986 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
14987
14988         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14989
14990 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
14991
14992         * loader.c (mono_get_method): consider calling convention
14993
14994 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
14995
14996         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14997         to return the invisible global type for a module.
14998
14999         * reflection.c (mono_image_build_metadata): Emit global fields too.
15000
15001 2003-05-20  Peter Williams  <peterw@ximian.com>
15002
15003         * loader.c (mono_lookup_internal_call): Add a few newlines.
15004
15005 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15006
15007         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15008         literal strings.
15009
15010         * appdomain.c (set_domain_search_path): Recalculate search path when
15011         AppDomainSetup.PrivateBinPath changes.
15012
15013         * object.c (mono_class_compute_gc_descriptor): It turns out some
15014         parts of the class libs (like System.Thread) holds pointers to
15015         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15016         to treat native int a pointer type here.
15017         
15018 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15019
15020         * appdomain.h, domain.c: add hashtable for jump target resolution.
15021
15022 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15023
15024         * reflection.h reflection.c icall.c: Added new icalls 
15025         GetManifestResourceInfoInternal, GetModulesInternal and support
15026         infrastructure.
15027
15028 2003-05-16  Dick Porter  <dick@ximian.com>
15029
15030         * icall.c:
15031         * file-io.h:
15032         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15033
15034 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15035
15036         * object.c: mono_store_remote_field: little fix to previous patch.
15037
15038 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15039
15040         * class.c: add constructors to array classes.
15041         * icall.c: special case array construction for InternalInvoke (),
15042
15043 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15044
15045         * class.h class.c reflection.c object.c: Added support for field
15046         defaults in dynamically generated classes.
15047
15048 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15049
15050         * reflection.c: properly encode charset for ddlimport.
15051
15052 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15053
15054         * threads.c: allow compiling without GC.
15055
15056 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15057
15058         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15059         handling of thread static data.
15060
15061 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15062
15063         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15064
15065 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15066
15067         * class.c (mono_array_class_get): always set the serializable flags
15068         (mono_array_class_get): always set the SEALED attribute for array types
15069
15070 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15071
15072         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15073         attributes (fix for bug 42021).
15074
15075 2003-05-12  Dick Porter  <dick@ximian.com>
15076
15077         * gc.c: Don't run finalizers when the finalizer thread is
15078         finishing up, because the default domain has already been
15079         destroyed.
15080
15081 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15082
15083         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15084         value is null, we should throw an exception.   This is slightly
15085         different than the other conventions used for the constructor.
15086
15087 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15088
15089         * socket-io.c: fixed windows build.
15090
15091 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15092
15093         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15094
15095 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15096
15097         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15098         compilers.
15099
15100 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15101
15102         * class.c (mono_class_layout_fields): Add experimental GC aware
15103         auto layout facility. Requires class library changes to work correctly.
15104
15105         (mono_class_setup_vtable): Avoid overriding explicit interface
15106         method implementations. Fixes iface3.exe test.
15107
15108         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15109         object reference.
15110         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15111         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15112
15113         * metadata.h: Add new type classification macro which determines
15114         whenever the type holds an object reference.
15115
15116 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15117
15118         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15119
15120 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15121
15122         * gc.c (finalizer_thread): Work around a GC bug.
15123
15124 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15125
15126         * marshal.c (emit_struct_conv): allow unions
15127
15128         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15129
15130 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15131
15132         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15133
15134 2003-05-06  Martin Baulig  <martin@ximian.com>
15135
15136         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15137
15138 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15139
15140         * socket-io.c:
15141         (Select_internal): allow NULLs, don't create arrays if not needed.
15142         Coupled with Socket.cs changes.
15143
15144         * threadpool.c:
15145         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15146         register a finalizer for it that will close the semaphore handle. This
15147         fixes the leak and make Lupus' test run with > 4080 loops.
15148
15149 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15150
15151         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15152         Jerome Laban (bug #42287)
15153
15154 2003-05-02  Martin Baulig  <martin@ximian.com>
15155
15156         * debug-mono-symfile.h
15157         (MonoSymbolFile): Moved declaration into mono-debug.h.
15158         (MonoDebugMethodJitInfo): Likewise.
15159         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15160         argument.
15161         (_mono_debug_address_from_il_offset): Take a
15162         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15163
15164         * mono-debug.h
15165         (MonoDebugDomainData): New struct.
15166         (mono_debug_get_domain_data): New function.
15167         (mono_debug_add_method): Take an additional `MonoDomain *'
15168         argument.
15169         (mono_debug_source_location_from_address): Likewise.
15170         (mono_debug_il_offset_from_address): Likewise.
15171         (mono_debug_address_from_il_offset): Likewise.
15172
15173 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15174
15175         * reflection.c: one more check for null type in custom attrs.
15176
15177 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15178
15179         * reflection.c: avoid warning (comparison is always false due to limited
15180         range of data type).
15181
15182 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15183
15184         * icall.c: throw an exception in Type.GetField if the argument 'name'
15185         is NULL.
15186
15187 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15188
15189         * reflection.c: fixed handling of enums in named arguments to custom
15190         attributes (bug #42123).
15191
15192 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15193
15194         * reflection.c: use the right array element type and handle
15195         a null for a Type argument, too.
15196
15197 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15198
15199         * reflection.c: handle arrays as arguments to custom attributes.
15200
15201 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15202
15203         * reflection.c: handle a string value in a custom attr
15204         ctor that takes an object.
15205
15206 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15207
15208         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15209         (fix bug #42063)
15210
15211 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15212
15213         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15214
15215 2003-04-27  Martin Baulig  <martin@ximian.com>
15216
15217         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15218         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15219         MONO_DEBUGGER_EVENT_BREAKPOINT.
15220         (mono_breakpoint_trampoline_code): Removed.
15221         (mono_debugger_event_handler): The last argument is now a
15222         `guint32'.
15223         (mono_debugger_insert_breakpoint_full): Removed the
15224         `use_trampoline' argument.
15225         (mono_debugger_method_has_breakpoint): Likewise.
15226         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15227         mono_debugger_breakpoint_callback(); take the method and
15228         breakpoint number as arguments.
15229
15230 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15231
15232         * metadata.c: fix off by one when loading parameters attributes.
15233
15234 2003-04-24  Martin Baulig  <martin@ximian.com>
15235
15236         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15237
15238 2003-04-24  Martin Baulig  <martin@ximian.com>
15239
15240         * mono-debug-debugger.c: Moved all code which interacts with the
15241         Mono Debugger here.
15242
15243         * debug-mono-symfile.c: This code now just deals with the symbol
15244         file itself, the debugger code is now in mono-debug-debugger.c.
15245
15246 2003-04-23  Martin Baulig  <martin@ximian.com>
15247
15248         * mono-debug.c (mono_debug_source_location_from_il_offset):
15249         New method; like mono_debug_source_location_from_address(), but
15250         takes an IL offset instead of a machine address.
15251
15252 2003-04-23  Martin Baulig  <martin@ximian.com>
15253
15254         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15255         `line' field; this is now computed by the debugger.
15256
15257 2003-04-23  Martin Baulig  <martin@ximian.com>
15258
15259         * mono-debug.[ch]: New files.  This is the new debugging interface.
15260
15261         * mono-debug-debugger.[ch]: New files.  Moved all code which
15262         interacts with the Mono Debugger here.
15263
15264 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15265
15266         * domain.c (mono_init): initialize mono_defaults.monitor_class
15267
15268 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15269
15270         * reflection.c (method_encode_code): Add a spicy exception to help
15271         future compiler authors.
15272
15273 2003-04-21  Martin Baulig  <martin@ximian.com>
15274
15275         * icall.c
15276         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15277         Make this work with relative pathnames; g_filename_to_uri() needs
15278         an absolute filename.
15279
15280 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15281
15282         * icall.c: Track name changes in Object and ValueType.
15283
15284 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15285
15286         * metadata.c (mono_type_stack_size): size should be a multiple of
15287         sizeof (gpointer)
15288
15289 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15290
15291         * gc.c:
15292         (internal_domain_finalize): moved into mono_domain_finalize. No need
15293         to create another thread because the finalizers will be run in the
15294         finalizer thread.
15295         
15296         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15297         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15298         to be run (MS does this too).
15299
15300 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15301
15302         * object.c (mono_class_compute_gc_descriptor): Update comment.
15303
15304         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15305
15306         * image.h: Add synchronized wrapper cache.
15307
15308         * image.c (do_mono_image_open): Initialize cache.
15309
15310         * reflection.c (create_dynamic_mono_image): Initialize cache.
15311
15312 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15313
15314         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15315         ves_icall_System_Buffer_ByteLengthInternal.
15316
15317 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15318
15319         * reflection.c: setup klass->nested_in earlier. Allow
15320         a dash in the assembly name.
15321
15322 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15323
15324         * metadata.c (mono_type_to_unmanaged): dont access
15325         type->data.klass for MONO_TYPE_OBJECT
15326         (mono_type_to_unmanaged): consider System.Delegate class
15327
15328 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15329
15330         * class.c: just setup supertypes in the proper place instead of
15331         initializing the full element class for arrays.
15332
15333 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15334
15335         * class.c: ensure the element class of arrays is initialized.
15336         Setup the supertype info for array classes, too.
15337
15338 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15339
15340         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15341
15342 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15343
15344         * Makefile.am: re-added -m option when running cygpath. This way,
15345         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15346         separator.
15347         * mono-config.c: same codepath for locating mono config file for WIN32
15348         and the rest.
15349         * assembly.c: if mono_assembly_setrootdir is called, don't override
15350         the value set.
15351
15352 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15353
15354         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15355         MONO_ASSEMBLIES variable.
15356
15357 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15358
15359         * icall.c: added Assembly::GetNamespaces() icall.
15360
15361 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15362
15363         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15364
15365 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15366
15367         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15368         * object.c: fixed bug in the construction of vtable for proxies
15369
15370 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15371
15372         * object.c (mono_array_new): Mark mono_array_new as an icall.
15373
15374 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15375
15376         * class.c: fixed test for public method when overriding interfaces.
15377         Closes bug #40970.
15378
15379 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15380
15381         * appdomain.h, domain.c: added mono_domain_foreach() to
15382         be able to access the currently loaded appdomains.
15383         * object.c: make string interning work across sppdomains.
15384         Mark some functions for use as icalls.
15385
15386 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15387
15388         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15389
15390         * reflection.h reflection.c: Allocate long living data using 
15391         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15392
15393         * reflection.c: Double the allocation size in streams instead of
15394         increasing it, to prevent unneccesary copying on large assemblies.
15395         
15396         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15397         creation if the assembly does not have the Run flag set.
15398
15399 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15400
15401         * class.h: avoid the C++ keywords in header files (Jerome Laban
15402         spotted and fixed this).
15403
15404 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15405
15406         * object.c:
15407         (mono_unhandled_exception): fill in the arguments for the
15408         UnhandledException event. Only trigger that event for the default
15409         domain (as MS does).
15410
15411 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15412
15413         * object.c: Improve typed allocation stuff based on suggestions from
15414         Paolo. Also turn it on if the GC library supports it.
15415
15416 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15417
15418         * object.c object.h class.h: Added experimental typed allocation
15419         facility using the interfaces in gc_gcj.h.
15420
15421         * os/gc_wrapper.h: Added new include files.
15422         
15423 2003-04-03  Martin Baulig  <martin@ximian.com>
15424
15425         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15426         which is not yet enabled by default.
15427
15428         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15429         functions.
15430         (mono_gc_lock, mono_gc_unlock): New static functions.
15431
15432         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15433         functions; stop/start the world for the garbage collector.  This
15434         is using the windows API; we need to complete the SuspendThread()/
15435         ResumeThread() implementation in the io-layer to make this work on Unix.
15436         (mono_gc_push_all_stacks): New public function; tells the garbage
15437         collector about the stack pointers from all managed threads.
15438
15439 2003-04-03  Martin Baulig  <martin@ximian.com>
15440
15441         * object.h (MonoThread): Added `gpointer stack_ptr'.
15442
15443         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15444
15445 2003-04-03  Martin Baulig  <martin@ximian.com>
15446
15447         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15448
15449 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15450
15451         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15452         field.last.
15453
15454 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15455
15456         * loader.c (mono_lookup_internal_call): Report the corlib that is
15457         out of sync.
15458
15459 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15460
15461         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15462         System.DBNull (it's class not valuetype).
15463
15464 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15465
15466         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15467         if the array method was already assigned a token (fixes bug#40646).
15468
15469 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15470
15471         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15472         if no assembly is given.
15473
15474 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15475
15476         * metadata.h: Added the new tables.
15477
15478         * row-indexes.h: Added definitions for new tables.
15479
15480         * metadata.c: Add schemas for new tables, and add support for
15481         computing the sizes of them.
15482
15483         * class.c: Update for handling the new type cases.
15484
15485 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15486
15487         * metadata.h (MONO_TYPE_IS_VOID): new macro
15488
15489 2003-03-31  Martin Baulig  <martin@ximian.com>
15490
15491         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15492
15493         * threads.c (mono_thread_new_init): Call `thread_created' in the
15494         mono_thread_callbacks.
15495
15496 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15497
15498         * loader.h: added marshalbyrefobject_class to mono_defaults
15499         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15500         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15501           generation of output parameters.
15502           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15503         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15504           contextbound and the target object belongs to the context of the caller.
15505         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15506         * object.c: Implemented support for interfaces and abstract classes
15507           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15508           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15509
15510 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15511
15512         * class.h class.c (mono_class_is_subclass_of): New function.
15513         
15514         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15515         routines for most common case (calls from ArrayList::ToArray).
15516
15517         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15518         routine so programs which call Environment::Exit() can be profiled.
15519
15520         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15521         Added MONO_ARCH_SAVE_REGS.
15522
15523         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15524
15525 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15526
15527         * blob.h: Add a couple of new MonoType types definitions.
15528
15529         * tabledefs.h: Add a couple of new call convs.
15530
15531 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15532
15533         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15534         the layout of the class.
15535
15536         * reflection.c (alloc_table): double the size on overflow to avoid
15537         unnecessary copying.
15538
15539         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15540         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15541         null so it can be garbage collected.
15542         
15543 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15544
15545         * reflection.c (mono_reflection_get_type): Return the resolved type
15546         only if it is in the assembly we searched.
15547
15548         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15549
15550         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15551         method.
15552
15553 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15554
15555         * appdomain.c:
15556         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15557         the right one is 'file:///blah', but MS allows it.
15558         * assembly.c:
15559         (mono_assembly_open): allow 'file://blah'
15560
15561         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15562
15563 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15564
15565         * socket-io.c: fixes bug #40310.
15566
15567 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15568
15569         * reflection.c (mono_reflection_parse_type): handle deeply nested
15570         types correctly.
15571
15572         * reflection.c (mono_image_create_token): Use unique token values
15573         since they will be put into a hash table.
15574
15575         * class.c (mono_class_setup_vtable): If a method occurs in more than
15576         one place in the vtable, and it gets overriden, then change the
15577         other occurances too.
15578
15579         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15580         object as return type.
15581
15582 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15583
15584         * icall.c: Deleted "ToString" implementation for double and float
15585         because they are full implemented in managed code.
15586
15587 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15588
15589         * reflection.c, reflection.h: implemented and exported functions
15590         to retrieve info about custom attributes.
15591
15592 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15593
15594         * appdomain.c: moved Uri handling to assembly.c
15595         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15596         work when using a file Uri in *nix and windows.
15597
15598         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15599         GetReferencedAssemblies.
15600
15601 2003-03-18  Dick Porter  <dick@ximian.com>
15602
15603         * icall.c: Rename a couple of internal calls
15604
15605         * threads.c: Set the thread state to Stopped when a thread exits.
15606         Fixes bug 39377.
15607
15608 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15609
15610         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15611         New icall.
15612
15613         * object.c (mono_class_vtable): fix warning.
15614
15615 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15616
15617         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15618
15619         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15620         memory.
15621         (method_encode_clauses): Create exception info structures in the right
15622         order.
15623         (mono_reflection_setup_internal_class): Initialize supertypes field.
15624
15625         * class.c object.c: Handle interfaces which implement other interfaces 
15626         correctly.
15627
15628         * class.h class.c: Move the supertypes array initialization code into 
15629         a separate function so it can be used for dynamic types too. Also call
15630         it earlier, in mono_class_init(), since it can be used before the
15631         type is initialized.
15632
15633 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15634
15635         * Makefile.am:
15636         * assembly.c:
15637         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15638
15639         * appdomain.c:
15640         * appdomain.h:
15641         * marshal.c:
15642         * object.c: remove warnings.
15643
15644 2003-03-13  Martin Baulig  <martin@ximian.com>
15645
15646         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15647         (MonoDebugLexicalBlockEntry): New types.
15648
15649         * debug-mono-symfile.c
15650         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15651
15652 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15653
15654         * process.c: ret can be any non-zero value accroding to MS doc.
15655
15656 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15657
15658         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15659         fixing a warning for a miss-used prototype, would have cause
15660         random memory corruption.
15661
15662 2003-03-07  Martin Baulig  <martin@ximian.com>
15663
15664         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15665         getting really annoying ....
15666
15667 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15668
15669         * reflection.c (fixup_method): added support for array methods.
15670
15671 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15672
15673         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15674         (pointed out by Michael Adams).
15675
15676 2003-03-04  Dick Porter  <dick@ximian.com>
15677
15678         * icall.c: Temporarily reverted the Double and Single ToString()
15679         change, because it broke nunit.
15680
15681 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15682
15683         * object.h, threads.h: make include files compatible with C++
15684         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15685
15686 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15687
15688         * icall.c: Erased ToString helper functions for Double and Single.
15689         Now, that implementations ar all in managed code (Double and Single
15690         Formatters).
15691
15692 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15693
15694         * appdomain.c: Added method for initializing the default context of
15695         a domain. Added internal call for getting the default context.
15696         * appdomain.h: Added context variable in MonoDomain struct.
15697         * domain.c: mono_domain_set also sets the default context of the domain
15698         * icall.c: Mapped internal method InternalGetDefaultContext.
15699         * object.c: mono_object_get_virtual_method returns always a remoting
15700         wrapper if the object is a transparent proxy.
15701         mono_runtime_invoke_array: when creating an object by calling the
15702         constructor, if the created object is a proxy, then the constructor should
15703         be called using the a remoting wrapper.
15704
15705 2003-03-03  Dick Porter  <dick@ximian.com>
15706
15707         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15708         variable so it compiles on solaris.  Problem spotted by
15709         Christopher Taylor <ct@cs.clemson.edu>
15710
15711 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15712
15713         * appdomain.c:
15714         (get_info_from_assembly_name): don't leak value.
15715
15716         * icall.c:
15717         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15718         result.
15719
15720 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15721
15722         * assembly.c: export mono_image_load_references ().
15723         * class.c: handle function pointers. mono_class_from_name() now
15724         supports nested type names directly.
15725
15726 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15727
15728         * reflection.h reflection.c: Encode already created dynamic methods 
15729         and fields correctly as a DEF instead of a REF.
15730
15731         * reflection.c: Get rid of the force_ref argument to 
15732         mono_image_typedef_or_ref since it was wrong in the first place.
15733
15734         * string-icalls.c: add error checking to string constructors according
15735         to the MSDN docs.
15736
15737         * reflection.c: Emit types in the order their TypeBuilders were 
15738         created. Previously, a new table index was assigned to each type before
15739         the tables were emitted. This was wrong because the signature blob
15740         might already refer to a type by its original table index.
15741
15742 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15743
15744         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15745         change.
15746         
15747 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15748
15749         * Makefile.am: make assemblies dir have \ instead of / on windows.
15750
15751 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15752
15753         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15754         iterate over the NESTEDCLASS table using a linear search since the
15755         table is not guaranteed to be sorted by the secondary key.
15756
15757         * class.c (mono_class_create_from_typedef): fixed up call to
15758         mono_metadata_nesting_typedef.
15759         
15760 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15761
15762         * marshal.c (mono_string_to_byvalstr): clear the memory as
15763         suggested by Jerome Laban <jlaban@wanadoo.fr>
15764
15765 2003-02-26  Dick Porter  <dick@ximian.com>
15766
15767         * process.c: Cope with padding in .rsrc blocks
15768
15769 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15770
15771         * metadata.h: reverted the filter_len change, it breaks reflection
15772         
15773 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15774
15775         * metadata.h: added a new field to store the filter_len
15776         
15777
15778 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15779
15780         * reflection.c: handle custom attributes for types and members
15781         created with Reflection.Emit (bug#38422).
15782
15783 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15784
15785         * reflection.c: define RTSpecialName automatically for constructors for
15786         compatibility with MS.NET.
15787
15788         * reflection.c (mono_reflection_create_runtime_class): initialize
15789         nested_in field of dynamically created classes.
15790
15791 2003-02-22  Martin Baulig  <martin@ximian.com>
15792
15793         * debug-mono-symfile.h: Incremented version number.
15794
15795 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15796
15797         * object.h icall.c process.c: fix warnings.
15798
15799 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15800
15801         * appdomain.h appdomain.c:
15802         (mono_domain_try_type_resolve): split the 
15803         name_or_tb argument into a name and a tb argument.
15804         (mono_domain_has_type_resolve): new function to check whenever the
15805         application has registered a TypeResolve event handler.
15806         
15807         * icall.c reflection.h reflection.c: move the type resolve logic into
15808         mono_reflection_get_type () so it will be invoked when 
15809         Assembly::GetType () is called.
15810
15811         * reflection.c:
15812         (mono_reflection_get_type): renamed to get_type_internal.
15813         (mono_reflection_get_type): fixed type name generation so it works 
15814         for nested types too.
15815         (mono_reflection_get_type): call has_type_resolve () to avoid the 
15816         costly type name generation if there is no resolve event handler.
15817
15818 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15819
15820         * class.c, image.c: load exported types from file references.
15821
15822 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
15823
15824         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15825           used to cache the managed methods used to create proxies and make 
15826           remote invocation of methods.
15827         * class.h: Added in MonoVTable a flag to indicate that a class needs 
15828           to be remotely created.
15829         * object.c: Modified the method mono_class_vtable(). It now initializes 
15830           the remote flag of the vtable. Modified mono_object_new_specific(), 
15831           so now it checks the remote flag.
15832         * icall.c: Added a couple of internal methods, one for enabling instance 
15833           creation interception for a type, and one for creating objects bypassing
15834           the remote check.
15835
15836 2003-02-18  Martin Baulig  <martin@ximian.com>
15837
15838         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15839         New interncall to get a method's metadata token.
15840
15841         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15842         New interncall for the debugger.
15843
15844 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
15845
15846         * class.c (mono_class_setup_vtable): allocate supertype array
15847
15848 2003-02-18  Martin Baulig  <martin@ximian.com>
15849
15850         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15851
15852 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15853
15854         * reflection.c:
15855         (assembly_name_to_aname): jump over unknown properties (i've found
15856         something like: 'type, assembly, version=xxx, custom=null, public...',
15857         so now will ignore custom=null and still get the rest of the values).
15858
15859 2003-02-17  Dick Porter  <dick@ximian.com>
15860
15861         * threads.c: Have Thread.Start() wait for a semaphore to signal
15862         that the thread has set up all its local data.  This fixes bug
15863         34323, where Abort() raced the new thread's TLS data.
15864
15865         Also removes the handle_store() call from start_wrapper, because
15866         threads are now always created suspended and there is no longer a
15867         race between the parent and child threads to store the info.
15868
15869 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15870
15871         * image.c: explain the #- heap issue in a message, hopefully
15872         avoiding FAQs on mono-list.
15873
15874 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15875
15876         * icall.c:
15877         (GetEntryAssembly): if the domain has not invoked
15878         AppDomain.ExecuteAssembly yet, return the assembly of the default
15879         AppDomain.
15880
15881 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
15882
15883         * class.c (mono_ldtoken): make it work in dynamic assemblies.
15884
15885 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15886
15887         * metadata.c, reflection.c: simple speedup to type hash
15888         and equals code.
15889
15890 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15891
15892         * image.c, image.h, class.c, assembly.c: move module loading
15893         to MonoImage. When loading metadata, consider alignemnet from
15894         the start of metadata, not from the metadata address in memory.
15895
15896 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
15897
15898         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
15899         AssemblyBuilder objects. Factored out custom attribute creation into
15900         a separate function.
15901         (create_custom_attr): new function to create custom attributes.
15902
15903 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
15904
15905         * Makefile.am: Got tired of typing the full pathname to pedump.
15906         Until there is another option, am installing this.
15907
15908 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
15909
15910         * class.c (class_compute_field_layout): always set field->parent 
15911         (mono_ldtoken): use mono_defaults.fieldhandle_class;
15912
15913 2003-02-11  Dick Porter  <dick@ximian.com>
15914
15915         * threads-types.h:
15916         * monitor.c: Rewrote Monitor, making lock much faster and
15917         Pulse/Wait work as specified.  Also uses much fewer handles, and only
15918         creates them as needed.
15919
15920         * exception.c: Added SynchronizationLockException
15921
15922         * threads.c: Deleted old Monitor implementation.  The new one is
15923         in a new file.
15924
15925 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15926
15927         * class.c: handled TypedReference type code. Set the correct size for
15928         class data. Setup interface_offsets for interface classes, too.
15929
15930 2003-02-09  Martin Baulig  <martin@ximian.com>
15931
15932         * debug-mono-symfile.h: Reflect latest symbol writer changes.
15933
15934 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15935
15936         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15937         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15938         * object.c: fixed mono_object_get_virtual_method () for interfaces.
15939         * verify.c: check for code that runs after the end of the method.
15940
15941 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15942
15943         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15944         "System.Math::Round2".
15945         * sysmath.h: Added Floor, Round and Round2 definitions.
15946         * sysmath.c: Modified certain functions that were not 100% compliant
15947         with MS.NET (math precision) and added the implementation of Floor,
15948         Round and Round2.
15949
15950 2003-02-07  Martin Baulig  <martin@ximian.com>
15951
15952         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15953
15954 2003-02-07  Martin Baulig  <martin@ximian.com>
15955
15956         * debug-mono-symfile.c: Reflected latest symwriter changes.
15957         (mono_debug_create_mono_symbol_file): Removed.
15958         (mono_debug_open_mono_symbol_file): Take an argument which
15959         specifies whether to create a dynamic symbol file.
15960
15961 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
15962
15963         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15964
15965 2003-02-05  Martin Baulig  <martin@ximian.com>
15966
15967         * reflection.c (mono_image_build_metadata): Make this public,
15968         protect it against being called multiple times, don't create
15969         resources and don't build the compressed metadata here.
15970         (mono_image_create_pefile): Do this here.
15971
15972         * icall.c
15973         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15974
15975 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15976
15977         * socket-io.c: fixed bug #36322.
15978
15979 2003-02-06  Piers Haken <piersh@friskit.com>
15980
15981         * appdomain.[ch]:
15982         * class.h:
15983         * debug-mono-symfile.c:
15984         * icall.c:
15985         * loader.c:
15986         * mono-config.c:
15987         * monosn.c:
15988         * reflection.c:
15989         * socket-io.c: warning cleanups
15990
15991 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
15992
15993         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15994         function. works like remoting invoke, but does a check for the Proxy first.
15995
15996 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
15997
15998         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15999
16000 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16001
16002         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16003         array of pointers.
16004         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16005         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16006
16007         * object.c (mono_store_remote_field_new): used by the new jit
16008         instead of mono_store_remote_field
16009         (mono_load_remote_field_new): used by the new jit
16010         instead of mono_load_remote_field
16011
16012 2003-02-05  Patrik Torstensson
16013
16014         * appdomain.c: changed unload to take the domain id instead
16015         of domain
16016         
16017         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16018
16019
16020 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16021
16022         * appdomain.c: don't look for assemblies in ApplicationBase if
16023         PrivateBinPathProbe is set.
16024
16025 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16026
16027         * object.c: make the first argument in main_args contain the absolute
16028         path to the assembly. Fixes bug #37511.
16029
16030 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16031
16032         * icall.c: get correct UTC offset for countries not using daylight
16033         time saving. Fixes bug #30030.
16034
16035 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16036
16037         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16038         and 1 are the family).
16039
16040 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16041
16042         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16043
16044         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16045
16046 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16047
16048         * reflection.c: added support for SignatureHelper tokens, which is
16049         needed by the Calli opcode.
16050
16051         * reflection.h: track changes to SignatureHelper class.
16052
16053         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16054
16055 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16056
16057         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16058
16059 2003-02-03  Patrik Torstensson
16060         * appdomain.[c|h], domain.c : 
16061          - Added support for getting a domain via domain id
16062          - Support for setting and getting domain from System.AppDomain 
16063            (used in cross appdomain channel)
16064          - Added support for get/set for a MonoAppContext on a thread 
16065            (Context class in System.Runtime.Remoting.Contexts),
16066          - Removed hack in Get/SetData and ExecuteAssembly.
16067         
16068         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16069         the managed world to get control when a proxy is created.
16070
16071         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16072         
16073 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16074
16075         * icall.c
16076         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16077         Populate the codebase field as well.
16078
16079 2003-02-02  Martin Baulig  <martin@ximian.com>
16080
16081         * debug-mono-symfile.c
16082         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16083         (mono_debug_symfile_add_method): Allow interncalls.
16084
16085 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16086
16087         * icall.c: throw parse exception if strtod fails or the string is empty.
16088
16089 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16090
16091         * marshal.c: handle object type separately from defined
16092         class types.
16093
16094 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16095
16096         * marshal.c: handle NATIVE_LPSTR for strings when it's
16097         explicitly specified.
16098
16099 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16100
16101         * reflection.c, reflection.h, icall.c: setup the reflection
16102         handle cache for ModuleBuilders and AssemblyBuilders.
16103
16104 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16105
16106         * reflection.c (reflection_methodbuilder_to_mono_method): set
16107         pinvoke flag
16108
16109 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16110
16111         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16112
16113 2003-01-29  Dick Porter  <dick@ximian.com>
16114
16115         * threads.c: No need for the fake_thread kludge now that Thread
16116         doesn't run a class constructor
16117         
16118 2003-01-29  Dick Porter  <dick@ximian.com>
16119
16120         * threads.c: Use g_direct_hash instead of the rather bogus
16121         g_int_hash
16122
16123 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16124
16125         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16126         (fix pinvoke12.exe)
16127         (mono_marshal_get_struct_to_ptr): generate valid IL code
16128         (mono_marshal_get_ptr_to_struct): generate valid IL code
16129         (*): correctly set sig->pinvoke, we need to memdup the signature
16130         to do that
16131
16132 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16133
16134         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16135         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16136
16137 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16138
16139         * profiler.c: provide more callers information.
16140
16141 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16142
16143         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16144
16145         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16146
16147         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16148
16149 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16150
16151         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16152         exception instead of going into an infinite loop on dates which it 
16153         can't yet handle.
16154
16155         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16156         out-of-range exception if needed.
16157
16158         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16159         an implementation for an interface method and to override an inherited
16160         method at the same time. 
16161         Imagine a scenario when a virtual method is used to override a
16162         virtual abstract method in a parent class, and this same method 
16163         provides an implementation for an method inherited from an interface. 
16164         In this case, the interface resolution code will set im->slot, which 
16165         means that the virtual method override pass will skip this method 
16166         which means a pointer to the abstract method inherited from the parent
16167         will remain in the vtable of this non-abstract class.
16168
16169         * class.c: (mono_class_setup_vtable): continue search for a real 
16170         method if only an abstract method is found.     
16171
16172 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16173
16174         * reflection.c: add size to encoding for ByValStr and ByValArray
16175         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16176
16177 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16178
16179         * class.c (mono_class_setup_vtable): pass the override info as an
16180         argument.
16181
16182         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16183         correctly.
16184         
16185         * reflection.c (ensure_runtime_vtable); add support for method 
16186         overrides.
16187         
16188 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16189
16190         * reflection.c (resolution_scope_from_image): Hack to work to work with
16191         dynamic assemblies.
16192
16193         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16194         added a 'force_ref' argument to force this function to allways return 
16195         a TypeRef. This is needed by mono_image_get_memberref_token ().
16196         
16197 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16198
16199         * reflection.c (mono_image_get_type_info): interfaces really don't have
16200         a parent.
16201
16202         * reflection.c (mono_image_basic_init): fill out missing fields of
16203         image structure.
16204
16205         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16206         dynamic assemblies. This is required so dynamic assemblies show up in
16207         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16208         Type::GetType() etc. This is consistent with MS behaviour.
16209
16210         * image.c image.h reflection.c: add newly created classes to the name 
16211         cache so mono_class_get () will find them.      
16212
16213 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16214
16215         First part of changes to get IKVM.NET running under mono.
16216         
16217         * appdomain.h, appdomain.c: added new function 
16218         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16219         This function will call AppDomain::DoTypeResolve to do the actual work.
16220
16221         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16222         moved existing code dealing with dynamic tokens to a new function 
16223         called mono_reflection_lookup_dynamic_token (). This function will 
16224         raise TypeResolve events when appropriate. Since reflection.c is not 
16225         part of libmetadata, a new hook function called 
16226         mono_lookup_dynamic_token() is added to class.c which will call this.
16227
16228         * assembly.h assembly.c: make the invoke_load_hook function public,
16229         so it can be called for dynamic assemblies.
16230
16231         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16232
16233         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16234         type isn't found.
16235
16236         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16237         MonoGHashTable, since it contains pointers to objects which the GC 
16238         needs to track.
16239
16240         * assembly.c (search_loaded): remove unused variable.
16241         
16242 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16243
16244         * object.c: fixed issue exposed by gcc-generated IL programs
16245         that use RVA data for pointers.
16246
16247 2003-01-25  Martin Baulig  <martin@ximian.com>
16248
16249         * threads.c (start_wrapper): Moved the initialization of
16250         `start_func' above the mono_new_thread_init() call to which we
16251         pass it as argument.
16252
16253 2003-01-24  Martin Baulig  <martin@ximian.com>
16254
16255         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16256         the MonoThread pointer.
16257
16258 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16259
16260         * icall.c: Rename `PowImpl' to Pow.
16261
16262 2003-01-23  Dick Porter  <dick@ximian.com>
16263
16264         * threads.c (start_wrapper): Create a Thread object if needed, so
16265         the Main() thread can do the class initialisation in a subthread
16266         that has been set up to allow managed code execution.
16267
16268         Pass the thread ID instead of the MonoThread pointer to the thread
16269         start and attach callbacks.  This change is required, because the
16270         jit thread start callback must be called _before_ the Thread
16271         object can be created.
16272         
16273         (mono_thread_init): Removed much object creation code that is no
16274         longer needed.  No managed code is called from here now.
16275
16276         * object.c (mono_runtime_exec_managed_code): Create a subthread
16277         for Main, and call back to the runtime to use it.
16278         Set the exit code when Main exits.
16279
16280         * gc.c: Make sure domain finalisation happens in a subthread.
16281         Re-enable threaded GC, fixing bug 31333 (again).
16282
16283         * environment.c: System.Environment internall calls (so far just
16284         ExitCode is here, the others are still in icall.c)
16285
16286         * appdomain.c (mono_runtime_cleanup): All threads running managed
16287         code should have finished before mono_runtime_cleanup() is
16288         reached, so no need to clean up threads.
16289
16290 2003-01-22  Martin Baulig  <martin@ximian.com>
16291
16292         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16293         `gpointer func' arguments.      
16294         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16295         but added `MonoThread *thread' argument.
16296         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16297
16298         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16299         and pass it to the mono_thread_start_cb callback.
16300         (mono_install_thread_callbacks): New public function to install a
16301         set of callbacks which are set by the debugger.
16302         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16303
16304 2003-01-22  Martin Baulig  <martin@ximian.com>
16305
16306         * Makefile.am: Install debug-mono-symfile.h.
16307
16308 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16309
16310         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16311
16312 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16313
16314         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16315         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16316         (mono_array_class_get): correctly set access levels of arrays
16317
16318 2003-01-20      Patrik Torstensson
16319         * image.h (MonoAssemblyName): changed major, minor, build, revision
16320         from signed to unsigned.
16321
16322 2003-01-20  sean kasun <skasun@azstarnet.com>
16323
16324         * reflection.c (load_cattr_value): Now this handles
16325         MONO_TYPE_SZARRAY.  Fixes bug #35629
16326
16327 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16328
16329         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16330         integer value
16331
16332 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16333
16334         * decimal.c: fixed bug #26056.
16335
16336 2003-01-17  Martin Baulig  <martin@ximian.com>
16337
16338         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16339
16340 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16341
16342         * exception.[ch]:
16343         (mono_get_exception_type_initialization): new function.
16344
16345         * object.c: throw a TypeInitializationException when an exception is
16346         thrown invoking the class constructor.
16347
16348 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16349
16350         * reflection.c: fixed attribute reading.
16351
16352 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16353
16354         * icall.c:
16355         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16356         provided, look for the type in the calling assembly and then in
16357         mscorlib; if the assembly name is provided, only try that one.
16358
16359 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16360
16361         * object.c: register the vtable before there is a chance it's
16362         queried again recursively.
16363
16364 2003-01-13  Duncan Mak  <duncan@ximian.com>
16365
16366         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16367         gc-internal.h. 
16368         
16369 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16370
16371         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16372
16373 2003-01-11  Martin Baulig  <martin@ximian.com>
16374
16375         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16376         this to 20 for the release.
16377
16378 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16379
16380         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16381
16382         * loader.c (mono_method_get_marshal_info): bug fix
16383
16384         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16385         structures with explicit layout
16386
16387 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16388
16389         * profiler.c: made the output more readable (and sorted). 
16390         Added caller information for the allocation profiler.
16391
16392 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16393
16394         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16395
16396 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16397
16398         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16399         to get value types.
16400         
16401 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16402
16403         * object.c, profiler.h, profiler.c, profiler-private.h:
16404         Added object allocation profiler.
16405
16406 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16407
16408         * reflection.h, reflection.c: handle global methods.
16409         Compress blob entries.
16410
16411 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16412
16413         * marshal.c: fix compilation.
16414
16415 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16416
16417         * loader.c (mono_method_get_marshal_info): impl.
16418
16419         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16420
16421 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16422
16423         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16424         for reference types.
16425
16426 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16427
16428         * loader.c: fixed off by one error in loaded parameter names.
16429
16430 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16431
16432         * marshal.c (mono_marshal_get_icall_wrapper): like
16433         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16434         instead of a MonoMethod.
16435
16436 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16437
16438         * decimal.c: fixed bug #36537.
16439
16440 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16441
16442         * marshal.c: throw a missing method exception if a
16443         P/Invoke method is not found.
16444
16445 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16446
16447         * icall.c: allow a null this for constructors.
16448
16449 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16450
16451         * icall.c: raise the proper exceptions if the arguments to the
16452         internal Invoke are incorrect.
16453
16454 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16455
16456         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16457
16458 2003-01-03  Martin Baulig  <martin@ximian.com>
16459
16460         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16461
16462 2002-12-31  Martin Baulig  <martin@ximian.com>
16463
16464         * debug-mono-symfile.c: Completely rewrote the type section.
16465         Instead of using individual malloc()ed fields, we use one big
16466         continuous memory area and offsets into this area.
16467         See the comments in the source code for details.
16468
16469 2002-12-30  Martin Baulig  <martin@ximian.com>
16470
16471         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16472
16473 2002-12-30  Martin Baulig  <martin@ximian.com>
16474
16475         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16476         line number table in this data blob instead of using an external
16477         pointer.
16478
16479 2002-12-28  Martin Baulig  <martin@ximian.com>
16480
16481         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16482
16483 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16484
16485         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16486         as a boxed return type.
16487
16488 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16489
16490         * appdomain.c
16491         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16492         g_build_filename to properly get separators on the filename created.
16493
16494         * object.h: Small change, introduce MonoMarshalByRefObject to
16495         track the layout of that structure in the C# universe as we make
16496         changes there.
16497
16498 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16499
16500         * object.c: removed assert to allow static fields on interfaces.
16501         * loader.c: a TypeSpec may be used for any type, not just arrays.
16502
16503 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16504
16505         * class.c, class.h: added mono_class_array_element_size ().
16506         Ignore static methods in interfaces.
16507
16508 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16509
16510         * threads.c: fixed the build under cygwin.
16511
16512 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16513
16514         * reflection.c: handle nullref constants. Allocate keys for
16515         reflection handles with the GC.
16516
16517 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16518
16519         * threads.c, threads.h: added mono_thread_get_abort_signal()
16520         to get a suitable signal for thread abort.
16521
16522 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16523
16524         * metadata.c: fix handling of ExportedType table.
16525
16526 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * icall.c: added WriteWindowsDebugString internal call.
16529
16530 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16531
16532         * reflection.h: added fields to match C# implementation.
16533
16534 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16535
16536         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16537
16538 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16539
16540         * gc.h, gc-internal.h: Rename header for GC internal calls to
16541         gc-internal.h from gc.h as to not clash with Boehm GC having its
16542         header installed as <gc.h> in outside include paths.
16543         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16544         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16545
16546 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16547
16548         * icall.c: assign minor, build and revision in FillName.
16549
16550 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16551
16552         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16553         Added support for running code generated by Reflection.Emit.
16554
16555 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16556
16557         * appdomain.c: check for NULL argument in LoadFrom.
16558
16559 2002-12-10  Dick Porter  <dick@ximian.com>
16560
16561         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16562
16563 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16564
16565         * appdomain.c: fix buglet when building exe file name.  Handle full
16566         assembly name (needed after latest changes to AssemblyName).
16567         * image.c:
16568         (mono_image_close): free some hashtables.
16569
16570 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16571
16572         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16573         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16574         on some systems (redhat 7.3) 
16575
16576 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16577
16578         * threads.c: delete the critical section of a sync block,
16579         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16580
16581 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16582
16583         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16584
16585 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16586
16587         * appdomain.[ch]: handle the assembly preload event to try loading the
16588         assemblies using the paths we have in the current domain.
16589
16590         * assembly.[ch]: created an assembly preload hook that is called to try
16591         loading the assembly by other means that the ones provided here.
16592
16593         * domain.c: initialize the domain search path.
16594
16595         From now on, assemblies (TODO: except corlib and System) are loaded
16596         according to these rules when using mono_assembly_load ():
16597
16598                 1. It tries to load the assembly from the ApplicationBase
16599                 of the current domain appending .dll and .exe (TODO: have to
16600                 try loading from name/name.dll and name/name.exe).
16601
16602                 2. It tries the search path specified in PrivateBinPath for the
16603                 current domain (if any).
16604
16605                 3. Previous behavior.
16606
16607 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16608
16609         * icall.c: implemented GetInterfaceMap() related icall.
16610         * domain.c, loader.h: load MethodInfo in mono_defaults.
16611
16612 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16613
16614         * gc.c: disable the finalizer thread for now, untill all the issues
16615         with it are resolved.
16616
16617 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16618
16619         * string-icalls.c: handle embedded nulls in string ctor when the
16620         length is specified.
16621
16622 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16623
16624         * class.c: look for explicit interface implementation in parent
16625         classes, too.
16626
16627 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16628
16629         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16630
16631 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16632
16633         * gc.c: protect handles with a critical section.
16634
16635 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16636
16637         * icall.c:
16638         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16639         parameters. If no assembly specified, try getting the type from all
16640         the assemblies in the current domain, else, load the assembly and get
16641         the type from it.
16642
16643 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16644
16645         * marshal.c: applied patch from Aleksey Demakov that fixes
16646         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16647
16648 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16649
16650         * icall.c: fixed get_location.
16651
16652 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16653
16654         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16655         declarations to make it work with older gcc. 
16656
16657         * loader.c (mono_get_method): set signature->pinvoke for native calls
16658
16659 2002-11-20  Dick Porter  <dick@ximian.com>
16660
16661         * threads.c (mono_thread_init): Set the main thread's handle
16662
16663 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16664
16665         * gc.c: allow compilation without GC support. Changed to match the
16666         mono coding style.
16667
16668 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16669
16670         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16671
16672 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16673
16674         * reflection.c: set a public key token on the core assemblies.
16675
16676 2002-11-18  Dick Porter  <dick@ximian.com>
16677
16678         * threads.c: Split out some thread initialisation so that other
16679         files can set the start callback function.
16680
16681         * gc.c: Run finalisers in a separate thread, to avoid stack
16682         overflow.  Fixes bug 31333.
16683
16684         * appdomain.c: Set up GC finalisation thread.
16685
16686         * reflection.c: 
16687         * object.c: 
16688         * domain.c: Use gc.h macros for GC_malloc
16689         
16690 2002-11-15  Dick Porter  <dick@ximian.com>
16691
16692         * threadpool.c: 
16693         * threads.c:
16694         * appdomain.c: Removed mono_runtime_init_with_attach(),
16695         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16696         merging the extra parameter with the existing function.  Removed
16697         unneeded code in mono_thread_attach().
16698
16699 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16700
16701         * image.c (mono_image_loaded_by_guid): a method to get loaded
16702         images by guid. 
16703         (load_metadata_ptrs): we store the guid as string.
16704
16705 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16706
16707         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16708
16709         * metadata.c (mono_guid_to_string): imported method form Zoltan
16710         Varga (slightly modified)
16711
16712         * assembly.c (mono_assembly_open): load precompiled code
16713
16714         * loader.h (MonoMethod): we store the method token for use in the
16715         aot compiler. 
16716
16717 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16718
16719         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16720         the hook function called when an assembly is loaded.
16721         
16722         * domain.c: Modified file.
16723         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16724
16725         Fixes bug #33196.
16726
16727 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16728
16729         * reflection.c: Map PEFileKind to the value expected by the WinNT
16730         image loader. 
16731
16732 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16733
16734         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16735         Read until the buffer is filled completely.
16736
16737 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16738
16739         * icall.c: implemented MonoType.InternalGetEvent ().
16740
16741 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16742
16743         * appdomain.c: implemented InitAppDomainSetup. Delayed
16744         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16745         the entry_assembly.
16746
16747         * assembly.c: base_dir is now an absolute path ending with
16748         G_DIR_SEPARATOR.
16749
16750         * icall.c: modified get_location according to the above changes.
16751
16752         * object.c: init AppDomain.SetupInformation for the default domain after
16753         we have the entry assembly.
16754
16755         * domain.c: when unloading a domain, setup = NULL.
16756
16757 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16758
16759         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16760
16761 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16762
16763         * object.h, object.c: introduced mono_object_get_virtual_method ()
16764         to lookup the method invoked on an object when a callvirt is done on
16765         a method.
16766         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16767
16768 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16769
16770         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16771         current domain when loaded an assembly and failed to load it.
16772
16773         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16774
16775 2002-10-31  Dick Porter  <dick@ximian.com>
16776
16777         * icall.c: 
16778         * file-io.h: 
16779         * file-io.c: Return the error status in a parameter, as the
16780         GetLastError() value has long since been blown away if we try and
16781         look it up in a subsequent internal call invocation.  Delete the
16782         GetLastError() internal call, because it's useless.
16783
16784 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16785
16786         * class.[ch]: added cast_class to fix bug 29517
16787
16788 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16789
16790         * marshal.c: create valid IL code in the filter clause:
16791         the new JIT is less forgiving:-)
16792
16793 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16794
16795         * icall.c: removed get_property internal call.
16796
16797 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16798
16799         * appdomain.h domain.c: Added an ID to appdomains.
16800         
16801         * threads.c threads.h icall.c: Implement icall
16802         Thread:GetDomainID(), and remove unused icall 
16803         CurrentThreadDomain_internal.
16804
16805 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16806
16807         * icall.c: Don't recurse through the base types in GetConstructor.
16808         Fixes bug #32063. 
16809
16810 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16811
16812         * mempool.h, mempool.c: added mono_mempool_empty() and
16813         mono_mempool_stats().
16814
16815 2002-10-23  Dick Porter  <dick@ximian.com>
16816
16817         * file-io.c: 
16818         * file-io.h: 
16819         * icall.c: Added MonoIO.GetFileType internal call
16820
16821 2002-10-17  Dick Porter  <dick@ximian.com>
16822
16823         * appdomain.c (mono_runtime_cleanup): Don't signal the async
16824         delegate semaphore before waiting for all threads to finish,
16825         because new threads can also call async delegates.  Fixes bug
16826         32004.
16827
16828         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16829         of 3 seconds, in case another async job is queued.  (This part is
16830         needed because the bug fix reintroduced the 3s exit lag.)  This
16831         makes the mono_runtime_shutdown flag superfluous.
16832
16833 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16834
16835         * reflection.c: include ehader size in method section headers.
16836         Really check for suplicated modules entries.
16837
16838 2002-10-17  Martin Baulig  <martin@gnome.org>
16839
16840         * debug-mono-symfile.c: Added back support for locals.
16841
16842 2002-10-14  Martin Baulig  <martin@gnome.org>
16843
16844         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16845         MONO_TYPE_VOID.
16846
16847 2002-10-14  Martin Baulig  <martin@gnome.org>
16848
16849         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16850         mono_class_get() instead of looking in the class cache. 
16851
16852 2002-10-13  Martin Baulig  <martin@gnome.org>
16853
16854         * debug-mono-symfile.c: Set version number to 28, include the
16855         signature in method names.
16856
16857 2002-10-13  Martin Baulig  <martin@gnome.org>
16858
16859         * debug-mono-symfile.h: Set version number to 27.
16860
16861 2002-10-11  Martin Baulig  <martin@gnome.org>
16862
16863         * gc.c: Don't register/unregister NULL pointers as disappearing links.
16864
16865 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16866
16867         * metadata.c, metadata.h: added helper function to allocate signatures.
16868
16869 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16870
16871         * icall.c: added internal call to get the location of machine.config.
16872
16873 2002-10-08  Martin Baulig  <martin@gnome.org>
16874
16875         * debug-mono-symfile.c: Ignore classes with a pending init for the
16876         moment.
16877
16878 2002-10-03  Dick Porter  <dick@ximian.com>
16879
16880         * threads.c: Freebsd pthread_t is a pointer
16881
16882 2002-10-03  Dick Porter  <dick@ximian.com>
16883
16884         * socket-io.c: Implemented GetHostName_internal
16885
16886 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16887
16888         * mono-config.c:
16889         (mono_config_parse_file): don't leak the text.
16890
16891 2002-10-02  Martin Baulig  <martin@gnome.org>
16892
16893         * debug-mono-symfile.c: Added support for methods.
16894
16895 2002-10-01  Martin Baulig  <martin@gnome.org>
16896
16897         * debug-mono-symfile.c: Don't emit methods and line numbers for
16898         the dynamic symbol file, just write the type table.  We can easily
16899         have an external helper program which creates a symbol file for an
16900         IL file.        
16901
16902 2002-10-01  Dick Porter  <dick@ximian.com>
16903
16904         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16905         Only add the handle to the cleanup array when we're about to
16906         launch the thread.  Bug 31425 deadlocked when the test was run on
16907         mono under w32.
16908
16909 2002-10-01  Martin Baulig  <martin@gnome.org>
16910
16911         * debug-mono-symfile.c: Added support for properties.
16912
16913 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16914
16915         * reflection.c: unaligned store fix from Mark Crichton
16916         <crichton@gimp.org>.
16917
16918 2002-09-27  Martin Baulig  <martin@gnome.org>
16919
16920         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16921         New interncall.
16922
16923 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16924
16925         * assembly.h, assembly.c: use a sane API to hook into the assembly
16926         loading process instead of a useless special-purpouse hack
16927         (ngen needs a hook, too, for example).
16928
16929 2002-09-27  Dick Porter  <dick@ximian.com>
16930
16931         * threads.c (mono_thread_init): Call GetCurrentProcess() so
16932         io-layer can set up some process handle info.  Not needed on w32,
16933         but doesn't hurt either.
16934
16935         * process.c: Pass the program name in the second parameter to
16936         CreateProcess, so the path is searched.  Include the working
16937         directory. Implemented process name, process enumeration, and some
16938         process detail internal calls.
16939         
16940         * icall.c: Added internal calls for process lookup, and some
16941         process details
16942
16943 2002-09-26  Martin Baulig  <martin@gnome.org>
16944
16945         * assembly.c (mono_install_open_assembly_hook): New global
16946         function to install a function to be invoked each time a new
16947         assembly is loaded.
16948         (mono_assembly_open): Run this callback function if set.
16949
16950         * debug-mono-symfile.c: Put back line numbers for the dynamic
16951         symbol file and also record the .il file as source file.  This
16952         allows us to install the temporary symbol file as `file.dbg' just
16953         like a compiler-generated one.
16954
16955 2002-09-26  Nick Zigarovich <nick@chemlab.org>
16956
16957         * Corrected typo in gc.c (BOHEM vs BOEHM).
16958
16959 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16960
16961         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16962         GetProperties. Also avoid calling g_slist_length in GetProperties and
16963         GetMethods.
16964
16965 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16966
16967         * reflection.c: avoid unaligned stores (bug spotted by
16968         Mark Crichton  <crichton@gimp.org>).
16969
16970 2002-09-25  Martin Baulig  <martin@gnome.org>
16971
16972         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16973         instead of guint64 for addresses and added prologue/epilogue info.
16974
16975 2002-09-25  Martin Baulig  <martin@gnome.org>
16976
16977         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16978         store line number info.  For the dynamic symbol file, we only need
16979         to provide the JIT generated dynamic line number info for the dynamic
16980         symbol file.
16981
16982 2002-09-25  Martin Baulig  <martin@gnome.org>
16983
16984         * debug-mono-symfile.h: Incremented version number.
16985
16986 2002-09-24  Martin Baulig  <martin@gnome.org>
16987
16988         * class.c (mono_debugger_class_init_func): New global function
16989         pointer variable.
16990         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16991         call it.
16992
16993         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16994         function.  This is called via the mono_debugger_class_init_func
16995         hook to add all types to the dynamic type table.
16996         (ves_icall_MonoDebugger_GetType): New interncall to get a class
16997         from its metadata token.
16998
16999         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17000         New interncall for the debugger.
17001
17002 2002-09-24  Nick Drochak <ndrochak@gol.com>
17003
17004         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17005         before using it in case it is null.
17006         
17007 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17008
17009         * metadata.c: allow custom modifiers in local var signatures
17010         (bug spotted by Zoltan Varga).
17011
17012 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17013
17014         * class.c: deal with the <Module> class that may have a NULL vtable.
17015         Eliminate warnings.
17016
17017 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17018
17019         * image.c, image.h: more strong name helpers.
17020         * monosn.c: more work: convert pem keys to cryptoapi format.
17021
17022 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17023
17024         * string-icalls.c: speedup IndexOf.
17025
17026 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17027
17028         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17029
17030 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17031
17032         * icall.c: cleanup: use mono_object_domain ().
17033
17034 2002-09-23  Martin Baulig  <martin@gnome.org>
17035
17036         * debug-mono-symfile.c: Improved type support.
17037
17038 2002-09-22  Martin Baulig  <martin@gnome.org>
17039
17040         * debug-mono-symfile.c: Added support for reference types and strings.
17041
17042 2002-09-22  Martin Baulig  <martin@gnome.org>
17043
17044         * debug-mono-symfile.c: Started to work on the type table.
17045
17046 2002-09-21  Martin Baulig  <martin@gnome.org>
17047
17048         * debug-mono-symfile.c: Largely reworked the symbol table format.
17049         The symbol table is now incrementally updated each time a new
17050         method is added.  We're now also using our own magic and version
17051         so that you don't need to recompile all your classes if the
17052         dynamic table changes.
17053         (mono_debug_update_mono_symbol_file): Removed.
17054         (mono_debug_symfile_add_method): New function to add a method.
17055
17056 2002-09-21  Martin Baulig  <martin@gnome.org>
17057
17058         * icall.c
17059         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17060         New interncall.
17061
17062         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17063         New interncall to get a method from its metadata token.
17064
17065 2002-09-21  Martin Baulig  <martin@gnome.org>
17066
17067         * debug-mono-symfile.c: Create type table.
17068
17069 2002-09-20  Martin Baulig  <martin@gnome.org>
17070
17071         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17072
17073 2002-09-20  Martin Baulig  <martin@gnome.org>
17074
17075         * debug-mono-symfile.c: Provide information about params and locals.
17076
17077 2002-09-20  Martin Baulig  <martin@gnome.org>
17078
17079         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17080         New interncall.
17081
17082         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17083         interncall to get a method from its metadata token.
17084
17085 2002-09-20  Martin Baulig  <martin@gnome.org>
17086
17087         * debug-mono-symfile.c: Added a few checks for method->header
17088         being non-NULL.  This should never happen, but for the moment
17089         let's use a g_warning() rather than a g_assert().
17090
17091 2002-09-19  Mark Crichton  <crichton@gimp.org>
17092
17093         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17094         even if support for it isn't present.  Added an #ifdef to fix this.
17095
17096         * socket-io.c: Added checks back for Solaris support.
17097
17098 2002-09-19  Martin Baulig  <martin@gnome.org>
17099
17100         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17101         changes in the symbol file format.
17102
17103 2002-09-18  Martin Baulig  <martin@gnome.org>
17104
17105         * debug-mono-symfile.c: Set version number to 21.
17106
17107 2002-09-18  Dick Porter  <dick@ximian.com>
17108
17109         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17110         on netbsd.  Fixes bug 30051.
17111
17112 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17113
17114         * reflection.c:
17115         (set_version_from_string): little fix.
17116
17117 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17118
17119         * monosn.c, Makefile.am: added strong name utility.
17120         * reflection.h, reflection.c: implemented delayed signing,
17121         locale, version and hash id assembly attributes.
17122
17123 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17124
17125         * loader.c, metadata.c: load param attributes in signatures.
17126
17127 2002-09-16  Martin Baulig  <martin@gnome.org>
17128
17129         * debug-mono-symfile.c: Added string table with all method names.
17130
17131 2002-09-14  Martin Baulig  <martin@gnome.org>
17132
17133         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17134         fast method lookup.
17135
17136 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17137
17138         * reflection.c: record the public key token of referenced assemblies.
17139
17140 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17141
17142         * image.c, image.h: added functions to get the strong name and the
17143         public key of an assembly.
17144         * pedump.c: use them.
17145
17146 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17147
17148         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17149
17150 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17151
17152         * marshal.c (mono_marshal_get_managed_wrapper): Added
17153         MONO_TYPE_BOOLEAN 
17154
17155 2002-09-11  Martin Baulig  <martin@gnome.org>
17156
17157         * gc.c: Call GC_unregister_disappearing_link() on all links when
17158         finalizing them, this is necessary to aviod a crash in boehm's
17159         finalize handler.
17160
17161 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17162
17163         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17164         nick@chemlab.org.
17165
17166 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17167
17168         * icall.c: implemented MonoType::Module.
17169         * reflection.c, reflection.h: mono_module_get_object () from
17170         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17171
17172 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17173
17174         * icall.c: ignore overridden methods in GetMethods ().
17175         Fix for FieldInfo::SetValue().
17176         * object.c: handle float/double in runtime invoke.
17177
17178 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17179
17180         * object.c: allow a constructor to be called again on an object.
17181
17182 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17183
17184         * class.h, class.c: move field layout code to it's own function and
17185         export it. Get an interface id earlier. Move fields in MonoClass
17186         so they are more cache friendly and align the bitfields.
17187         * loader.c: temporary handle get_param_names() for a runtime method.
17188         * reflection.c, reflection.h: more code to handle runtime creation of
17189         types.
17190
17191 2002-09-09  Martin Baulig  <martin@gnome.org>
17192
17193         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17194         signature with the pinvoke field being set for the actual call.
17195
17196 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17197
17198         * icall.c: removed some unused icalls. Start of map of glib charsets
17199         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17200
17201 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17202
17203         * debug-helpers.c: break infinite loop (found and fixed by
17204         Holger Arnold <harnold@gmx.de>).
17205
17206 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17207
17208         * icall.c: target may be null in create_delegate.
17209
17210 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17211
17212         * marshal.c: handle a boolean return type.
17213
17214 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17215
17216         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17217
17218 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17219
17220         * gc.c: fix weakreferences.
17221
17222 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17223
17224         * icall.c: added icall to get default codepage.
17225
17226 2002-09-03  Dick Porter  <dick@ximian.com>
17227
17228         * threads.h: 
17229         * threads.c: Use MonoThread instead of MonoObject where
17230         apropriate.
17231
17232         Store running thread objects in a hash table, so that we have all
17233         the info to hand when waiting for them to finish
17234         (means we don't need OpenThread() any more, so mingw builds should
17235         be fully functional again.)
17236
17237         * verify.c:
17238         * object.h: Added thread ID to MonoThread
17239
17240 2002-09-03  Martin Baulig  <martin@gnome.org>
17241
17242         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17243
17244 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17245
17246         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17247
17248 2002-09-03  Martin Baulig  <martin@gnome.org>
17249
17250         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17251         argument to store the end address of the disassembled instruction.
17252
17253         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17254         here from debug-symfile.h.
17255         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17256         JIT into this struct.
17257         (MonoSymbolFile): Added `char *image_file' field.
17258         (MonoDebugGetMethodFunc): Removed.
17259         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17260         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17261         (mono_debug_find_method): New method.
17262
17263         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17264         create a full symbol file.
17265         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17266         and static symbol files.
17267         (mono_debug_find_method): The symbol file keeps an internal method hash,
17268         call this to get a MonoDebugMethodInfo from a MonoMethod.
17269
17270         * debug-symfile.[ch]: Removed.
17271
17272 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17273
17274         * image.c (do_mono_image_open): Remove linker version check.
17275
17276 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17277
17278         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17279         wrappers for instance methods.
17280         
17281 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17282
17283         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17284
17285 2002-08-28  Dick Porter  <dick@ximian.com>
17286
17287         * Makefile.am: Export HOST_CC for w32 builds
17288
17289 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17290
17291         * file-io.c process.c: MonoString are null terminated, no
17292         need for mono_string_to_utf16() anymore.
17293
17294 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17295
17296         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17297
17298 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17299
17300         * icall.c, reflection.h: speedup System.MonoType.
17301
17302 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17303
17304         * reflection.c: allow null as the value of a string argument in
17305         custom attributes constructors.
17306
17307 2002-08-27  Martin Baulig  <martin@gnome.org>
17308
17309         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17310         `trampoline_address' field.
17311
17312 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17313
17314         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17315         check (fixes bug #29486) 
17316
17317 2002-08-27  Martin Baulig  <martin@gnome.org>
17318
17319         * debug-mono-symfile.c: Changed the file format in a way that allows us
17320         open it read-only and to use a specially malloced area for all the
17321         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17322         debugging IL code and there is no MCS generated symbol file for it.
17323
17324 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17325
17326         * object.c: added a define for a good string and array
17327         creation speedup (not enabled by default because we need to deal with
17328         the synch stuff).
17329
17330 2002-08-26  Martin Baulig  <martin@gnome.org>
17331
17332         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17333         function to create a dynamic symbol file.  This is used by the
17334         debugger to create a symbol file for IL code on-the-fly.
17335
17336 2002-08-26  Martin Baulig  <martin@gnome.org>
17337
17338         * loader.c (mono_lookup_pinvoke_call): Include the error message
17339         from g_module_error() in the error message.
17340
17341 2002-08-24  Martin Baulig  <martin@gnome.org>
17342
17343         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17344         function to update the symbol file.  The symbol file is mmap()ed
17345         writable, but private.  This allows us to install the symbol file
17346         together with the assembly.
17347
17348 2002-08-24  Martin Baulig  <martin@gnome.org>
17349
17350         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17351         but they can read the new symbol file format which mcs is now creating.
17352
17353         * debug-symfile.c (mono_debug_find_source_location): Moved to
17354         debug-mono-symfile.c; this is now operating on the new symbol file.
17355
17356 2002-08-23  Martin Baulig  <martin@gnome.org>
17357
17358         * debug-helpers.c (mono_method_desc_from_method): New function to get
17359         a MonoMethodDesc from a MonoMethod.
17360
17361 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17362
17363         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17364         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17365
17366 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17367
17368         * string-icalls.[ch]: make helper methods static.
17369
17370 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17371
17372         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17373         types to it and to SetValueInternal.
17374
17375         * object.c: Moved handle_enum label to its proper place. This was the
17376         f... bug! ;-)
17377
17378         This time i compiled mcs and gtk-sharp and they both work.
17379
17380 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17381
17382         * icall.c: reverted partially my previous patch until 
17383         object.c:set_value handles enums correcly.
17384
17385 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17386
17387         * icall.c:
17388         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17389         (ves_icall_System_Environment_get_MachineName): removed warning when
17390         compiling under cygwin.
17391
17392 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17393
17394         * object.c: fixed field_get_value() for reference types.
17395
17396 2002-08-22  Dick Porter  <dick@ximian.com>
17397
17398         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17399         Don't free a buffer while it's still needed.  Patch from Jonathan
17400         Liger <Jonathan.liger@wanadoo.fr>
17401
17402 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17403
17404         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17405         internal call.
17406
17407 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17408
17409         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17410         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17411
17412         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17413         we call unmanaged code which throws exceptions.
17414
17415 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17416
17417         * appdomain.h: added per-domain entry_assembly.
17418         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17419         arguments.
17420         * icall.c: Assembly::GetEntryAssembly icall.
17421         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17422         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17423
17424 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17425
17426         * appdomain.h, gc.c: added mono_domain_finalize ().
17427
17428 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17429
17430         * object.c:
17431         (mono_print_unhandled_exception): changed g_warning by g_printerr
17432         because g_log has a 1024 characters limit (yeah, i got a big stack
17433         trace). Don't print exception name, that should be in ToString 
17434         returned string.
17435
17436 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17437
17438         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17439         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17440
17441 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17442
17443         * object.c:
17444         (mono_print_unhandled_exception): after previous commit, i realized
17445         that MS calls ToString on the exception. I changed this function to
17446         do that. This way we get stack_trace for free.
17447
17448 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17449
17450         * object.c:
17451         (mono_print_unhandled_exception): invoke Message property instead of
17452         getting 'message' field from Exception. Don't allocate memory for
17453         'trace' and 'message' if not needed.
17454
17455 2002-08-18  Dick Porter  <dick@ximian.com>
17456
17457         * unicode.c: Fix asserts to match Encoder.cs checks
17458
17459 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17460
17461         * marshal.c: fix unaligned store issue and a few wrong
17462         opcode argument types.
17463
17464 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17465
17466         * icall.c: added GetUninitializedObjectInternal internal call.
17467
17468 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17469
17470         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17471         to the right domain.
17472
17473 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17474
17475         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17476
17477         * class.c (class_compute_field_layout): set blittable to false for Strings
17478
17479         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17480
17481 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17482
17483         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17484         first chunk of code to create types at runtime. Code to
17485         handle ReflectedType/DeclaringType. Make reflection handles
17486         domain specific.
17487
17488 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17489
17490         * class.c: set correct name in arrays.
17491
17492 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17493
17494         * appdomain.c (mono_domain_transfer_object): make it work with
17495         valuetypes. bug fixes.
17496
17497 2002-08-12  Dick Porter  <dick@ximian.com>
17498
17499         * object.h: Rename some parameters to avoid c++ keywords (Patch
17500         from Joseph Wenninger <kde@jowenn.at>)
17501
17502 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17503
17504         * icall.c: added icall to implement Assembly.GetFile*.
17505
17506 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17507
17508         * reflection.h, reflection.c: code to embed managed resources.
17509
17510 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17511
17512         * class.c: move all the type size stuff into
17513         class_compute_field_layout().
17514
17515 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17516
17517         * class.c: ensure enums have always the correct instance size.
17518         * unicode.c: remove wrong assert.
17519
17520 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17521
17522         * assembly.c: fix mem corruption issue.
17523         * image.h, image.c: added mono_image_get_resource () to access
17524         managed resources.
17525         * icall.c: implemented Assembly.EntryPoint property and some
17526         Managed Resources related internalcalls.
17527
17528
17529 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17530
17531         * image.c, image.h: impemented mono_image_get_entry_point ().
17532         * appdomain.c: use mono_image_get_entry_point.
17533
17534 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17535
17536         * reflection.c: support the object type argument when loading
17537         custom attributes.
17538
17539 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17540
17541         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17542         String as return type.
17543
17544 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17545
17546         * reflection.c: fix encoding of named args for custom attrs to match
17547         the ms implementation. Read them back when instantiating custom
17548         attributes.
17549
17550 2002-08-02  Radek Doulik  <rodo@ximian.com>
17551
17552         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17553         by Dietmar as quick fix
17554         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17555         16 as stack size, used on more places as quick fix before Dietmar
17556         will fix it properly
17557
17558 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17559
17560         * object.h, object.c: added accessors for fields and properties.
17561
17562 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17563
17564         * class.c, class.h: made mono_class_get_field_from_name ()
17565         loop on parent types.
17566         Added mono_class_get_property_from_name ().
17567
17568 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17569
17570         * class.c, class.h: move the code to setup the type vtable in its own
17571         function so that it can be reused also for types created at runtime.
17572         Eliminate the "class" identifier from the header file.
17573         * reflection.c: setup the vtable for enums so that we can create
17574         objects for use in SetConstant ().
17575
17576 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17577
17578         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17579         instead of the delegate itself as this pointer (bug #28383)
17580
17581 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17582
17583         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17584         conversions.
17585
17586 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17587
17588         * loader.c: don't set the pinvoke bit on icalls.
17589
17590 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17591
17592         * debug-helpers.c (mono_method_full_name): only print a number to
17593         indicate wrapper type (so that the output is more readable in traces).
17594
17595 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17596
17597         * class.c (mono_class_init): include method override patch from Paolo
17598
17599 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17600
17601         * icall.c: fixed GetTypeCode().
17602
17603 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17604
17605         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17606         use real delegate invoke function to make it work with multicast
17607         delegates (fix bug# 28291).
17608
17609 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17610
17611         * object.c: load constant strings.
17612
17613 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17614
17615         * reflection.c: no magic numbers.
17616         * tabledefs.h: security action enum.
17617
17618 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17619
17620         * assembly.c: fix possible memory corruption.
17621
17622 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17623
17624         * reflection.h, reflection.c: added support for linking resources.
17625         * verify.c: check we have an updated corlib.
17626
17627 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17628
17629         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17630         string arrays.
17631         (mono_marshal_string_array): null terminate unmanaged string arrays.
17632         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17633
17634 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17635
17636         * icall.c: Type.GetType () can now return also types from the
17637         calling assembly.
17638
17639 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17640
17641         * loader.h, loader.c: stack walking support.
17642         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17643         GetCallingAssembly.
17644
17645 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17646
17647         * marshal.c: added optimisations for blittable types 
17648
17649         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17650         (mono_class_setup_mono_type): set blittable attribute for single
17651         and double.
17652
17653         * marshal.c (mono_string_utf8_to_builder): impl.
17654         (mono_string_builder_to_utf8): impl.
17655         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17656
17657 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17658
17659         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17660         (mono_marshal_get_managed_wrapper): impl. byref types
17661
17662 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17663
17664         * icall.c:
17665         (search_method): don't display debug message. 
17666
17667 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17668
17669         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17670
17671 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17672
17673         * appdomain.c: set the missing filename when throwing exception.
17674
17675 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17676
17677         * metadata.c (mono_type_size): code cleanup
17678         (mono_type_stack_size): removed some test code
17679
17680 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17681
17682         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17683         mono_get_exception_file_not_found now.
17684
17685         * exception.c (mono_exception_from_name_two_strings): New version
17686         that will call a constructor with two string arguments. 
17687         (mono_get_exception_file_not_found): New helper routine, used to
17688         report file-not-found errors.
17689
17690 2002-07-20  Dick Porter  <dick@ximian.com>
17691
17692         * process.h:
17693         * process.c: Pass file handles to CreateProcess
17694         
17695         * icall.c:
17696         * file-io.h:
17697         * file-io.c: Implemented CreatePipe
17698
17699 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17700
17701         * metadata.c (mono_get_param_info): set alignment for value types
17702
17703 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17704
17705         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17706         Constify mono_domain_assembly_open().
17707         * loader.c: handle null namespace in icalls.
17708
17709 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17710
17711         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17712         (emit_str_to_ptr_conv): marshal object as structs
17713
17714         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17715
17716         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17717
17718 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17719
17720         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17721         (mono_marshal_get_native_wrapper): we an now return value types
17722
17723 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17724
17725         * verify.c: more checks implemented.
17726
17727 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17728
17729         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17730         (fix bug #27695)
17731         (mono_marshal_get_native_wrapper): allow byref arguments
17732         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17733         impl. PtrToStringXXX methods
17734         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17735         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17736         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17737         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17738         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17739
17740 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17741
17742         * reflection.c: fix buglet in parsing an assembly name.
17743
17744 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17745
17746         * marshal.c (emit_ptr_to_str_conv): first impl.
17747
17748 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17749
17750         * object.c, class.h: cache the vtable in the class as suggested by
17751         vargaz@freemail.hu (Zoltan Varga).
17752
17753 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17754
17755         * class.h, loader.c: added mono_field_from_token().
17756         * verify.c: first cut of type checking code.
17757
17758 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17759
17760         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17761
17762 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17763
17764         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17765         (fix bug #27782)
17766         (mono_marshal_get_remoting_invoke): impl.
17767         (mono_delegate_begin_invoke): impl.
17768         (mono_mb_emit_save_args): impl.
17769         (mono_delegate_end_invoke): impl.
17770         (mono_marshal_get_delegate_begin_invoke):
17771         (mono_marshal_get_delegate_end_invoke):
17772         (mono_marshal_get_delegate_invoke): generate a special name for
17773         those methods (including the signature) and associate them whith
17774         the delegate class. 
17775
17776 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17777
17778         * reflection.[ch]: 
17779         (mono_reflection_type_from_name): now it has a MonoImage parameter
17780         which is used as the default image to search the type in. If the image
17781         is NULL or getting the type from it fails, it defaults to corlib.
17782
17783         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17784         new parameter.
17785
17786 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17787
17788         * reflection.c: update the parameter table index.
17789
17790 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17791
17792         * domain.c: don't include the mark byte in the string hash.
17793
17794 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17795
17796         * icall.cs: icall for Type.GetTypeCode ().
17797         * verify: a couple of fixes and disabled local initialization checks.
17798
17799 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17800
17801         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17802
17803         * debug-helpers.c (mono_method_full_name): print the type of the
17804         runtime wrapper
17805
17806         * metadata.c (mono_signature_hash): a hash function for signatures
17807         (mono_signature_hash): better hash algorithm
17808
17809         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17810
17811         * debug-helpers.c (mono_method_full_name): this can now generate
17812         method names with signatures
17813
17814         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17815         method dont have this pointers.
17816
17817 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17818
17819         * reflection.c: fixup typebuilder tokens.
17820         * image.c: fix buglet.
17821         * marshal.h: remove whitespace.
17822         * metadata.h, metadata.c: reinstate code that was removed.
17823         * verify.c: handle catch directives and fix another couple of bugs.
17824
17825 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
17826
17827         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17828         (mono_marshal_get_native_wrapper): make it comp. with the old code
17829         (mono_marshal_get_native_wrapper): support boolean
17830         (mono_marshal_get_managed_wrapper): support more types
17831
17832 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
17833
17834         * class.c (class_compute_field_layout): compute class->blittable attribute.
17835
17836 2002-07-09  Dick Porter  <dick@ximian.com>
17837
17838         * threads.c: Make the thread cleaning up cope with threads that
17839         call ExitThread()
17840
17841 2002-07-08  Radek Doulik  <rodo@ximian.com>
17842
17843         * reflection.c (method_encode_code): use non-translated values to
17844         compute finally_start, this fixes exception handling on ppc, yay!
17845
17846         * decimal.h (struct signscale): fix endianess
17847
17848 2002-07-07  Radek Doulik  <rodo@ximian.com>
17849
17850         * reflection.c: swap box_val and not val
17851
17852 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17853
17854         * reflection.c, reflection.h: handle full assembly info in type name.
17855         Handle Type arguments when loading custom attributes.
17856         * icall.c: updated to use new mono_reflection_type_from_name () method.
17857
17858 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17859
17860         * loader.c:
17861         (method_from_memberref): also print assembly name when method not found.
17862
17863 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17864
17865         * icall.c:
17866         (ves_icall_TypeGetProperties): fixed bug #27473. 
17867
17868 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17869
17870         * reflection.c: display image name and token when cannot find the
17871         .ctor for an attribute.
17872
17873 2002-07-05  Martin Baulig  <martin@gnome.org>
17874
17875         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17876
17877 2002-07-04  Dick Porter  <dick@ximian.com>
17878
17879         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17880         compile on mingw.  This will cause mingw builds to not wait for
17881         subthreads to terminate after the main thread does.  I've lodged a
17882         bug with the mingw developers for them to wrap OpenThread().
17883
17884 2002-07-03  Dick Porter  <dick@ximian.com>
17885
17886         * threads.c: Store thread IDs instead of handles, because
17887         GetCurrentThread() returns a pseudohandle and therefore stores
17888         useless values.  mono_thread_cleanup() continues checking the
17889         array of threads until it is empty, to cope with subthreads
17890         spawning new threads after the main thread has finished.
17891
17892         * profiler.h:
17893         * profiler.c:
17894         * profiler-private.h: Pass the thread ID to thread profiler
17895         functions, instead of a handle
17896
17897 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17898
17899         * verify.c: fixes to make it more usable.
17900         * pedump.c: added --verify code to verify IL code in an assembly.
17901
17902 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17903
17904         * reflection.c: turn errors into warnings to allow compiling corlib.
17905
17906 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17907
17908         * reflection.c: add special cases to compile corlib.
17909
17910 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17911
17912         * reflection.c: handle properties with only a set method.
17913
17914 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17915
17916         * opcodes.h: add enum with opcodes in opval order.
17917
17918 2002-07-01  Dick Porter  <dick@ximian.com>
17919         
17920         * object.h:
17921         * object.c (mono_runtime_run_main): Removed unneeded argument
17922
17923 2002-06-28  Martin Baulig  <martin@gnome.org>
17924
17925         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17926
17927 2002-06-27  Dick Porter  <dick@ximian.com>
17928
17929         * threads.c: Store the handle in both the parent thread and in the
17930         subthread, to minimise the time between starting a new thread and
17931         storing its ID.
17932
17933 2002-06-26  Dick Porter  <dick@ximian.com>
17934
17935         * appdomain.c (mono_runtime_cleanup): Close the socket library
17936         after all the threads have finished, not before
17937
17938 2002-06-26  Martin Baulig  <martin@gnome.org>
17939
17940         * debug-symfile.c (mono_debug_find_source_location): Added
17941         `guint32 *line_number' argument.  If it's not NULL, store the line number
17942         there and return the file name without the line number.
17943
17944 2002-06-25  Dick Porter  <dick@ximian.com>
17945
17946         * icall.c:
17947         * process.h:
17948         * process.c: Process forking and other support functions
17949
17950 2002-06-25  Dick Porter  <dick@ximian.com>
17951
17952         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17953         things dont happen when the image is closed.
17954         (mono_image_lookup_resource): Walk the resource section looking
17955         for a particular entry
17956
17957         * cil-coff.h: PE resource section decoding
17958
17959 2002-06-25  Dick Porter  <dick@ximian.com>
17960         
17961         * assembly.h:
17962         * assembly.c: 
17963         (mono_assembly_foreach): Accessor functions to walk the list of
17964         loaded assemblies
17965         (mono_assembly_set_main):
17966         (mono_assembly_get_main): Process methods need to know which
17967         assembly is the "main" one
17968
17969         * object.c (mono_runtime_run_main): Record the main assembly
17970
17971         * debug-helpers.c: Fix typo
17972
17973 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
17974
17975         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17976         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17977
17978 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17979
17980         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17981
17982 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
17983
17984         * image.c (do_mono_image_open): Initialize reference count,
17985         otherwise we leak the MonoImage.
17986
17987 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17988
17989         * reflection.c: small tweak to handle self-hosting.
17990
17991 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17992
17993         * reflection.c: fix type name parse code.
17994
17995 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17996
17997         * reflection.c: break out of the loop.
17998         * image.c: special case corlib.
17999
18000 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18001
18002         * reflection.c: add all the custom attrs at the end to ensure the
18003         ctors have been properly initialized when the attributes are defined
18004         in the current assembly.
18005
18006 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18007
18008         * reflection.c: handle correctly multiple-nested types.
18009
18010 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18011
18012         * row-indexes.h: fix typos.
18013         * reflection.c: adjust for typos and fix method_def_or_ref
18014         encoding in MethodImpl table.
18015
18016 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18017
18018         * reflection.c: fix entry point patching (thanks Serge!).
18019
18020 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18021
18022         * verify.c: add check for System.Exception
18023
18024 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18025
18026         * image.c, class.c: minifix for code just c&p'ed.
18027         * reflection.c: warning fix.
18028         * object.h, loader.h, domain.c: load also StringBuilder.
18029
18030 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18031
18032         * marshal.h, marshal.c: some support code to handle complex marshaling.
18033
18034 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18035
18036         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18037         Better signatures with vtable error dump.
18038
18039 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18040
18041         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18042
18043 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18044
18045         * icall.c (ves_icall_Type_GetField): impl.
18046
18047 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18048
18049         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18050         to retrieve a marshal description blob for a field or param.
18051
18052 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18053
18054         * reflection.h, reflection.c: change order of nested type emission
18055         to avoid table corruption. The NestedTypes table is sorted.
18056         * icall.c: change order of GetConstructor results to workaround mcs bug.
18057
18058 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18059
18060         * reflection.h, reflection.c: handle field and param marshal
18061         information.
18062
18063 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18064
18065         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18066
18067 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18068
18069         * reflection.c: fix call convention.
18070
18071 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18072
18073         * reflection.h, reflection.c: mono_image_get_memberref_token()
18074         takes a type instead of a class, now. Added
18075         mono_image_get_array_token() to create tokens for the special
18076         multi-dim array methods.
18077
18078 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18079
18080         * assembly.c: handle modules (no assembly table). Split
18081         loading references in its own function.
18082         * class.c: handle moduleref resolution scope.
18083         * image.c, image.h: cache module name in image.
18084
18085 2002-06-07  Martin Baulig  <martin@gnome.org>
18086
18087         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18088         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18089
18090 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18091
18092         * icall.c: more signature fixes that used uint instead of int.
18093
18094 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18095
18096         * reflection.c: fixed signature of field refs.
18097
18098 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18099
18100         * class.c, reflection.c: handle typerefs of nested types
18101         (both on read and when writing files).
18102
18103 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18104
18105         * icall.c: fix method signatures that tried to workaround the previous
18106         typo, d'oh!
18107
18108 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18109
18110         * debug-helpers.c: fix typo.
18111
18112 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18113
18114         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18115         rewrote the PE/COFF writing code (our programs are understood by the
18116         ms runtime, now).
18117
18118 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18119
18120         * gc.c, gc.h, icall.c: weakreference support.
18121
18122 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18123
18124         * Makefile.am, mono-config.c: use $(sysconfdir).
18125
18126 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18127
18128         * icall.c: changed default precision of Double.ToString() to 15.
18129         Fixed memory leak. Unified with Single.ToString.
18130
18131 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18132
18133         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18134
18135 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18136
18137         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18138         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18139         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18140         and myself.
18141
18142 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18143
18144         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18145
18146 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18147
18148         * reflection.c, socket-io.c: more compilation fixes.
18149
18150 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18151
18152         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18153         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18154         unicode.c: warning and compiler compatibility fixes.
18155
18156 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18157
18158         * class.h, metadata.c: fixed warnings/compilation errors.
18159
18160 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18161
18162         * Makefile.am, mono-config.c, mono-config.h: configuration file
18163         support routines.
18164         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18165         config file. Export methods to insert and lookup mappings.
18166
18167 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18168
18169         * reflection.c: handle types and boxed objects in custom attr
18170         constructors.
18171
18172 2002-05-30  Martin Baulig  <martin@gnome.org>
18173
18174         * debug-symfile.c
18175         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18176
18177 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18178
18179         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18180         to lookup the implmap row for a P/Invoke method.
18181         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18182         P/Invoke method from the runtime on an as needed basis.
18183
18184 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18185
18186         * metadata.c (mono_metadata_parse_signature): impl.
18187
18188 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18189
18190         * class.c: handle .pack directive.
18191
18192 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18193
18194         * object.c: initialize static fields with RVA data.
18195
18196 2002-05-25  Martin Baulig  <martin@gnome.org>
18197
18198         * debug-symfile.c
18199         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18200
18201 2002-05-24  Martin Baulig  <martin@gnome.org>
18202
18203         * debug-symfile.c
18204         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18205         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18206         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18207
18208 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18209
18210         * object.c: special case string ctros in invoke.
18211         * gc.c: silly whitespace changes.
18212
18213 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18214
18215         * threadpool.[ch]: impl. a threadpool that can
18216         be used by mint and mono.
18217
18218 2002-05-22  Martin Baulig  <martin@gnome.org>
18219
18220         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18221         The first argument is now a `MonoReflectionModuleBuilder *', the return
18222         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18223         `methods' field to get the method builder.  The `token' argument is the
18224         unfixed token.
18225
18226         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18227         invalid characters instead of g_assert_not_reached()ing.  This seems
18228         to be the behaviour of mscorlib.
18229
18230 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18231
18232         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18233         Hestilow to fix bug #25104
18234
18235 2002-05-21  Martin Baulig  <martin@gnome.org>
18236
18237         * debug-symfile.c (mono_debug_find_source_location): New function.
18238         Looks up an IL offset in the line number table and returns the source
18239         location as a string.
18240
18241 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18242
18243         * icall.c:
18244         (mono_double_ToStringImpl): changed %f by %g until we have something
18245         better.
18246
18247 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18248
18249         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18250         parameters first in C#.
18251
18252 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18253
18254         * icall.c, reflection.h: added icall to get info about an event.
18255
18256 2002-05-20  Radek Doulik  <rodo@ximian.com>
18257
18258         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18259         endian
18260         (mono_value_box): don't use memcpy for small sizes on
18261         architectures with unaligned access
18262
18263 2002-05-20  Martin Baulig  <martin@gnome.org>
18264
18265         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18266         if `tb->parent == NULL'.
18267         (mono_reflection_create_internal_class): New function.  This is
18268         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18269         for enum types.
18270
18271         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18272         New interncall.
18273
18274 2002-05-19  Martin Baulig  <martin@gnome.org>
18275
18276         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18277         argument to get the length, don't default to the array length.
18278
18279 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18280
18281         * assembly.c (mono_assembly_setrootdir): New function used to
18282         override the MONO_ASSEMBLIES directory.
18283
18284 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18285
18286         * icall.c: ValueType_GetHashCode() initialize local var.
18287
18288 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18289
18290         * reflection.c: sort custom attributes table.
18291
18292 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18293
18294         * reflection.c: support named args in custom attributes (write support).
18295
18296 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18297
18298         * reflection.c: fix finally position calculation.
18299
18300 2002-05-15  Radek Doulik  <rodo@ximian.com>
18301
18302         * reflection.c: fixed endianess at many places
18303
18304         * icall.c (ves_icall_InitializeArray): comment out debug msg
18305
18306 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18307
18308         * object.c (mono_unhandled_exception): new function to handle
18309         unhandled exceptions.
18310         (mono_unhandled_exception): call the UnhandledException event.
18311         (mono_runtime_delegate_invoke): impl.
18312
18313 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18314
18315         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18316         returns the RVA, not the direct pointer to the data. Handle the case
18317         when the class size is fixed.
18318
18319 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18320
18321         * reflection.c: fix some endianess issues.
18322
18323 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18324
18325         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18326
18327         * threads.c (mono_thread_init): added a callback which is invoked
18328         at thread start.
18329
18330 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18331         
18332         * icall.c: make GetHashCode return non-negative values.
18333
18334 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18335
18336         * object.c, icall.c, gc.c: revert to address-based hashcode.
18337
18338 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18339
18340         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18341
18342 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18343
18344         * icall.c, class.c: special case <Module>.
18345
18346 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18347
18348         * icall.c: fix bug in GetNow().
18349
18350 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18351
18352         * object.c (mono_runtime_class_init): make sure that we call all
18353         static class constructors.
18354
18355 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18356
18357         * reflection.c: sort methodsemantics table.
18358
18359 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18360
18361         * reflection.h, reflection.c: honour init locals setting.
18362
18363 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18364
18365         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18366
18367 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18368
18369         * reflection.c: support ContructorBuilders in attribute blob creation.
18370
18371 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18372
18373         * reflection.c: some changes to build a binary that can be run
18374         directly in windows.
18375
18376 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18377
18378         * loader.c: print a big message when an icall can't be found.
18379
18380 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18381
18382         * string-icalls.c: fix bug 24248.
18383
18384 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18385
18386         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18387         icall.c, reflection.h: separate assembly loading by pathname and by
18388         assembly name. Use the MONO_PATH env var to search for assemblies.
18389
18390 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18391
18392         * assembly.c, image.h: add some support for assemblies
18393         with multiple modules.
18394         * class.c, class.h: export mono_class_from_typeref().
18395         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18396         instead.
18397
18398 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18399
18400         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18401         documentation says (the ECMA one is correct).
18402
18403 2002-05-02  Dick Porter  <dick@ximian.com>
18404
18405         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18406         Don't name the synchronisation mutex.
18407
18408 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18409
18410         * rand.c
18411         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18412         Make the prototypes match.
18413         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18414         Same.
18415
18416         * icall.c
18417         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18418         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18419         all systems have tm.tm_zone, so use strftime() with %Z to print
18420         the timezone abreviation into a temp string.
18421
18422         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18423         rather than mono_array_addr() on a MonoString on Big Endian
18424         machines.
18425
18426 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18427
18428         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18429         fix bug 24041
18430
18431 2002-04-30  Dick Porter  <dick@ximian.com>
18432
18433         * socket-io.c: Cope with SOCKET being an integer rather than a
18434         pointer now.
18435
18436         * threads.c: Added Thread_free_internal, to deal with thread
18437         handle cleanup.  Moved calls to handle_store() and handle_remove()
18438         to start_wrapper(), so each can only be called once.  Allocate
18439         synchronisation blocks with GC_malloc(), and use GC finalisation
18440         to close the handles.
18441
18442         * icall.c: added System.Threading.Thread::Thread_free_internal
18443
18444 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18445
18446         * icall.c: support Environment.Exit, CommandLineArgs().
18447
18448 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18449
18450         * object.c, object.h: added mono_runtime_run_main () and
18451         mono_runtime_get_main_args () for use in System.Environment.
18452
18453 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18454
18455         * gc.c: fix thinko, enable actual finalization since the jit is now
18456         fixed.
18457
18458 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18459
18460         * gc.c, object.c: take into account that an object may be offset wrt the address
18461         returned by GC_malloc().
18462
18463 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18464
18465         * image.c: handle files without entries in the assembly table (modules).
18466
18467 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18468
18469         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18470         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18471         allowed to be null when it's System.Object class setup.
18472
18473 2002-04-27  Martin Baulig  <martin@gnome.org>
18474
18475         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18476         if `tb->parent == NULL' rather than crashing.
18477
18478 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18479
18480         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18481         calling acos() where asin() should have been called.
18482
18483 2002-04-26  Martin Baulig  <martin@gnome.org>
18484
18485         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18486         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18487         there's a subdirectory called `System', but we don't want to read that
18488         subdirectory as an assembly.
18489
18490 2002-04-25  Martin Baulig  <martin@gnome.org>
18491
18492         * debug-symfile.c: Reflect latest MonoString changes.
18493
18494 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18495
18496         * rand.c, rand.h: instance method icalls need to have an explicit
18497         this pointer as first argument in the C implementation.
18498
18499 2002-04-25  Nick Drochak <ndrochak@gol.com>
18500
18501         * icall.c: Fix typo in map for GetNonZeroBytes
18502
18503 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18504
18505         * string-icalls.c : String does now passes unit tests without any 
18506         errors, the following changes has been made:
18507         
18508         Implemented replace methods.
18509         Renaming of methods to (try) follow the standard.
18510         Fixed compare ordinal
18511         Made all memory allocated directly to function instead of via icall function.
18512         Small performance fix in is_in_array function
18513                         
18514  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18515
18516         c (mono_string_Internal_ctor_charp_int_int):
18517         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18518         sindex < 0, throw ArgumentOutOfRangeException instead of
18519         ArgumentNullException.
18520
18521         Added new check for length == 0, however
18522         I need to make it return String.Empty from the C code.
18523         
18524         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18525         that calculate the length for us here.
18526         
18527         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18528         mono_string_new_utf16 with mono_string_new, since value is utf8.
18529
18530 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18531
18532         * object.c: register the object for finalization if needed.
18533         Allocate one more char in the string for the terminating 0 char.
18534
18535 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18536
18537         * class.c, class.h, image.c: check if a type implemenst a destructor.
18538         Use the proper key for array class lookups.
18539         * icall.c: register the icalls in the System.GC class.
18540         * gc.c, gc.h: GC-related functions and icalls.
18541
18542 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18543
18544         * icall.c:
18545         * socket-io.c:
18546         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18547         changed a couple of free () by g_free ().
18548
18549         * decimal.c: one-liner in the comments for decimal2string ().
18550
18551 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18552
18553         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18554
18555 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18556
18557         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18558         * object.c (mono_runtime_invoke_array) : handle null in params
18559
18560 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18561
18562         * string-icalls.c: fixed bug in split (one off bug)
18563
18564 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18565
18566         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18567         * icalls.c: added String::Equals as internal method
18568
18569 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18570
18571         * threads.c: fixed bug in the double interlocked functions
18572
18573 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18574
18575         * threads.c: implemented all of the new interlocked icalls.
18576         * string-icalls.c: fix a bug in insert.
18577         * icalls.c: added the icalls for interlocked, removed old string functions.
18578         
18579 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18580
18581         * loader.c: fix off-by-one error when reading argument names.
18582
18583 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18584
18585         * profiler.c: win32 counter implementation (untested).
18586         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18587         (the latter needs testing and more complete impl. from win32 folks).
18588
18589 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18590
18591         * object.c: mono_array_new_full workaround mono_array_class_get
18592         problem.
18593
18594 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18595
18596         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18597         * object.h (mono_string_chars): Changed casting type.
18598
18599 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18600
18601         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18602                            method signatures to use gunichar2 instead of gint16.
18603
18604 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18605
18606         * object.h, object.c: domain-specific versions of mono_object_new and
18607         mono_array_new.
18608
18609 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18610
18611         * object.c: changed String layout
18612
18613         * string-icalls.c (mono_string_Internal_ctor_chara): added
18614         internal string constructors.
18615
18616 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18617
18618         * threads.c: pass 'this' to the thread start routine.
18619
18620 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18621
18622         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18623         InternalCompareStr don't call twice mono_string_cmp_char for the last
18624         character. Improved performance in mono_string_cmp_char.
18625
18626 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18627
18628         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18629         code into its own library: libmonoruntime.
18630
18631 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18632
18633         * object.h, object.c: changed array format so that szarrays do not
18634         require a bounds structure.
18635         * icall.c, appdomain.c: support for new szarray format.
18636
18637 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18638
18639         * metadata.c: compare also the retuns type when comparing signatures:
18640         we didn't do this as an optimization since really overloaded methods
18641         must differ also in the arguments, but this doesn't work with
18642         low-level IL code (or when using explicit conversion operators: see
18643         bug#23498 for an example).
18644
18645 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18646
18647         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18648
18649 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * icall.c: make MonoType::GetElementType its own icall.
18652
18653 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18654
18655         * icall.c: remove MonoMethod_get_Name().
18656         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18657         object.
18658
18659 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18660
18661         * string-icalls.c: optimized a few methods.
18662
18663 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18664
18665         * icall.c: added all new string internal calls
18666         * string-icalls.c: added, new string internal call implementation.
18667         * object.c: added mono_string_new_size for allocating a string a size
18668
18669 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18670
18671         * object.c (mono_object_isinst): use the same code as in the
18672         optimized x86 version.
18673
18674 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18675
18676         * profiler.c: TSC-based timer code (faster and more accurate).
18677         Not hooked up in configure, yet (set USE_X86TSC to 1).
18678
18679 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18680
18681         * profiler.c, profiler.h: track time spent compiling methods.
18682         * threads.c: track thread creation/destruction.
18683
18684 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18685
18686         * profiler.c, profiler.h, profiler-private.h: profiling interface
18687         and sample implementation. Moved here so that it can be used also by
18688         the jit.
18689
18690 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18691
18692         * reflection.c, reflection.h: keep types and other handles separate in
18693         the hash tables for referred tokens. Add guid for modules.
18694
18695 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18696
18697         * assembly.c: fix bugs found with valgrind.
18698         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18699
18700 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18701
18702         * threads: added icall support for getting current domain for
18703                    the thread.
18704  
18705 2002-04-13  Martin Baulig  <martin@gnome.org>
18706
18707         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18708         (MonoDebugVarInfo): Added `index' field for register based addresses.
18709         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18710         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18711         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18712         `MonoDebugVarInfo *this_var'.
18713
18714         * debug-symfile.c (relocate_variable): New static function to write
18715         a location description for a local variable or method parameter.
18716
18717 2002-04-12  Martin Baulig  <martin@gnome.org>
18718
18719         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18720         stack offset and begin/end scope address of a local variable.
18721         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18722         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18723         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18724
18725         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18726         Added new relocation types for start/end scope of a local variable.
18727
18728 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18729
18730         * object.h: add mono_object_domain() macro.
18731         * reflection.c: handle typespecs.
18732         * icall.c: MonoMethod::get_Name() implementation.
18733
18734 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18735
18736         * icall.c: String::GetHashCode() icall implementation.
18737
18738 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18739
18740         * icall.c: String::IndexOfAny icall.
18741         * object.c, object.h: make array->max_length more useful.
18742         Intrduced mono_object_class() and mono_string_length() macros.
18743
18744 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18745
18746         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18747         instead of g_unichar_isdigit.
18748
18749 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18750
18751         * icall.c: Implement a simple Double.ToString().
18752
18753 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18754
18755         * appdomain.h: only io-layer.h is supposed to be included.
18756         * icall.c: explicitly import environ. Fix warning.
18757
18758 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18759
18760         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18761                 return true even if it's not Daylight Savings time.
18762                 Only return false for the case where the function isn't
18763                 implemented for a plaform (read Windows).
18764
18765 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18766
18767         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18768         data with a mutex.
18769
18770 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18771
18772         * mempool.c (mono_mempool_alloc): only use g_malloc when
18773         absolutely necessary.
18774
18775 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18776
18777         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18778
18779         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18780         (mono_class_proxy_vtable): use domain mempool
18781
18782 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18783
18784         * appdomain.h, appdomain.c: split initialization that requires the
18785         execution engine support into mono_runtime_init().
18786
18787 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18788
18789         * class.c (mono_class_init): don't include vtable inside MonoClass
18790         to save some memory, gather some statistics.
18791         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18792
18793 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18794
18795         * icall.c: internalcall implementation for ValueType.Equals().
18796
18797 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18798
18799         * object.c (mono_message_init): moved 
18800         (mono_runtime_exec_main): new arch. independent impl.
18801         (mono_runtime_invoke_array): new method - like
18802         mono_runtime_invoke, but you can pass an array of objects.
18803         (mono_remoting_invoke): new arch. independent impl.
18804         (mono_message_invoke): new arch. independent impl.
18805         (mono_runtime_class_init): new arch. independent impl.
18806         (mono_runtime_object_init): new arch. independent impl.
18807
18808 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18809
18810         * metadata.c, object.c, reflection.c: documented the exported
18811         functions.
18812
18813 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18814
18815         * icall.c: simpler code to pass the assembly builder data to corlib.
18816         Implement GetNestedTypes() internalcall.
18817
18818 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18819
18820         * class.c: warn if a type can't be loaded.
18821
18822 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
18823
18824         * image.h: typedef MonoImageOpenStatus
18825         * types.h: removed unused file
18826         
18827 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
18828
18829         * icall.c: Enum_ToObject accepts enum value arguments.
18830
18831 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18832
18833         * class.c: move initialization of properties, events and nested
18834         classes, so that they happen for interfaces, too.
18835
18836 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18837
18838         * icall.c: cleanup some ugly casts in Array_SetValue*.
18839
18840 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18841
18842         * icall.c: the values array fro enums is of the correct type, now.
18843         Implement (correctly) getFullName instead of assQualifiedName for
18844         MonoType.
18845         * reflection.h, reflection.c: added mono_type_get_name ().
18846
18847 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18848
18849         * assembly.c, image.h: for each MonoImage, record from wich assembly
18850         it was loaded.
18851         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18852         Make Type.Assembly work.
18853
18854 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
18855
18856         * debug-symfile.h: use char* instead of gpointer to avoid
18857         unnecessary casts.
18858
18859         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18860
18861         * icall.c (ves_icall_InternalExecute): impl. FielSetter
18862         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18863
18864 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
18865
18866         * icall.c (mono_message_init): impl. (code cleanup)
18867         (ves_icall_InternalExecute): impl. FieldGetter
18868
18869         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18870         defined we call all (non-static)methods through the vtable. 
18871
18872 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18873
18874         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18875         finalizer even though the memory is still referenced (and the chunk of
18876         memory is not freed).
18877
18878 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18879
18880         * assembly.c: fix brokeness.
18881
18882 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18883
18884         * class.c: kill some warnings. Check explicit interface method
18885         implementation also without considering the namespace.
18886         Load also literal strings in static class data.
18887
18888 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
18889
18890         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
18891         (default_assembly_name_resolver): Make the resolver take the
18892         "base" directory where the assembly was originally defined, so we
18893         can load DLLs that are in the same directory as the assembly that
18894         is being referenced.
18895
18896 2002-03-28  Dick Porter  <dick@ximian.com>
18897
18898         * file-io.h: 
18899         * file-io.c:
18900         * socket-io.c: 
18901         * unicode.h: 
18902         * unicode.c: Warning cleanups
18903
18904 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18905
18906         * object.h, reflection.h: use the correct type instead of MonoObject.
18907
18908 2002-03-28  Martin Baulig  <martin@gnome.org>
18909
18910         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18911         (mono_debug_update_symbol_file): Initialize classes if necessary.
18912
18913 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18914
18915         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18916         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18917
18918 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18919
18920         * assembly.h: fix function prototype.
18921         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18922         * mono-endian.h: use const cast.
18923
18924 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18925
18926         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18927
18928 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18929
18930         * loader.c: don't assert when a typeref can't be loaded, give
18931         a chance to the runtime to trow an exception instead.
18932         * loader.h: fix warning.
18933
18934 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18935
18936         * class.c (mono_class_proxy_vtable): added proxy support
18937
18938 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
18939
18940         * icall.c: removed last of PAL calls, added System.Environment
18941         * file-io.h, file-io.c: MonoIO implementation
18942         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18943
18944 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18945
18946         * appdomain.c: do not use the byte marker in ldstr table lookup.
18947         * debug-helpers.c: allow two ':' to separate class and method name.
18948         * object.c: allocate arrays bounds with the GC, too.
18949         * verify: add a few more checks.
18950
18951 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18952
18953         * reflection.c: output also literal strings. Allocate parameter data
18954         with GC_malloc() (thanks, Martin, for catching this!).
18955
18956 2002-03-26  Martin Baulig  <martin@gnome.org>
18957
18958         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18959         include the `this' offset in the `param_offsets'.
18960
18961 2002-03-25  Martin Baulig  <martin@gnome.org>
18962
18963         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18964         mono_debug_get_class() function to get the classes. Added new
18965         relocation types for arrays and strings.
18966         (mono_debug_get_class): New static function to search in all
18967         referenced assemblies for a metadata token.
18968
18969         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18970
18971 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18972
18973         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18974         hold gc-allocated objects. Make the string heap a stream like the
18975         others. Removed duplicated code when writing stream info.
18976         Added asserts to catch possible buffer overflows. Set the sorted map
18977         for tables that need sorting. Added some documentation.
18978
18979 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18980
18981         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
18982         for interned strings and vtables.
18983
18984 2002-03-24  Martin Baulig  <martin@gnome.org>
18985
18986         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18987         it in the array since it was created with g_slist_prepend().
18988
18989 2002-03-24  Martin Baulig  <martin@gnome.org>
18990
18991         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18992         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18993         (mono_debug_method_from_token): Renamed to
18994         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18995         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18996
18997         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18998         relocation types.
18999
19000         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19001
19002 2002-03-24  Martin Baulig  <martin@gnome.org>
19003
19004         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19005         (mono_debug_method_from_token): New func.
19006
19007         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19008         New interncall, calls mono_debug_local_type_from_signature().
19009         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19010         calls mono_debug_method_from_token().
19011
19012 2002-03-23  Martin Baulig  <martin@gnome.org>
19013
19014         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19015         specifies the number of bytes to be converted, not the array size.
19016         Return the number of chars, not the number of bytes.
19017         (ves_icall_iconv_get_chars): The `byteCount' argument
19018         specifies the number of bytes to be converted, not the array size.
19019
19020 2002-03-23  Martin Baulig  <martin@gnome.org>
19021
19022         * reflection.h (MonoReflectionSigHelper): New type.
19023
19024         * reflection.c (mono_reflection_sighelper_get_signature_local),
19025         (mono_reflection_sighelper_get_signature_local): New functions.
19026
19027         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19028         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19029         interncalls.
19030
19031 2002-03-23  Martin Baulig  <martin@gnome.org>
19032
19033         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19034         is_writeable is set.
19035         (mono_raw_buffer_update): New function to write the modified map
19036         back to disk.
19037
19038         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19039
19040         * debug-symfile.c (mono_debug_update_symbol_file): Call
19041         mono_raw_buffer_update() when done writing.
19042
19043 2002-03-23  Martin Baulig  <martin@gnome.org>
19044
19045         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19046
19047         * debug-symfile.c: Added support for arguments and local variables.
19048
19049 2002-03-23  Dick Porter  <dick@ximian.com>
19050
19051         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19052         protected by ifdefs, hence breaking the w32 build.
19053
19054 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19055
19056         * object.c: implement is_interned() the right way.
19057
19058 2002-03-21  Martin Baulig  <martin@gnome.org>
19059
19060         * debug-symfile.[ch]: New files to handle debugging information
19061         files. There's also support to dynamically update these symbol
19062         files to include machine dependent information.
19063
19064 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19065
19066         * threads.c (mono_thread_create): new function to create thread
19067         from C
19068
19069 2002-03-20  Martin Baulig  <martin@gnome.org>
19070
19071         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19072         method is a constructor.
19073         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19074         points to ves_icall_InternalInvoke().
19075
19076 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19077
19078         * file-io.c: Flush shouldn't throw exceptions.
19079
19080 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19081
19082         * file-io.c: FileStream flush support; FileSetLength now
19083         restores file pointer.
19084
19085 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19086
19087         * class.c: set image for pointer classes.
19088
19089 2002/03/19  Nick Drochak <ndrochak@gol.com>
19090
19091         * sysmath.c: Forgot one.
19092
19093 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19094
19095         * sysmath.c: Avoid redefining existing names.
19096
19097 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19098
19099         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19100         handled by runtime as icall rather than dllimport from libm.so
19101         * file-io.c, file-io.h: fixed handle argument type.
19102
19103 2002-03-18  Dick Porter  <dick@ximian.com>
19104
19105         * reflection.c (mono_image_get_type_info): rename interface to
19106         iface, because of "#define interface struct" on windows.
19107
19108 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19109
19110         * class.c, class.h: rename and export mono_ptr_class_get().
19111         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19112         * reflection.c, reflection.h, icall.c: better/saner type name
19113         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19114         method signatures.
19115
19116 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19117
19118         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19119
19120         * icall.c (ves_icall_InternalInvoke): impl.
19121
19122 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19123
19124         * reflection.c: output the interface map table, too.
19125
19126 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19127
19128         * class.c (class_compute_field_layout): separate computation of 
19129         static field layout
19130
19131 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19132
19133         * icall.c: added System.Buffer support.
19134         * file-io.c: moved file icalls from PAL to FileStream.
19135
19136 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19137
19138         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19139
19140 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19141
19142         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19143
19144 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19145
19146         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19147
19148 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19149
19150         * debug-helpers.{c,h}: moved here from monograph some useful functions
19151         to locate a method by name/signature in a class or image. Included
19152         also a small and flexible IL disassembler.
19153
19154 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19155
19156         * reflection.c: fixup tokens in methods with small header size, too.
19157
19158 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19159
19160         * object.c (mono_string_to_utf8): remove assert(!error), instead
19161         print a warning. 
19162
19163 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19164
19165         * icall.c: update to the new mono_Array_class_get interface.
19166
19167 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19168
19169         * appdomain.c, object.c: Boehm-GC enable.
19170         * icall.c: make get_data_chunk() support split data requests.
19171         Ensure a class is initialized in more cases. Return only the first
19172         property found in GetProperties() or the compiler gets confused. 
19173         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19174         * reflection.h, reflection.c: add fixup mechanism for field and method
19175         tokens. Initialize assembly->typeref in a single place. Output
19176         properties after events. Support custom attributes for events, too.
19177         Typo fix for paramter custom attrs.
19178
19179 2002-03-07  Martin Baulig  <martin@gnome.org>
19180
19181         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19182
19183 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19184
19185         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19186
19187 2002-03-06  Martin Baulig  <martin@gnome.org>
19188
19189         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19190         non-zero lower bounds. See testcases #F10-#F13.
19191
19192 2002-03-05  Martin Baulig  <martin@gnome.org>
19193
19194         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19195
19196         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19197         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19198         here.
19199         (ves_icall_System_Array_SetValue): Likewise.
19200         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19201         as argument and does the actual work. This function is used when copying a
19202         multi-dimensional array.
19203         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19204         now do all the widening conversions of value types.
19205         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19206
19207 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19208
19209         * class.c: remove some magic numbers and use the smbolic names,
19210         instead. Added init_events() to load event info at class init time.
19211         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19212         and mono_metadata_methods_from_event().
19213         * reflection.h, reflection.c: added support for writing out the evnets
19214         related information.
19215
19216 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19217
19218         * reflection.h, icall.c: use a different method (GetInterfaces)
19219         to gather interface info and add isbyref, isprimitive and
19220         ispointer to the ves_icall_get_type_info() return value.
19221
19222 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19223
19224         * class.h: stared adding support for events.
19225         * icall.c: split find_members implementation. Added debug icall to get
19226         the address of an object.
19227         * reflection.c: handle TypeBuilders in mono_type_get_object().
19228
19229 2002-03-01  Martin Baulig  <martin@gnome.org>
19230
19231         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19232         ArgumentOutOfRangeException(), not an ArgumentException().
19233         (ves_icall_System_Array_GetLowerBound): Likewise.
19234         (ves_icall_System_Array_GetValue): Improved argument checking.
19235         (ves_icall_System_Array_SetValue): Improved argument checking.
19236
19237 2002-03-01  Martin Baulig  <martin@gnome.org>
19238
19239         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19240         called with invalid arguments rather than just dying with g_assert().
19241         (ves_icall_System_Array_SetValue): Likewise.
19242         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19243         raise a NotImplementedException instead.
19244         (ves_icall_System_Array_GetLength): Added argument checking.
19245         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19246
19247 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19248
19249         * object.h (mono_assert): new macros mono_assert and
19250         mono_assert_not_reached
19251
19252 2002-02-28  Martin Baulig  <martin@gnome.org>
19253
19254         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19255         and "System::String::IsInterned" to "System::String::_IsInterned".
19256
19257 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19258
19259         * icall.c: remove hacks for typebuilder. Added icall to create a
19260         modified type from a tybebuilder.
19261         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19262         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19263         to create a backing MonoClass for a TypeBuilder.
19264
19265 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19266
19267         * class.c, class.h: more refactoring of class init.
19268         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19269
19270 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19271
19272         * marshal.c, marshal.h: start of marshaling interface.
19273
19274 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19275
19276         * icall.c: fix order in assembly qualified name icall.
19277
19278 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19279
19280         * class.c: do not free str, since we store it in the hash table.
19281         * reflection.h: add label field to MonoILExceptionInfo.
19282         * reflection.c: handle references to more than one assembly. Handle
19283         case when there isn't a module created in the assembly.
19284
19285 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19286
19287         * class.c: Fix typo. Start refactoring of class init code.
19288
19289 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19290
19291         * appdomain.c: exit with 1 on error.
19292         * class.c: we already have the name in MonoClassField.
19293         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19294         MonoStreamHeader instead of an offset of image->raw_metadata.
19295
19296 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19297
19298         * appdomain.c (mono_init): Be even more descriptive about the error.
19299
19300 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19301
19302         * appdomain.c: give the user an informative message when corlib can't
19303         be loaded.
19304
19305 2002-02-26  Martin Baulig  <martin@gnome.org>
19306
19307         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19308         New icall to get the time zone data.
19309
19310 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19311
19312         * reflection.c: set virtual and raw size of section correctly.
19313         * threads.c: transfer domain information to newly created threads.
19314
19315 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19316
19317         * class.c: when instancing a class in a domain, load the default
19318         vaules for static fields from the constant table. Fix System.Enum to
19319         not be an enum.
19320         * icall.c: implement Object::GetType() internalcall. Implemented
19321         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19322         Fixed checking of binding flags in find_members().
19323         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19324         * reflection.c: handle enumerations when writing to the constant
19325         table. Use a different object cache for types.
19326
19327
19328 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19329
19330         * object.c (mono_object_isinst): fix for arrays
19331
19332         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19333
19334 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19335
19336         * object.c: don't use mprotect ()  and fix intern pool hash table
19337         lookup for big endian systems.
19338
19339 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19340
19341         * icall.c: change type_is_subtype_of () signature.
19342
19343 2002-02-21  Mark Crichton  <crichton@gimp.org>
19344
19345         * rand.c, rand.h: Added random number generator for
19346         System.Security.Cryptography classes.
19347
19348         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19349
19350         * icall.c: Added System.Security.Cryptography calls.
19351
19352 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19353
19354         * class.c, icall.c, metadata.c: better support for pointer types.
19355         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19356         * reflection.c: Add support for getting custom attrs for properties
19357         and simplify some code.
19358
19359 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * icall.c: change getToken () and add custom attribute GetBlob()helper
19362         method.
19363         * reflection.h: add custom attrs array to the reflection builder structures.
19364         * reflection.c: encode and emit custom attributes for all the relevant
19365         reflection objects. Cache fieldref and methodref tokens. Change
19366         mono_image_create_token() interface to take a MonoDynamicAssembly.
19367         More complete custom attributes decoder. Load custom attributes for
19368         Assembly, Field, Method and Constructor objects, too. Make the
19369         returned array an Attribute[] one, not object[]. Added
19370         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19371         custom attribute constructor.
19372
19373 2002-02-20  Dick Porter  <dick@ximian.com>
19374
19375         * icall.c:
19376         * rawbuffer.c:
19377         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19378         problem code out for now).
19379
19380 2002-02-19  Radek Doulik  <rodo@ximian.com>
19381
19382         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19383
19384 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19385
19386         * icall.c: register the GetCustomAttributes method.
19387         * object.c, object.h: add mono_string_new_len ().
19388         * reflection.h, reflection.c: added mono_runtime_invoke(),
19389         mono_install_runtime_invoke(). Added
19390         mono_reflection_get_custom_attrs () to load custom attributes and
19391         create the attribute objects.
19392
19393 2002-02-19  Dick Porter  <dick@ximian.com>
19394         * threads-dummy-types.c:
19395         * threads-dummy-types.h:
19396         * threads-dummy.c:
19397         * threads-dummy.h:
19398         * threads-pthread-types.c:
19399         * threads-pthread-types.h:
19400         * threads-pthread.c:
19401         * threads-pthread.h:  Deleted obsolete files
19402
19403 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19404
19405         * class.c (mono_class_vtable): runtime init the class when we
19406         allocate static class data.
19407
19408         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19409
19410         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19411         and String - but we will need generic marshalling support in the
19412         future. 
19413         (mono_init): set the domain name in a ms compatible way
19414
19415         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19416         String[].
19417
19418 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19419
19420         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19421         for sizes
19422
19423         * appdomain.c (mono_domain_unload): impl.
19424
19425 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19426
19427         * appdomain.c, object.c: fix intern pool implementation.
19428         * class.c: fix alignment code.
19429
19430 2002-02-16  Radek Doulik  <rodo@ximian.com>
19431
19432         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19433         and s2 > s1, just copy lower bytes to be compatible with little
19434         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19435         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19436
19437         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19438         force big_endian to be 1 for big endian machines 
19439         (ves_icall_iconv_new_decoder): ditto
19440
19441 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19442
19443         * socket-io.c (convert_sockopt_level_and_name): If the system
19444         doesn't define SOL_IP or SOL_TCP, get them by hand using
19445         getprotobyname() and caching the values (because this could be a
19446         slow operation).
19447         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19448         Use the appropriate struct when the system does support it. Ie,
19449         not all systems have struct ip_mreqn so use struct ip_mreq when
19450         appropriate.
19451
19452 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19453
19454         * reflection.c: handle finally clauses.
19455
19456 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19457
19458         * socket-io.c: use g_snprintf() instead of snprintf.
19459
19460 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19461
19462         * reflection.c (mono_param_get_objects): Cast second argument to
19463         mono_method_get_param_names to a const char** to silence the
19464         compiler warning.
19465
19466         * appdomain.c (mono_domain_assembly_open): Put parens around the
19467         truth statement in the for-loop.
19468
19469         * unicode.c (iconv_convert): Got rid of a compiler warning about
19470         int i being unused when the system has a new iconv.
19471         (iconv_get_length): Same.
19472
19473         * image.c (load_class_names): Cast the second argument to
19474         g_hash_table_insert() to char* to hush compiler warnings about the
19475         arg being a const.
19476         (mono_image_open): Same here.
19477
19478         * socket-io.c: Don't conditionally include sys/filio.h or
19479         sys/sockio.h here anymore since we now get them from
19480         io-layer/io-layer.h
19481         (inet_pton): If the system doesn't support inet_aton, implement
19482         using inet_addr and also #define INADDR_NONE if it isn't defined
19483         by the system.
19484
19485 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * metadata.c, metadata.h: added function to get packing and size info
19488         of a typedef.
19489         * reflection.h, reflection.c: handle field RVA data. Save info about
19490         the table layout if needed. Assign typedef indexes to all the types
19491         before dumping the info about them to avoid forward reference problems.
19492
19493 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19494
19495         * socket-io.c (convert_sockopt_level_and_name): ifdef
19496         SO_ACCEPTCONN because it is not defined on my system (old debian)
19497
19498 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19499
19500         * opcode.c: use stddef.h to get NULL.
19501
19502 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19503
19504         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19505         for FIONBIO, FIONREAD and SIOCATMARK.
19506         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19507         define INADDR_NONE and besides, inet_addr() is deprecated and
19508         should not be used. Use inet_pton() instead - it also has the
19509         added bonus that it can easily handle IPv6 addresses as well.
19510         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19511
19512 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19513
19514         * decimal.c: remove _MSC_VER conditional.
19515
19516 2002-02-13  Dick Porter  <dick@ximian.com>
19517
19518         * socket-io.c: 
19519         * icall.c: Internal calls for Blocking, Select, Shutdown,
19520         GetSocketOption and SetSocketOption
19521
19522 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19523
19524         * assembly.cs: better resolver: use it instead of some kludgy
19525         code.
19526
19527 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19528
19529         * reflection.c: the best way to speed-up the compiler is to avoid
19530         infinite loops.
19531
19532 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19533
19534         * class.c (mono_class_vtable): changed the object layout
19535         (obj->vtable->class). 
19536         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19537
19538 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19539
19540         * assembly.c: look for assemblies in the assembly dir, too.
19541
19542 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19543
19544         * class.c: fix thinko in mono_class_from_type().
19545
19546 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19547
19548         * exception.h, exception.c: added TypeLoadException.
19549         * object.h, object.c: added mono_array_clone ().
19550         * icall.c: handle throwOnError in AssemblyGetType().
19551         Added Array.Clone().
19552         * opcode.h, opcode.c: use a single value for the opcode val.
19553         Compile fix for non-gcc compilers.
19554
19555 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19556
19557         * opcodes.c, opcodes.h: export interesting info about opcodes.
19558
19559 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19560
19561         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19562         icalls. 
19563
19564         * class.c (class_compute_field_layout): set element_class for enums
19565         (mono_class_create_from_typedef): set element_class for normal classes
19566
19567         * icall.c (ves_icall_System_Enum_get_value): impl.
19568
19569         * class.c (mono_class_create_from_typedef): do not set valuetype
19570         flag for System.ValueType and System.Enum
19571
19572 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19573
19574         * unicode.c (iconv_convert): fix big endian problem.
19575
19576 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19577
19578         * class.c: add asserts if we are ever going to scribble over memory.
19579         * socket-io.c: not all systems have AF_IRDA defined.
19580
19581 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19582
19583         * class.c (class_compute_field_layout): do not consider static
19584         fields to compute alignment
19585
19586 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19587
19588         * appdomain.c (mono_appdomain_get): impl.
19589         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19590
19591 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19592
19593         * icall.c: ignore "file://" prefix when loading an assembly.
19594
19595 2002-01-23  Dick Porter  <dick@ximian.com>
19596
19597         * socket-io.c:
19598         * icall.c:
19599         * Makefile.am: Added socket support
19600
19601 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19602
19603         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19604         code back.  This should return the assemblies that are loaded by
19605         the runtime on behalf of an application domain. 
19606
19607         The current implementation is still broken, it just returns every
19608         assembly loaded, but until we get real applications domain this
19609         will do.
19610
19611 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19612
19613         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19614         AppDomain object.
19615
19616 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19617
19618         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19619         the mono_class_from_name lookup.
19620         (ves_icall_get_parameter_info): ditto.
19621         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19622         method.
19623         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19624
19625 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19626
19627         * class.c: load also nested classes on class init.
19628         System.ValueType instance methods gets passed boxed
19629         values, unless methods in derived classed that get a pointer to the
19630         data.
19631         * icall.c: use better name parsing code in GetType().
19632         * image.c, image.h: add mono_image_loaded ().
19633         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19634         * reflection.c, reflection.h: added mono_reflection_parse_type().
19635
19636 2002-01-22  Veronica De Santis <veron78@interfree.it>
19637
19638         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19639         * threads.c : Added the implementation of internal calls for events
19640         * threads.h : Added prototypes of internal calls for events
19641         
19642 2002-01-21  Radek Doulik  <rodo@ximian.com>
19643
19644         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19645
19646 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19647
19648         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19649         (mono_class_value_size): use min_align
19650
19651 2002-01-20  Dick Porter  <dick@ximian.com>
19652
19653         * threads.h:
19654         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19655         so it compiles on w32.
19656
19657 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19658
19659         * metadata.c (mono_type_stack_size): impl.
19660
19661         * class.c (mono_class_get_field): impl. memberref token
19662
19663 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19664
19665         * icall.h : Added the internal calls mapping for CreateMutex_internal
19666                     and ReleaseMutex_internal.
19667         * threads.h : Added the prototype of mutexes internal calls.
19668         * threads.c : Added the implementations of mutexes internal calls.
19669
19670 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19671
19672         * metaparse.h: removed unused file.
19673         * reflection.c, reflection.h: added stream_data_align () function 
19674         to align data in streams and keep stream aligned. Add support for
19675         exception support in method headers.
19676
19677 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19678
19679         * unicode.c: make iconv_convert () return the number of bytess written
19680         in the output buffer.
19681
19682 2002-01-15  Dick Porter  <dick@ximian.com>
19683         * threads.c: Make the runtime's idea of infinite timeouts coincide
19684         with the class library's
19685
19686         Fix a particularly egregious bug in mono_thread_cleanup(). That
19687         code was so utterly bogus it must have been written on a Monday.
19688
19689 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19690
19691         * reflection.h: add subtypes field to TypeBuilder.
19692         * reflection.c: encode constants for literal fields.
19693         Handle subtypes. Fix user string token (and add a zero byte)
19694         at the end.
19695         
19696 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19697
19698         * class.c (mono_class_init): bug fix: assign slot numbers for
19699         abstract methods.
19700
19701 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19702
19703         * reflection.c: don't try to output a code RVA for abstract methods.
19704         Small fixes for method header format. Output parameter info to the
19705         ParamDef table. Save method overriding info to MethodImpl table.
19706         Fix property support. Allow typedef.extends to be a type in the
19707         building assembly.
19708         * verify.c: fix off-by-one error.
19709
19710 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19711
19712         * class.c: fix mono_class_from_mono_type () for szarray types.
19713         Remove unused cache check in mono_class_from_type_spec().
19714         * icall.c: *type_from_name () functions handle simple arrays and byref.
19715         * reflection.c: handle byref and szarray types. Handle methods without
19716         body (gets P/Invoke compilation working). Handle types and fields in
19717         get_token ().
19718         * reflection.h: add rank to MonoTypeInfo.
19719
19720 2002-01-10  Dick Porter  <dick@ximian.com>
19721
19722         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19723         internal calls
19724
19725 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19726
19727         * icall.c: initialize class in type_from_handle ().
19728         Loop also in parent classes for get_method ().
19729         * reflection.c: properly encode class and valuetype types.
19730         Start on encoding TypeBuilder types. Handle fieldrefs.
19731         Use correct length when registering a user string.
19732         Handle ConstructorBuilder and MonoMethod in get_token ().
19733         Make mono_type_get_object () aware of cached types.
19734         * object.c: back out change to mono_string_new ().
19735
19736 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19737         * object.c: mono_string_new should return a NULL when the string 
19738         passed in is NULL -- not try to deference it.
19739         
19740 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19741
19742         * icall.c: hack to make IsSubType work for TypeBuilders.
19743         * reflection.c: emit constructors before methods.
19744         Retrieve param names in mono_param_get_objects().
19745
19746 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19747
19748         * Makefile.am: fix list of headers and sources so automake 1.5
19749         doesn't complain. Removed \# at end of list.
19750
19751 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19752
19753         * reflection.c: get token for a method ref. Set return type of
19754         constructor to void.
19755         * loader.c: debug message.
19756         * class.c: typo fix.
19757
19758 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19759
19760         * icall.c: fix array init with rank > 1. FindMembers
19761         loops in parent class as well.
19762         * image.c: do not insert nested types in name cache.
19763         * reflection.c: warning fix.
19764         * reflection.h: add override method (for interface impl).
19765
19766 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19767
19768         * metadata.c: fix customattr decoding.
19769
19770 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19771
19772         * rawbuffer.cs: Added native Win32 implementation, avoids using
19773         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19774
19775 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19776
19777         * class.c: make the low-level routines handle the cache.
19778
19779 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19780
19781         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19782
19783 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19784
19785         * class.c: fix mono_array_element_size() for objects.
19786         * class.h, class.c: add properties to MonoClass and load them
19787         at init time.
19788         * icall.c: check with isinst() when assigning a value to an array
19789         instead of requiring the classes to match exactly.
19790         Implemented icall for System.Type::GetType().
19791         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19792         enums. Handle bindingflags when looking for methods and fields.
19793         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19794         and mono_metadata_methods_from_property().
19795         * reflection.h, reflection.c: added structures for propreties,
19796         parameters and enums. Implemented mono_property_get_object() and
19797         mono_param_get_objects().
19798
19799 2001-12-18  Dick Porter  <dick@ximian.com>
19800
19801         * file-io.c: Use mono_string_to_utf16() instead of
19802         mono_string_chars()
19803
19804         * object.c: Added mono_string_to_utf16(), which copies the non
19805         NULL-terminated MonoString into a new double-null-terminated
19806         buffer.
19807
19808 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19809
19810         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19811
19812 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
19813
19814         * file-io.c: raise exceptions if handle is invalid.
19815
19816 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19817
19818         * assembly.c: yet another check for mscorlib.
19819         * class.c, class.h: load nesting info for classes.
19820         * icall.c: many new functions to support the Reflection classes.
19821         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19822         * reflection.h, reflection.c: mono_image_create_token(),
19823         mono_assembly_get_object(), mono_type_get_object(),
19824         mono_method_get_object(), mono_field_get_object(): methods to return
19825         objects that parallel the C representation of assemblies, types,
19826         methods, fields.
19827
19828 2001-12-11  Dick Porter  <dick@ximian.com>
19829
19830         * icall.c:
19831         * file-io.c: Internal calls for file IO.
19832
19833 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19834
19835         * tabledefs.h: missing FileAttributes.
19836         * verify.h, verify.c: use is_valid_string () to simplify and check for
19837         valid strings more correctly. Fix warnings and speeling.
19838         Check more tables: Filed, File, ModuleRef, StandAloneSig.
19839         Check code: branches, maxstack, method calls.
19840
19841 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
19842
19843         * object.c (mono_object_allocate): removed static, so that the jit
19844         can allocate value types.
19845
19846         * icall.c (ves_icall_System_DateTime_GetNow): impl.
19847
19848 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19849
19850         * class.c: init enum types right away and register the
19851         token->MonoClass map in mono_class_create_from_typedef ().
19852         * verify.h, verify.c: first cut of the verifier.
19853         * pedump.c: add --verify switch to verify metadata tables.
19854         * tabledefs.h: add some missing enums.
19855
19856 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
19857
19858         * class.c (mono_install_runtime_class_init): impl.
19859         (mono_class_init): renamed mono_class_metadata_init to
19860         mono_class_init, also removed the metadata_inited flag
19861
19862         * object.c (mono_object_isinst): use faster algorithm
19863
19864 2001-11-30  Radek Doulik  <rodo@ximian.com>
19865
19866         * mono-endian.h: reverted last change
19867         added function prototypes
19868
19869         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19870         add mono-endian.c back
19871
19872         * mono-endian.c: returned back, as Paolo pointed out, it's needed
19873         for unaligned access, I've mistaked it with endianess. I am
19874         sorry.
19875         (mono_read16): fix reverted endianess
19876         (mono_read64): ditto
19877         (mono_read32): ditto
19878
19879 2001-11-30  Dick Porter  <dick@ximian.com>
19880
19881         * exception.c: Implement mono_exception_from_name()
19882
19883 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19884
19885         * metadata.h, metadata.c: remove params_size and locals_size and their
19886         calculation from the metadata code: they are only usefult to the
19887         interp.
19888
19889 2001-11-29  Radek Doulik  <rodo@ximian.com>
19890
19891         * object.c (mono_ldstr): swap bytes here, it's probably not the
19892         best place, but works for me now, I'll redo it once I know mono
19893         better, also note that I add PROT_WRITE and don't reset back, also
19894         note that it's only affects big endians, so x86 should be OK
19895
19896         * mono-endian.h (read16): use just glib macros for both endians
19897
19898         * mono-endian.c: removed as glib macros are used in in
19899         mono-endian.h so we don't need to care about endianess for read
19900         macros as glib does that for us already
19901
19902 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19903
19904         * class.h, class.h: take minimum alignment into consideration so
19905         that the fields of a class remain aligned also when in an array.
19906
19907 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19908
19909         * loader.h, loader.c: add mono_method_get_param_names().
19910         * class.c: 0-init class fields.
19911
19912 2001-11-26  Dick Porter  <dick@ximian.com>
19913
19914         * icall.c:
19915         * threads-types.h:
19916         * threads.c: New file that handles System.Threading on all platforms
19917
19918         * object.c: 
19919         * object.h: Remove the synchronisation struct from MonoObject,
19920         replace it with a pointer that gets initialised on demand
19921
19922         * Makefile.am: Replace all the system-specific threading code with
19923         a single file that uses the new wrapper library
19924
19925 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19926
19927         * class.c, class.h: add mono_install_trampoline() so that the runtime
19928         can register a function to create a trampoline: removes the ugly
19929         requirement that a runtime needed to export arch_create_jit_trampoline.
19930         * object.h, object.c: added mono_install_handler() so that the runtime
19931         can install an handler for exceptions generated in C code (with
19932         mono_raise_exception()). Added C struct for System.Delegate.
19933         * pedump.c: removed arch_create_jit_trampoline.
19934         * reflection.c: some cleanups to allow registering user strings and
19935         later getting a token for methodrefs and fieldrefs before the assembly
19936         is built.
19937         * row-indexes.h: updates and fixes from the new ECMA specs.
19938
19939 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19940
19941         * class.h, class.c: add enum_basetype field to MonoClass.
19942         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19943         to get index in the constant table reated to a field, param or
19944         property.
19945         * reflection.h, reflection.c: handle constructors. Set public-key and
19946         version number of the built assembly to 0.
19947         * row-indexes.h: update from new ECMA spec.
19948
19949 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19950
19951         * class.h, class.c: add a max_interface_id to MonoClass.
19952         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19953         since it's used to do that. Added mono_type_type_from_obj().
19954         Make GetType() return NULL instead of segfaulting if the type was not
19955         found. Handle simple arrays in assQualifiedName.
19956         * object.h: add a struct to represent an Exception.
19957         * reflection.c: output call convention in method signature.
19958         Add code to support P/Invoke methods and fixed offsets for fields.
19959
19960 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19961
19962         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19963         the value.
19964         * icall.c: use mono_array_addr instead of array->vector: fixes the
19965         reflection image writing.
19966         * reflection.c: init call convention byte to 0 in method signature.
19967         Encode the property signature. Don't output property-related methods
19968         twice. Really process the properties for a type (don't cast a field to
19969         a property, my mom always told me that).
19970         Fix 64 bit issues in pointer alignment in a different and more
19971         readable way.
19972
19973 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
19974
19975         * loader.h: Removed type class from MonoDefaults, added monotype
19976
19977         * loader.c: Loaded MonoType, removed loading of Type
19978
19979         * icall.c (my_mono_new_object): Now returns a System.MonoType,
19980         and fills in System.Type._impl with a RuntimeTypeHandle rather
19981         than the actual MonoClass *
19982
19983         (ves_icall_type_from_handle): change from type_class to
19984         monotype_class
19985
19986         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19987         implemented
19988
19989         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19990         implemented
19991
19992         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19993
19994         (ves_icall_System_Reflection_Assembly_GetType): implemented
19995
19996         (ves_icall_System_MonoType_assQualifiedName): implemented
19997
19998         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19999
20000 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20001
20002         * assembly.c (mono_assembly_open): Implement a cache for the
20003         assemblies. 
20004
20005         (mono_assembly_close): only destroy the assembly when the last
20006         reference is gone.
20007         
20008 2001-11-09  Dick Porter  <dick@ximian.com>
20009
20010         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20011
20012 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20013
20014         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20015
20016 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20017
20018         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20019         from Martin Weindel.
20020         * object.h: add mono_string_chars ().
20021
20022 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20023
20024         * reflection.c (build_compressed_metadata): Eliminates warnings
20025         and uses 64-bit clean code.
20026
20027         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20028         (mono_type_equal): Change signature to eliminate warnings.
20029
20030 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20031
20032         * icall.c, loader.c: remove the internalcall array constructors.
20033         Changes to match the new MonoArray structure.
20034         * object.h, object.c: an array object doesn't allocate an extra
20035         vector. Add mono_array_new_full () to create jagged arrays easily.
20036
20037 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20038
20039         * metadata.h, metadata.c: add mono_metadata_field_info () to
20040         retreive all the info about a field from vairous tables.
20041         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20042         * class.h, class.c: augment MonoClassField with more info.
20043         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20044         policy and load a field's RVA if needed.
20045
20046 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20047
20048         * class.c (mono_class_metadata_init): create a trampoline for all
20049         virtual functions instead of actually compiling them.
20050
20051 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20052
20053         * class.h, class.c: include name in MonoClassField.
20054         * class.c: fix fundamental type of System.Object and System.String.
20055         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20056         tokens in ldtoken.
20057         * icall.c: remove internalcalls for the Reflection stuff that is now
20058         done in C# code.
20059         * loader.c: mono_field_from_memberref () implementation.
20060         * mono-endian.c: thinko (s/struct/union/g).
20061         * object.c, object.h: make the mono_string_* prototypes actually use
20062         MonoString instead of MonoObject.
20063         * reflection.c, reflection.h: updates for changes in the reflection
20064         code in corlib: we use C structures that map to the actual C# classes.
20065         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20066         fat method header if needed and use the info from the ILGenerator for
20067         methods. Handle fields in types. Misc fixes.
20068
20069 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20070
20071         * class.c (mono_class_metadata_init): bug fix: always allocate
20072         space for static class data
20073
20074 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20075
20076         * class.c (mono_compute_relative_numbering): use relative
20077         numbering to support fast runtime type checks.
20078
20079 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20080
20081         * class.c (mono_class_create_from_typeref): added debugging output
20082         to print class name when MonoDummy is returned instead of real class
20083
20084 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20085
20086         * class.c (mono_class_metadata_init): interface offset table now
20087         contains pointers into the vtable - this is more efficient for the jit
20088
20089 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20090
20091         * class.c (mono_class_metadata_init): use a temporary vtable (the
20092         old algorithm only worked for the interpreter, but not for the jit)
20093
20094 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20095
20096         * loader.c (method_from_memberref): use mono_class_get to get the
20097         class of an array instead of using System.Array directly.
20098         (mono_get_method): also add MEMBERREF methods to the method cache
20099         which usefull for arrays.
20100
20101 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20102
20103         * pedump.c (arch_compile_method): added to compute vtable entry
20104
20105         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20106         number of interfaces.
20107         
20108         * class.h: merged MonoArrayClass into MonoClass
20109
20110         * class.c (mono_class_create_from_typedef): compute the vtable size and
20111         allocate space to include the vtable inside MonoClass
20112         (mono_class_metadata_init): initialize the vtable
20113
20114 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20115
20116         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20117         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20118         * image.c: endian fixes by Laurent Rioux.
20119         * object.h, object.c: rename MonoStringObject to MonoString and
20120         MonoArrayObject to MonoArray. Change some function names to conform to
20121         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20122         guint16* as first argument, so don't use char*.
20123         Provide macros to do the interesting things on arrays in a portable way.
20124         * threads-pthread.c: updates for the API changes and #include <sched.h>
20125         (required for sched_yield()).
20126         * icall.c: updates for the API changes above.
20127         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20128         platforms that need them.
20129
20130 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20131
20132         * class.c: set the correct type for all the fundamental
20133         type when loading the class.
20134
20135 2001-10-05  Dick Porter  <dick@ximian.com>
20136
20137         * threads-pthread.c (pthread_mutex_timedlock): Simple
20138         compatibility version for C libraries that lack this call.
20139
20140 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20141
20142         * class.c: MonoTypes stored in MonoClass are stored as
20143         fundamental MonoTypes when the class represents a
20144         fundamental type (System.Int32, ...).
20145         The TypeHandle return by ldtoken is a MonoType*.
20146         * icall.c: ves_icall_get_data_chunk () write out all the
20147         PE/COFF stuff. Implement ves_icall_define_method (),
20148         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20149         * image.c: properly skip unknown streams.
20150         * loader.h, loader.c: add type_class to mono_defaults.
20151         * metadata.c, metadata.h: export compute_size () as
20152         mono_metadata_compute_size () with a better interface.
20153         Typo and C&P fixes.
20154         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20155         * reflection.c, reflection.h: many cleanups, fixes, output method
20156         signatures and headers, typedef and typeref info, compress the metadata
20157         tables, output all the heap streams, cli header etc.
20158         * row-indexes.h: typo fixes.
20159
20160 2001-10-04  Dick Porter  <dick@ximian.com>
20161
20162         * object.h: Add a synchronisation mutex struct to MonoObject
20163
20164         * object.c (mono_new_object): Initialise the object
20165         synchronisation mutexes
20166
20167         * icall.c: System.Threading.Monitor internal calls
20168         
20169         * threads-pthread.h:
20170         * threads-pthread.c: System.Threading.Monitor internal calls
20171
20172         * threads-types.h: New file, includes the system-specific thread
20173         structures
20174         
20175         * threads-pthread-types.h:
20176         * threads-pthread-types.c: New files, handle pthread-specific
20177         synchronisation types
20178
20179         * threads-dummy-types.h: 
20180         * threads-dummy-types.c: New files of dummy support for
20181         thread-specific types
20182
20183         * metadata.c:
20184         * image.c:
20185         * pedump.c: include mono-endian.h not endian.h
20186         
20187         * Makefile.am: More threads files.
20188         Name mono-endian.h not endian.h
20189
20190 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20191
20192         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20193         stuff and implement a few more bits.
20194         * icall.c: a field needs to be dereferenced twice. Do not use the same
20195         name for two variables in the same scope.
20196         * image.c, image.h: cleanups.
20197
20198 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20199
20200         * class.c (mono_class_metadata_init): bug fix: compute the right size
20201
20202 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20203
20204         * icall.c: implemented some of the Reflection internalcalls.
20205         * image.c, image.h: start writing out the PE/COFF image.
20206         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20207         that does the reverse than decode_blob_size ().
20208         * object.c: use mono_metadata_encode_value (). Move here
20209         temporary implementation of mono_string_to_utf8 ().
20210         * rawbuffer.c: make malloc_map static.
20211
20212 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20213
20214         * metadata.c: fix type comparison for arrays.
20215         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20216         Added a couple of new classes to monodefaults.
20217         * icall.c: added a couple of Reflection-related internalcalls.
20218         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20219         Added a byval_arg MonoType to MonoClass.
20220
20221 2001-09-28  Dick Porter  <dick@ximian.com>
20222
20223         * icall.c:
20224         * threads-pthread.h: 
20225         * threads-pthread.c: Implemented internal calls for
20226         LocalDataStoreSlot operations.  Applied mutexes around all shared
20227         data.  Reworked the thread creation and Start() operations to
20228         avoid a race condition.
20229         
20230         * threads-dummy.h:
20231         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20232
20233 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20234
20235         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20236
20237 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20238
20239         * class.c, loader.c: warn and return NULL instead of erroring out.
20240         * icall.c: added System.AppDomain::getCurDomain().
20241         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20242
20243 2001-09-25  Dick Porter  <dick@ximian.com>
20244
20245         * threads-pthread.h:
20246         * threads-pthread.c: Implemented timed thread joining and added
20247         System.Threading.Thread::Join_internal internal call
20248
20249         * icall.c: Added System.Threading.Thread::Join_internal internal call
20250
20251         * threads-dummy.h:
20252         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20253
20254 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20255
20256         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20257         mono_string_intern () to implement the semantics of the ldstr opcode
20258         and the interning of System.Strings.
20259         * icall.c: provide hooks to make String::IsIntern and String::Intern
20260         internalcalls.
20261
20262 2001-09-23  Dick Porter  <dick@ximian.com>
20263
20264         * threads-dummy.c: 
20265         * threads-dummy.h: New files of dummy threading routines
20266
20267         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20268         support code based on system specifics
20269
20270         Rename PTHREAD_LIBS to THREAD_LIBS
20271         
20272 2001-09-23  Dick Porter  <dick@ximian.com>
20273
20274         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20275         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20276         internal calls.
20277         (mono_thread_init): Set up a Thread object instance to return when
20278         the main thread calls Thread.CurrentThread
20279         (mono_thread_cleanup): Wait for all subthreads to exit
20280
20281         * icall.c: New internal calls for System.Threading.Thread::Sleep
20282         (including Schedule) and CurrentThread
20283
20284         * threads.h: New file, to insulate thread-specific stuff from the
20285         rest of the code
20286
20287 2001-09-21  Dick Porter  <dick@ximian.com>
20288
20289         * threads-pthread.h: 
20290         * threads-pthread.c: New file, for handling pthreads-style
20291         threading support.  Start() now starts a new thread and executes
20292         the ThreadStart delegate instance.
20293
20294         * icall.c: Added the internalcall for
20295         System.Threading.Thread::Start_internal
20296
20297         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20298
20299 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20300
20301         * loader.c: work around the different signatures for delegates
20302         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20303
20304 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20305
20306         * class.h, class.c: add mono_class_get_field_from_name ().
20307         * *: Fix C comments and other ANSI C issues.
20308
20309 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20310
20311         * endian.h, assembly.c: fix some endianness issues.
20312
20313 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20314
20315         * loader.h, load.c: add delegate_class to mono_defaults.
20316         Handle runtime provided methods in mono_get_method ().
20317
20318 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20319
20320         * loader.c (mono_get_method): use pinvoke for internal call
20321
20322         * icall.c: use pinvoke for internal call
20323
20324         * loader.c (method_from_memberref): set the method name
20325
20326 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20327
20328         * metadata.c: help the compiler generate better code for
20329         mono_class_from_mono_type ().
20330
20331 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20332
20333         * class.c (mono_class_metadata_init): delayed computing of the
20334         class size to mono_class_metadata_init ()
20335
20336 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20337
20338         * class.c, class.h: add an interfaces member to MonoClass.
20339         * image.c, image.h: add assembly_name field to MonoImage
20340         from the assembly table.
20341         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20342
20343 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20344
20345         * class.c: Handle Array in mono_class_from_mono_type ().
20346         * metadata.c, pedump.c: some endian fixes.
20347
20348 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20349
20350         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20351         * metadata.c: fix small problem introduced with the latest commit.
20352
20353 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20354
20355         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20356         We don't need a MonoMetadata pointer anymore to compare signatures in
20357         mono_metadata_signature_equal (), update callers.
20358         Reduced memory usage an number of allocations for MonoMethodHeader and
20359         MonoMethodSignature.
20360
20361 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20362
20363         * metadata.c: added compare for szarray.
20364
20365 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20366
20367         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20368         and add a couple more types to it and mono_defaults. Give an hint on
20369         classes that need implementing in our corlib and are referenced
20370         in mscorlib.
20371
20372 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20373
20374         * class.h, class.c: keep track if a class is also an Enum.
20375         * loader.c: Implement a couple more types for use in libffi
20376         marshalling. Gives better diagnostics when failing to dlopen
20377         a library. Set method->klass for P/Invoke methods, too.
20378
20379 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20380
20381         * class.c, class.h: add a MonoType this_arg to MonoClass that
20382         represents a pointer to an object of the class' type that
20383         can be used by the interpreter and later the type cache.
20384         Add best guess alignment info for valuetype objects.
20385
20386 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20387
20388         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20389         into MonoType: one less level of indirection and allocation and
20390         simplifies quite a bit of code. Added cache for MonoTypes that are
20391         used frequently, so that we don't need to allocate them all the time.
20392
20393 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20394
20395         * class.c (mono_class_create_from_typedef): System.Enum is also a
20396         value type, although it does not derive from System.ValueType
20397         (maybe a bug in the ms compiler?)
20398
20399         * metadata.c (mono_type_size): return the right size for value types
20400
20401         * loader.c (mono_get_method): only initialize method header if not abstract
20402
20403         * class.c (mono_class_from_mono_type): use mono_default values. 
20404
20405 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20406
20407         * *: use MonoClass pointers instead of <type_tokens>
20408         
20409         * class.h: new flag: metadata_inited.
20410
20411         * class.c (mono_class_metadata_init): impl.
20412         (mono_class_instance_size): impl.
20413         (mono_class_data_size): impl.
20414
20415 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20416
20417         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20418         MonoClass now has the name and name_space fields. 
20419         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20420         mono_get_method () takes and optional MonoClass as argument.
20421         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20422         instead that takes advantage of a map from class names to typedef
20423         tokens in MonoImage.
20424
20425 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20426
20427         * metadata.c: zero is not a valid alignment boundary.
20428         Merge MONO_TYPE_VOID in default decoding code.
20429
20430 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20431
20432         * image.h: merged MonoMetadata into MonoImage
20433
20434         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20435         identify the type of elements.
20436
20437 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20438
20439         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20440         * cil-coff.h: split MonoMSDOSHeader and add size info.
20441         * image.c: add some consistency checks.
20442         * metadata.c: fix row size computation: one programmer
20443         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20444         add explanation for the locator routine.
20445         Fix decoding of size in method header.
20446         
20447 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20448
20449         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20450         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20451         function from gnome-libs.  This uses the right path separator
20452         based on the OS, and also works around a bug in some systems where
20453         a double slash is not allowed. 
20454         (default_assembly_name_resolver): Use g_concat_dir_and_file
20455         (mono_assembly_open): ditto.
20456
20457 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20458
20459         * metadata.c (mono_metadata_signature_equal): impl.
20460
20461         * *: void is now a realy MonoType (instead of using NULL)
20462         
20463         * metadata.c (do_mono_metadata_parse_type): use
20464         mono_metadata_parse_type to parse void value.
20465
20466 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20467
20468         * metadata.c, metadata.h: in the signature and method header store
20469         only the space required for holding the loca vars and incoming arguments.
20470
20471 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20472
20473         * metadata.c (do_mono_metadata_parse_type): treat void like any
20474         other type (instead of assigning NULL);
20475
20476 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20477
20478         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20479
20480 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20481
20482         * image.c (do_mono_image_open): added a cache for arrays.
20483
20484 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20485
20486         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20487         decode a single column from a row in a metadata table and changes
20488         to take advantage of it in the typedef locator (gives a nice speed up).
20489         Store offset info for function params.
20490
20491 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20492
20493         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20494
20495 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20496
20497         * assembly.c: how could mono_assembly_close () had ever worked?
20498         * metadata.c, metadata.h: provide offset info for local vars.
20499         Implement mono_type_size () to take care of alignment as well
20500         as size (it was mono_field_type_size in cli/class.c before).
20501
20502 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20503
20504         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20505
20506         * assembly.h (CORLIB_NAME): set to corlib.dll
20507
20508         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20509
20510 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20511
20512         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20513         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20514         tokentype.h: massive namespace cleanup.
20515
20516 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20517
20518         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20519
20520 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20521
20522         * metadata.c (mono_metadata_free_type): added check for type !=
20523         NULL (void) before calling mono_metadata_free_type()
20524
20525 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20526
20527         * metadata.h, row_indexes.h: added header with enumerations to use
20528         to index in the columns from tables in metadata and to decode coded
20529         tokens: we should start using this instead of embedding magic numbers
20530         all over the code.
20531
20532 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20533
20534         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20535         Move metadata_t info from cli_image_info_t to MonoImage, where
20536         it's easily accessible. Changed all the uses accordingly.
20537         Added the method and class caches to MonoImage.
20538         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20539         and mono_metadata_decode_value () signature to be more consistent
20540         with the other parse functions (and simplify code). Taken advantage
20541         of zero-length array allocation with GCC. Removed reduntant (and
20542         wrong) MonoFieldType struct and use MonoParam instead. Changed
20543         mono_metadata_parse_field_type () to use common code for parsing.
20544         Added mono_metadata_typedef_from_field () and
20545         mono_metadata_typedef_from_method () to lookup a typedef index from a
20546         field or method token.
20547         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20548
20549 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20550
20551         * metadata.c (mono_metadata_parse_field_type): Implement. 
20552         (do_mono_metadata_parse_type): Split engine from
20553         mono_metadata_parse_type, so that we can create smaller structures
20554         for things that just have one pointer to the MonoType (look at
20555         the MonoFieldType)
20556
20557 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20558
20559         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20560         as Jan Gray found out, it is incorrect. 
20561
20562 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20563
20564         * assembly.c: Implement asssembly loading.  This loads an image
20565         and loads all the referenced assemblies.  Come to think of it, we
20566         could always do lazy loading of the assemblies. 
20567
20568         * image.c (mono_image_open): Keep loaded images in a hashtable.
20569
20570         * image.h (MonoImage): Add reference count.
20571
20572 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20573
20574         * assembly.c (mono_assembly_open): Keep track of the file name in
20575         case the assembly has no ASSEMBLY table.
20576
20577         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20578         from get.c here.
20579
20580 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20581
20582         * metadata.c, metadata.h: decode local vars in method header
20583         parse function. Change callers accordingly.
20584
20585 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20586
20587         * metadata.h, cil-coff.h: protect against multiple inclusion.
20588         Added some new structures to hold information decoded from metadata:
20589         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20590         and relevant decoding/free functions.
20591         * metadata.c: implement decoding functions. Add warning for out of bounds
20592         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20593         all the info about a method signature and invocation. Remove check on
20594         uninitialized local var in parse_mh() and fix memory leak.
20595
20596 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20597
20598         * metadata.h: More macros.
20599
20600         * tokentype.h: New file.
20601
20602 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20603
20604         * assembly.c: added a consistency check and initialize
20605         some structures with g_new0().
20606         * metadata.c: fixed a couple more bugs in table size computation
20607         and add other checks for out-of bound access to metadata.
20608
20609 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20610
20611         * metatada.c: fix bugs computing table sizes. Spew a
20612         warning when index in string heap is out of bounds.
20613
20614 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20615
20616         * metadata.h: Add a couple of macros to manipulate tokens. 
20617
20618 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20619
20620         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20621         cli_section_tables).
20622
20623 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20624
20625         * metadata.c (mono_metadata_user_string): New function, provides
20626         access to the UserString heap. 
20627
20628 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20629
20630         * metadata.c: Add inline documentation.
20631
20632 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20633
20634         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20635         files. 
20636
20637 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20638
20639         * typeattr.h: New file, TypeAttribute flags. 
20640
20641 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20642
20643         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20644         mono_assembly_ensure_section): Section loading code.
20645         (load_section_tables): Load the sections.
20646
20647         * mono/metadata/metadata.c (mono_metadata_locate_token,
20648         mono_metadata_locate): Functions to locate the information
20649         definition given a token or a table and an index.
20650         (mono_metadata_compute_table_bases): New.
20651         (compute_size): New function to compute the sizes of the various
20652         tables.
20653
20654         * mono/metadata/metadata.h: Finish listing the different index
20655         types. 
20656
20657         * mono/metadata/pedump.c: Improve to dump new information.
20658
20659 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20660
20661         * mono/metadata/metadata.c: Entered all the tables matching
20662         Beta2. 
20663
20664         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20665
20666
20667