2007-03-09 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
2
3         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
4         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
5         
6         Code is contributed under MIT/X11 license.
7         
8 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
9
10         * loader.c: Reapply patch for bug #79424.
11
12 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13
14         * metadata.c (mono_type_to_unmanaged): Only convert object to
15         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16
17 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
18
19         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
20         (and incorrectly set) is_reference field from MonoGenericInst.
21
22 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
23
24         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
25         a little earlier.
26
27         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
28
29         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
30
31 2007-03-05  Miguel de Icaza  <miguel@novell.com>
32
33         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
34         FileOptions.1 value to mean "temporary", map that to
35         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
36
37         Fixes 80688
38
39 2007-03-03  Marek Habersack  <mhabersack@novell.com>
40
41         * appdomain.c: implement MS .Net style shadow copying. Copies of
42         the assemblies are made in a subdirectory of the dynamic base
43         directory, the assembly names are preserved.
44         Copy .mdb and .config files along with the assemblies being shadowed.
45
46 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
47
48         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
49         (emit_marshal_handleref): Ditto.
50
51         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
52         on Visual C++. Fixes #80671.
53
54 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
55
56         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
57         for clone operations.
58
59 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
60
61         * marshal.c: Fix warnings.
62
63 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
64
65         * loader.c: allow case-insensitive matching of the dll name
66         in dllmap handling when prefixed with "i:".
67
68 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
69
70         * threads.c: Fix #ifdef for dummy_apc function for VS.
71
72 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
73
74         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
75
76 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
77         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
78         giving precedence to the methods with a fully qualified name
79         (InterfaceName.MethodName) when building the interface sections
80         of the vtable.
81
82 2007-02-16  Dick Porter  <dick@ximian.com>
83
84         * threadpool.c (append_job): Fix fast-path array handling, so it's
85         less likely the array will grow exponentially when the load is
86         heavy.
87
88 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
89
90         * metadata-internals.h, loader.c: fix dllmap lookup order
91         for non-function maps, too, and prepare for fallback code.
92
93 2007-02-12  Robert Jordan  <robertj@gmx.net>
94
95         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
96         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
97         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
98         GlobalFree. Fixes a part of bug #77075.
99
100 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
101
102         * loader.c: implemented typedef parent in field memberref.
103
104 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
105
106         * marshal.c: Fix warnings and remember to call Release on
107         IUnknown of RCW.
108         
109         Code is contributed under MIT/X11 license.
110
111 2007-02-10  Miguel de Icaza  <miguel@novell.com>
112
113         * class-internals.h: Add MonoHandleRef definition, and
114         handleref_class to mono_defaults. 
115
116         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
117         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
118
119         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
120         (do nothing on this stage)
121         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
122         (emit_marshal_handleref): New method, used for argument handling
123         of HandleRefs. 
124
125 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
126
127         * class.c (mono_class_setup_parent): Lazily init com types.
128         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
129         init com types.
130         * object.c (mono_remote_class_vtable): Lazily init com types.
131         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
132         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
133         * domain-internals.h: Expose mono_init_com_types.
134         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
135         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
136         Add support for COM Callable Wrapper marshalling.
137         * marshal.h: Add icall definitions.
138         * gc.c: Handle freeing of CCWs in finalizer code.
139         
140         Code is contributed under MIT/X11 license.
141
142 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
143
144         * reflection.c: changed all the signature encoding code to use
145         a variable-sized buffer.
146
147 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
148
149         * marshal.c: locking fixes: never take the loader lock
150         or other runtime locks when holding the marshal lock
151         (fixes bug#80664).
152
153 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
154
155         * marshal.c: make the delegate function pointer mapping
156         work for the moving GC.
157
158 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
159
160         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
161         for bug #80618.
162
163 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
164
165         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
166         gmodule.
167
168 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
169
170         * threadpool.c: made the code moving-GC safe.
171
172 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
173
174         * assembly.c, boehm-gc.c, class-internals.h, class.c,
175         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
176         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
177         warning cleanup.
178         * reflection.c: warning cleanup, some threading and moving GC fixes.
179
180 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
181
182         * class.c, loader.c: create the needed Set/Get/Address array methods
183         as well as the .ctors in mono_class_init (), fixes bug #80567.
184
185 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
186
187         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
188         we doesn't decrease its alignment. Should fix the sparc build.
189
190 2007-01-24  Dick Porter  <dick@ximian.com>
191
192         * socket-io.c
193         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
194         Create the returned object if we need to ignore an unsupported
195         socket option.  Fixes a segfault reported by Atsushi.
196
197 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
198
199         * class.c, object.c: restrict GC-tracked fields to
200         UIntPtr fields used inside corlib, so we provide better
201         type info to the GC and also allow broken packing as in
202         bug #80580.
203
204 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
205
206         * sgen-gc.c: removed duplicated function.
207
208 2007-01-19  Miguel de Icaza  <miguel@novell.com>
209
210         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
211         value that means that the value is not supported, but that we
212         should not return a failure, but instead report this as a
213         successful operation.
214
215 2007-01-19  Raja R Harinath  <rharinath@novell.com>
216
217         Fix tests/bug79956.2.il
218         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
219         (mono_generic_class_get_class): If the generic definition in an
220         enum, copy over other fields related to it.
221
222 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
223
224         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
225         genericinst enums (bug #79215).
226
227 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
228         * class.c: Fix bug 80307.
229
230 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
231
232         * image.c: if the file table is not present, try to load
233         all the modules, since we don't have info about them
234         having or not metadata (bug #80517).
235         * assembly.c: allow mono_assembly_load_references () to
236         work for netmodules.
237
238 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
239
240         * image.c, metadata-internals.h, object.c: execute module
241         cctors when running on the 2 runtime if present (bug #80487).
242
243 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
244
245         * icall.c: optimized InitializeArray() on bigendian.
246
247 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
248
249         * icall.c: fix for the broken ARM FPA double format.
250
251 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
252
253         * icall.c: handle endian issues for r4 and r8 types, too, in
254         the InitializeArray() icall.
255
256 2007-01-15  Miguel de Icaza  <miguel@novell.com>
257
258         * loader.c (mono_loader_error_prepare_exception): Clear the error
259         once we have extracted the information from it, do this before we
260         call into the JIT's class loading mechanisms.
261
262         * object.c (mono_class_create_runtime_vtable): Do not clear the
263         loader error before calling mono_class_get_exception_for_failure
264         as the loader error is needed inside
265         mono_class_get_exception_for_failure to throw the error (thinko).
266
267         Fixes #80521
268         
269 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
270
271         * reflection.c: align fields rva data so it's faster to load at
272         runtime.
273
274 2007-01-12  Raja R Harinath  <rharinath@novell.com>
275
276         Prepare to simplify GenericMethod handling.
277         * class-internals.h (mono_method_get_context): New accessor function.
278         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
279         rather than directly accessing '->context' field.
280
281         * class-internals.h (_MonoGenericParam.method): Move ...
282         (_MonoGenericContainer): ... here.  Add into union with klass field.
283         * class.c, icall.c, loader.c, metadata.c, reflection.c:
284         Update to changes.
285
286 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
287
288         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
289         the wrapper type enum and reduce relocations.
290
291 2007-01-12  Raja R Harinath  <rharinath@novell.com>
292
293         * reflection.c (inflate_mono_method): Reuse method instantiation
294         from the generic method, if available.
295
296 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
297
298         * marshal.c (emit_marshal_variant): Fix conv_arg
299         type in last commit, based on whether parameter is byref.
300         
301 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
302
303         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
304         marshalling.
305         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
306         MONO_TYPE_OBJECT back for VARIANT support.
307
308 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
309
310         * marshal.c, marshal.h, icall-def.h: Implement 
311         Marshal.ReAllocCoTaskMem.
312
313 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
314
315         * marshal.c: memory retention fixes: use the proper
316         image cache for runtime_invoke method lookups.
317
318 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
319
320         * mempool.c: added code to help debug mempool allocations.
321
322 2007-01-11  Dick Porter  <dick@ximian.com>
323
324         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
325         support (experimenting with faking it with IP_MTU_DISCOVER for
326         systems that don't have IP_DONTFRAGMENT.)
327         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
328         icall.
329
330         * icall-def.h: new System.Net.Sockets.Disconnect icall.
331
332         * socket-io.h: Add new fields to MonoSocketAsyncResult
333         corresponding to the new ones in Socket.cs.
334
335 2007-01-11  Raja R Harinath  <rharinath@novell.com>
336
337         Fix IronPython regression mentioned in #80249
338         * metadata.c (do_mono_metadata_parse_generic_class): Clear
339         'cached_context' field, since it may have been initialized as a
340         side-effect of metadata parsing.
341
342         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
343         (_MonoGenericClass.cached_class): Move here and rename from lone
344         remaining field of ...
345         (_MonoInflatedGenericClass): ... this.  Remove.
346         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
347         to changes.
348
349         Fix mcs/tests/test-128.cs regression.
350         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
351         2007-01-10 change below.
352         [MONO_TYPE_OBJECT]: Recurse into array case.
353
354 2007-01-11  Raja R Harinath  <harinath@gmail.com>
355
356         * class-internals.h (mono_get_inflated_generic_class): Remove.
357         * class.c (mono_get_inflated_generic_class): Remove.
358         (mono_generic_class_get_class): Rename from
359         mono_class_create_generic.
360         (mono_class_from_mono_type) [GENERICINST]: Use it.
361         * reflection.c, metadata.c: Update to changes.  Use
362         'mono_class_from_mono_type'.
363
364 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
365
366         * reflection.c: use passed type when encoding an array element
367         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
368
369 2007-01-09  Robert Jordan  <robertj@gmx.net>
370
371         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
372         result arguments (someDelegate.EndInvoke (unrelatedAres)).
373         Fixes bug #80392.
374
375 2007-01-09  Raja R Harinath  <rharinath@novell.com>
376
377         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
378
379         * object.c (set_value): Avoid aliasing between type->data.klass
380         and type->data.generic_class.
381
382         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
383
384 2007-01-08  Raja R Harinath  <rharinath@novell.com>
385
386         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
387         between type->data.klass and type->data.generic_class.
388
389 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
390
391         * marshal.c: In MS.NET, StringBuilder objects are not copied by
392         value in out parameters.
393
394 2007-01-08  Raja R Harinath  <rharinath@novell.com>
395
396         Simplify invariant for MonoGenericClass::klass field.
397         * class.c (mono_class_create_generic): Verify 'klass' is null.
398         * metadata.c (do_mono_metadata_parse_generic_class): Don't
399         initialize 'klass' field.
400
401 2007-01-05  Raja R Harinath  <rharinath@novell.com>
402
403         Ongoing work to avoid redundant data and simplify invariants.
404         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
405         'generic_class', and change type to a GenericInst.
406         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
407         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
408
409 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
410
411         * class.c : skip io-layer under PLATFORM_WIN32.
412
413 2007-01-03  Tor Lillqvist  <tml@novell.com>
414
415         Fix #80305: In a bundled executable, look in the bundled exe
416         assembly to determine the runtime version. Add the possibility to
417         bundle also the machine.config file.
418         
419         * assembly.c (mono_assembly_open_from_bundle): Make
420         non-static. Allow being called even if we have no bundled
421         assemblies, and return NULL right away in that case.
422
423         * domain-internals.h: Declare mono_assembly_open_from_bundle()
424         here.
425
426         * domain.c (app_config_parse): Take an assembly exe file name as
427         parameter instead of a config file name. Check for a bundled
428         config file for that assembly by calling
429         mono_config_string_for_assembly_file() (see below) before looking
430         for one in the file system.
431         (get_runtimes_from_exe): Corrsponding change to call of
432         app_config_parse().
433         (get_runtimes_from_exe): Check for bundled assembly exe file first
434         by calling mono_assembly_open_from_bundle(). If no bundled
435         assembly exe file is found, call mono_image_open() as before to
436         look it up in the file system.
437
438         * mono-config.c: Add variable bundled_machinec_onfig.
439         (mono_config_string_for_assembly_file): New function.
440         (mono_config_for_assembly): Move code snippet that looks for a
441         bundled assembly .config file into the above new function. Call
442         it.
443         (mono_register_machine_config, mono_get_machine_config): New
444         functions to set and retrieve
445
446         * assembly.h: Declare mono_register_machine_config().
447
448         * mono-config.h: Declare mono_get_machine_config() and
449         mono_config_string_for_assembly_file().
450
451         * icall.c: No declaration of environ necessary on Win32. It is
452         declared (as a macro expanding to a function call) in stdlib.h.
453         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
454         New internal mono function. Returns the value of
455         mono_get_machine_config() as a Mono string.
456
457         * icall-def.h: Add get_bundled_machine_config().
458
459 2007-01-04  Raja R Harinath  <rharinath@novell.com>
460
461         Remove redundant field
462         * class-internals.h (_MonoGenericContext.container): Remove field.
463         * loader.c (mono_method_get_signature_full): Don't parse a
464         "container" for a signature parse when the signature is inflated
465         immediately.
466         (method_from_methodspec): Likewise, for a generic_inst.
467         * class.c, metadata.c, reflection.c: Update to changes.
468
469 2006-01-04  Raja R Harinath  <rharinath@novell.com>
470
471         * class-internals.h (_MonoGenericClass): Rename 'context' field to
472         'cached_context', and change semantics -- it starts off NULL, and
473         is initialized on demand.
474         * class.c (mono_generic_class_get_context): New accessor to
475         replace 'context' field accesses.
476         (mono_class_get_context): New helper.
477         (*): Update to changes.
478         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
479
480 2007-01-03  Miguel de Icaza  <miguel@novell.com>
481
482         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
483         before the memcpy.   Fixes Marshal2 regression.
484
485 2007-01-02  Jb Evain  <jbevain@gmail.com>
486
487         * blob.h: add a MONO_TYPE_ENUM definition
488         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
489         fix the encoding of arrays of enums in custom attributes.
490
491         Fixes #79666.
492
493 2007-01-01  Miguel de Icaza  <miguel@novell.com>
494
495         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
496         string is null terminated, but only cut the string short if it
497         overflows the buffer.   
498         
499         (mono_string_to_byvalstr): Also fix this routine.   The code here
500         was not properly terminating a string (it was only terminated
501         because of the previous catch-all memset). 
502
503         I left the memset, because I do not know if applications expect
504         the runtime to clear this region. 
505
506         Fixes #79944.
507
508         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
509         Clear the error before returning to unmanaged code to prevent the
510         runtime from being confused later on (fixes  80420).
511         (ves_icall_type_from_name): Always call mono_loader_clear_error
512         after parsing a type that could have failed.
513         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
514
515         * loader.c (mono_loader_clear_error): Fix indentation.
516
517 2006-12-28  Martin Baulig  <martin@ximian.com>
518
519         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
520
521 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
522
523         * reflection.c: patch from Rolf Bjarne Kvinge to fix
524         getting a token for an EnumBuilder.
525
526 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
527
528         * reflection.c: be more careful in case resource generation
529         fails to create the data array.
530
531 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
532
533         * sgen-gc.c: write barrier for clone and fix unregister handles.
534
535 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
536
537         * reflection.c: some fixes needed in the generics code for the moving GC.
538
539 2006-12-22  Robert Jordan  <robertj@gmx.net>
540
541         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
542         account. Fixes bug #80299.
543
544 2006-12-21  Raja R Harinath  <rharinath@novell.com>
545
546         Fix WaitHandle usage in delegates.
547         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
548         * object.c (mono_wait_handle_new): Use the property set method to
549         initialize the handle.
550         (mono_wait_handle_get_handle): New.
551         * threadpool.c (mono_async_invoke): Use it.
552         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
553         Likewise.
554         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
555
556 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
557
558         * marshal.c (emit_marshal): Call emit_marshal_variant and
559         emit_marshal_com_interface when applicable.
560         (emit_marshal_variant, emit_marshal_com_interface): Add
561         methods for this case and remove if's from emit_marshal_object.
562         
563 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
564
565         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
566
567 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
568
569         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
570         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
571         and GlobalFree on Windows. Remove FIXME.
572
573 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
574
575         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
576         implementation for managed objects.
577
578 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
579
580         * object.c: implemented code to be used for checking
581         that no reference field overlaps with non-references.
582
583 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
584
585         * threadpool.c: fix queue code to be compatible with the
586         moving GC.
587
588 2006-12-18  Miguel de Icaza  <miguel@novell.com>
589
590         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
591         in structures by throwing ArgumentNullException.
592
593         (emit_marshal_safehandle): Also when they are null parameters.
594
595         (emit_marshal_safehandle): Add support for ref
596         SafeHandles parameters
597
598 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
599
600         * profiler.c: updated to use the mono-dl API instead of
601         gmodule.
602
603 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
604
605         * profiler.c: updated to use the mono-dl dynamic loading
606         API instead of gmodule.
607
608 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
609
610         * profiler.c: use readlink, older versions of glib don't have
611         g_file_read_link ().
612
613 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
614
615         * profiler.c: try to detect the path to mono if libc fails to provide
616         a useful name (bug #80286).
617
618 2006-12-16  Raja R Harinath  <rharinath@novell.com>
619
620         Fix #80242
621         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
622         instance, use the generic type definition instead.
623         (ves_icall_Type_GetNestedTypes): Likewise.
624         * class.c (mono_class_create_generic): Always set the
625         nested_classes of a generic instance to NULL, even if the generic
626         type definition has nested types.
627
628 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
629
630         * marshal.c (mono_string_from_bstr): Revert previous Windows change
631         and fix on Linux.
632         
633 2006-12-15  Miguel de Icaza  <miguel@novell.com>
634
635         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
636         my arguments were in the wrong order.   I also fixed the Windows
637         version which seems to have had the same issue.
638
639         (mono_free_bstr): On Unix, this is g_free.
640         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
641         conversions (for the tests in corlib to pass).
642
643 2006-12-14  Miguel de Icaza  <miguel@novell.com>
644
645         * marshal.c (emit_ptr_to_object_conv): For now, ignore
646         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
647         exception if a ref SafeHandle in a struct has changed).
648         
649         (emit_struct_conv): Do not perform layout checks for classes
650         derived from SafeHandle, as those are specially handled. 
651
652         (emit_object_to_ptr_conv): Add support for
653         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
654
655         (emit_marshal_safehandle): Implement conversion of return values
656         of safehandles (MARSHAL_ACTION_CONV_RESULT).
657         
658         * threads.c: WaitHandle now is compiled with two different handles
659         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
660         for 2.0.
661         
662         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
663         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
664         these routines to cope with both kinds of fields.
665
666 2006-12-12  Miguel de Icaza  <miguel@novell.com>
667
668         * metadata.c (mono_type_to_unmanaged): Handle the case where
669         type->data.klass is a SafeHandle, and in that case, return the
670         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
671         MONO_MARSHAL_CONV_SAFEHANDLE. 
672
673 2006-12-11  Miguel de Icaza  <miguel@novell.com>
674
675         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
676         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
677         calling emit_marshal_object.
678
679         (emit_marshal_safehandle): Implement marshalling of
680         SafeHandle parameters (no ref support yet).
681
682         (MarshalAction): Document the defines as I implement
683         them for SafeHandle.
684
685         (emit_marshal_object): indentation police.
686
687         * class-internals.h: Define MonoSafeHandle.
688         Add safehandle_class to MonoDefaults type.
689
690         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
691         list of classes to check for fields. 
692
693         * domain.c (mono_init_internal): Add SafeHandle to the list of
694         mono_defaults loaded.
695
696 2006-12-15  Raja R Harinath  <rharinath@novell.com>
697
698         Fix #80253
699         * reflection.c (mono_reflection_bind_generic_parameters): If the
700         generic type definition is a type builder, ensure that it is fully
701         initialized before instantiating it.  Kill some dead code.
702
703 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
704
705         * object.c: clear the loader_error () before loading
706         more metadata stuff (bug #80258).
707
708 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
709
710         * icall.c, icall-defs.h: type modifiers icalls for
711         parameters and properties.
712
713 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
714
715         * object.c, icall.c: fixed warnings.
716
717 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
718
719         * marshal.c: fixed a couple of leaks and coding style in a few places.
720
721 2006-12-08  Dick Porter  <dick@ximian.com>
722
723         * process.c: Cope with NULL ProcessStartInfo arguments on windows
724         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
725         80173.
726
727 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
728
729         * process.c: ProcessStartInfo may have only filename set and
730         arguments can be NULL.
731
732 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
733
734         * icall.c: fix leak found by Robert Jordan.
735
736 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
737
738         * marshal.c, marshal.h: generate managed method to access an element
739         of a multi-dimensional array.
740
741 2006-11-30  Paolo Molaro (lupus@ximian.com)
742
743         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
744
745 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
746
747         * icall.c: back out GetFields () fix until the serialization code is
748         fixed to not depend on the incorrect behaviour.
749
750 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
751
752         * profiler.c: provide defaults if none are set.
753
754 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
755
756         * Makefile.am, attrdefs.h: new public header file with
757         constants for attributes for use by embedders.
758
759 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
760
761         * icall.c: GetFields () fix for bug #80064.
762
763 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
764
765         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
766         removed long unused icalls.
767
768 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
769   
770         * marshal.c: 
771                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
772                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
773                 can be generated without a delegate class.
774                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
775         
776         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
777
778 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
779
780         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
781         #80069.
782
783 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
784
785         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
786         icall-def.h: added icalls needed by System.GC.
787
788 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
789
790         * loader.c: ensure the class in catch clauses is handled
791         correctly for generics methods (fixes bug#79980).
792
793 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
794
795         * monitor.h, monitor.c: added mono_locks_dump () function
796         to help debug deadlocks involving managed locks.
797
798 2006-11-13  Dick Porter  <dick@ximian.com>
799
800         * file-io.c (get_file_attributes): If the file is a symlink try
801         and get the stat data for the target, but also add the
802         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
803         the specs for the windows symlink support, but will probably have
804         to be reworked when I have test data from a vista machine.  Fixes
805         bug 79887.
806
807 2006-11-13  Dick Porter  <dick@ximian.com>
808
809         * gc.c (mono_domain_finalize): 
810         * marshal.c (mono_delegate_begin_invoke): 
811         * threadpool.c (socket_io_init, mono_thread_pool_init)
812         (mono_thread_pool_finish): 
813         * monitor.c (mono_monitor_try_enter_internal): 
814         * threads.c (mono_thread_resume, mono_thread_init)
815         (mono_thread_suspend_all_other_threads)
816         (mono_thread_execute_interruption): 
817         * appdomain.c (mono_domain_unload): Check for NULL error returns
818         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
819         75733.
820
821 2006-11-11  Miguel de Icaza  <miguel@novell.com>
822
823         * process.c
824         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
825         Only close the handle if the value of the handle is not
826         INVALID_HANDLE_VALUE.  This just makes the process a bit more
827         robust.
828
829         Improvement for #75733, so that we do not run into this problem. 
830
831         
832         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
833         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
834         internal variables.  Fixes #79462 
835         
836
837 2006-11-09  Dick Porter  <dick@ximian.com>
838
839         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
840         Use poll() not select().  Fixes bug 79397.
841
842 2006-11-09  Raja R Harinath  <rharinath@novell.com>
843
844         Fix #79872
845         * assembly.c (mono_assembly_load_from_full): Check that the given
846         image has an assembly manifest.
847
848 2006-11-09  Ankit Jain  <jankit@novell.com>
849
850         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
851         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
852         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
853
854 2006-11-07  Dick Porter  <dick@ximian.com>
855
856         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
857         Put the old resolver behaviour back for pre-2.0 profiles.
858
859 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
860
861         * threadpool.c: precise GC and locking fixes.
862
863 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
864
865         * class.c: don't load types that have an explicit unaligned
866         managed reference. Provide better info in the TypeLoad exception.
867         Part of the fix for bug #79744.
868         * object.c: use the correct check for class type load issues.
869
870 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
871
872         * class.c: enforce alignment of fields with managed references
873         even when Pack=1 is forced by the user (bug #77788).
874
875 2006-11-03  Dick Porter  <dick@ximian.com>
876
877         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
878         If the address reverse lookup fails, return it as the hostname
879         anyway.  Fixes bug 79721.
880
881 2006-11-03  Dick Porter  <dick@ximian.com>
882
883         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
884         Fix build on Windows.
885
886 2006-11-02  Dick Porter  <dick@ximian.com>
887
888         * icall-def.h: 
889         * object-internals.h: 
890         * exception.c (mono_get_exception_thread_interrupted): 
891         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
892         Fixes bug 74525.
893
894         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
895         Check for pending Thread.Interrupt.
896
897 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
898         * loader.c: Fixed bug 79684.
899
900 2006-10-27  Dick Porter  <dick@ximian.com>
901
902         * file-io.c (get_file_attributes): Force symlinks to directories
903         to be returned as a regular file.  Fixes bug 79733.
904 2006-10-26  Dick Porter  <dick@ximian.com>
905
906         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
907         CreateFile to open a directory then we need to set the
908         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
909
910 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
911
912         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
913         friends.
914
915 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
916
917         * sgengc.c: small cleanup of timer code.
918
919 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
920
921         * sgen-gc.c: fix some warnings and start adding support for
922         complete object removal on domain unload.
923
924 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
925
926         * assembly.c: build_assembly_name should not consider a version
927         number without build or revision number invalid. Fixes bug #79715.
928
929 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
930
931         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
932         call kernel32 function OutputDebugString directly.
933         
934         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
935         
936 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
937
938         * reflection.c: small cleanup, using a function to insert a MonoString
939         in the string heap.
940
941 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
942
943         * reflection.c: moving GC fixes.
944
945 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
946
947         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
948         all the objects with finalizers belonging to an unloading appdomain.
949
950 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
951
952         * sgen-gc.c: added ability to allocate even when the nursery is fully
953         pinned and fixed a couple of bugs.
954
955 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
956
957         * threads.h: Revert the last change for now.
958
959         * threads.h (mono_thread_get_pending_exception): Rename this to
960         mono_thread_get_undeniable_exception ().
961
962 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
963
964         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
965         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
966         when fname does not refer to valid assembly. This result in a more
967         meaningful error message.
968         * exception.c: added mono_get_exception_bad_image_format2 which 
969         constructs a BadImageFormatException using the ctor taking a custom
970         message and the file name. Passing in a NULL msg results in a default
971         message.
972         * exception.h: define mono_get_exception_bad_image_format2 function.
973         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
974         when file name pointed to an invalid IL image. Use 
975         mono_get_exception_file_not_found2 to construct FileNotFoundException,
976         as this results in a more meaningful error message.
977
978 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
979
980         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
981         #79465.
982
983 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
984
985         * metadata.c (mono_type_size): Change the align parameter to guint32 for
986         consistency with the other _size functions.
987         (mono_type_stack_size): Ditto.
988
989         * class.c object.c icall.c: Fix warnings caused by the above change.
990
991         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
992
993         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
994
995         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
996
997 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
998
999         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1000         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1001         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1002         threadpool.h, threads-types.h: mark more internal functions.
1003
1004 2006-10-11  Dick Porter  <dick@ximian.com>
1005
1006         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1007         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1008         reproduce the bug even before applying the fix.)
1009
1010 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1011
1012         * reflection.c: allow retrieving attributes for arguments in generic
1013         methods (bug #79241).
1014
1015 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1016
1017         * debug-mono-symfile.c: properly check fopen () result (found by
1018         coverity).
1019
1020 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1021
1022         * reflection.c: make error message clearer and fixed two
1023         issuelets found by Coverity.
1024
1025 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1028
1029 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1030
1031         * object-internals.h, gc-internal.h, profiler-private.h:
1032         mark internal functions.
1033
1034 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1035
1036         * reflection.c: put data in the text section.
1037         * icall.c: recognize more types in type_from_typename ().
1038         * process.c, marshal.c: added some GC FIXMEs.
1039
1040 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1041
1042         * loader.c: check for NULL before initializing.
1043
1044 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1045
1046         * gc.c (finalizer_thread): Use a non-alertable wait here.
1047
1048         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1049         until the correct solution is found.
1050
1051 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1052
1053         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1054         modules with no metadata. Fixes #79596.
1055
1056         * image.c (load_metadata_ptrs): Put back the error message when
1057         the #- heap is encountered since the support is not complete yet.
1058
1059 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1060
1061         * gc.c: do not allow the user to SuppressFinalize () a
1062         delegate because it would leak the trampoline if present.
1063
1064 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1065
1066         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1067         PropertyPtr table.
1068
1069 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1070
1071         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1072
1073         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1074
1075         * row-indexes.h: Add definitions for *Ptr tables.
1076
1077         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1078
1079         * metadata.c (mono_metadata_translate_token_index): New helper function to
1080         translate table indexes used in uncompressed metadata.
1081         (mono_metadata_decode_table_row): Ditto.
1082         (mono_metadata_decode_table_row_col): Ditto.
1083
1084         * metadata.c: Add table schema for *Ptr tables.
1085
1086         * class.c loader.c: Use the new helper function to access the affected metadata
1087         tables.
1088         
1089         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1090         #38532.
1091         
1092 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1093
1094         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1095         sequences which can be unbounded in size. Fixes #79583.
1096
1097 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1098
1099         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1100         static initialization.
1101
1102         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1103
1104         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1105
1106         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1107
1108         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1109         ctor fails, i.e. throw the same exception on subsequent accesses.
1110         
1111 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1112
1113         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1114         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1115         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1116         Handle marshalling of interfaces and VARIANTs contained in structs.
1117         
1118         Code is contributed under MIT/X11 license.
1119         
1120 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1121
1122         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1123         
1124         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1125         mempool.
1126
1127 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1128
1129         * console-io.c: ignore previous SIGINT handler.
1130
1131 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1132
1133         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1134         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1135         #79460, #79461, #79485.
1136
1137         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1138
1139         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1140         #79217.
1141
1142 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1143
1144         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1145         could be generated from it.
1146
1147 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1148
1149         * rand.c: fix read loop to correctly handle EINTR.
1150
1151 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1152
1153         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1154         internal calls are defined to keep methods closer to the declaring
1155         type and allow a significant reduction in runtime relocations and
1156         memory usage.
1157
1158 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1159
1160         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1161         exception message to have FileNotFoundException use the default
1162         assembly load error message. Fixes bug #79426.
1163         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1164
1165 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1166
1167         * threadpool.c: (start_thread_or_queue) use the root domain when
1168         creating the thread instead of the async object one.
1169
1170 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1171
1172         * class.c, object.c, class-internals.h, reflection.c:
1173         for arrays, store element_size inside MonoClass (speedup
1174         for array object creation).
1175
1176 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1177
1178         * icall.c: fixed CodeBase to use the file name and not the module
1179         name (bug #79365).
1180
1181 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1182
1183         * mono-debug.c, mono-debug.h: export find_method as
1184         mono_debug_find_method ().
1185
1186 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1187
1188         * debug-helpers.c, class-internals.h: added a few functions useful
1189         when debugging under gdb.
1190
1191 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1192
1193         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1194         characters that need special handling.
1195
1196 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1197
1198         * mono-config.c: make the os/cpu specification more flexible,
1199         allowing lists and negation.
1200
1201 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1202
1203         * marshal.c: COM Interop fixes. Handle case where method->klass.
1204         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1205         calling convention on non-windows platforms. This is for
1206         compatibility with XPCOM and MainWin COM.
1207         
1208         Code is contributed under MIT/X11 license.
1209         
1210
1211 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1212
1213         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1214         correctly. Fixes #79217.
1215
1216         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1217
1218 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1219
1220         * mono-config.c: allow both an os and cpu attribute for dllmap
1221         and dllentry elemnets to enable a single config file to be used
1222         for multiple architectures.
1223
1224 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1225
1226         * loader.c: MonoLoaderError was cleared too soon on load failure.
1227         Fixes bug #79424.
1228
1229 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1230
1231         * icall.c: use the defining class vtable when accessing a
1232         static field, not a pobblibly derived class.
1233
1234 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1235
1236         * icall.c string-icalls.c: Remove references to unicode.h.
1237
1238         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1239
1240         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1241
1242         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1243         indicating the image where custom marshaller types should be looked up.
1244         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1245         custom marshallers, instead of corlib. Fixes #79425.
1246
1247 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1250
1251 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1252
1253         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1254         Implement Environment.ProcessorCount.
1255         
1256         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1257         Implement Environment.ProcessorCount.
1258         
1259         * icall.c: 
1260         Add Environment.ProcessorCount icall.
1261         
1262         Patch by Jason McFall.
1263
1264 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1265
1266         * assembly.c: don't append .exe/.dll when the filename already contains
1267         one of those extensions.
1268
1269 2006-09-12  Martin Baulig  <martin@ximian.com>
1270
1271         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1272         to array interfaces.
1273
1274 2006-09-11  Martin Baulig  <martin@ximian.com>
1275
1276         * reflection.c (mono_image_build_metadata): Create the
1277         MethodImpl's after emitting all types and methods, so we don't
1278         need another fixup pass for them.
1279
1280 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1281
1282         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1283         change.
1284
1285 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1286
1287         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1288         unload.
1289
1290 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1291
1292         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1293         args is not set. Fixes #78926.
1294
1295 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1296
1297         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1298
1299         * image.c (load_class_names): Move this to class.c, and rename it to 
1300         'mono_image_init_name_cache'.
1301         (load_modules): Fix a warning.
1302
1303         * class.c icall.c image.c: Initialize image->name_cache lazily.
1304
1305         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1306         on its name using information in the AOT file.
1307
1308         * class.c (mono_class_from_name): Use the new hook function.
1309
1310 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1311
1312         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1313         correctly.
1314
1315         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1316         Fixes #79289.
1317         
1318 2006-09-06  Martin Baulig  <martin@ximian.com>
1319
1320         * icall.c (mono_lookup_internal_call): Small fix.
1321
1322 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1323
1324         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1325         double g_free.
1326
1327 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1328
1329         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1330         when --debug is specified.
1331
1332 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1333
1334         * class.c (setup_generic_array_ifaces): Fix a warning.
1335
1336 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1337
1338         * Temporarily remove the patch to assemly.c that checks the
1339         assembly versions as it breaks our gacutil.
1340
1341 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1342
1343         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1344
1345         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1346         a net 1.0 runtime.
1347
1348         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1349         created using the default ctor. Fixes #79152.
1350         (mono_string_builder_to_utf16): Ditto.
1351
1352 2006-09-01  Martin Baulig  <martin@ximian.com>
1353
1354         Fix handling of the generic array interfaces.
1355
1356         * class-internals.h
1357         (MonoDefaults): Removed `generic_array_class' and added
1358         `generic_ilist' class.
1359
1360         * class.c
1361         (mono_bounded_array_class_get): Add the new generic array interfaces.
1362         (setup_generic_array_ifaces): New static method; create vtable
1363         entries for each method in the generic array interfaces.
1364
1365         * metadata.c
1366         (select_container): Allow "parent-less" generic methods.
1367
1368         * marshal.c
1369         (mono_marshal_get_generic_array_helper): New public method.
1370
1371         * icall.c
1372         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1373         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1374         moved the interncall into System.Array.
1375
1376 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1377
1378         A few more cases of avoiding work on types with ->byref set.
1379         Has the real fix for #79238
1380         * icall.c (is_generic_parameter): New helper.
1381         (ves_icall_Type_GetGenericParameterPosition): Use it.
1382         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1383         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1384         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1385         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1386         reference types.
1387         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1388         reference types.
1389         (ves_icall_Type_get_IsGenericInstance): Likewise.
1390         (ves_icall_Type_get_IsGenericType): Likewise.
1391
1392 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1393
1394         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1395         class if possible.
1396
1397         * mempool.h (mono_mempool_get_allocated): New helper function.
1398
1399         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1400         change.
1401
1402         * mempool.c: Fix warnings and the calculation of stats.
1403
1404         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1405
1406         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1407
1408         * loader.c (mono_get_method_from_token): Update method_count stat.
1409
1410         * class-internals.h (MonoStats): Add some stats.
1411
1412 2006-08-31 Robert Jordan  <robertj@gmx.net>
1413
1414         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1415         with managed variants.
1416         All code is contributed under the MIT/X11 license.
1417         
1418 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1419
1420         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1421         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1422
1423         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1424
1425         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1426         with cycles in classes.
1427
1428         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1429
1430         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1431         missing a [MarshalAs] directive. Fixes #79203.
1432
1433         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1434         klass->marshal_info. Fixes #79217.
1435
1436 2006-08-30  Martin Baulig  <martin@ximian.com>
1437
1438         Committing a patch from Joachim Ante <joe@otee.dk>:
1439         Add support for binary data symbol stores.
1440
1441         * debug-mono-symfile.c
1442         (mono_debug_open_mono_symbol_file): Renamed into
1443         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1444         arguments.
1445
1446         * mono-debug.c
1447         (mono_debug_open_image): Added `raw_contents' and `size' args.
1448         (mono_debug_init_2_memory): New public function.
1449
1450 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1451
1452         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1453
1454 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1455
1456         * appdomain.c: implement support for ShadowCopyFiles.
1457
1458 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1459
1460         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1461         when value is NULL (and should remove CID #51).
1462
1463 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1464
1465         * image.c: moved 2 functions to ../utils.
1466
1467 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1468
1469         * gc.c: cope with the target object of a GC handle being NULL
1470         (bug #78877).
1471
1472 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1473
1474         * class.c: recursively check parent's explicit implementations
1475         of interface methods (fixes bug #79125).
1476
1477 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1478
1479         * filewatcher.c: Avoid warnings when building, do not redefine
1480         constants that are defined.
1481
1482         Remove warnings.
1483
1484 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1485
1486         * image.c: don't fail when the link points to an absolute path.
1487
1488 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1489
1490         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1491         Fix CID #3.
1492
1493 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1494
1495         * image.c (full_path): A new method used to obtain the actual path
1496         of an assembly even in the presence of symbolic links.  
1497
1498         This is necessary for the case where we are running a binary that
1499         has been GACed, but we are using the "published" path name
1500         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1501         file in the GAC.
1502
1503         This was the source of the failure for the `xsp' command with the
1504         recent AppDomain changes, as far as the runtime was concerned,
1505         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1506         $prefix/mono/gac/blah/version/blah.exe.
1507
1508         (do_mono_image_open): use full path
1509
1510 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1511
1512         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1513
1514 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1515
1516         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1517         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1518
1519 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1520
1521         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1522         small structures. Fixes #78990.
1523
1524 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1525
1526         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1527
1528         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1529
1530 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1531
1532         * appdomain.c:
1533         * marshal.c: don't load all the assemblies from a domain into newly
1534         created ones. The new domains might have different rules and load
1535         assemblies from different locations. Fixes bug #76757.
1536
1537         Patch by Lluis. Conflicts resolved by Brian Crowell.
1538
1539 2006-08-16  Alp Toker  <alp@atoker.com>
1540
1541         * socket-io.c: First half of the fix for #79084.
1542         Set sa_size to the length of the content, not that of the struct.
1543         Don't add NULL suffix to the content, this should be done in
1544         managed code if needed.
1545
1546 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1547
1548         Fix part of #79012
1549         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1550         mono_metadata_parse_type returns NULL.
1551
1552 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1553
1554         * normalization-tables.h : new file for string normalization data.
1555         * locales.c, locales.h, icall.c :
1556           added load_normalization_resource() for string normalization,
1557           and icall as well.
1558         * Makefile.am : added normalization-tables.h to the sources.
1559
1560 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1561
1562         * marshal.c: Add more helper functions to reduce code duplication and use them
1563         everywhere.
1564
1565 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1566
1567         * marshal.c: Fix non-x86 stdcall warnings.
1568         
1569         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1570         them everywhere.
1571
1572 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1573
1574         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1575         type check on multi-dimensional arrays. Fixes #79000.
1576
1577 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1578
1579         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1580         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1581         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1582         * class-internals.h: add is_com_object to class structure.
1583         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1584         null checks to COM object marshalling. Fix .ctor call on RCW.
1585         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1586         
1587         All code is contributed under the MIT/X11 license.
1588
1589 2006-08-09  Dick Porter  <dick@ximian.com>
1590
1591         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1592         racing mono_monitor_allocator_lock() somewhere, so don't delete
1593         the critical section for now.  Found by running and exiting
1594         monodevelop.
1595
1596 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1597
1598         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1599         (ves_icall_System_ComObject_FindInterface): Ditto.
1600         (ves_icall_System_ComObject_CacheInterface): Ditto.
1601
1602         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1603         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1604
1605 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1606
1607         * threadpool.c: treat pipes from process asynchronous reads as sockets
1608         when reading from them, so we get select/poll or epoll to wait for
1609         data.
1610
1611 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1612
1613         * loader.c: Fix a typo (CID #233) in the null check.
1614
1615 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1618         Hopefully fixes #78949.
1619         
1620         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1621         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1622         bytes. Fixes #78972.
1623
1624 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1625
1626         * filewatcher.c: we need to set errno here.
1627
1628 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1629
1630         * filewatcher.c: let Win32Exception get the error value.
1631
1632 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1633
1634         * filewatcher.c: translate errno into win32 errors for Win32Exception
1635         to know what happened.
1636
1637 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1638
1639         * threadpool.c: Fix more warnings.
1640
1641         * assembly.c (search_loaded): Fix warnings.
1642
1643         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1644         (mono_async_invoke): Ditto.
1645
1646 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1647
1648         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1649         entries for __ComObject type in addition to ComImport types.
1650         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1651         about hash table.
1652         
1653         All code is contributed under the MIT/X11 license.
1654
1655 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1656
1657         * image.c: avoid tentative loading of modulerefs that contain
1658         no metadata (P/Invoke library names).
1659
1660 2006-07-28  Dick Porter  <dick@ximian.com>
1661
1662         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1663         mono_loader_lock() somewhere, so don't delete the critical section
1664         for now.  Found by running and exiting monodevelop.
1665
1666 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1667
1668         * filewatcher.c: define the inotify syscalls when we're building on
1669         linux and have sys/syscall.h. The build system might not have support
1670         for inotify but the target system might have it.
1671
1672 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1673
1674         * domain.c: Documentation updates.
1675
1676         * loader.c (mono_free_method): Do not release the method
1677         information if we are being profiled, as profilers will use this
1678         information at shut down to present some data to the user.
1679
1680         This is needed so that the profiler does not crash, as the
1681         profiler tends to keep MonoMethods around, and they might become
1682         invalid if we free these.
1683
1684         (mono_get_method_constrained): Return the original CIL stream
1685         method as well, so verification can be performed against it.
1686
1687 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1688
1689         * filewatcher.[ch]: support for inotify file system watcher.
1690         * icall.c: add new internal calls for the inotify file system watcher.
1691
1692 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1693
1694         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1695         #78888.
1696
1697 2006-07-20  Dick Porter  <dick@ximian.com>
1698
1699         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1700         warning.
1701
1702 2006-07-20  Dick Porter  <dick@ximian.com>
1703
1704         * threads.c (start_wrapper): Do the thread cleanup while we still
1705         hold a reference to its object.  Fixes bug 78123.
1706
1707 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1708
1709         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1710         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1711           "managed-to-managed".
1712         * icall.c: Redirect string constructors that take sbyte* to
1713           ves_icall_System_String_ctor_RedirectToCreateString.
1714         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1715           to CreateString () methods with matching signature.
1716         * reflection.c: Use original security informations for
1717           MONO_WRAPPER_MANAGED_TO_MANAGED.
1718         * security-manager.c: Use original security informations for
1719           MONO_WRAPPER_MANAGED_TO_MANAGED.
1720         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1721           that is a placeholder and only its address should be used.
1722         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1723           that is a placeholder and only its address should be used.
1724
1725 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1726
1727         Begin implementing COM Interop.
1728         * appdomain.c: Increment corlib version.
1729         * class.c: Set ComImport classes' parent to __ComObject.
1730         * loader.c: Mark cominterop methods as such.
1731         * domain.c: Add __ComObject class to MonoDefaults structure.
1732         * image.c: Add 2 hashtables to the image for COM Interop related methods
1733         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1734         using the mempool allocator
1735         
1736         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1737         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1738         declaration for mono_metadata_type_dup_mp.
1739         
1740         * debug-helpers.c: Added strings for two additional wrapper types
1741         * object.c: Create proxy objects for ComImport classes
1742         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1743         and added __ComObject class to MonoDefaults structure.
1744         
1745         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1746         MonoComInteropProxy and MonoComObject.
1747         
1748         * marshal.c: Added support for COM Interop
1749         (signature_cominterop): Converts managed signature to corresponding
1750         unmanaged COM signature.
1751         (cominterop_get_function_pointer): gets unmanaged function pointer via
1752         COM object vtable
1753         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1754         (cominterop_get_method_interface): returns interface type that method is defined on
1755         (mono_mb_emit_cominterop_call): emits native call to function pointer
1756         gotten from vtable
1757         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1758         that matches signature of unmanaged function.
1759         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1760         (cominterop_get_invoke): forwards call from proxy to __ComObject
1761         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1762         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1763         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1764         
1765         * marshal.h: Added Marshal icall declarations.
1766         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1767         so we can access them in finalizer
1768         
1769 2006-07-14  Dick Porter  <dick@ximian.com>
1770
1771         * object.c (mono_type_initialization_cleanup): Fix a race
1772         condition by temporarily commenting out the critical section
1773         deletion.
1774
1775 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1776
1777         * reflection.c (create_custom_attr): Fix some warnings.
1778         (create_custom_attr_data): Ditto.
1779         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1780         types. Fixes #78855.
1781
1782 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1783
1784         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1785
1786         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1787
1788 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1789
1790         * reflection.c (resolve_object): Add support for DynamicMethod.
1791
1792         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1793         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1794
1795 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1796
1797         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1798         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1799
1800 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1801
1802         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1803         Fixes #77888.
1804
1805 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1806
1807         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1808         slightly: remove a shadow local variable.
1809
1810 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1811
1812         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1813         definition that introduces the virtual function slot.
1814         Also fix Coverity #105.
1815
1816 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1817
1818         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1819         for dynamic assemblies. Fixes #78724.
1820
1821 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1822
1823         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1824         Fixes #78722.
1825
1826 2006-06-21  Martin Baulig  <martin@ximian.com>
1827
1828         * reflection.c
1829         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1830         fixes #76484.
1831
1832 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1833
1834         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1835
1836 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1837
1838         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1839         nor TYPEREFs.
1840         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1841         Inflate result if necessary.
1842         (mono_class_get_full): Remove old version.  Rename from
1843         'mono_class_get' and add 'context' argument.  Pass it to
1844         ..._create_from_typespec.
1845         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1846         (mono_ldtoken): Revert change below.
1847
1848 2006-06-20  Martin Baulig  <martin@ximian.com>
1849
1850         * class.c (mono_ldtoken): Don't pass the generic context to
1851         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1852
1853 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1854
1855         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1856         and later freeing it. Fixes #78638.
1857
1858 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1859
1860         * icall.c (mono_class_get_throw): Revert over-zealous error
1861         throwing, the caller for mono_class_get_throw will cope with
1862         errors when classes are not properly initialized already.
1863
1864         The code still copes with loader exceptions though.
1865
1866         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1867         
1868 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1869
1870         Fixes the `make run1' version of RuntimeAbort (to be commited,
1871         source is in Bugzilla).
1872         
1873         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1874         FALSE on class loading failure instead of returning true.
1875
1876         * class.c (mono_class_create_from_typedef): It is possible for
1877         mono_metadata_interfaces_from_typedef_full to fail if a class is
1878         not found, cope with this.
1879         
1880
1881 2006-06-14  Dick Porter  <dick@ximian.com>
1882
1883         * socket-io.c: 
1884         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1885         4.1.1
1886
1887 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1888
1889         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1890
1891 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1892
1893         * icall.c: Another fix for building mono in Visual Studio.
1894
1895 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1896
1897         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1898         
1899 2006-06-09  Martin Baulig  <martin@ximian.com>
1900
1901         * debug-mono-symfile.c: Put this back and really fix it this
1902         time. Sorry for all the trouble.
1903
1904 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1905
1906         * icall.c (mono_class_get_throw): Fix a warning.
1907         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1908         ReflectionTypeLoadException if needed. Fixes #78606.
1909
1910         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1911         (mono_class_init): Ditto.
1912
1913         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1914         ref_only exceptions.
1915         (mono_loader_clear_error): Make this work even if there is no error.
1916
1917 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1918
1919         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1920         Marshal.GetComSlotForMethodInfo using internal call.
1921
1922 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1923
1924         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1925         a function for signalling it.
1926
1927         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1928         a referenced assembly is not found.
1929
1930         * loader.c (mono_loader_error_prepare_exception): Add support for 
1931         LOADER_ERROR_ASSEMBLY. Fix formatting.
1932
1933 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1934
1935         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1936         for VARIANT marshalling on windows and increment corlib version
1937         since Variant struct was added.
1938
1939 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1940
1941         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1942         stack trace line information:
1943
1944         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1945         (Martin) when looking up B which is between A and C, return A not C.
1946
1947         Bug is #78573.
1948
1949         Thanks to Alexander Olk for tracking this down.
1950
1951 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1952
1953         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1954         
1955         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1956         avoid clobbering its value.
1957         (mono_string_to_lpstr): Fix a warning on windows.
1958
1959 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1960
1961         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1962
1963         * reflection.c loader.c: Removed references to 'dummy' flag.
1964
1965         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1966
1967         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1968         it gets GC tracking.
1969
1970         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1971         GC tracking.
1972         
1973         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1974
1975         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1976
1977         * appdomain.c: Bump corlib version.
1978
1979 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1980
1981         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1982         CEE_STIND_REF when working with object references.
1983
1984 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1985
1986         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1987         Fixes #78539.
1988
1989 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1990
1991         * loader.c (method_from_memberref): Fix argument value for
1992         mono_loader_set_error_method_load (I was passing the MonoClass
1993         instead of the class name char *).
1994
1995 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1996
1997         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1998         CEE_STIND_REF when working with object references.
1999
2000 2006-05-30  Martin Baulig  <martin@ximian.com>
2001
2002         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2003         mono_method_full_name() change and replace the ':' with a '.'
2004         here.
2005
2006 2006-05-30  Martin Baulig  <martin@ximian.com>
2007
2008         * debug-mono-symfile.c
2009         (mono_debug_symfile_lookup_location): Fix the algorithm:
2010         when looking up B which is between A and C, return A not C.
2011
2012 2006-05-29  Martin Baulig  <martin@ximian.com>
2013
2014         * mono-debug.h
2015         (MonoDebugMethodInfo): Make the typedef public.
2016         (MonoDebugSourceLocation): New public struct.
2017
2018         * mono-debug.c
2019         (mono_debug_source_location_from_address): Removed.
2020         (mono_debug_source_location_from_il_offset): Removed.
2021         (mono_debug_il_offset_from_address): Removed.
2022         (mono_debug_address_from_il_offset): Removed.
2023         (mono_debug_lookup_method): New public function.
2024         (mono_debug_lookup_source_location): New public function; replaces
2025         the old mono_debug_source_location_from_*() functions; see the
2026         inline documentation.
2027         (mono_debug_free_source_location): New public function.
2028         (mono_debug_print_stack_frame): New public function; see the
2029         inline documentation.
2030
2031         * debug-mono-symfile.c
2032         (mono_debug_find_source_location): Renamed into
2033         mono_debug_symfile_lookup_location(); only take a
2034         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2035         documentation.
2036         (mono_debug_find_method): Renamed into
2037         mono_debug_symfile_lookup_method().
2038
2039 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2040
2041         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2042         returned by mono_image_open_full ().
2043
2044         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2045         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2046         #78517.
2047
2048         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2049         #78518.
2050
2051 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2052
2053         * class.c (mono_class_from_typeref): handle missing images
2054         earlier, deals with bug #78418.   Refactor code; 
2055
2056         Fix a warning introduced in my previous commit (some stale code
2057         from before I revisited my patch).
2058
2059         * class.c (mono_class_create_from_typedef): On failure, remove the
2060         class from the MonoImage->class_cache as the class is not
2061         initialized;   Fixes the leak pointed out by Paolo.
2062
2063 2006-05-25  Dick Porter  <dick@ximian.com>
2064
2065         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2066         DeleteCriticalSections until I figure out which one may still be
2067         sometimes locked when mono_thread_cleanup is called.
2068
2069 2006-05-24  Dick Porter  <dick@ximian.com>
2070
2071         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2072         of mono_thread_manage and back into its own function, so it can be
2073         called after the finalizer thread has finished.
2074
2075         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2076
2077 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2078
2079         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2080         Fixes #78495.
2081
2082         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2083         with non-blittable elements.
2084         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2085
2086 2006-05-24  Martin Baulig  <martin@ximian.com>
2087
2088         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2089         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2090
2091         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2092         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2093         `mono_debugger_event_handler' to NULL.
2094
2095 2006-05-24  Martin Baulig  <martin@ximian.com>
2096
2097         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2098
2099 2006-05-24  Martin Baulig  <martin@ximian.com>
2100
2101         * mono-debug-debugger.h
2102         (mono_debugger_create_notification_function): Added
2103         `MonoCodeManager *' argument.
2104
2105 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2106
2107         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2108
2109 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2110
2111         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2112         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2113         implementation.
2114
2115 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2116
2117         * icall.c: precise GC support: objects can't be stored in unmanaged
2118         memory anymore, even if they are kept alive by other references: since
2119         they can move the GC needs to be able to always find them.
2120
2121 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2122
2123         * object.c: precise GC support for static fields. Support
2124         for moving GCs: write barriers and pinned allocation for interned
2125         strings.
2126
2127 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2128
2129         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2130         structure.
2131
2132 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2133
2134         * class.c, gc.c: sgen and precise GC updates.
2135
2136 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2137
2138         * marshal.h, marshal.c: added write barrier wrapper and precise type
2139         fixes.
2140
2141 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2142
2143         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2144         support.
2145
2146 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2147
2148         * reflection.c: precise and sgen GC updates.
2149
2150 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2151
2152         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2153
2154 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2155
2156         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2157
2158 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2159
2160         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2161         MONO_TYPE_OBJECT. Fixes #78462.
2162
2163 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2164
2165         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2166         and blittable types.
2167
2168 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2169
2170         * class.c (mono_class_get_exception_for_failure): Implement parts
2171         of a TODO: if the loader error is set (instead of the class
2172         error), we return a Loader exception that can be properly thrown
2173         elsewhere.
2174
2175         This was exposed by some Winforms 2.0 code that I tried to run
2176         (Atsushi pointed me to it).
2177
2178 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2179
2180         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2181         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2182         
2183         * marshal.c (emit_marshal_vtype): Add limited support for 
2184         UnmanagedType.LPStruct. Fixes #78427.
2185
2186         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2187         Applied a patch from kangaroo to fix #77523.
2188
2189 2006-05-17  Martin Baulig  <martin@ximian.com>
2190
2191         * threads.c
2192         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2193         (debugger_thread_created): Removed.
2194         (debugger_thread_exited): Removed.
2195
2196 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2197
2198         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2199
2200         * object-internals.h (MonoReflectionResource): Sync with managed version.
2201
2202 2006-05-12  Wade Berrier <wberrier@novell.com>
2203
2204         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2205
2206 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2207
2208         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2209         functions try to allocate from the image mempool.
2210
2211 2006-05-12  Dick Porter  <dick@ximian.com>
2212
2213         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2214
2215 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2216
2217         * object.c: The FieldGetter and FieldSetter methods require the full
2218         name of the class, not only the name. Fixes bug #78277.
2219
2220 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2221
2222         * loader.c (method_from_memberref): Do not pass the NULL klass to
2223         mono_loader_set_error_() methods.  Pass the non-NULL value
2224         (class). 
2225
2226 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2227
2228         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2229         (mono_assembly_close): Null out assembly->image->references after freeing it.
2230
2231         * image.c (mono_image_close): Free image->references.
2232         
2233         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2234
2235 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2236
2237         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2238         before checking if it's NULL (g_assert).
2239
2240 2006-05-10  Martin Baulig  <martin@ximian.com>
2241
2242         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2243         I thought I already killed that two months ago, but now it somehow reappeared.
2244
2245 2006-05-10  Martin Baulig  <martin@ximian.com>
2246
2247         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2248
2249 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2250
2251         * reflection.c: Allocate memory for dynamically created methods in the image
2252         mempools.
2253
2254 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2255
2256         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2257         don't use the ad pointer before checking if it's NULL (g_assert).
2258
2259 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2260
2261         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2262         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2263
2264         * marshal.c: Allocate all signatures from mempools.
2265
2266         * marshal.c: Allocate some more signatures from mempools.
2267
2268 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2269
2270         * object.c (mono_load_remote_field): The code used to provide a
2271         temporary variable for returning results if the user did not
2272         provide a result pointer.  But our temporary variable was allocted
2273         on the satck.
2274
2275         Fix calling code to always pass a result area.   Coverity ID 103.
2276
2277 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2278
2279         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2280         value, not the old. Fixes #78312.
2281         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2282
2283         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2284         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2285         per-image cache.
2286
2287         * assembly.c (mono_assembly_close): Free image->references.
2288
2289         * assembly.c (mono_assembly_names_equal): Fix a warning.
2290         (mono_assemblies_cleanup): Cleanup more global data.
2291
2292         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2293
2294         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2295         ptr_cache and image->modules.
2296
2297         * image.c (mono_image_init): Allocate array_cache lazily.
2298         
2299 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2300
2301         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2302         behavior was changed recently and has bad side effects.
2303
2304 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2305
2306         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2307         
2308         * assembly.c (mono_assembly_close): Remove a debug printf.
2309
2310         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2311
2312         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2313         to also allow for temporary references between mono_image_open ()/close ().
2314
2315         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2316
2317 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2318
2319         * marshal.c: Fix support for dynamic methods.
2320
2321         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2322
2323         * marshal.c (mono_marshal_cleanup): New cleanup function.
2324
2325         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2326         image mempools.
2327
2328         * class.c (mono_class_init): Fix leaking class->nested_classes.
2329
2330         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2331
2332         * image.c (mono_image_init): Initialize the new cashes.
2333
2334         * image.c (mono_image_close): Destroy the new cashes.
2335
2336         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2337
2338         * mempool.c (mono_mempool_strdup): New helper function.
2339
2340         * class-internals.h: Add prototype for mono_loader_unlock ().
2341
2342         * domain.c (mono_jit_info_table_find): Fix a warning.
2343         (mono_debugger_check_runtime_version): Ditto.
2344
2345         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2346         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2347         functions to these modules.
2348
2349         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2350         metadata modules.
2351         
2352         * marshal.c (mono_free_bstr): Fix a warning.
2353
2354         * assembly.c (mono_assembly_open_full): Fix another small leak.
2355
2356         * object.c: Fix some unload leaks in the remoting code.
2357
2358         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2359         function.
2360
2361         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2362
2363         * reflection.c: Fix some unload leaks in dynamic assemblies.
2364
2365 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2366
2367         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2368         * marshal.h: Add BSTR support on Win32
2369         * icall.c: Add BSTR icalls
2370         * metadata.h: Add BSTR enums
2371
2372 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2373
2374         Work to catch the crash from #76795 and turn it into an
2375         exception.   As I stubbed out pieces of the VisualBasic support,
2376         I found a number of places where the code was failing and I added
2377         checks to those places. 
2378         
2379         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2380         function return a status code.  If we fail to parse the signature
2381         from mono_metadata_parse_generic_inst, return FALSE.
2382
2383         * loader.c (mono_get_method_from_token): If we fail to load the
2384         method (mono_class_get) return NULL.   
2385
2386         * (method_from_memberref): Return NULL if we are unable to parse
2387         the method signature
2388
2389         (mono_loader_error_prepare_exception): Since we now use the
2390         loader_error flag internally to stop processing, and obtaining
2391         exceptions that might be thrown will walk this code path the
2392         proper way of going from a MonoLoaderError into a
2393         MonoException was convoluted.   This new routine encapsulates the
2394         process of turning the error into an exception and *clearing* the
2395         error afterwards.
2396         
2397 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2398
2399         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2400         with missing assemblies), and to cope with:
2401
2402                 * Missing fieldref from a non-existing assembly.
2403                 * Missing methodref from a non-existing assembly.
2404
2405         The first batch of work to address *some* of the issues from 76661.
2406         
2407         * object.c (mono_class_create_runtime_vtable): If we fail to
2408         initialize the class raise the exception here. 
2409
2410         * metadata.c (mono_class_get_overrides_full): If any methods fail
2411         to load return the failure to the caller.
2412
2413         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2414         flagging assemblies that failed to load.   
2415
2416         Do not crash if we are unable to load the assembly.
2417
2418         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2419         assemblies. 
2420
2421         * loader.c (mono_loader_set_error_type_load): Change the
2422         convention to always pass unallocated strings, so we make our own
2423         copies (I know our own code had duplicated strings before, but
2424         this keeps the normal conventions).
2425         (method_from_memberref): Call mono_loader_set_error_method_load
2426         for all possible failures of loading the class. 
2427         Remove assert, turn into a loader error.
2428
2429         (mono_loader_error_to_exception): Move this routine from mini
2430         (mini_loader_error_to_exception) there was no need to have that in
2431         mini. 
2432
2433         * class.c (mono_class_from_typeref): If we were not able to load
2434         the assembly with mono_assembly_load_reference, call the
2435         mono_loader_set_error_type_load to register the problem.
2436
2437         (mono_class_setup_fields): If we fail to load the type from
2438         mono_metadata_parse_type_full, call mono_class_set_failure and
2439         break from the loop.
2440
2441         If class->exception_type is set, we do not layout the fields as
2442         that might crash the runtime, and instead return (from breaking
2443         from the previous loop).
2444
2445         (mono_class_setup_vtable): This now returns a boolean indicating
2446         whether the table was properly setup.   The decision is driven by
2447         mono_class_get_overrides_full which might run into non-existing
2448         methods. 
2449         
2450         (mono_class_init): Returns TRUE on success or FALSE if there was a
2451         problem in loading the type (incorrect assemblies, missing
2452         assemblies, methods, etc).
2453
2454         When we call mono_class_setup_fields we also check for a potential
2455         error inside this call (either a class exception or a general
2456         loader exception).
2457
2458         (mono_class_create_from_typedef): If the parent fails to load
2459         (calling mono_class_get_full) return NULL.
2460         
2461         ** Important **
2462
2463         calls to mono_metadata_parse_type_full should be checked
2464         everywhere and set the mono_class_set_failure
2465         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2466
2467         The current patch checks the places where my manually constructed
2468         tests show the errors are showing up, but we should do it
2469         everywhere. 
2470
2471         ** Important2 **
2472
2473         mono_class_init return values should be tested everywhere, like
2474         the previous case this is something that we should audit
2475         everywhere and not only on the cases exposed by the tests I
2476         created. 
2477
2478 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2479
2480         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2481         boolean parameter and instead pass the information on `options'
2482         parameter (FileOptions).
2483
2484         * icall.c: Register the new signature for MonoIO.Open.
2485
2486         * debug-helpers.c (dis_one): Trying to understand how coverity
2487         works.  Fix Run 5, item 78.
2488
2489 2006-04-26  Dick Porter  <dick@ximian.com>
2490
2491         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2492         dereference.
2493
2494 2006-04-25  Martin Baulig  <martin@ximian.com>
2495
2496         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2497
2498         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2499         debugger_thread_created().
2500         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2501         special way.
2502         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2503         (mono_debugger_finalize_threads): New function; undo the effects
2504         of mono_debugger_init_threads().
2505         (mono_debugger_create_all_threads): Removed.
2506
2507 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2508
2509         * image.c (mono_image_close): Tidy up trace messages.
2510
2511         * assembly.c (mono_assembly_close): Ditto.
2512
2513         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2514         no longer references an already freed assembly. Fixes #78168.
2515
2516 2006-04-21  Dick Porter  <dick@ximian.com>
2517
2518         * threads.c (mono_thread_detach): Fix reference counting when
2519         detaching threads.
2520
2521 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2522
2523         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2524         #78155.
2525
2526 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2527
2528         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2529         (mono_type_to_stind): Ditto.
2530
2531         * marshal.c: Use the new helper functions to simplify code.
2532
2533         * image.c (mono_image_close): Add some code for help debug assembly unloading
2534         problems.
2535
2536         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2537         image mempool.
2538
2539         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2540         assembly was already loaded in another appdomain. Fixes #78083.
2541
2542 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2543
2544         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2545         referenced assemblies.
2546         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2547
2548         * domain.c (mono_domain_free): Add a trace message.
2549
2550         * appdomain.c (add_assemblies_to_domain): Ditto.        
2551
2552         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2553         field.  
2554
2555 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2556
2557         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2558
2559 2006-04-12  Martin Baulig  <martin@ximian.com>
2560
2561         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2562         `USE_INCLUDED_LIBGC'.   
2563
2564 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2565
2566         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2567         the patch contains ../ and a small directory name later. Hopefully fixes
2568         #78035.
2569
2570 2006-04-10  Martin Baulig  <martin@ximian.com>
2571
2572         Clean up the debugger's thread-handling code.
2573
2574         The debugger's thread-handling code has been moved from
2575         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2576         over the `threads' hash, keep track of exiting threads and also
2577         use proper locking.
2578
2579         We can now debug XSP and XSP based applications with the debugger.
2580
2581         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2582
2583         * threads.h
2584         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2585         (mono_install_thread_callbacks): Likewise.      
2586
2587         * threads.c (mono_thread_callbacks): Removed.
2588         (debugger_thread_created, debugger_thread_exited): New static functions.
2589         (start_wrapper): Call debugger_thread_created().
2590         (thread_cleanup): Call debugger_thread_exited().
2591         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2592         (mono_debugger_init_threads): New public function.
2593         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2594         iterate directly over the `threads' hash and also use proper locking.
2595
2596         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2597
2598         * mono-debug-debugger.h
2599         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2600
2601 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2602
2603         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2604         argument type=array. Fixes #78057.
2605
2606 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2607
2608         * culture-info-table.h : regenerated. Fixed bug #69652.
2609
2610 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2611
2612         * loader.c metadata.c: Reapply a variant r59116.
2613         
2614         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2615
2616         * class.c (mono_class_setup_interface_offsets): New internal function.
2617
2618         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2619         interfaces too. Fixes #77398.
2620
2621         * reflection.c (encode_cattr_value): Add support for 
2622         parameter type=object, argument type=array.
2623         (load_cattr_value): Ditto. Fixes #77916.
2624
2625         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2626         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2627
2628         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2629         a byval char array and CharSet is Ansi.
2630
2631         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2632
2633 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2634
2635         * metadata.c: Add some locking comments.
2636         
2637         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2638         mempool.
2639         (mono_metadata_free_method_signature): Don't free the signature itself.
2640
2641         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2642
2643         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2644         reference the same MonoImage.
2645         (mono_assembly_load_from_full): Add an assert.
2646
2647 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2648
2649         * image.c (mono_image_close): Don't put the image we are about to free into the
2650         loaded_images_guid_hash.
2651
2652         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2653         to reduce code duplication.
2654
2655         * marshal.c: Register the native functions called by this module as icalls, to
2656         somewhat centralize the creation of MonoMethodSignature's.
2657
2658         * loader.c (mono_method_signature): Add a cache for method signatures.
2659
2660         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2661         the parameter attributes of a method.
2662         (mono_metadata_parse_method_signature_full): Refactored the computation of
2663         parameter attributes into a separate function. Also avoid one allocation in
2664         most cases.
2665
2666         * assembly.c (mono_assembly_close): Ditto.
2667
2668         * image.c (mono_image_close): Log trace messages with INFO level.
2669
2670         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2671
2672         * image.c reflection.c: Correct reference counting of image modules.
2673         
2674         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2675         of this function from the image mempool.
2676         
2677         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2678         to allow more cached types to be used.
2679
2680         * mono-debug.c (mono_debug_add_method): Appled patch from
2681         David S. Miller  <davem@sunset.davemloft.net>: Access 
2682         minfo->lexical_blocks[] entry elements using read32().
2683
2684 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2685
2686         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2687         methods as it is allocated from the mempool.
2688
2689         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2690         image mempool.
2691
2692         * metadata-internals.h: Add comments describing the reference counting scheme
2693         used for MonoImage and MonoAssembly.
2694
2695         * image.c assembly.c reflection.c: Rework reference counting of images and 
2696         assemblies so they are freed when the runtime is shut down. Free some 
2697         additional memory structures when an image is unloaded.
2698         
2699 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2700
2701         * class.c loader.c reflection.c: Allocate more data structures in
2702         the image mempool.
2703
2704 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2705
2706         * icall.c
2707         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2708         build on pre glib 2.4 systems.
2709
2710 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2713
2714         * icall.c: Fix some warnings.
2715
2716 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2717
2718         * culture-info-table.h : regenerated.
2719
2720 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2721
2722         * threads.c, object-internals.h, verify.c: changed the culture caching
2723         code to use a normal MonoArray for storage so the GC can keep track of
2724         them easily. Fixed bits of the cache logic, too and simplified the
2725         code.
2726
2727 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2728
2729         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2730         thread for non-Boehm GCs.
2731
2732 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2733
2734         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2735         needed to keep track of the data for static fields.
2736
2737 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2738
2739         Fix #75172
2740         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2741         for interface classes.  Use 'num_methods' instead.
2742         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2743         before using '->vtable_size' field.
2744
2745 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2746
2747         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2748         doesn't contain managed pointers, so use a normal hashtable.
2749
2750 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2751
2752         * reflection.c, class-internals.h, domain.c: fixed handling of types
2753         used as values for objects in custom attributes (bug #77915):
2754
2755 2006-03-24  Martin Baulig  <martin@ximian.com>
2756
2757         * class.c (mono_class_setup_fields): Added support for generic
2758         instances; fixes #77580.
2759
2760 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2761
2762         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2763
2764 2006-03-24  Dick Porter  <dick@ximian.com>
2765
2766         * file-io.c (get_file_attributes): More stat macro breakage.
2767         Fixes bug 77759.
2768
2769 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2770
2771         * profiler.c: added the file=filename option in the default profiler
2772         to output the profile data to filename.
2773
2774 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2775
2776         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2777         bug #77877.
2778
2779 2006-03-22  Martin Baulig  <martin@ximian.com>
2780
2781         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2782         allocated `MonoClassField *' in `fb->handle'.
2783
2784 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2785
2786         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2787         allocate interface ID to save memory and allow better ID reuse on
2788         appdomain unload. setup_generic_vtable () removal from Martin.
2789
2790 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2791
2792         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2793         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2794         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2795         write barriers for reference stores with managed objects accessed with
2796         C structures in the runtime and in embedding programs.
2797
2798 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2799
2800         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2801         'interface_id' and 'max_interface_id' fields of MonoClasses
2802         representing open generic types.
2803
2804 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2805
2806         * object.h, object.c, icall.c: added functions to deal with
2807         storing valuetypes that contain references in managed objects.
2808         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2809         fixes and comments around uses of mono_array_addr ().
2810
2811 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2812
2813         * object.h, icall.c, monitor.c: object.GetHashCode ()
2814         implementation that supports the moving garbage collector.
2815
2816 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2817
2818         * icall.c, threads-types.h, threads.c: implemented finalizer for
2819         LocalDataStoreSlot.
2820
2821 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2822
2823         * metadata.c (mono_type_size): Add a fixme.
2824         (mono_type_stack_size): Ditto.
2825
2826         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2827         'type_forwarders' field.
2828
2829         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2830         attribute from net 2.0.
2831
2832         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2833         from class.c.
2834
2835         * class.c (mono_class_setup_fields): Fix a warning.
2836         
2837         * class.c (mono_class_from_name): Add support for assemblyref entries
2838         in the EXPORTEDTYPE table.
2839
2840         * reflection.c: Add support for handling type forwarders under net 2.0.
2841
2842         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2843         
2844 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2845
2846         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2847         overwriting entries in ModuleBuild->types, also clean up the code
2848         a little. Fixes #77774.
2849
2850 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2851
2852         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2853         load friend assembly info when present.
2854
2855 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2856
2857         Fix crasher on gtest-158.cs.
2858         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2859         the return value if the MonoClass we want is yet in an
2860         inconsistent state.
2861         * class.c (mono_class_create_from_typedef): Add an comment
2862         explaining an order dependency between mono_class_setup_parent and
2863         mono_class_setup_mono_type.
2864
2865 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2866
2867         * class.c: documentation updates and events bug fix.
2868
2869 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2870
2871         * class.c: some cleanup, locking fixes.
2872
2873 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2874
2875         * class.c: fix the generics code to setup nested
2876         type info to the instantiated type (bug #77770).
2877
2878 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2879
2880         * marshal.c: fixed a few type correctness issues.
2881
2882 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2883
2884         * loader.c: the Set/Get/Addrtess array methods should be public.
2885
2886 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2887
2888         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2889         
2890         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2891         info->wrapper.
2892
2893 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2894
2895         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2896
2897         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2898
2899         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2900         (mono_mempool_alloc0): Ditto.
2901
2902 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2903
2904         * socket-io.c:
2905         (create_object_from_sockaddr): it was allocating 4 extra bytes
2906         for the AF_UNIX data. Fixes bug #77747.
2907
2908 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2909
2910         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2911
2912 2006-03-09  Dick Porter  <dick@ximian.com>
2913
2914         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2915         Fixes bug 76966 again.
2916
2917 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2918
2919         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2920         names from r57532
2921         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2922
2923 2006-03-07  Martin Baulig  <martin@ximian.com>
2924
2925         * object.c
2926         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2927
2928 2006-03-07  Martin Baulig  <martin@ximian.com>
2929
2930         * class.c
2931         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2932         regression introduced in r56970; see gtest-252.cs.
2933
2934         * loader.c (mono_get_method_constrained): Correctly handle generic
2935         methods; see gtest-253.cs.
2936
2937 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2938
2939         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2940
2941 2006-03-04  Martin Baulig  <martin@ximian.com>
2942
2943         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2944         compute the parent type at runtime, just like we're already doing
2945         it for interfaces.
2946
2947         * reflection.c
2948         (mono_reflection_bind_generic_parameters): Don't compute the
2949         parent type anymore.
2950
2951         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2952
2953 2006-03-04  Martin Baulig  <martin@ximian.com>
2954
2955         * mono-debug-debugger.h
2956         (mono_debugger_create_notification_function): Allocate memory at
2957         runtime and return a pointer to it.
2958
2959 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2960
2961         * assembly.c: Fix windows build.
2962         
2963         * assembly.c: Fix build.
2964
2965         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2966
2967         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2968         
2969 2006-03-03  Dick Porter  <dick@ximian.com>
2970
2971         * process.c
2972         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2973         Check parameters before dereferencing them.  Fixes Aaron's part of
2974         bug 77393.
2975
2976 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2977
2978         Fix performance regression.
2979         * loader.c (find_method_in_class): Add 'from_class' argument.
2980         Rename 'klass' argument to 'in_class'.  The signature is compared
2981         against the method in 'in_class', and the corresponding method is
2982         returned from 'from_class'.
2983         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2984         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2985         type definition and generic instantiation in parallel.
2986         (mono_get_method_constrained): Update to changes.
2987
2988 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2989
2990         * threads.c: make sure the domain is correct, too when doing
2991         mono_thread_attach ().
2992
2993 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2994
2995         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2996         windows. Fixes #77683.
2997
2998 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2999
3000         * object.h, *: introduced specific way to set elements of an array
3001         of references to be used as write barrier. Still need to audit the
3002         uses of mono_array_addr.
3003
3004 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3005
3006         * object-internals.h: New field to cache the assmebly name, patch
3007         from Tambet Ingo (tambet@ximian.com)
3008
3009 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3010
3011         * decimal.h, class-internals.h, metadata-internals.h,
3012         file-io.h: mark a few function declarations as internal, to
3013         reduce the number of PLT entries.
3014
3015 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3016
3017         * file-io.c: fix typo in warning message.
3018
3019 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3020
3021         * loader.c: on unix, lookup the "*A" version of a function
3022         if charset is auto as a second option before failing.
3023
3024 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3025
3026         * class.h (mono_class_inflate_generic_method): Revert to two
3027         argument version.
3028         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3029         (mono_class_inflate_generic_method_full): Add.
3030         * class.c (mono_class_inflate_generic_method_full): Rename from
3031         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3032         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3033         * loader.c, reflection.c: Update to changes.
3034
3035 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3036
3037         * icall.c: const fixes and small improvements.
3038
3039 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3040
3041         * threadpool.c: for asynchronous connect(), enable the same workaround
3042         for BSD 6 as for the Mac. Fixes bug #77637.
3043
3044 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3047         formatted classes. Fixes #77524.
3048
3049 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3050
3051         * class.c (inflate_generic_type): Add a couple more
3052         micro-optimizations.
3053         (inflate_generic_context): Don't use the 'gmethod' from
3054         'inflate_with'.
3055         (mono_class_inflate_generic_method): If the method has generic
3056         parameters, but the passed-in context doesn't have a 'gmethod',
3057         create one.  Use the possibly simplified generic instantiation
3058         from the declaring class instead of the one passed in.
3059
3060 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3061
3062         Make generic method signature and method header handling lazy.
3063         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3064         (inflate_generic_header): Likewise.
3065         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3066         parameter to avoid inflating types.
3067         (mono_get_inflated_method): Empty out.
3068         * class.h (mono_class_inflate_generic_method): Update to changes.
3069         * loader.c (mono_get_method_from_token): Don't parse signature for
3070         generic methods, nor methods of generic classes.
3071         (mono_method_signature): Rename from 'mono_method_signature'.
3072         Inflate signature on demand.
3073         (mono_method_get_header): Inflate method header on demand.
3074         * reflection.c: Update to changes.
3075
3076 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3077
3078         * metadata.c (mono_metadata_inflate_generic_inst): If the
3079         instantiation is closed, don't bother expanding it in the new
3080         context.
3081         * class.c (inflate_generic_class): If the generic instantiation
3082         doesn't change after inflation, return the argument itself.
3083         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3084         Add bounds checks.
3085         (inflate_generic_context): If neither the generic class nor the
3086         generic method instantiations change, return the original context.
3087         * reflection.c (mono_method_get_object): Do
3088         'mono_get_inflated_method' before accessing the ->klass field.
3089         (inflate_mono_method): Don't create a MonoGenericMethod unless
3090         necessary.
3091         (inflate_method): Don't pass a constructed type as the declaring
3092         type of a methodbuilder.
3093
3094 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3095
3096         * object.c: fix memory overwrite.
3097
3098 2006-02-22  Dick Porter  <dick@ximian.com>
3099
3100         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3101         it doesn't work any more.
3102         (mono_threads_request_thread_dump): Fix unused variable warnings.
3103
3104 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3105
3106         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3107         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3108         the public header file.
3109
3110 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3111
3112         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3113
3114 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3115
3116         * class-internals.h, object.c: reduce the size of MonoVTable
3117         and store the interface_offsets array at negative offsets.
3118
3119 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3120
3121         * metadata.c: tweak table descriptors data structures to reduce
3122         size and runtime relocations.
3123
3124 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3125
3126         * marshal.c: fix some types and opcodes to be type-safe
3127         in marshaling wrappers.
3128
3129 2006-02-21  Ankit Jain  <jankit@novell.com>
3130
3131         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3132
3133 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3134
3135         * metadata.c (get_constraints): Relax debugging checks for monodis.
3136
3137 2006-02-21  Ankit Jain  <jankit@novell.com>
3138
3139         * metadata.c (mono_metadata_load_generic_params): Move the code
3140         checking for ambiguous generic params from here to mono/dis/get.c
3141         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3142
3143 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3144
3145         Fix assertion triggered when compiling nemerle.
3146         * class.c (mono_get_shared_generic_inst): Rename from
3147         get_shared_inst and make non-static.
3148         * loader.c (mono_get_shared_generic_method): New.  Used to create
3149         the MonoGenericContext-equivalent of a MonoGenericContainer.
3150         (mono_get_method_from_token): Initialize the 'context' field of
3151         the created MonoGenericContainer.
3152         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3153         * metadata.c (get_constraints): Add sanity check.
3154         * class-internals.h: Add new internal methods.
3155
3156         * reflection.c (verify_safe_for_managed_space): New sanity check.
3157         Currently checks that owner-less generic parameters aren't allowed
3158         in managed space.
3159         (mono_type_get_object): Use it.
3160         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3161         that are now in mono_type_get_object.
3162         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3163
3164 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3165
3166         * metadata.c (mono_type_create_from_typespec): Rename from
3167         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3168         argument and caching of types in the generic container.
3169         (unwrap_arrays, find_generic_param): Remove.
3170         * metadata-internals.h: Update.
3171         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3172
3173 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3176
3177         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3178         return values. Fixes #77581.
3179
3180         * class.c (mono_fnptr_class_get): Switch name and name_space.
3181
3182         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3183         classes and add support for [In, Out] attributes.
3184         (mono_marshal_free_asany): Ditto. Fixes #77524.
3185
3186 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3187
3188         * class.c (mono_class_from_generic_parameter): Make more robust to
3189         incomplete MonoGenericContainers from monodis.
3190
3191 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3192
3193         * class-internals.h: added some more exception types.
3194         * class.c, metadata.c: added a few checks to handle missing
3195         types.
3196
3197 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3198
3199         Use owner-less generic-params some more.
3200         * class.c (my_mono_class_from_generic_parameter): Remove.
3201         (mono_class_from_generic_parameter): Handle null image,
3202         param->name and param->owner.
3203         (mono_class_from_mono_type): Update.
3204         (mono_class_create_from_typespec): Remove 'container' parameter.
3205         If that parameter is non-null, the result is always inflated by
3206         'mono_class_get_full' anyway.
3207         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3208         parameter.
3209         (mono_class_get_full): Update.
3210
3211         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3212         instance is not open, don't bother inflating.
3213         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3214         parse metadata for inflated classes.
3215         (_mono_class_get): Change GenericContext* parameter to
3216         GenericContainer*.
3217         (mono_class_create_from_typespec): Likewise.  Simplify, and
3218         implement trivially.  All the cases are handled in
3219         mono_class_from_mono_type.  Don't inflate returned class.
3220         (mono_class_get_full): Delegate GENERICINST optimization to
3221         inflate_generic_type.
3222         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3223
3224 2006-02-16  Dick Porter  <dick@ximian.com>
3225
3226         * socket-io.c (create_object_from_sockaddr): Fix typo.
3227         (create_sockaddr_from_object): Check array lengths before
3228         potentially accessing items off the end.
3229         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3230         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3231         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3232         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3233         length checks to avoid wraparound overflows.
3234         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3235         contents of the array of sockets
3236         (hostent_to_IPHostEntry2)
3237         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3238         Check return value of inet_ntop ().
3239         (addrinfo_to_IPHostEntry): Fix typo
3240
3241 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3242
3243         Type metadata parsing doesn't use generic-instantiation information.
3244         * metadata.c (mono_metadata_parse_array_full): Change
3245         MonoGenericContext* parameter to MonoGenericContainer*.
3246         (mono_metadata_parse_type_full): Likewise.
3247         (mono_type_create_from_typespec_full): Likewise.
3248         (mono_metadata_parse_mh_full): Likewise.
3249         (mono_metadata_parse_generic_inst): Likewise.
3250         (do_mono_metadata_parse_generic_class): Likewise.
3251         (do_mono_metadata_parse_type): Likewise.
3252         * metadata-internals.h: Update to changes.
3253         * class.c (mono_class_find_enum_basetype): Likewise.
3254         (mono_class_setup_fields): Likewise.
3255         (mono_class_create_from_typespec): Likewise.
3256         * loader.c (method_from_methodspec): Likewise.
3257         (mono_get_method_from_token): Likewise.
3258         (mono_method_get_header): Likewise.
3259
3260 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3261
3262         * marshal.c: handle additional GENERICINST case (patch from
3263         Thong Nguyen <tum@veridicus.com>).
3264         Fix a few cases where LDIND_I/STIND_I was used for references.
3265
3266 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3267
3268         * reflection.c (mono_reflection_get_token): Remove unused variable.
3269
3270 2006-02-16  Martin Baulig  <martin@ximian.com>
3271
3272         * reflection.c (mono_reflection_get_token): Add support for fields
3273         in instantiated generic types.
3274
3275         * icall.c
3276         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3277
3278 2006-02-15  Martin Baulig  <martin@ximian.com>
3279
3280         * icall.c
3281         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3282         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3283         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3284         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3285
3286 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3287
3288         * class.c, metadata.c, metadata.h, object.c, icall.c,
3289         marshal.c: changed mono_type_get_underlying_type () to do
3290         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3291         Fixed handling of instantiated generic valuetypes (bug #75479).
3292
3293 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3294
3295         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3296         Delegate to mono_metadata_decode_value, and work on the returned value.
3297
3298         * icall.c (ves_icall_MonoType_GetGenericArguments):
3299         Add consistency check here too.
3300         
3301 2006-02-15  Ankit Jain  <jankit@novell.com>
3302
3303         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3304         char/short etc.
3305
3306 2006-02-15  Ankit Jain  <jankit@novell.com>
3307
3308         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3309         signed values, used only for representing lower bounds of arrays.
3310         (mono_metadata_parse_array_full): Use new
3311         mono_metadata_decode_signed_value to decode lower bounds.
3312
3313 2006-02-14  Martin Baulig  <martin@ximian.com>
3314
3315         * reflection.c
3316         (mono_reflection_get_token): Support "MonoGenericMethod" and
3317         "MonoGenericCMethod" and allow generic instances / methods.
3318
3319 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3320
3321         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3322         to obtain the terminal size using an ioctl.
3323
3324         * object.c (mono_nullable_init): Revert this as nullable reference
3325         types are not valid.
3326         (mono_nullable_box): Ditto.
3327
3328 2006-02-09  Dick Porter  <dick@ximian.com>
3329
3330         * threads.c (mono_thread_detach): Drop a reference to the thread
3331         we're detaching.
3332
3333 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3334
3335         * object.c (mono_nullable_init): Handle nullable reference types.
3336         (mono_nullable_box): Ditto. Fixes #77446.
3337
3338 2006-02-07  Martin Baulig  <martin@ximian.com>
3339
3340         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3341
3342 2006-02-07  Ankit Jain  <jankit@novell.com>
3343
3344         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3345         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3346         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3347         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3348         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3349         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3350
3351 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3352
3353         * class.c (mono_class_create_generic): Set type_token as well.
3354
3355         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3356         compatible with MS.
3357
3358 2006-02-02  Martin Baulig  <martin@ximian.com>
3359
3360         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3361         has never been used so far.
3362
3363 2006-02-02  Martin Baulig  <martin@ximian.com>
3364
3365         * mono-debug-debugger.h: Changed comment at the top of this file;
3366         the header is not installed, but it's safe to #include it from
3367         within the JIT.
3368
3369         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3370         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3371
3372 2006-02-02  Martin Baulig  <martin@ximian.com>
3373
3374         * mono-debug.h
3375         (MonoSymbolTable): Removed the `metadata_info' field.
3376
3377         * mono-debug.c
3378         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3379
3380         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3381         (mono_debugger_add_builtin_types): Removed.
3382         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3383         (mono_debugger_create_notification_function): We now operate on a
3384         pre-allocated area; take a `gpointer' and return `void'.
3385
3386         * mono-debug-debugger.c
3387         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3388         (mono_debugger_add_builtin_types): Removed.
3389
3390 2006-02-02  Martin Baulig  <martin@ximian.com>
3391
3392         * threads.c (mono_debugger_create_all_threads): New public method.
3393
3394 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3395
3396         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3397         breaks on several platforms.
3398
3399 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3400
3401         * assembly.c: the VS.NET build doesn't supply default values for
3402         MONO_ASSEMBLIES and MONO_CFG_DIR.
3403
3404 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3405
3406         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3407         helper function.
3408
3409         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3410
3411         * loader.c (method_from_memberref): Fix a warning.
3412
3413         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3414
3415         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3416         with explicit layout. Fixes #77433.
3417
3418 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3419
3420         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3421         max_interface_id is initialized before using it. Fixes #77398.
3422         (ves_icall_Type_GetInterfaces): Ditto.
3423
3424 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3425
3426         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3427         allocate memory for parameter attributes when parsing memberref
3428         signatures.
3429         * loader.c (mono_loader_set_error_method_load): Don't warn.
3430         (method_from_memberref): Ensure MissingMethodException gets thrown
3431         if method is not found.  Make warning more informative.
3432
3433 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3434
3435         Fix #77397
3436         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3437         return true if is byref.
3438         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3439         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3440         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3441
3442 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3443
3444         Fix tests/find-method.2.il
3445         * loader.c (find_method, find_method_in_class): Remove is_inflated
3446         argument.  Revert 2006-01-18 change.
3447         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3448         is generic, search for method in its generic definition.
3449         * class.c (mono_class_setup_vtable_general): Print generic
3450         arguments of generic types in debugging printf.
3451
3452 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3453
3454         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3455
3456         * threads.c (mono_threads_request_thread_dump): New helper function.
3457
3458 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3459
3460         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3461
3462 2006-01-25  Ankit Jain  <jankit@novell.com>
3463
3464         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3465         move definition to ..
3466         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3467         
3468 2006-01-25  Ankit Jain  <jankit@novell.com>
3469             Raja R Harinath  <rharinath@novell.com>
3470
3471         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3472         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3473         as necessary.
3474
3475 2006-01-25  Martin Baulig  <martin@ximian.com>
3476
3477         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3478         `MonoDebuggerThread' into debug-debugger.c.
3479
3480 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3481
3482         * profiler.c: fix printing of data.
3483
3484 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3485
3486         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3487           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3488
3489 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3490
3491         * object.c: fix deadlock related to string interning.
3492
3493 2006-01-23  Martin Baulig  <martin@ximian.com>
3494
3495         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3496
3497         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3498
3499 2006-01-23  Martin Baulig  <martin@ximian.com>
3500
3501         * mono-debug.h: Moved the prototypes of some functions which are
3502         used by the JIT here from mono-debug-debugger.h.
3503
3504 2006-01-21  Martin Baulig  <martin@ximian.com>
3505
3506         * Makefile.am: Don't install mono-debug-debugger.h.
3507
3508 2006-01-21  Martin Baulig  <martin@ximian.com>
3509
3510         * mono-debug-debugger.h: Enforce the private status of this header
3511         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3512         Moved some stuff from mono-debugger-jit-wrapper.h here.
3513
3514 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3515
3516         * class.c (mono_class_from_typeref): Add a sanity test to help
3517         catch lack of assembly load/search hooks.
3518
3519 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3520
3521         * marshal.c (emit_struct_conv): Relax the fields with same offset
3522         check even more. Fixes #77230.
3523
3524 2006-01-18  Martin Baulig  <martin@ximian.com>
3525
3526         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3527         argument; if false, we compare the uninstantiated signatures.
3528         (method_from_memberref): Compare the uninstantiated signatures;
3529         fixes #76417.
3530
3531 2006-01-18  Robert Jordan  <robertj@gmx.net>
3532
3533         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3534         Clear the weak link. Fixes bug #77170.
3535
3536         * gc.c (mono_gchandle_free):
3537         Reflect *-gc.c changes (tiny optimization).
3538
3539 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3540
3541         * metadata.c (mono_metadata_signature_dup): Applied patch from
3542         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3543         Fixes #77288.
3544
3545 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3546
3547         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3548         marshalling from native to managed code. Fixes #77230.
3549
3550 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3551
3552         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3553         connect. Fixes bug #77020.
3554
3555 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3556
3557         * class.c: fixed id assignement for nested interfaces (bug #77275).
3558         Added also better info for --print-vtable debugging.
3559
3560 2006-01-12  Martin Baulig  <martin@ximian.com>
3561
3562         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3563         interfaces on-the-fly; fixes #76625.
3564
3565         * class-internals.h
3566         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3567         don't need that anymore.
3568
3569 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3570
3571         * socket-io.c
3572         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3573         To avoid initing the nested_classes when not needed I turned the
3574         PeerCredData as a toplevel internal class, as it has to be shared
3575         anyways. 
3576
3577         Fixes the CASA issue.
3578
3579 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3580
3581         * domain.c: Accessors for MonoJitInfo
3582
3583         * profiler-private.h: Add jitinfo to the end jit hook
3584
3585         * profiler.[ch]: Define new hooks, called after jitting which give
3586         the MonoJitInfo that was compiled
3587
3588 2006-01-10  Martin Baulig  <martin@ximian.com>
3589
3590         * class.c (mono_class_setup_events): Add support for generic
3591         classes; fixes #76440.
3592
3593 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3594
3595         Fix #77160.
3596         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3597         on passed-in method.
3598
3599 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3600
3601         * object.c (mono_runtime_invoke_array): Add Nullable support.
3602
3603         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3604
3605 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3606
3607         * file-io.c: Don't consider sockets as directory and avoid an endless
3608         loop. Fix bug #76966.
3609
3610 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3611
3612         * object.c (mono_nullable_init): New helper function.
3613         (mono_nullable_box): Ditto.
3614
3615         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3616
3617         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3618
3619         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3620         
3621 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3622
3623         * class.c (mono_class_is_assignable_from): Make T assignable to 
3624         Nullable<T>.
3625
3626 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3627
3628         * appdomain.c: Bump corlib version to 46.
3629         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3630         serialization purpose) and changed ves_icall_System_Reflection_
3631         Assembly_get_code_base signature to accept a boolean (to escape, or 
3632         not, the assembly code base).
3633
3634 2005-12-23  Dick Porter  <dick@ximian.com>
3635
3636         * icall.c: 
3637         * threads-types.h: 
3638         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3639         CreateEvent icall now returns "created" boolean parameter.
3640
3641 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3642
3643         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3644         #76967.
3645
3646         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3647         when attr_klass is an interface. Fixes #77045.
3648
3649 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3650
3651         * marshal.c (emit_struct_conv): Fix previous patch.
3652         
3653         * marshal.c (emit_struct_conv): Add a check for fields with the same
3654         offset.
3655
3656 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3657
3658         Fix regression in Mono.C5.
3659         * class.c (mono_class_create_generic): If 'klass' is an interface
3660         set up the interface offsets.
3661         (mono_class_is_assignable_from): Don't throw away generic arguments.
3662
3663 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3664
3665         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3666         type parameters.
3667
3668 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3669
3670         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3671         dead store.
3672         (do_mono_metadata_parse_generic_class): Don't pass the current
3673         generic context when parsing the type being instantiated: it
3674         cannot use it, anyway.
3675
3676         * loader.c (method_from_memberref): Don't inflate a signature if
3677         it doesn't contain any type parameters.
3678
3679 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3680
3681         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3682
3683 2005-12-14  Martin Baulig  <martin@ximian.com>
3684
3685         * class.c
3686         (mono_type_get_name_recurse): Don't return null for type
3687         parameters and open generic classes.
3688         (mono_class_setup_methods): Don't exclude generic instances.
3689         (mono_get_unique_iid): Use different IDs for different
3690         instantiations of the same generic type.
3691         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3692         open generic instances; create a normal vtable for closed generic
3693         instances.
3694         (mono_class_setup_vtable_general): We're now also called for
3695         closed generic instances.
3696
3697         * reflection.c
3698         (mono_reflection_bind_generic_parameters): Correctly use
3699         mono_metadata_lookup_generic_inst() everywhere.
3700
3701 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3702
3703         * object.c (mono_class_create_runtime_vtable): Call 
3704         mono_class_setup_vtable ().
3705
3706         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3707         function.
3708         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3709         #76959.
3710
3711         * loader.c (mono_loader_set_error_type_load): Print the type load
3712         warnings to the console so they are more visible to the user.
3713         (mono_loader_set_error_method_load): Ditto.
3714
3715         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3716         is still broken.
3717         
3718         * reflection.c (ensure_runtime_vtable): Fix build.
3719
3720         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3721         doesn't work in all cases.
3722
3723 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3724
3725         * object.c (mono_array_new_full): Treat a single dimensional array
3726         with 0 lower bounds as an szarray. Fixes #76973.
3727
3728         * reflection.c (custom_attr_visible): Really fix this.
3729
3730 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3731
3732         * reflection.c (custom_attr_visible): Allow nested public attributes
3733         as well.
3734
3735         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3736         interface check.
3737
3738 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3739
3740         * class.c (set_generic_param_owner): Delete.
3741         (mono_class_create_from_typedef): Don't set ->owner field of
3742         generic parameters to "param containers" of enclosing classes.
3743         * reflection.c (mono_reflection_initialize_generic_parameter):
3744         Likewise.
3745
3746 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3747
3748         * reflection.c (custom_attr_visible): Fix build.
3749
3750 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3751
3752         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3753         private attributes.
3754         
3755         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3756         handling of null parameter defaults.
3757
3758 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3759
3760         * class.c (mono_class_from_generic_parameter): Don't set
3761         klass->generic_container.
3762         (my_mono_class_from_generic_parameter): Likewise.
3763
3764 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3765
3766         * reflection.c (load_public_key): Fix a warning.
3767         (method_encode_code): Fix unaligned accesses.
3768
3769 2005-12-07  Martin Baulig  <martin@ximian.com>
3770
3771         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3772
3773         * reflection.c
3774         (write_generic_param_entry): Encode our custom attrs.
3775
3776         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3777
3778 2005-12-07  Martin Baulig  <martin@ximian.com>
3779
3780         * reflection.c (encode_new_constraint): Removed; we don't use the
3781         `NewConstraintAttribute' anymore.
3782
3783 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3784
3785         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3786         not fire a TypeResolve event when Assembly.GetType () is called.
3787
3788 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3789
3790         Beginning of support for nullable types in the runtime. Parts of
3791         this patch are from Martin.
3792
3793         * appdomain.c (MONO_CORLIB_VERSION): Bump
3794
3795         * domain.c (mono_init_internal): get the nullable type
3796
3797         * class.c (mono_class_is_nullable): New method
3798         (mono_class_get_nullable_param): New mehod
3799         (mono_class_create_generic): In types T? set cast_class to T
3800
3801         * class-internals.h (MonoDefaults): new nullable default class
3802         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3803         new methods.
3804
3805 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3806
3807         * metadata.c (select_container): New.  Refactor code to select the
3808         appropriate GenericContainer given the type of generic parameter
3809         we are looking for.
3810         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3811         not a MonoGenericContext.  Use select_container.  Update parameters.
3812         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3813         and MONO_TYPE_MVAR.
3814         (unwrap_arrays): Remove duplicate tests.
3815         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3816         generic instantiated class to find any arguments that are generic
3817         parameters.
3818         (mono_type_create_from_typespec_full): Use find_generic_param to
3819         avoid evicting some generic instantiations from the typespec
3820         cache.
3821
3822 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3823
3824         * reflection.c: fixed writing of doubles on ARM FPA.
3825
3826 2005-12-02  Robert Jordan  <robertj@gmx.net>
3827
3828         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3829
3830 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3831
3832         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3833         least on SUSE 10 they are not the same (on debian, they are just the
3834         same thing).
3835
3836 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3837
3838         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3839         DeclaringType for VARs and MVARs.
3840         * class.c (set_generic_param_owner): Fix initialization of owner
3841         fields.
3842
3843 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3844
3845         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3846
3847 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3848
3849         * threadpool.c: workaround for a bug that shows up on the Mac:
3850         select()+connect() on a blocking socket is not like it should
3851         be, so we proceed to connect() in that case, wasting the I/O
3852         threadpool thread until connect succeedes. Fixes bug #75436.
3853
3854 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3855
3856         * threadpool.c: fix typo when setting file descriptor states.
3857
3858 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3859
3860         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3861         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3862         create a temporary signature container.
3863         (mono_metadata_parse_generic_param): Update to changes.
3864         (mono_type_create_from_typespec_full): Update to changes.
3865         * loader.c (method_from_memberref): Don't use a
3866         MonoGenericContainer while parsing a memberref signature.
3867         (method_from_methodspec): Remove dead-store of the 'container'
3868         variable.  It's overwritten before use.
3869
3870         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3871         checks tighter.
3872         (mono_metadata_parse_generic_param): Likewise.
3873         * loader.c (find_method_in_class): Does not need a
3874         MonoGenericContainer.  Use 'mono_method_signature' rather than
3875         'mono_method_signature_full'.
3876         (find_method, mono_get_method_constrained, method_from_memberref):
3877         Update to changes.
3878
3879         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3880         owner-less generic-parameters are never evicted from the typespec
3881         cache.
3882
3883         * loader.c (method_from_memberref): Don't use the current context
3884         when parsing signatures.
3885         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3886
3887         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3888         side-effects in g_assert.
3889         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3890         that we don't potentially lose information.
3891
3892 2005-11-26  Dick Porter  <dick@ximian.com>
3893
3894         * icall.c:
3895         * threads.c: icalls to implement basic (ie, not named)
3896         System.Threading.Semaphore.
3897
3898 2005-11-24  Dick Porter  <dick@ximian.com>
3899
3900         * process.c
3901         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3902         Use GetProcessId() if it's available.
3903
3904 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3905
3906         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3907
3908 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3909             Ankit Jain  <jankit@novell.com>
3910
3911         * loader.c (mono_get_method_from_token): Initialize 'method' field
3912         of all generic parameters before parsing the signature.  Remove
3913         code that "fixed"-up MVAR references.
3914
3915 2005-11-23  Ankit Jain  <jankit@novell.com>
3916
3917         * metadata.c (mono_metadata_has_generic_params):
3918         (mono_metadata_load_generic_param_constraints):
3919         (mono_metadata_load_generic_params): Move duplicate code ...
3920         (mono_metadata_get_generic_param_row): ... here. Returns the
3921         first row-id in GenericParam table for a given owner (token).
3922         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3923         prototype.
3924
3925 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3926             Ankit Jain  <jankit@novell.com>
3927
3928         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3929         comparing VARs too.
3930         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3931         type->data.generic_param only if the type is an MVAR.
3932         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3933         leak owner-less VARs and MVARs into managed space.
3934
3935 2005-11-21  Martin Baulig  <martin@ximian.com>
3936
3937         * class-internals.h
3938         (MonoMethod): Moved the `generic_container' here from
3939         `MonoMethodNormal' since we now also need it for
3940         `MonoMethodPInvoke';
3941         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3942         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3943         an union containing both `MonoMethodNormal' and
3944         `MonoMethodPInvoke'.
3945
3946         * loader.c
3947         (mono_get_method_from_token): Allow implementing generic methods
3948         as interncalls.
3949
3950         * threads.c
3951         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3952         icall.
3953
3954 2005-11-17  Dick Porter  <dick@ximian.com>
3955
3956         * icall.c: 
3957         * process.h: 
3958         * process.c: Split the Process Start_internal icall into
3959         ShellExecuteEx_internal and CreateProcess_internal, which are
3960         called depending on whether UseShellExecute is true.  Fixes bug
3961         76670.
3962
3963         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3964
3965 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3966
3967         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3968         'msize' parameters, use the information in 'mspec' instead.
3969         (emit_object_to_ptr_conv): Ditto.
3970
3971         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3972         fields out of order. Fixes #76733.
3973
3974 2005-11-17  Ankit Jain  <jankit@novell.com>
3975
3976         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3977
3978 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3979
3980         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3981           bug #76575.
3982
3983 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3984
3985         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3986         for types with non-auto layout. Fixes #76717.
3987
3988 2005-11-16  Ankit Jain  <jankit@novell.com>
3989
3990         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3991         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3992         if generic_context is null.
3993           (mono_metadata_generic_param_equal): param->owner can be null.
3994           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3995         null.
3996
3997 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3998
3999         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4000         the correct value.
4001
4002 2005-11-15  Martin Baulig  <martin@ximian.com>
4003
4004         * object.c (set_value): Use mono_class_from_mono_type() instead of
4005         the hack for generic instances; fixes #76136.
4006
4007 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4008
4009         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4010         fields.
4011
4012         * image.c (load_metadata_ptrs): Initialize the new fields.
4013
4014         * reflection.c (create_dynamic_mono_image): Ditto.
4015
4016         * reflection.c (build_compressed_metadata): Use the new fields.
4017
4018         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4019         icall.
4020
4021         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4022         icall.
4023         
4024 2005-11-15  Ankit Jain  <jankit@novell.com>
4025             Raja R Harinath  <harinath@gmail.com>
4026
4027         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4028         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4029         new per-generic_container cache if the cached MonoType's context matches
4030         the current context.
4031           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4032         to the expected context.
4033           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4034
4035 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4036
4037         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4038         we changed the signature of an icall.
4039         * icall.c: Modify to mono_double_ParseImpl return true/false 
4040         depending on the success, instead of throwing the exception. This will
4041         help us in Double.TryParse methods.
4042         
4043 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4044
4045         * marshal.c (emit_marshal_object): Throw an exception when
4046         marshalling 'object' instead of crashing. Fixes #76696.
4047
4048 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4049
4050         * class-internals.h: Add prototype for mono_type_get_full_name ().
4051
4052 2005-11-11  Dick Porter  <dick@ximian.com>
4053
4054         * threads.c (mono_thread_manage): Make sure the main thread has
4055         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4056
4057 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4058
4059         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4060         console about the missing type.
4061         (mono_loader_set_error_method_load): Ditto.
4062
4063 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4064
4065         * mono-config.c (mono_get_config_dir): Set the system defaults if
4066         none is specified.
4067
4068         * assembly.c (mono_set_dirs): New API entry point to set the
4069         assembly and the config directory in one call
4070
4071 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4072
4073         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4074         the ftnptr was created from a delegate in a domain other than the
4075         current domain. Fixes #75377.
4076
4077         * exception.h exception.c: Add mono_get_exception_not_supported ().
4078
4079 2005-11-08  Martin Baulig  <martin@ximian.com>
4080
4081         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4082
4083 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4084
4085         * security-manager.h: Added definitions to deal with strongname key 
4086         pairs bigger (and smaller) than 1024 bits.
4087         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4088         adjust wrt the public key length being used.
4089
4090 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4091
4092         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4093           Windows build (r51396-51397).
4094
4095 2005-11-03  Martin Baulig  <martin@ximian.com>
4096
4097         * class.c (mono_class_setup_vtable_general): Also add generic
4098         methods to the vtable; fixes #76581.
4099
4100 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4101
4102         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4103         sure that we lookup GetString method from the System.Text.Encoding
4104         class, not the derived class or we get an empty method.
4105
4106         Fixed class #76612.
4107
4108 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4109
4110         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4111         if it has been previously set (embedders). 
4112
4113         Make mono_set_rootdir available also on Unix.
4114
4115 005-10-24  Robert Jordan  <robertj@gmx.net>
4116
4117         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4118
4119 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4120
4121         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4122         only calls which are made to native code use this flag.
4123
4124         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4125
4126 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4127
4128         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4129         Add support for FieldBuilders.
4130
4131 2005-10-29  Martin Baulig  <martin@ximian.com>
4132
4133         * mono-debug.c
4134         (mono_debug_using_mono_debugger): New public method; returns
4135         whether we're running inside the debugger.
4136
4137 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4138
4139         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4140         for Method/Constructor/FieldBuilders.
4141
4142 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4143
4144         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4145         and fields as well.
4146
4147 2005-10-26  Martin Baulig  <martin@ximian.com>
4148
4149         * mono-debug-debugger.c
4150         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4151
4152 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4153
4154         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4155         integer to isspace.
4156
4157 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4158
4159         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4160         when passing valuetypes byref. Fixes #76502.
4161
4162 2005-10-19  Jackson Harper  <jackson@ximian.com>
4163
4164         * profiler.c: Don't put a . in front of types that are not in a
4165         namespace.
4166
4167 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4168
4169         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4170
4171 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4172
4173         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4174         #76436.
4175         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4176
4177 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4178
4179         * assembly.c metadata-internals.h icall.c: Define an additional
4180         parameter for mono_assembly_name_parse_full, so we can avoid creating
4181         S.R.AssemblyName.Version when no version info wasn't passed.
4182         
4183 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4184
4185         * class.c (mono_type_get_full_name): Reimplement method that was
4186         removed. 
4187
4188         * image.c: Some docs
4189
4190 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4191
4192         * profiler.c (output_newobj_profile): Fix printing of Total memory
4193         on x86.
4194
4195 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4196
4197         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4198
4199 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4200
4201         * threads.c: remove debug output.
4202
4203 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4204
4205         * threads.c (mono_thread_manage): Fix crashes if more than 64
4206         threads need to be aborted. Hopefully fixes #75899.
4207
4208         * assembly.c (mono_stringify_assembly_name): New helper function.
4209
4210         * class.c: Use mono_stringify_assembly_name instead of the similar
4211         static function.
4212
4213         * assembly.h assembly.c: Add support for calling a postload search 
4214         hook if an assembly cannot be loaded.
4215
4216         * appdomain.c: Register new search hooks which call the AssemblyResolve
4217         events in AppDomain. Fixes #75231
4218
4219 2005-10-07  Martin Baulig  <martin@ximian.com>
4220
4221         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4222         methods without debug info.
4223
4224 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4227         wrappers.
4228
4229 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4230
4231         * file-io.c: now that we return symlinks, use lstat and, when the file
4232         is a symbolic link, stat, to get the file attributes. Also avoid the
4233         conversion to/from utf16/external.
4234
4235 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4236
4237         * class.c (mono_class_layout_fields): Compute klass->has_references
4238         correctly if an embedded valuetype is not yet initialized. Fixes
4239         #76331.
4240
4241 2005-10-04  Martin Baulig  <martin@ximian.com>
4242
4243         * metadata.c
4244         (mono_metadata_load_generic_param_constraints): New public
4245         function; splitted the constraints loading out from
4246         mono_metadata_load_generic_params().
4247
4248         * class.c (mono_class_create_from_typedef): Call
4249         mono_metadata_load_generic_param_constraints() after setting up
4250         the type and creating our parent; fixes #75329.
4251
4252 2005-10-04  Martin Baulig  <martin@ximian.com>
4253
4254         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4255         non-dynamic parent classes.
4256
4257 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4258
4259         * file-io.c : win32 build fix (ETXTBSY seems not found).
4260
4261 2005-10-04  Martin Baulig  <martin@ximian.com>
4262
4263         * reflection.c
4264         (mono_image_get_methodspec_token): Make the cache actually work;
4265         fixes #75974.
4266
4267 2005-10-04  Martin Baulig  <martin@ximian.com>
4268
4269         * class.c (mono_class_name_from_token): Removed the unneccessary
4270         `MonoGenericContext *' argument.
4271
4272 2005-10-04  Martin Baulig  <martin@ximian.com>
4273
4274         * loader.c
4275         (method_from_methodspec): Make the caching work again; fixes the
4276         performance regression from #76262.
4277
4278 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4279
4280         * file-io.c:
4281         * file-io.h:
4282         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4283         GetFileSystemEntries that performs the same work but without going
4284         into io-layer, locking, etc.
4285
4286 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4287
4288         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4289         ThreadState_Stopped as well. Fixes #76047.
4290
4291 2005-09-29  Martin Baulig  <martin@ximian.com>
4292
4293         * class.c
4294         (inflate_generic_context): If the new context has a `gmethod', set
4295         its `container' that that gmethod's `container'.
4296
4297         * metadata.c
4298         (mono_metadata_parse_generic_param): Simplify things;
4299         `generic_container = generic_context->container;' is just fine.
4300
4301         * loader.c (method_from_methodspec): Code cleanups.
4302
4303 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4304
4305         * decimal.c: fix warning (and let gcc generate correct
4306         code on ARM with optimizations).
4307
4308 2005-09-28  Martin Baulig  <martin@ximian.com>
4309
4310         * loader.c
4311         (method_from_memberref): Added `MonoGenericContext *class_context'
4312         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4313         (method_from_methodspec): If we're a memberref, use the enclosing
4314         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4315
4316 2005-09-28  Martin Baulig  <martin@ximian.com>
4317
4318         * object.c (mono_runtime_invoke_array): Added support for
4319         MONO_TYPE_GENERICINST; fixes #75917.
4320
4321 2005-09-27  Martin Baulig  <martin@ximian.com>
4322
4323         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4324         `k->byval_arg.type' to determine the actual type.
4325
4326         * loader.c (method_from_methodspec): Removed some hacks.
4327
4328 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4329
4330         * class-internals.h (mono_field_is_deleted): Do the test for
4331         rtspecialname before we check the actual name of the field. This
4332         prevents us from dereferencing a pointer into the string table,
4333         saving us from accessing a few pages
4334
4335         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4336         macros. This will allow a deadlock debugger to easily be plugged
4337         in.
4338
4339 2005-09-27  Martin Baulig  <martin@ximian.com>
4340
4341         * loader.c (method_from_methodspec): Create a "signature"
4342         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4343
4344 2005-09-27  Martin Baulig  <martin@ximian.com>
4345
4346         * class.c
4347         (inflate_generic_class): Correctly set the new context's
4348         container.
4349
4350         * loader.c
4351         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4352         instead of a `MonoGenericContext *'.
4353         (mono_method_signature_full): Take a `MonoGenericContainer *'
4354         instead of a `MonoGenericContext *'.
4355
4356         * metadata.c
4357         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4358         instead of a `MonoGenericContext *'.
4359         (mono_metadata_parse_method_signature_full): Likewise.
4360
4361 2005-09-26  Martin Baulig  <martin@ximian.com>
4362
4363         * class.c
4364         (mono_class_from_generic_parameter): Set `klass->generic_container'
4365         (mono_class_from_generic_parameter): Likewise.
4366         (mono_bounded_array_class_get): We inherit the generic container
4367         from the element class.
4368
4369         * loader.c
4370         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4371         argument rather than computing it here.
4372         (method_from_memberref): Correctly set the generic context before
4373         parsing the signature.  Fixes #75681.
4374
4375 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4376
4377         * object.c (mono_class_has_special_static_fields): Fix warnings.
4378
4379 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4380
4381         * assembly.c: Add parse_public_key function, to
4382         par the public keys. Also added mono_assembly_name_parse_full,
4383         to define it the parsed key should be freed or not.
4384         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4385         to parse a long format assembly name.
4386         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4387         private, since calling it to preserve the key requires
4388         freeing it manually.
4389         
4390 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4391
4392         * locales.c : removed HAVE_ICU part.
4393
4394 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4395
4396         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4397         field_is_special_static if the klass has no special static fields.
4398
4399         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4400         (MonoCachedClassInfo): Likewise.
4401
4402         * object.c (mono_class_has_special_static_fields): New helper function.
4403
4404 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4405
4406         * class.c (mono_class_create_from_typedef): Don't call 
4407         interfaces_from_typedef_full for enums.
4408         (mono_class_create_from_typedef): Compute the base types of enums directly
4409         without calling mono_class_setup_fields ().
4410         (mono_class_find_enum_basetype): New helper function.
4411
4412         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4413         one place inside the string heap.
4414         
4415 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4416
4417         * class.c: locking fixes, code cleanups, some docs added.
4418         Allocate some data structures in the image mempool.
4419
4420 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4421
4422         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4423         the example code.
4424         
4425 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4426
4427         * class-internals.h, class.c, reflection.c: reduce memory taken by
4428         MonoClass.
4429
4430 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4431
4432         * metadata.c, metadata.h, loader.h: documentation updates, code and
4433         API cleanups.
4434
4435 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4436
4437         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4438         the example code.
4439
4440         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4441         page faults caused by the runtime while reading metadata.
4442
4443 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4444
4445         * socket-io.c: the field names were changed 3 months ago and no one
4446         realized until bug #76077 got filed!
4447
4448 2005-09-20  Martin Baulig  <martin@ximian.com>
4449
4450         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4451
4452 2005-09-20  Martin Baulig  <martin@ximian.com>
4453
4454         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4455         write the rank into the class entry.
4456
4457 2005-09-20  Martin Baulig  <martin@ximian.com>
4458
4459         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4460
4461 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4462
4463         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4464
4465         * icall.c (custom_attrs_defined_internal): New icall.
4466
4467         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4468         function.
4469         (mono_custom_attrs_construct_by_type): New helper function.
4470
4471 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4472
4473         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4474         terminate the resulting string. Fixes #76123.
4475
4476 2005-09-16  Martin Baulig  <martin@ximian.com>
4477
4478         * mono-debug.c
4479         (mono_debug_add_method): Ignore inflated methods for the moment.
4480
4481 2005-09-14  Martin Baulig  <martin@ximian.com>
4482
4483         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4484
4485 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4486
4487         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4488         return a success/failure indication.
4489         (mono_metadata_interfaces_from_typedef_full): Ditto.
4490         (get_constraints): Ditto.
4491
4492 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4493
4494         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4495         
4496         * marshal.c (emit_marshal_array): Add support for returning string
4497         arrays from delegates. Fixes #76063.
4498
4499         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4500
4501 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4502
4503         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4504         icall.
4505
4506 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4507
4508         * reflection.c icall.c: Fix after mono_get_exception_type_load
4509         signature change.
4510
4511         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4512         (mono_assembly_load_reference): Use the new helper.
4513
4514         * class-internals.h (MonoLoaderError): New structure containing 
4515         information about type loading errors.
4516
4517         * class-internals.h loader.c: Add APIs to store per-thread loader
4518         error information.
4519
4520         * loader.c class.c: Set the loader error if needed.
4521
4522         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4523
4524 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4525
4526         * decimal.c: fixed to handle the broken ARM fp format.
4527
4528 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4529
4530         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4531         broken.
4532
4533 2005-09-06  Martin Baulig  <martin@ximian.com>
4534
4535         * domain.c (supported_runtimes): Added v2.0.50727.
4536
4537 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4538
4539         * culture-info.h: reduce the size of some structures.
4540
4541 2005-09-05  Martin Baulig  <martin@ximian.com>
4542
4543         Reflect latest API changes in the August CTP.
4544
4545         * icall.c
4546         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4547         ("MonoType.HasGenericArguments"): Removed.
4548         ("MonoMethod.BindGenericParameters"): Renamed to
4549         "MakeGenericMethod".
4550         ("MethodBuilder.BindGenericParameters"): Renamed to
4551         "MakeGenericMethod".    
4552
4553 2005-09-05  Martin Baulig  <martin@ximian.com>
4554
4555         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4556
4557 2005-09-05  Martin Baulig  <martin@ximian.com>
4558
4559         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4560
4561         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4562         generic_container is non-NULL.
4563
4564 2005-09-05  Martin Baulig  <martin@ximian.com>
4565
4566         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4567
4568         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4569
4570 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4571
4572         * reflection.c (encode_locals,
4573         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4574         for large generic types.
4575
4576 2005-09-05  Martin Baulig  <martin@ximian.com>
4577
4578         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4579
4580         * class.c (mono_dup_array_type): New public method.
4581         (mono_metadata_signature_deep_dup): New public method.
4582         (dup_type): Correctly duplicate array and function types.
4583
4584 2005-09-05  Martin Baulig  <martin@ximian.com>
4585
4586         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4587
4588         * reflection.c (get_default_param_value_blobs): Handle generic types
4589         and generic methods.
4590
4591 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4592
4593         * class.c: Fixed error reporting (method/class were inversed) for 
4594         inheritance demands.
4595         * security-manager.c|h: Added the AppDomain when calling the managed
4596         System.Security.SecurityManager.InheritanceDemand method.
4597
4598 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4599
4600         * reflection.c (encode_marshal_blob): 'marshaltype' and
4601         'marshaltyperef' are alternate sources for the custom marshaler
4602         name.
4603
4604 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4605
4606         * class.c: fix creation of array classes with rank == 1
4607         (patch by Ankit Jain <jankit@novell.com>).
4608
4609 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4610
4611         * object.c: fix check for creating the bound data for arrays vs
4612         szarrays.
4613
4614 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4615
4616         * object.c: configuration file name is now based on the executable name,
4617         not the image name. Fixes bug #75931.
4618
4619 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4620
4621         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4622         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4623
4624 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4625
4626         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4627
4628 2005-08-24  Ankit Jain  <jankit@novell.com>
4629             Raja R Harinath  <rharinath@novell.com>
4630
4631         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4632           called by it recursively.
4633           (mono_class_init): Remove special case in pending_init handling, since it's
4634           superseded by the fix to mono_class_from_typeref.
4635
4636 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4637
4638         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4639         BROKEN_THREAD_START stuff.
4640
4641 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4642
4643         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4644         trampoline.
4645
4646         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4647         
4648         * object.c (mono_delegate_ctor): Replace the original function address with
4649         a delegate trampoline.
4650
4651 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4652
4653         * icall.c: add boolean argument to base64_to_byte_array and 
4654         InternalFromBase64String to control whether a whitespace-only string
4655         is allowed (or should casue a FormatException to be thrown). We need
4656         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4657         to match the MS behaviour in both profiles.
4658         * appdomain.c: Bump corlib version.
4659
4660 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4661
4662         This patch implements a big portion of publisher policy
4663         support, used to bind assembly versions and redirect
4664         one assembly from version A to version B.
4665
4666         * assembly.c:
4667         New GSList loaded_assembly_bindings, for storing the cached
4668         assembly bindings.
4669         (assembly_binding_maps_name): New static function for checking if a 
4670         assembly binding information maps an assembly name.
4671         (mono_assembly_binding_info_free): New function for freeing
4672         assembly binding information resources.
4673         (get_publisher_policy_info): New static function for retrieving 
4674         assembly binding information from a MonoImage.
4675         (compare_versions): New static function for comparing an assembly
4676         binding information data and the version of an assembly name.
4677         (check_policy_versions): New static function for checking if an
4678         assembly binding info mapping an assembly name is valid for it.
4679         (mono_assembly_load_publisher_policy): New static function for
4680         loading the 'policy.major.minor.MyAssembly' image for an assembly
4681         with an assembly name 'aname'.
4682         (mono_assembly_bind_version): New static function for updating
4683         assembly redirection.
4684         (mono_assembly_apply_binding): New static function for applying
4685         assembly binding.
4686         (search_binding_loaded): New static function for searching 
4687         loaded assembly binding infos in the cache domain.
4688         (mono_assembly_load_full): Don't apply assembly binding for
4689         reflection only assemblies.
4690
4691         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4692         which contains information about assembly binding. Also
4693         declare signature for mono_config_parse_publisher_policy ()
4694         function, used to retrieve pub policy info.
4695         
4696         * mono-config.c:
4697         (publisher_policy_start): New static function used to parse publisher 
4698         policy config files.
4699         (publisher_policy_parser): New static MonoParseHandler containing 
4700         the functions used when parsing config files.
4701         (mono_config_parse_publisher_policy): New function for parsing
4702         publisher policy files.
4703         
4704 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4705
4706         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4707
4708         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4709
4710         * object.c (mono_get_addr_from_ftnptr): New helper function.
4711
4712         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4713
4714         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4715
4716 2005-08-19  Dick Porter  <dick@ximian.com>
4717
4718         * threads.c, threads.h, appdomain.c, appdomain.h,
4719         profiler-private.h, monitor.c, object.c, object-internals.h,
4720         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4721         store the thread ID, so it can hold a 64 bit value if needed.
4722
4723 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4724
4725         * reflection.c (mono_reflection_create_dynamic_method): Store the
4726         handle class into the method references as well so ldtoken works in
4727         dynamic methods.
4728
4729         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4730         types.
4731
4732 2005-08-19  Ankit Jain <jankit@novell.com>
4733
4734         Fix #75847.
4735         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4736           here rather than using the method signature of a arbitrary function
4737           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4738           two arguments.
4739           Hack done with Harinath.
4740
4741 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4742
4743         * threadpool.c: disable printing stack traces when we get a exception
4744         in a threadpool thread. I need to do more testing to figure out which
4745         cases actually print this. Fixes bug #75828.
4746
4747 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4748
4749         * icall.c: there might be ignored whitespace after the last '='. This
4750         fixes length computation and bug #75840.
4751
4752 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4753
4754         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4755         well. Fixes #75809.
4756
4757         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4758         #75784.
4759         
4760         * reflection.c (create_custom_attr_data): Ditto.
4761
4762 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4763
4764         * locales.c, culture-info.h : removed RegionLCIDMap.
4765         * culture-info-tables.h : regenerated.
4766
4767 2005-08-16  Martin Baulig  <martin@ximian.com>
4768
4769         * class.c (mono_type_get_name_recurse): Small fix.
4770
4771 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4772
4773         * locales.c : indentation fixie.
4774
4775 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4776
4777         * object-internals.h,
4778           locales.h,
4779           locales.c,
4780           culture-info.h,
4781           icall.c : added RegionInfo table support.
4782         * culture-info-table.h : regenerated for region support.
4783
4784 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4785
4786         * reflection.c (resolve_object): handle all kinds of MonoMethod
4787         including generic ones
4788
4789 2005-08-12  Ankit Jain <jankit@novell.com>
4790
4791         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4792           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4793
4794 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4795
4796         * process.c: Don't close a thread handle when it's NULL. This is a
4797         workaround for bug #75733.
4798
4799 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4800
4801         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4802
4803 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4804
4805         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4806
4807 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4808
4809         * threadpool.c: if a work item in the thread pool has a callback that
4810         catches a exception, don't propagate it after invoking the callback.
4811         Fixes bug #75336.
4812
4813 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4814
4815         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4816
4817         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4818
4819         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4820
4821         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4822
4823 2005-08-03  Ankit Jain  <jankit@novell.com>
4824
4825         Fix #75683.
4826         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4827           PInvoke calling convention is 0.
4828
4829 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4830
4831         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4832         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4833
4834 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4835
4836         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4837         to handle threads not started by the GC (patch by Michael Meeks
4838         <michael.meeks@novell.com>).
4839
4840 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4841
4842         * reflection.c: Make buffer used in emitting types larger for some
4843         big generic types (patch by Michal Moskal).
4844
4845 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4846
4847         * mono-debug.c: Fix some (not all) alignment problems.
4848
4849 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4850
4851         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4852         Invoke mono_image_load_from_data_full passing the refonly
4853         parameter.
4854
4855         * assembly.c
4856         (mono_assembly_open_from_bundle): Add the refonly argument, 
4857         in order to pass it to other methods it calls to.
4858         (do_mono_assembly_open): Add the refonly argument, in order 
4859         to pass it to other methods it calls to.
4860         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4861         the refonly parameter to it.
4862
4863         * image.c: Add loaded_images_refonly_hash and
4864         loaded_images_refonly_guid_hash to cache the reflection
4865         only loaded images.
4866         (mono_images_init): Initialize the hash tables used for
4867         caching the reflection only images.
4868         (load_modules): Invoke mono_image_open_full passing the refonly
4869         parameter to load the modules the correct way.
4870         (build_guid_table): Add the refonly argument, to re-build the 
4871         correct hash table.
4872         (do_mono_image_open): Added the refonly argument, in order to
4873         define it for the loaded image.
4874         (mono_image_loaded_full): New function, which receives an
4875         additional parameter to look for the image in the refonly or
4876         non-refonly section.
4877         (mono_image_loaded): Updated, using mono_image_loaded_full.
4878         (mono_image_loaded_by_guid_full): The same case that happens
4879         with mono_image_loaded_full.
4880         (mono_image_loaded_by_guid): Likewise.
4881         (register_image): Use the ref_only variable inside MonoImage
4882         to decide in which hash table store the current image.
4883         (mono_image_open_from_data_full): Rename
4884         mono_image_open_from_data to mono_image_open_from_data_full,
4885         adding the refonly argument, to define the ref_only variable 
4886         inside MonoImage.
4887         (mono_image_open_from_data): Return 
4888         mono_image_open_from_data_full.
4889         (mono_image_open_full): Rename mono_image_open to
4890         mono_image_open_full, receiving the new refonly argument,
4891         to pass it to inner methods.
4892         (mono_pe_file_open): Update this function, to open
4893         a MonoImage as a non-refonly image.
4894         (mono_image_close): Use the refonly variable inside
4895         MonoImage to remove the image from the correct caches.
4896
4897         * image.h: Add the signatures of mono_image_open_full,
4898         mono_image_open_from_data_full, mono_image_loaded_full,
4899         mono_image_loaded_by_guid_full.
4900
4901         * metadata-internals.h: Add the ref_only field to 
4902         MonoImage.
4903         
4904 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4905
4906         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4907         Fix the last behavior, which used to load the assemblies and
4908         extract MonoReflectionAssemblyName information, instead of
4909         extract it from the metadata tables. Needed for Reflection
4910         Only assemblies.
4911         
4912 2005-07-29  Martin Baulig  <martin@ximian.com>
4913
4914         * mono-debug-debugger.c
4915         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4916         not initialized.
4917
4918         * mono-debug.c
4919         (mono_debug_address_from_il_offset): Check whether we have
4920         debugging support before attempting to take the lock.
4921         (mono_debug_source_location_from_address): Likewise.
4922         (mono_debug_source_location_from_il_offset): Likewise.
4923         (mono_debug_il_offset_from_address): Likewise.
4924         (mono_debug_address_from_il_offset): Likewise.
4925
4926 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4927
4928         * class.c (mono_class_from_name_case): Add support for dynamic images.
4929         Fixes #75650.
4930
4931         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4932         for #75479.
4933
4934 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4935         
4936         * reflection.c (mono_method_get_object): Fix warning.
4937
4938 2005-07-28  Martin Baulig  <martin@ximian.com>
4939
4940         * mono-debug.c
4941         (mono_debug_add_wrapper): Also write the wrapper type.
4942
4943 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4944
4945         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4946         
4947         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4948         data indicates the class has none.
4949
4950 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4951
4952         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4953         loader lock with the debugger lock. Prevents deadlocks for beagle.
4954
4955         Beagle can now run on an smp box for a weekend without any
4956         issues. Woohoo!
4957
4958 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4959
4960         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4961         in a module. Fixes #75629.
4962
4963 2005-07-26  Martin Baulig  <martin@ximian.com>
4964
4965         * mono-debug.c (mono_debug_add_wrapper): New static method.
4966         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4967         interncall or a wrapper.
4968
4969         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4970         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4971         (MONO_DEBUGGER_VERSION): Bump to 51.
4972
4973         * mono-debug-debugger.c
4974         (mono_debugger_add_type): Removed this empty function.
4975         (mono_debugger_add_method): Likewise.
4976
4977 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4978
4979         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4980         before accessing method->slot.
4981
4982 2005-07-21  Jb Evain  <jbevain@gmail.com>
4983
4984         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4985         Fixes #75010.
4986
4987 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4988
4989         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4990         #75587.
4991
4992 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4993
4994         * image.h image.c: Add mono_image_get_guid () API function.
4995
4996 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4997
4998         There were issues when multiple threads tried to load
4999         assemblies. A deadlock was created between assemblies_mutex and
5000         mono_domain_assemblies_lock. This fixes the issue by making the
5001         assembly ref counting be lock free. See bug 75586.
5002         
5003         * image.c (mono_image_close): The add ref function here was using
5004         Interlocked operations while the unref was using a mutex and a
5005         --. I don't think this was ever a bug that would be exposed in a
5006         non-pendantic way (ie, by an embedder doing a ref on one thread
5007         and an unref on another), but for the sake of correctness, this is
5008         now Interlocked.
5009
5010         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5011         (mono_assembly_load_reference): Call mono_assembly_addref rather
5012         than touching the refcount ourselves.
5013         (mono_assembly_close): Use InterlockedDecrement to unref the
5014         assembly. Don't acquire the lock unless it is actually needed.
5015
5016 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5017
5018         * class.c (mono_class_layout_fields): Fix calculation of has_references
5019         for generic types.
5020
5021 2005-07-12  Martin Baulig  <martin@ximian.com>
5022
5023         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5024
5025         * metadata.c
5026         (mono_type_hash): Provide better hashing for generic instances.
5027         (mono_generic_inst_hash): Improve hashing.
5028         (mono_generic_class_hash): Likewise.
5029
5030         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5031         generic instances.
5032
5033 2005-07-12  Martin Baulig  <martin@ximian.com>
5034
5035         * reflection.c (mono_reflection_create_runtime_class): Remove the
5036         hack for generic type definitions and non-`Run' assemblies.
5037         (mono_reflection_bind_generic_parameters): Also use
5038         `klass->wastypebuilder' to check for TypeBuilders.
5039
5040 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5041
5042         * class.c (mono_class_layout_fields): Fix calculation of has_references
5043         for generic types.
5044
5045         * class.c (inflate_generic_class): Fix a leak.
5046         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5047         for generic types.
5048
5049 2005-07-11  Martin Baulig  <martin@ximian.com>
5050
5051         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5052         on error.
5053
5054 2005-07-11  Martin Baulig  <martin@ximian.com>
5055
5056         * loader.c (find_method): Also lookup in
5057         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5058
5059 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5060
5061         * appdomain.c (mono_domain_unload): Don't free the error message
5062         before passing it to mono_get_exception_...
5063
5064         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5065         
5066 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5067
5068         * threads.c: try to better guess an available RT signal (bug #75387).
5069
5070 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5071
5072         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5073         and CACHE_OBJECT.
5074
5075 2005-07-07  Martin Baulig  <martin@ximian.com>
5076
5077         * class.c (mono_type_get_name_full): Return NULL for
5078         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5079         fixes #75408.
5080
5081 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5082
5083         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5084         exit the appdomain as well being aborted.
5085
5086         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5087         change back to the root domain after calling managed code. This enables
5088         appdomains using threadpools to be unloaded.
5089
5090 2005-07-07  Martin Baulig  <martin@ximian.com>
5091
5092         * class-internals.h
5093         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5094         into `MonoDynamicGenericClass' since we only need it for dynamic
5095         types.
5096
5097         * reflection.c (mono_class_bind_generic_parameters): We don't need
5098         to compute the `parent' here.
5099
5100 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5101
5102         * culture-info-table.h : regenerated.
5103
5104 2005-07-06  Martin Baulig  <martin@ximian.com>
5105
5106         * icall.c
5107         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5108
5109         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5110
5111 2005-07-06  Martin Baulig  <martin@ximian.com>
5112
5113         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5114         we're doing a signature-only comparision; fixes #74945.
5115
5116 2005-07-06  Martin Baulig  <martin@ximian.com>
5117
5118         * class-internals.h (MonoGenericClass): Moved some things out into
5119         a new `MonoInflatedGenericClass' type.  
5120         (MonoInflatedGenericClass): New type; the `klass' of a
5121         `MonoGenericClass' is now computed lazyly in
5122         mono_get_inflated_generic_class().      
5123
5124         * class.c (mono_get_inflated_generic_class): New public function.
5125         (mono_class_inflate_generic_method): Removed the unused
5126         `MonoClass *' argument.
5127         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5128         all the methods.
5129         (mono_class_create_generic): Make this static and merge it with
5130         mono_class_create_generic_2(); we're now called automatically from
5131         mono_get_inflated_generic_class().
5132
5133         * loader.c (mono_method_signature): Call
5134         mono_get_inflated_method() here.
5135
5136 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5137
5138         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5139         type of fields with RVA.
5140
5141         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5142         for this pseudo class.
5143         (my_mono_class_from_generic_parameter): Likewise.
5144         (mono_class_init): Allow interfaces to have cctors.
5145
5146 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5147
5148         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5149         lazily for AOT methods.
5150
5151 2005-07-05  Martin Baulig  <martin@ximian.com>
5152
5153         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5154         returns FALSE for a successful match, not TRUE.
5155
5156 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5157
5158         * loader.c (mono_method_get_index): Optimize this a bit.
5159
5160 2005-07-04  Martin Baulig  <martin@ximian.com>
5161
5162         * class.c
5163         (class_compute_field_layout): Move the check for generic type
5164         definitions into mono_class_layout_fields().  Fixes #74684.
5165         (mono_class_from_generic_parameter): Correctly compute
5166         `klass->parent'; fixes #75457.
5167
5168         * reflection.c (register_assembly, register_module): Make sure
5169         `domain->rejobject_hash' is already created.
5170
5171 2005-07-02  Martin Baulig  <martin@ximian.com>
5172
5173         * class-internals.h
5174         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5175         `MonoDynamicGenericClass'.      
5176
5177 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5178
5179         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5180         returned by a field getter is null, since null is a valid value.
5181
5182 2005-07-01  Martin Baulig  <martin@ximian.com>
5183
5184         * reflection.c (mono_reflection_generic_class_initialize): Update
5185         the `dgclass->fields [i].parent' to the correct class.
5186         (mono_image_get_fieldref_token): Use the declaring type, not the
5187         reflected type.
5188
5189 2005-07-01  Martin Baulig  <martin@ximian.com>
5190
5191         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5192
5193 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5194
5195         * threads.c (thread_cleanup): assert that thread != NULL
5196         (wait_for_tids_or_state_change): We were using the wrong variable
5197         when accessing wait->threads. `i' was always out of the bounds of
5198         the array.
5199
5200 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5201
5202         * loader.c: map user32 and kernel32 to libMonoSupportW
5203
5204 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5205
5206         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5207
5208 2005-06-28  Martin Baulig  <martin@ximian.com>
5209
5210         * loader.c (method_from_methodspec): Fix #75334.
5211
5212 2005-06-28  Martin Baulig  <martin@ximian.com>
5213
5214         Fix #74953 - Arrays now implement the generic IList<T> interface
5215         on the 2.0 platform.
5216
5217         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5218
5219         * reflection.c (mono_class_bind_generic_parameters): New public
5220         function; similar to mono_reflection_bind_generic_parameters(),
5221         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5222
5223         * domain.c (mono_init_internal): Try to initialize.
5224         `mono_defaults.generic_array_class' here; this'll only succeed if
5225         we're using the 2.0 corlib.
5226
5227         * icall.c
5228         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5229         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5230         (mono_lookup_internal_call): Added support for nested classes.
5231
5232         * loader.c
5233         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5234         we're an interncall and have generic arguments.
5235
5236         * class.c
5237         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5238         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5239         instance of System.Array.InternalArray<T> for arrays, so they
5240         implement the generic IList<T> interface.
5241
5242 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5243
5244         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5245         (chastamar@yahoo.com). Fixes #75374.    
5246
5247 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5248
5249         * culture-info-table.h: regenerated.
5250
5251 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5252
5253         * icall.c: handle spaces correctly for base64 strings.
5254
5255 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5256
5257         * *.c: Kill some warnings.
5258
5259 2005-06-23  Duncan Mak  <duncan@novell.com>
5260
5261         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5262         that this builds on Solaris 10 (x86).
5263
5264 2005-06-23  Martin Baulig  <martin@ximian.com>
5265
5266         * class.c
5267         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5268         generic type definitions.
5269
5270 2005-06-23  Martin Baulig  <martin@ximian.com>
5271
5272         Fix #75331.
5273
5274         * metadata.c (mono_class_get_overrides): Renamed to
5275         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5276         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5277         pass it to mono_get_method_full().
5278
5279 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5280
5281         * reflection.c (mono_reflection_create_runtime_class): take the
5282         mono_domain_lock in this method. Prevents deadlocks
5283
5284 2005-06-22  Martin Baulig  <martin@ximian.com>
5285
5286         * loader.c (method_from_methodspec): Fix #75330.
5287
5288 2005-06-22  Martin Baulig  <martin@ximian.com>
5289
5290         * reflection.c (type_get_qualified_name): Use
5291         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5292         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5293         argument; use it if we don't have an assembly name.
5294
5295 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5296
5297         * object.c: In mono_message_init, set "copy out" flag for in
5298         parameters with the [Out] flag.
5299
5300 2005-06-21  Martin Baulig  <martin@ximian.com>
5301
5302         * class.c
5303         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5304         and MONO_TYPE_PTR.
5305
5306 2005-06-21  Martin Baulig  <martin@ximian.com>
5307
5308         * class.c (mono_class_init): Don't initialize `class->fields' for
5309         generic instances since they're initialized again in
5310         compute_field_layout(). 
5311         (compute_field_layout): Set the field's `generic_info' here; fix
5312         #75320. 
5313
5314 2005-06-21  Martin Baulig  <martin@ximian.com>
5315
5316         * class-internals.h
5317         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5318
5319         * metadata.c (mono_metadata_generic_method_equal): Also
5320         distinguish the `generic_class'; fixes #75334.
5321
5322 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5323
5324         * domain.c:
5325         * appdomain.c:
5326         * domain-internals.h:
5327         * reflection.c: 'domain_assemblies' field is now protected by its own
5328         lock. Don't call into managed code to run the AssemblyLoad event if we
5329         now there are no registered delegates for it.
5330
5331 2005-06-20  Martin Baulig  <martin@ximian.com>
5332
5333         * class.c (mono_class_is_assignable_from): Use a custom version of
5334         mono_class_has_parent() to make things work for generic instances;
5335         fix #75300.
5336
5337 2005-06-20  Martin Baulig  <martin@ximian.com>
5338
5339         * loader.c (method_from_methodspec): Apply a patch from
5340         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5341
5342 2005-06-20  Martin Baulig  <martin@ximian.com>
5343
5344         * class.c (mono_class_init): Reverted Zoltan's last change; it
5345         breaks generics.
5346
5347 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5348
5349         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5350
5351 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5352
5353         * socket-io.c: fix the index in the socket array for writable/error
5354         sockets. Fixes bug #75306.
5355
5356 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5357
5358         * class.c (mono_class_init): Allow interfaces to have static ctors.
5359
5360 2005-06-17  Martin Baulig  <martin@ximian.com>
5361
5362         * loader.c (method_from_methodspec): Use `context->container' when
5363         parsing the `gmethod->inst'.
5364
5365 2005-06-17  Martin Baulig  <martin@ximian.com>
5366
5367         * class.c (mono_type_get_name_recurse): Don't add the assembly
5368         name for type arguments.
5369
5370 2005-06-15  Martin Baulig  <martin@ximian.com>
5371
5372         * reflection.c (mono_image_get_inflated_method_token): Encode
5373         correct klass; fixes #75260.
5374
5375 2005-06-13 Michal Moskal <malekith@nemerle.org>
5376
5377         * icall.c: Make GetCorrespondingMethod/Constructor take
5378         MonoReflectionMethod method not MonoMethod. Removed
5379         MonoType.GetCorrespondingField, and make
5380         MonoGenericType.GetCorrespondingField take name not
5381         MonoClassField.
5382
5383 2005-06-13  Michal Moskal <malekith@nemerle.org>
5384
5385         * reflection.c (field_encode_signature, encode_locals):
5386          Make sizes of buffers for types larger (for big generic types).
5387          (create_generic_typespec,
5388          mono_reflection_sighelper_get_signature_local,
5389          mono_reflection_sighelper_get_signature_field):
5390          Add asserts for too small buffers.
5391
5392 2005-06-15  Martin Baulig  <martin@ximian.com>
5393
5394         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5395         if our parent is not a dynamic type.
5396
5397 2005-06-15  Martin Baulig  <martin@ximian.com>
5398
5399         * class-internals.h (MonoTypeNameFormat): New enum.
5400
5401         * class.c
5402         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5403         (mono_type_get_full_name): Removed.
5404         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5405         argument instead of the boolean's.
5406
5407         * icall.c (ves_icall_System_MonoType_getFullName):
5408         Added `gboolean assembly_qualified'.    
5409
5410         * reflection.h
5411         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5412
5413         * reflection.c (mono_reflection_parse_type): Parse the new type
5414         name format.
5415
5416 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5417
5418         * icall.c: no need to convert from utf16 to utf8 and then back again
5419         after the call to GetLogicalDrives.
5420
5421 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5422
5423         * icall.c: frombase64. Fix problems exposed by new tests.
5424
5425 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5426
5427         * icall.c: added internal calls for converting char [] and strings in
5428         base64 into byte [].
5429
5430 2005-06-10  Martin Baulig  <martin@ximian.com>
5431
5432         * class.c (mono_class_create_generic_2): Read the nested classes
5433         from the metadata rather than from `gklass->nested_classes' since
5434         `gklass' might not be initialized yet.
5435
5436 2005-06-09  Duncan Mak  <duncan@novell.com>
5437
5438         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5439         all public headers. Fixes #74919.
5440
5441 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5442
5443         * domain.c: The key for proxy_vtable_hash is now a pointer
5444         array. Added new GHashFunc and GCompareFunc functions for this.
5445
5446         * class.h: The list of interfaces in MonoRemoteClass is known in
5447         advance and can't grow (we create a new MonoRemoteClass if needed),
5448         so now the interface array can be allocated together with
5449         MonoRemoteClass.
5450         
5451         * object.c: Added a new method create_remote_class_key.
5452         Fixed mono_remote_class so it does not depend on
5453         mono_upgrade_remote_class.
5454         Removed extend_interface_array.
5455         Added new method clone_remote_class(), which makes a copy of a remote
5456         class and adds a new interface or class to it.
5457         mono_upgrade_remote_class() now creates a new remote class (or gets
5458         it from the cache) if an vtable upgrade is needed. In this way
5459         we make sure that other objects sharing the same remote class
5460         don't get the new vtable with unwanted interfaces.
5461         
5462         * object-internals.h:
5463         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5464         
5465         * marshal.c: Track changes in mono_upgrade_remote_class().
5466
5467 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5468         * icall.c: Add runtime methods for obtaining members of inflated
5469         class, which were created from supplied non-inflated members. It
5470         is used in internal Get{Method,Constructor,Field} methods in
5471         System.Type
5472
5473 2005-06-09  Martin Baulig  <martin@ximian.com>
5474
5475         * reflection.c
5476         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5477
5478 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5479         * reflection.c (mono_image_basic_init): Define
5480         Version in MonoDynamicAssembly. 
5481         
5482 2005-06-08  Martin Baulig  <martin@ximian.com>
5483
5484         Fix #75136.
5485
5486         * loader.c
5487         (mono_method_signature_full): New public method; takes a
5488         `MonoGenericContext *'.
5489         (find_method): Use mono_method_signature_full() and pass the
5490         klass'es context to it.
5491
5492         * class.c (mono_class_is_inflated_method): Use
5493         mono_method_signature_full() and pass the context to it.
5494
5495 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5496
5497         * object.c: add proper locking in mono_remote_class_vtable(),
5498         fixes possible memory corruption.
5499
5500 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5501
5502         * marshal.c (mono_remoting_marshal_init): set
5503         initialized after initialization.
5504
5505 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5506
5507         * locales.c : hush.
5508
5509 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5510
5511         * object.c (extend_interface_array): fix really silly
5512         memory corrupting / comparison bug.
5513
5514 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5515
5516         * reflection.c: Functions added to support the creation
5517         of CustomAttributeData, which includes Attribute data
5518         used by ReflectionOnly methods.
5519
5520         * reflection.h:  mono_reflection_get_custom_attrs_data and
5521          mono_custom_attrs_data_construct added (functions exposed).
5522
5523          * icall.c: Added mono_reflection_get_custom_attrs_data
5524          as icall.
5525         
5526 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5527
5528         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5529         lupus's request.
5530
5531 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5532
5533         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5534
5535         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5536         dynamic DllImportAttribute.
5537
5538         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5539         dynamic DllImportAttribute.
5540
5541         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5542         Fixes #75162.
5543
5544 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5545
5546         * threads.c: avoid segfault when an unstarted thread is aborted.
5547
5548 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5549
5550         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5551         Returns the name and version of the runtime for reporting.
5552
5553 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5554
5555         * appdomain.c: bump corlib version.
5556         * object-internals.h: new field in MonoReflectionAssembly.
5557
5558 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5559
5560         * object-internals.h: Carlos forgot to add this field.
5561
5562 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5563
5564         * icall.c: Added create_version to create instances
5565         of Version of MonoReflectionAssemblyName. This change helps
5566         the AssemblyName tests to keep running fine.
5567         
5568 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5569   
5570         * object.c (mono_method_return_message_restore): A somehow less
5571         intrusive fix for #75138.
5572
5573 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5574
5575         * object.c (mono_method_return_message_restore): Fix computation
5576         of expected number of out args.
5577
5578 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5579
5580         * reflection.c (mono_image_get_method_info): Fix the case when the
5581         charset is empty.
5582
5583 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5584
5585         * object.c: Added missing null check in
5586           mono_method_return_message_restore.
5587
5588 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5589
5590         * reflection.c (mono_image_get_method_info): Handle the case when
5591         dllentry is empty.
5592
5593 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5594
5595         * object.c: When creating the vtable for a proxy, take into account
5596         all inherited interfaces, not only the ones registered in
5597         iclass->interfaces. This fixs bug #74996.
5598         Also, in mono_method_return_message_restore, verify that the array
5599         of out args has the expected lengh.
5600
5601 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5602
5603         * socket-io.c: update the timeout in Poll when the call is interrupte.
5604
5605 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5606
5607         * socket-io.c: support abort/suspend in Select_internal after last
5608         change.
5609
5610 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5611
5612         * threadpool.c: remove warning.
5613
5614 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5615
5616         * icall.c:
5617         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5618         removing the 1024 limit from select(). Runtime part of the fix for
5619         bug #71203.
5620
5621 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5622
5623         * socket-io.c: when resolving the addresses for the same
5624         host returned by gethostname(), get the local IPs from the interface
5625         list. Loopback addresses are discarded if the are interfaces up with
5626         non-loopback ones. Fixes bug #63265.
5627
5628 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5629
5630         * appdomain.c, verify.c, object-internals.h, reflection.c:
5631         bumped corlib number to 36, and added new extra_flags field
5632         to ReflectionMethodBuilder and friends.  Fixes #75060.
5633
5634 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5635
5636         * gc.c: register a new weak link only if the object is non-null
5637         (fixes bug#75047).
5638
5639 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5640
5641         * culture-info.h : short time pattern too.
5642
5643 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5644
5645         * culture-info.h : expand long time pattern string length.
5646
5647 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5648
5649         * culture-info-table.h : update (more French date format; #72788).
5650
5651 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5652
5653         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5654         the method is static. Fixes #75029.
5655
5656 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5657
5658         * reflection.c: Update the table_idx field of method builders after
5659         saving the module, since it can change. This is a workaround for
5660         bug #74914. 
5661
5662 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5663
5664         * culture-info-table.h : update (additional French date format).
5665
5666 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5667
5668         * icall.c (ves_icall_type_Equals): Revert last change.
5669         
5670         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5671
5672         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5673
5674 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5675
5676         * class-internals.h: Added executioncontext_class field to 
5677         MonoDefaults structure.
5678         * domain.c: Cache System.Threading.ExecutionContext class in 
5679         mono_defaults.
5680         * object.c: Capture the ExecutionContext for asynchroneous calls in
5681          mono_async_result_new.
5682         * object-internals.h: Added execution_context and original_context 
5683         fields to MonoAsyncResult. Added execution_context to MonoThread.
5684         * security-manager.c|.h: Added mono_get_context_capture_method to 
5685         return the capture method (if required by the security manager or by
5686         the framework version used).
5687         * threadpool.c: Apply capture (if present) ExecutionContext in 
5688         mono_async_invoke and revert to original context after it completes.
5689
5690 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5691
5692         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5693
5694 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5695
5696         * culture-info-table.h : zh-CHT related workaround.
5697
5698 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5699
5700         * marshal.c (emit_marshal_custom): Add some error checking and call the
5701         methods in the ICustomMarshaler interface. Fixes #74875.
5702         
5703         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5704         native->managed wrappers.
5705
5706 2005-05-12  Martin Baulig  <martin@ximian.com>
5707
5708         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5709         here and use the loader lock.
5710
5711         * mono-debug.c: Properly lock when the debugger is not attached.
5712         (mono_debug_init): Release the initial lock if we're not running
5713         in the debugger.
5714
5715 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5716
5717         * marshal.c (emit_marshal_custom): Pass through NULL values without
5718         calling the custom marshalling routines.
5719
5720         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5721         conversion in structures. Fixes #74882.
5722
5723 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5724
5725         * culture-info-table.h : zh-* cultures were missing.
5726
5727 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5728
5729         * threads.c: Added a new event background_change_event which is signaled
5730         when a thread changes its background mode.
5731         Moved here several checks previously done in managed code. The checks
5732         require the thread lock, and using the thread lock in managed code
5733         can result in deadlocks.
5734         Merged Start_internal and Thread_internal into a single method. Now 
5735         Thread_internal does all work of creating and starting a thread.
5736         Added icalls for setting and getting the state of the object. Moved from
5737         managed code to avoid locking there.
5738         Added wait_for_tids_or_state_change() which is called instad of
5739         wait_for_tids when waiting for non-backround threads to end. This method
5740         will return if one of the threads ends or the background_change_event
5741         is signaled.
5742         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5743         the background mode. This method signals the background_change_event
5744         event.
5745         * icall.c:
5746         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5747         removed Start_internal.
5748         
5749 2005-05-11  Martin Baulig  <martin@ximian.com>
5750
5751         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5752         to order of some fields to get proper alignment on 64-bit machines.
5753
5754 2005-05-11  Martin Baulig  <martin@ximian.com>
5755
5756         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5757         changes as they're broken and completely fuck up the debugger.
5758
5759         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5760
5761 2005-05-10  Martin Baulig  <martin@ximian.com>
5762
5763         * reflection.c (mono_reflection_generic_class_initialize): Don't
5764         call mono_class_setup_parent() here.
5765
5766 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5767
5768         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5769         send/receive timeout use an integer in milliseconds. We were using a
5770         struct timeval.
5771
5772 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5773
5774         * locales.c:
5775         (internal_get_cultures): reserve the first slot of the array for the
5776         InvariantCulture, which will be filled in managed code.
5777
5778 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5779
5780         * reflection.c (mono_image_fill_module_table): Initialize the
5781         GENERATION field as well.
5782
5783 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5784
5785         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5786         Monitor.Enter on the object.
5787
5788 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5789
5790         * threads.c: Enable the wait for running threads when exiting.
5791         * icall.c: Suspend all threads before exiting.
5792
5793 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5794
5795         * assembly.c (mono_assembly_load_reference): Fix warning.
5796
5797 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5798
5799         * threadpool.c: changed the default number of threads per cpu. From now
5800         on, the default will be 20 + (5 * number of cpus) instead of 50.
5801
5802 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5803
5804         * loader.c (mono_method_get_signature_full): Add locking here.
5805
5806 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5807
5808         * appdomain.c: Moved methods for parsing and freeing assembly
5809         names to assembly.c.
5810         * assembly.c, domain-internals.h: Created public methods for parsing
5811         assembly names. Fixed mono_assembly_load_with_partial_name:
5812         it now finds the best match, taking into account the version,
5813         token and culture specified in the partial name. Also return
5814         the latest version if no version information is specified.
5815
5816 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5817
5818         * threadpool.c: replace check for SocketAsyncCall class.
5819
5820 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5821
5822         * threadpool-internals.h:
5823         * Makefile.am: added threadpool-internals.h
5824
5825         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5826         that happen in threadpool threads (tested on MS).
5827         (mono_thread_pool_remove_socket): new function that dispatch any pending
5828         AIO call on a socket that is closing. By now only epoll really needs it,
5829         as select/poll wake up when the socket closes.
5830
5831
5832         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5833
5834 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5835
5836         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5837
5838 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5839
5840         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5841
5842 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5843
5844         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5845         has an abort request, convert it into a suspend request.
5846
5847 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5848
5849         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5850         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5851         is not supported yet.
5852
5853 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5854
5855         * image.c: register assemblies loaded from data (bundles) in the loaded
5856         assemblies hash. Fixes bug #74772.
5857
5858 2005-04-29  Martin Baulig  <martin@ximian.com>
5859
5860         * class.c (mono_type_get_name_recurse): Update to the new naming
5861         schema from the latest .NET 2.x beta2.
5862         (mono_class_setup_vtable_general): If we're a generic instance,
5863         copy the vtable from our generic type definition and inflate all
5864         the methods in it.
5865
5866         * loader.c (find_method): Update to the new naming schema from the
5867         latest .NET 2.x beta2.
5868
5869 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5870
5871         * class.c (mono_class_init): Add a mono_loader_unlock to the
5872         #74734 fix.
5873
5874 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5875
5876         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5877         suspend_all_other_threads () call for the time being, since it can hang.
5878
5879         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5880         the background threads to exit, since it can also hang.
5881
5882         * class.c (mono_class_init): Applied patch from Ankit Jain 
5883         (radical@gmail.com). Avoid pending init errors when a field refers
5884         to a nested class using a typeref. Fixes #74734.
5885
5886         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5887         this for dynamic modules.
5888
5889 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5890
5891         * threads.c: don't wait for threads that are in the process of aborting
5892         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5893         and waiting for background threads to finish. This makes xsp and
5894         mod-mono-server exit without random length delays and/or hangs.
5895
5896 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5897
5898         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5899
5900 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5901
5902         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5903         dynamic types to prevent infinite loops. Fixes #74727.
5904
5905         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5906         ..._is_assignable_to.
5907
5908 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5909
5910         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5911
5912 2005-04-25  Martin Baulig  <martin@ximian.com>
5913
5914         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5915
5916         * domain.c
5917         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5918
5919         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5920
5921         * reflection.c (build_compressed_metadata): Set metadata header
5922         version to 2.0.
5923
5924 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5925
5926         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5927         number into an integral and a decimal part. Fixes #70473.
5928
5929         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5930
5931 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5932
5933         * culture-info-table.h : reflected the latest locale-builder output.
5934
5935 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5936
5937         * threadpool.c: check for SuspendRequested too when deciding if
5938         mono_thread_interruption_checkpoint should be called.
5939
5940 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5941
5942         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5943         * threads.c: remove interruption_mutex and use Interlocked instead. When
5944         suspending all the threads, wait for all the suspended events at once.
5945         If we're shutting down and get an APC that is going to be queued,
5946         call mono_thread_execute_interruption immediately, as the thread might
5947         be sleeping on a pthread condition or mutex.
5948
5949         * icall.c: call mono_runtime_set_shutting_down before suspending the
5950         threads.
5951
5952         Fixes bug #74693. And now xsp is happier when exiting.
5953
5954 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5955
5956         * loader.c (mono_stack_walk): Fix #74690.
5957
5958 2005-04-22  Martin Baulig  <martin@ximian.com>
5959
5960         * mono-debug.h (MonoDebugMethodJitInfo): Added
5961         `MonoDebugMethodJitInfo *jit'.
5962
5963         * mono-debug.c (mono_debug_read_method): Cache the
5964         MonoDebugMethodJitInfo in `address->jit'.
5965         (mono_debug_free_method_jit_info): New public method.
5966
5967 2005-04-22  Martin Baulig  <martin@ximian.com>
5968
5969         * class.c (mono_class_is_assignable_from): Disallow
5970         type parameter -> interface.
5971
5972 2005-04-21  Dick Porter  <dick@ximian.com>
5973
5974         * threads.c (mono_thread_create): Turn an assertion into an error.
5975
5976 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5977
5978         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5979         
5980         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5981         Fix some gcc 4.0 warnings.
5982
5983 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5984
5985         * file-io.c: fix alt dir separator char on unix systems
5986         and cleanup (fixes bug #71214).
5987
5988 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5989
5990         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5991         a call to a remote domain, since the method may be an
5992         interface method in the client domain. This fixes bug #74192.
5993
5994 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5995
5996         * threadpool.c: recv/send are now performed before going back to managed
5997         code to save one transition.
5998
5999 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6000
6001         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6002
6003         * metadata/threadpool.c: removed hack to workaround the bug above.
6004
6005         Fixes bug #74618.
6006
6007 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6008
6009         * reflection.c reflection.h: Fix handling of parameter defaults in
6010         dynamic methods. Also fixes handling of parameter attributes.
6011         Fixes #74609.
6012
6013         * mono-debug.c (mono_debug_close_image): Fix warning.
6014
6015 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6016
6017         * socket-io.h: replaced old unused field with new 'blocking'.
6018         * threadpool.c: restore socket blocking state on windows(tm).
6019
6020 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6021
6022         * icall.c: don't return the codebase in the AssemblyName[] returned by
6023         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6024         * object-internals.h: Removed FIXME (fields were presents) and fixed
6025         versioncompat declaration.
6026
6027 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6028
6029         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6030         not closed, so don't cleanup when it happens.
6031
6032 2005-04-13  Chris Toshok  <toshok@ximian.com>
6033
6034         * mono-debug-debugger.h: change prototype for
6035         mono_debugger_lookup_type.
6036
6037         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6038         this function, although it should probably be named
6039         mono_debugger_init_type.
6040
6041 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6042
6043         * threadpool.c: fix non-AIO case.
6044
6045 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6046
6047         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6048         the built-in profiler to measure just JIT compilation times.
6049
6050 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6051
6052         * threadpool.c: the epollfd might be closed by another thread at
6053         any time, so ignore EBADF at treat it as a "we're closing" sign.
6054
6055 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6056
6057         * threadpool.c: release the semaphores with a count equals to the number
6058         of working threads in both IO and regular pools. Fixed typo that messed
6059         up the count of IO pool threads. Don't initialize the pipe handles if
6060         we're using epoll.
6061
6062 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6063
6064         * threadpool.c: some systems don't like a NULL when deleting the socket
6065         from epoll.
6066
6067 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6068
6069         * threadpool.c: fix semaphore allocation.
6070
6071 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6072
6073         * threadpool.c: added epoll() based implementation for asynchronous IO
6074         that is used instead of the default poll() when available.
6075         It can be disabled by setting MONO_DISABLE_AIO.
6076
6077 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6078
6079         * threadpool.c: windows needs 'closesocket' and instead of returning
6080         0 when the stream is closed while in select, it returns -1. Fixes bug
6081         #74573.
6082
6083 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6084
6085         * class.c (class_compute_field_layout): Fix the regression caused by
6086         the previous try.
6087
6088 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6089
6090         * threadpool.c: separate pool for socket async. IO.
6091         * threadpool.h: mono_max_worker_threads is not a global any more.
6092
6093 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6094
6095         * class.c (class_compute_field_layout): Fix #74549.
6096
6097 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6098
6099         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6100         use 2 connected sockets instead.
6101
6102 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6103
6104         * mono-config.c: Add new entry point for mkbundle
6105         mono_config_parse_memory. 
6106
6107 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6108
6109         * threadpool.c: removed another unused function.
6110
6111 2005-04-08  Ankit Jain  <radical@corewars.org>
6112
6113         * reflection.c (get_default_param_value_blobs): Add 'types'
6114         parameter to get the types encoded in the constant table.
6115         (mono_param_get_objects): Use the type from the constant table,
6116         not the type of the parameter, when creating default values.
6117         Handle null default values correctly.
6118
6119 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6120
6121         * file-io.c:
6122         * file-io.h:
6123         * threadpool.c:
6124         * threadpool.h:
6125         * icall.c:
6126         * socket-io.c: removed dead code for async IO.
6127
6128 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6129
6130         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6131
6132         * threadpool.c: intercept socket async. calls and pass them to a thread
6133         that is polling and dispatching the job items to the threadpool as
6134         socket become ready. Fixes bugs #71217, #71933.
6135
6136         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6137         between char and short/ushort arrays.
6138
6139         * socket-io.c: remove dead code.
6140
6141 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6142
6143         * locales.c,
6144           icall.c : removed InternalToUpper_Comp() and
6145           InternalToLower_Comp().
6146
6147 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6148
6149         * char-conversions.h : The tables were incorrectly generated. Should
6150           be generated against invariant culture.
6151
6152 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6153
6154         * object.c (mono_runtime_invoke_array): Fix return value when 
6155         passing pre-created valuetype objects to ctors.
6156
6157         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6158         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6159         Fixes #74338.
6160
6161 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6162
6163         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6164         only used with --security and hides the wrong corlib version error.
6165
6166 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6167
6168         * class.c: Changed mono_class_name_from_token so that types
6169         outside of a namespace don't have an initial period.  Improved
6170         the g_warning message used in _mono_class_get when loading
6171         fails.
6172         * assembly.c: In mono_assembly_load_reference, when an assembly
6173         can't be found, "No such file or directory" is misleading and
6174         unhelpful because a few paths were checked for the presence of
6175         the assembly.  When that happens (ENOENT), display a nicer
6176         message indicating the directories that were searched.  In all
6177         cases, the warning is made easier to read for non-hackers.
6178
6179 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6180
6181         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6182         project/solution.
6183         * appdomain.h|domain.c: Removed inline from functions.
6184         * appdomain.c: Reduced warnings when compiling on windows.
6185         * icall.c: Fixed output_debug declaration to gunichar2*.
6186         * mono-config.c: Reduced warnings when compiling on windows.
6187         * rand.c: Added missing "windows.h". Added missing return value.
6188         * rawbuffer.c: Added missing winsock2.h for windows.
6189         * sysmath.h: Added mono-compiler.h header to allow/ease 
6190         compilation with non-GCC compilers.
6191         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6192         Removed cast warnings.
6193
6194         Adapted from the work of J Lothian (for VC6).
6195
6196 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6197
6198         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6199         from default_path.
6200
6201 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6202
6203         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6204         the 2.0 profile.
6205
6206 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6207
6208         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6209         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6210         stuff, and it would probably use $(prefix)/share rather than
6211         $(prefix)/lib.
6212
6213 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6214
6215         * console-io.c: added 2 includes that might be missing.
6216
6217 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6218
6219         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6220         profile.
6221
6222         * reflection.c (create_custom_attr): Allocate the params array using
6223         alloca so it gets GC tracking.
6224
6225 2005-03-23  Chris Toshok  <toshok@ximian.com>
6226
6227         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6228         out some spew.
6229
6230 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6231
6232         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6233         changes to pick up any changes in prefix, etc.
6234
6235 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6236
6237         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6238         
6239         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6240         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6241
6242 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6243
6244         * class-internals.h object-internals.h class.c reflection.c: Extend the
6245         mono_lookup_dynamic_token () function to return the class of the
6246         token as well. 
6247
6248         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6249         well. Fixes #73848.
6250
6251 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6252
6253         * security-manager.c: Skip inheritance checks for intra-corlib
6254         class inheritance and method overrides. This skips a lot of checks
6255         and (anyway) permissions cannot work until corlib is loaded.
6256
6257 2005-03-23  Martin Baulig  <martin@ximian.com>
6258
6259         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6260         MONO_TYPE_GENERICINST.  
6261
6262 2005-03-23  Martin Baulig  <martin@ximian.com>
6263
6264         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6265
6266 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6267
6268         * class.c: added locking comments to some functions.
6269         Cache the interface offsets arrays (saves about 20 KB
6270         of runtime memory in a typical app).
6271         Reduce the time overhead in mono_class_setup_supertypes ().
6272
6273 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6274
6275         * icall.c: speedup and fix leaks in GetMethodsByName and
6276         GetPropertiesByName.
6277
6278 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6279
6280         * reflection.c: some locking fixes.
6281
6282 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6283
6284         * metadata.c: added missing break in case statement.
6285
6286 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6287
6288         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6289         typedbyref return values. Fixes #73941.
6290
6291 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6292
6293         * security-manager.c|h: Added demandunmanaged method and 
6294         suppressunmanagedcodesecurity class to MonoSecurityManager.
6295         Renamed aptc class to allowpartiallytrustedcallers.
6296
6297 2005-03-17  Martin Baulig  <martin@ximian.com>
6298
6299         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6300
6301 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6302
6303         * file-io.c: disabled file async. IO using aio_*. It uses the
6304         threadpool now. Workaround for bug #73718.
6305
6306 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6307
6308         * assembly.h, mono-config.c: added code to deal with bundled configs
6309         for bundled assemblies.
6310
6311 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6312
6313         * *.c, private.h: cleanup, removing old private.h header file.
6314
6315 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6316
6317         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6318         and throw_on_unmappable_char attributes.
6319
6320 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6321
6322         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6323         _ProcessName_internal.
6324
6325 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6326
6327         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6328         #73631.
6329
6330         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6331         are no longer used.
6332
6333 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6334
6335         * object.c (compute_class_bitmap): Add support for generics. Fixes
6336         #73527.
6337
6338 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6339
6340         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6341
6342 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6343
6344         * filewatcher.c: commented out the code for windows watcher, as we don't
6345         use it (we use the managed implementation instead).
6346
6347 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6348
6349         * object-internals.h (MonoThread): Remove 'unused1' field.
6350
6351         * appdomain.c: Bump corlib version.
6352
6353         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6354
6355         * reflection.c (mono_reflection_create_runtime_class): Remove the
6356         AssemblyBuilder.Save optimization since it causes too many problems.
6357
6358 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6359
6360         * exception.c|h: Added mono_get_exception_reflection_type_load to
6361         create a ReflectionTypeLoadException object.
6362         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6363         to return NULL is a InheritanceDemand fails during reflection. Updated
6364         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6365         ReflectionTypeLoadException if an InheritanceDemand fails during 
6366         reflection. Added icall mapping for GetLinkDemandSecurity.
6367         * security-manager.c|h: Added ves_icall_System_Security_
6368         SecurityManager_GetLinkDemandSecurity internal call to return the
6369         class and methods permissions set for a LinkDemand. Removed unused
6370         fields in MonoSecurityManager.
6371
6372 2005-03-10  Martin Baulig  <martin@ximian.com>
6373
6374         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6375         it's a generic instance.
6376
6377 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6378
6379         * reflection.c (mono_get_object_from_blob): Applied patch from
6380         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6381
6382         * class.c (mono_class_is_assignable_from): Another try at fixing 
6383         #73469 without breaking anything.
6384
6385 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6386
6387         * class.c: (mono_class_is_assignable_from): Revert the last changes
6388         since they don't work with generics.
6389         
6390         * class.c (mono_class_is_assignable_from): Fix build bustage.
6391
6392         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6393         the managed IsAssignableFrom method. Fixes #73469.
6394
6395         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6396         function.
6397
6398 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6399
6400         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6401         memory when the remoting callback does not sets the out arguments.
6402         Fixes #73007.
6403
6404         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6405         by mistake.
6406
6407         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6408
6409         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6410
6411         * appdomain.c: Bump corlib version.
6412
6413 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6414
6415         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6416         function.
6417
6418         * threads.c (mono_thread_attach): Detect threads which are not started
6419         by the GC pthread wrappers.
6420
6421 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6422
6423         * icall.c: Added new icall for RNG.
6424         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6425         single handle on Linux to access /dev/urandom and fix #73183.
6426
6427 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6428
6429         * object.c: setting the new vtable in a transparent proxy object must
6430         not change the GC descriptor.
6431
6432 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6433
6434         * object.c: fixed compilation without GCJ support.
6435         * reflection.c: for runtime-created types ensure klass->has_references
6436         is correct (bug #73215).
6437
6438 2005-03-02  Martin Baulig  <martin@ximian.com>
6439
6440         * class.c (mono_class_is_assignable_from): Make this work if
6441         `oklass' is a generic instance; fixes #72831.
6442
6443 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6444
6445         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6446         with hasthis set.
6447         
6448         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6449
6450         * marshal.c: Reorganize native->managed marshalling code to also use
6451         the emit_marshal_... functions.
6452
6453 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6454
6455         * object.c: typed allocs have issues with bitmap sizes > 30,
6456         so check for max_set >= 30.
6457
6458 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6459
6460         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6461         managed code. Fixes #73012.
6462
6463         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6464
6465         * metadata.c reflection.c: Load/Emit elem_mult as well.
6466         
6467         * metadata.h (MonoMarshalSpec): Add comment.
6468
6469         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6470
6471         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6472         num_elem to -1 if not given.
6473
6474         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6475
6476         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6477         given values.
6478
6479 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6480
6481         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6482
6483 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6484
6485         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6486
6487         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6488
6489 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6490
6491         * object.c: generalized the reference bitmap creation
6492         and added hooks for the new GC.
6493         * class-internals.c: removed the gc_bitmap field from MonoClass.
6494
6495 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6496
6497         * domain.c: help the compiler to produce better code
6498         in mono_jit_info_table_find ().
6499
6500 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6501
6502         * object.c: make all allocations look typed.
6503
6504 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6505
6506         * socket-io.c: load Mono.Posix if it's not loaded already
6507         (fixes bug#73033).
6508
6509 2005-02-24  Martin Baulig  <martin@ximian.com>
6510
6511         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6512         * reflection.c (dup_type): Likewise.
6513
6514 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6515
6516         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6517         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6518
6519 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6520
6521         * domain.c, threads.c, object-internals.h: make the critical thread
6522         local vars use the fast access mode (even when we're compiled in
6523         a lib). Provide accessors to be used by the jit during codegen.
6524
6525 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6526
6527         * appdomain.c: Changed hook functios behavior to include
6528         support for the reflection only assemblies. Some icalls were changed
6529         to support the mentioned assemblies too. Signatures of static methods
6530         try_assembly_resolve and real_load now have an additional parameter:
6531         refonly.
6532
6533         * assembly.c: General changes to mono_assembly_ methods to support
6534         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6535         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6536         suffix, to support an additional gbool parameter to specify whether
6537         the assembli is reflection only or not. Created some new hook functions 
6538         to add support for reflection only assemblies. Signatures of static 
6539         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6540         have now an additional parameter: refonly.
6541
6542         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6543         indicating whether the assembly is reflection only or not.
6544
6545         * exception.c: Add mono_get_exception_invalid_operation.
6546
6547         * icall.c: Throw an InvalidOperationException when trying to invoke
6548         a property/method/event, or trying to set/get the value of a field.
6549         Also add an icall to retrieve the ref_only flag to the
6550         MonoReflectionAssembly.
6551
6552 2005-02-23  Chris Toshok  <toshok@ximian.com>
6553
6554         Part of fix for #72827.
6555         * mono-debug.c (mono_debug_add_method): add lexical block data to
6556         the info we write.  Kind of a hack at the moment - we copy the
6557         lexical block info from the MonoDebugMethodInfo to the
6558         MonoDebugMethodJitInfo here, before writing it.
6559         (mono_debug_read_method): read the lexical block info.
6560
6561         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6562
6563         * debug-mono-symfile.h: add lexical block support.
6564
6565         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6566         support.
6567
6568 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6569
6570         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6571
6572         * object.c (mono_runtime_free_method): Call mono_free_method () and
6573         put the TODOs there.
6574
6575         * loader.c (mono_free_method): Free up most memory allocated for 
6576         dynamic methods.
6577
6578 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6579
6580         * reflection.c: properly flag a Type argument to a
6581         named custom attr value (bug #72248).
6582
6583 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6584
6585         * reflection.c: reduce code duplication in named custom
6586         attribute encoding.
6587
6588 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6589
6590         * reflection.c: properly encode custom attrs of type object
6591         (bug #72649).
6592
6593 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6594
6595         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6596
6597 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6598
6599         * socket-io.c: load System.dll if it's not loaded already
6600         (bug #72850 and #70477).
6601
6602 2005-02-21  Martin Baulig  <martin@ximian.com>
6603
6604         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6605         generic instances.
6606
6607 2005-02-21  Martin Baulig  <martin@ximian.com>
6608
6609         * reflection.c (mono_image_build_metadata): We also need to
6610         "fixup" the MethodImpl table after we computed the final method
6611         indices.  Call fixup_methodimpl() to do that.
6612         (fixup_methodimpl): New private method.
6613
6614 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6615
6616         * assembly.c: special case mscorlib.dll (bug#72536),
6617         patch from Carlos Alberto Cortez.
6618
6619 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6620
6621         * threads-types.h threads.c: Fix build bustage.
6622
6623         * threads.c: Use a union for long<->double conversions.
6624
6625         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6626         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6627
6628         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6629         containing the checkpoint call with NOT_TAKEN.
6630         
6631         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6632         checkpoint before pushing the arguments, so they won't have to be
6633         spilled to stack.
6634
6635 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6636
6637         * domain.c, assembly.c, domain-internals.h: make some data
6638         const and relocation-free.
6639
6640 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6641
6642         * object.c, appdomain.c, class-internals.h: introduce the
6643         MonoClassRuntimeInfo structure to hold the info needed to
6644         use a class at runtime. Made mono_class_vtable() lock-free
6645         for all the appdomains.
6646
6647 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6648
6649         * metadata-internals.h, image.c: introduce a per-image mempool to
6650         be used for memory that has the same lifetime as the image.
6651
6652 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6653
6654         * domain.c: In mono_init_internal(), instead of selecting the first
6655         runtime version supported by an executable, get a list of all
6656         supported versions and select the one for which an mscorlib exists
6657         (since even if the runtime supports a given version, it doesn't mean
6658         that the framework for that version is installed).
6659         Modified get_runtimes_from_exe to support this behavior.
6660         In supported_runtimes, added information about additional system
6661         assembly versions.
6662         
6663         * assembly.c: Added support for more than one system assembly version
6664         per runtime version. Updated the assembly list.
6665         In mono_assembly_remap_version, removed the initial version check,
6666         since we don't know to which version we need to compare until we
6667         get the version set on which the assembly is based.
6668         Moved the code for loading corlib into the new method
6669         mono_assembly_load_corlib(), so it can be used by the initialization
6670         code.
6671         
6672         * domain-internals.h: Updated data structures and added declaration
6673         for mono_assembly_load_corlib.
6674
6675 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6676
6677         * reflection.c (resolve_object): Fix the creation of the signature in 
6678         the SignatureHelper case.
6679
6680         * assembly.c (mono_assembly_remap_version): Fix binary search.
6681         
6682 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6683  
6684         * class.c: Added inheritance check when a method is overloaded (from a
6685         virtual method or when implementing an interface) and when a class is
6686         inherited. Added functions to set a failure for a class and to 
6687         retreive the exception from a failure.
6688         * class-internals.h: Added fields to MonoClass to keep the exception
6689         information status for inheritance (or other exceptions) to be thrown
6690         later (i.e. not at load time).
6691         * object.c: Throw the inheritance SecurityException when a type is to 
6692         be created with either class or method inheritance violations.
6693         * reflection.c|h: Fix when getting declsec from a class. Removed 
6694         unrequired code for class. Improved sanity in parameter naming.
6695         * security-manager.c|h: Added functions to check for class and method
6696         inheritance.
6697
6698 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6699
6700         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6701         and has_finalize in dynamic types as well.
6702
6703 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6704
6705         * culture-info-table.h : fixed currency format for en-GB (and so on).
6706
6707 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6708
6709         * gc.c: ensure the GC handles never have 0 as a value.
6710
6711 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6712
6713         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6714         a pointer to a struct to unmanaged code. Fixes #72625.
6715
6716 2005-02-16  Martin Baulig  <martin@ximian.com>
6717
6718         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6719
6720 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6721
6722         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6723
6724 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6725
6726         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6727
6728         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6729         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6730         etc. Fixes #71471.
6731
6732         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6733
6734         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6735
6736 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6737
6738         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6739         changes to make the current context a field in MonoThread.
6740
6741 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6742
6743         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6744         the last change.
6745         
6746         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6747         extracted from mono_marshal_get_native_wrapper.
6748
6749         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6750         to create wrappers around native functions.
6751
6752         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6753         delegates for arbitrary function pointers. Fixes #71472.
6754
6755 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6756
6757         * threads.c: cleaned up the code a little.
6758
6759 2005-02-15  Martin Baulig  <martin@ximian.com>
6760
6761         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6762         the data table.
6763
6764         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6765         allocate larger chunks if needed.
6766
6767 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6768
6769         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6770         in by mistake.
6771
6772 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6773
6774         * domain.c: keep the domains in an array and ensure the domain ids
6775         are kept small, so they can be used as indexes to domain-specific data
6776         with a small memory overhead.
6777
6778 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6779
6780         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6781
6782 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6783
6784         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6785
6786 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6787
6788         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6789
6790         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6791         values.
6792
6793         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6794         
6795 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6796
6797         * domain-internals.h: add the hashtable here.
6798
6799         * class-internals.h: Remove `info' from MonoMethod
6800
6801         * domain.c: Add a new hashtable, jit_trampoline_hash
6802
6803 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6804
6805         * object.c: don't set the value of static fields
6806         (fixes bug#72494).
6807
6808 2005-02-11  Martin Baulig  <martin@ximian.com>
6809
6810         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6811         (mono_debug_add_method): Silently ignore the method if it's too big.
6812         (mono_debug_add_type): Likewise.
6813
6814 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6815
6816         * threads.c, appdomain.c: remove #ifdefs from the code.
6817
6818 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6819
6820         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6821         common security informations. This allows us to stay in unmanaged code
6822         when doing LinkDemand and it's special cases (except for the first 
6823         time for initialization). The flags a very much used with --security.
6824         * reflection.c|h: Added code to get declarative security attributes 
6825         for LinkDemand and InheritanceDemand. This required to refactor the
6826         existing code for Demand.
6827         * security-manager.c|h: Added new method fields for the special cases
6828         of LinkDemand.
6829
6830 2005-02-10  Martin Baulig  <martin@ximian.com>
6831
6832         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6833         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6834
6835 2005-02-10  Martin Baulig  <martin@ximian.com>
6836
6837         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6838         debugging code; this is almost a complete rewrite.
6839
6840         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6841
6842 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6843
6844         * domain.c, object.h: expose mono_string_equal () and 
6845         mono_string_hash ().
6846         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6847         it's implemented in managed code.
6848
6849 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6850
6851         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6852         lo leak objects between appdomains.
6853
6854 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6855
6856         * assembly.c: old compilers compilation fix from 
6857         robertj@gmx.net (Robert Jordan).
6858
6859 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6860
6861         * class-internals.h: Little reminder for the future.
6862
6863         * debug-helpers.c: Fix up wrapper_type_names
6864
6865 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6866
6867         * image.c, metadata-internals.h: when loading an image from a file,
6868         mmap all of it and use the same codepaths as when using a
6869         in-memory image: the code is simpler and we use less memory
6870         (both writable and readonly).
6871
6872 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6873
6874         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6875         API to alloc runtime data structures that need to be tracked by the
6876         GC and contain pointers.
6877         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6878         make the code more readable and eventually use a different GC.
6879
6880 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6881
6882         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6883         for out arguments.
6884         
6885 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6886
6887         * object.c: In release_type_locks(), don't release the cctor lock
6888         if it has already been released. This fixes a crash in the
6889         thread5 test.
6890
6891 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6892
6893         * gc.c, marshal.c, icall.c: register a delegate for finalization
6894         only when the native function pointer has been allocated for it.
6895
6896 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6897
6898         * object.c: cleaned up some code, allocate objects that are
6899         pointer free with the atomic malloc variant. Allocate memory
6900         for static data from the mempool if it's pointer-free.
6901         Allocate the bounds array at the end of the array data, when needed.
6902         * object-internals.h, object.h: move a private function in a private
6903         header.
6904         * class.c: handle missing case in tracking references in fields.
6905
6906 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6907
6908         * class.c, class-internals.h: keep track if a type has
6909         reference fields in either the instance or static fields.
6910
6911 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6912
6913         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6914         and renamed to MonoRuntimeInfo. Added fields to store the expected
6915         framework assembly version. Changed mono_get_framework_version and
6916         mono_get_runtime_version for a single mono_get_runtime_info method.
6917         
6918         * assembly.c: Added method to remap system assembly versions to the
6919         current executing runtime version. Removed old mapping code.
6920         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6921         
6922         * icall.c, reflection.c: Track api changes.
6923
6924 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6925
6926         * loader.c (method_from_memberref): Improve error reporting,
6927         produce the class name instead of the typeref/typedef index. 
6928
6929 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6930
6931         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6932
6933 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6934
6935         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6936         stdcall and charset name mangling.  Reorganize the code and add
6937         some tracing stuff.
6938
6939 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6940
6941         * monodiet.c: More iters!
6942
6943         * marshal.c: Iter usage.
6944
6945         * icall.c: Iter usage.
6946
6947         * object.c: Use iters.
6948
6949         * debug-helpers.c: More iters
6950
6951 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6952
6953         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6954         under win32.
6955
6956 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6957
6958         * mono-debug-debugger.c: use iters
6959
6960         * class.c, class-internals.h: mono_class_setup_events is static
6961         now
6962
6963         * All callers: use iters
6964
6965 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6966
6967         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6968         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6969
6970 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6971
6972         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6973
6974         * marshal.h: Add prototypes for ldfld/stfld_remote.
6975
6976         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6977         this is called during startup.
6978         
6979 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6980
6981         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6982         MonoThreadsSync struct private in monitor.c. Changed the way
6983         MonoThreadsSync is allocated so it's faster and there is no
6984         need to keep track of it with a finalizer and it uses less memory.
6985         This also finally allows us to allocate mono objects as ptrfree when
6986         there are no reference fields.
6987
6988 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6989
6990         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6991         disappearing link to the GC interface and use them to simplify
6992         the gchandles code.
6993
6994 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6995
6996         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6997         stfld_remote which call mono_load/store_field_new. This allows methods
6998         calling ldfld/stfld wrappers to be AOTed.
6999
7000         * console-io.c: Include sys/filio.h under solaris.
7001         
7002         * console-io.c: Include curses.h if needed correctly.
7003
7004 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7005         
7006         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7007         method->klass as well.
7008
7009         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7010
7011         * class.c (mono_class_init): Switch on lazy initialization of 
7012         methods.
7013
7014         * class.c (mono_class_get_finalizer): Handle the case when the 
7015         finalizer is inherited.
7016
7017 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7018
7019         * console-io.c: <curses.h> is needed by term.h on solaris.
7020
7021 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7022
7023         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7024         mono_class_setup_properties where possible. Remove this ftn from
7025         the header file, and make it static.
7026
7027 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7028
7029         * loader.c: Add missing setup_... call.
7030
7031         * class.c: Add missing setup_... calls.
7032
7033         * class.c (mono_class_init): Switch on lazy initialization of 
7034         the generic vtable.
7035         
7036         * class.c (mono_class_init): Fix generics broken by the recent changes.
7037
7038         * monodiet.c (handle_type): Add missing setup_... calls.
7039
7040         * class.c: Back out garbage in previous patch.
7041         
7042         * class.c: Add missing setup_... calls.
7043
7044         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7045         mono_class_setup_methods () if possible.
7046
7047         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7048
7049         * class-internals.h (MonoCachedClassInfo): New structure.
7050
7051         * class.c: Initialize properties and events fields of MonoClass lazily.
7052
7053         * class.c: Add infrastructure for lazily initializing the methods and
7054         vtable fields of MonoClass. Not yet used.
7055
7056         * class.c (mono_class_get_finalizer): New helper function.
7057
7058         * class.c: Add infrastructure for loading some class related data from
7059         an AOT file.
7060
7061         * object.c: Add infrastructure for initializing the vtable from data
7062         in the AOT file.
7063
7064         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7065
7066         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7067         appropriate initialization function before accessing parts of the
7068         MonoClass structure.
7069
7070         * marshal.c: Fix warnings.
7071         
7072         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7073
7074         * mono-debug-debugger.c (get_exception_message): Use 
7075         mono_class_get_method_from_name_flags ().
7076
7077 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7078
7079         * reflection.c, appdomain.c: Replace a few manual searches that
7080         Zoltan missed. (Paolo approved this part of my initial patch).
7081
7082 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7083
7084         * profiler.c: disable recording statistical events at report time.
7085
7086 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7087
7088         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7089         to byteswap arrays of enum values, too (bug #72080).
7090
7091 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * appdomain.c (set_domain_search_path): Allow this to be called if
7094         domain->setup is not yet set.
7095
7096         * loader.c (mono_method_get_index): New helper function.
7097
7098         * loader.c reflection.c: Use mono_method_get_index ().
7099
7100         * class.c (mono_class_get_method_from_name_flags): New helper method.
7101
7102         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7103         this.
7104
7105         * class.c (mono_class_get_cctor): New helper method.
7106
7107         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7108         mono_class_get_method () to look up methods.
7109
7110 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7111
7112         * console-io.c: Fix the build, this should work on Windows.
7113
7114 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7115
7116         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7117         be set to null to keep things valid
7118
7119 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7120
7121         * icall.c: added Console 2.0 icalls.
7122         * Makefile.am: added console-io.[ch]
7123         * console-io.[ch]: internal calls for Console 2.0 API.
7124
7125 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7126
7127         * class.c: make sure we consider all the interfaces
7128         when calculating max_interface_id (bug found by
7129         Jeroen Frijters running ikvm).
7130
7131 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7132
7133         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7134         valuetype fields to null.
7135
7136         * object.c (set_value): Ditto. Fixes #71669.    
7137
7138 2005-01-31  Martin Baulig  <martin@ximian.com>
7139
7140         * metadata.c (mono_metadata_has_generic_params): New public
7141         function; checks whether something is a generic method.
7142
7143 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7144
7145         * appdomain.c: fix infinite recursion when adding assemblies.
7146
7147 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7148
7149         * object.c: Fix small typo to return all items for Environment.
7150         GetCommandLineArgs.
7151
7152 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7153
7154         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7155         reflection.c: more domain and assembly-unload related fixes
7156         and memory leaks plugs.
7157
7158 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7159
7160         * 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.
7161
7162 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7163
7164         * loader.c (mono_method_signature): Make this method lazy
7165         (mono_get_method_from_token): Don't computate the signature here.
7166
7167         Doing this saves quite a bit of memory. I got 90 kb on starting up
7168         monodoc. It should also save some disk reads on startup.
7169
7170         * *: MonoMethod->signature might be NULL now. You *MUST* use
7171         mono_method_signature.
7172
7173 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7174
7175         * object.c (mono_runtime_get_main_args): Return an array from the
7176         current domain here. Fixes #71938.
7177
7178 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7179
7180         * monitor.c: formatting changes to comply with the
7181         mono coding style and remove #ifdefs from the code.
7182
7183 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7184
7185         * metadata.c, private.h: remove some unneeded data
7186         and use a more compact representation for table schemas.
7187
7188 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7189
7190         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7191         to get a better distribution in hash tables.
7192         * *.c: use mono_aligned_addr_hash() where appropriate.
7193         * assembly.c: make var static.
7194
7195 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7196
7197         * domain-internals.h: Put MonoJitInfo on a diet.
7198
7199         * domain.c: Fix a warning.
7200
7201 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7202
7203         * gc.c: rework the gc handles code to reuse handles
7204         when freed.
7205
7206 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7207
7208         * domain.c: fixed long standing bug in mono_string_equal() which
7209         was brought to light with the ldstr changes.
7210
7211 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7212
7213         * reflection.c: Remove warning by adding missing include for marshal.h
7214
7215 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7216
7217         * domain.c, object.c: change the ldstr_table to hold
7218         MonoString* as keys: makes the runtime isinterned lookup
7219         faster and simplifies memory management.
7220
7221 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7222  
7223         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7224         possible to add imperative security checks before calling the icall.
7225         * reflection.c: Return security attributes on the original MonoMethod
7226         (and not the wrapped one). This fix permissions on icalls.
7227
7228 2005-01-25  Dick Porter  <dick@ximian.com>
7229
7230         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7231         the check for mktime() support actually test the mktime() return
7232         value.  "Fixes" bug 71682, though the output is still different to
7233         MS.
7234
7235 2005-01-25  Martin Baulig  <martin@ximian.com>
7236
7237         * class.c (mono_class_is_assignable_from): Make this work for
7238         generic instances.
7239
7240 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7241
7242         * marshal.c (mono_string_utf8_to_builder)
7243         (mono_string_builder_to_utf16): We might not have ownership of the
7244         string. In thise case, we need to create a new buffer.
7245
7246         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7247         be null, in which case, use the default capacity.
7248
7249 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7250
7251         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7252         GC events to the profiler.
7253
7254 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7255
7256         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7257         if you don't want the GC to run.
7258
7259 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7260
7261         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7262         start providing a GC API and keeping different implementations in
7263         their own file.
7264         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7265
7266 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7267
7268         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7269         mmap rather than allocating a huge buffer.
7270         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7271         above.
7272
7273 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7274
7275         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7276         and CheckExecutionRights.
7277         * reflection.c|h: Keep the index of the declarative security to be 
7278         used, instead of the pointer, when AOT compiler is used. Also add 
7279         class initialization when requesting demands.
7280         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7281         CheckExecutionRights. Both properties are now FALSE by default, and
7282         unmodifiable, unless the --security option is used.
7283
7284 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7285
7286         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7287         reflection.c: properly refcount images and assemblies, many leaks fixed.
7288
7289 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7290
7291         * threadpool.c: increase the timeout for threads in the thread pool to
7292         10s.  Fixes bug #67159.
7293
7294 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7295
7296         * class-internals.h: Sun's compiler insists on explicit
7297         signed on bit fields to handle then correctly.
7298
7299 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7300
7301         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7302         Make the size of the array fit only the number of invalid path
7303         chars that we have.
7304
7305         * class.c (_mono_class_get): Improve the error reporting when a
7306         class referenced is not found, to assist debugging. 
7307
7308 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7309
7310         * threads.c: fix off-by-one error.
7311         * domain.c: free data allocated in the domain.
7312
7313 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7314
7315         * reflection.c (mono_method_body_get_object): Fill out exception info
7316         as well.
7317
7318         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7319         structure.
7320         
7321 2005-01-19  Martin Baulig  <martin@ximian.com>
7322
7323         * loader.c (mono_get_method_constrained): Make this work again.
7324
7325 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7326
7327         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7328         guint16 to match the managed side.
7329
7330         * reflection.c (mono_reflection_body_get_object): Fill out local
7331         variables array.
7332
7333         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7334         as well.
7335
7336         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7337         'local_var_sig_token'.
7338
7339 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7340
7341         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7342         System.Drawing.
7343
7344         * reflection.c (mono_method_body_get_object): Handle abstract and
7345         runtime methods.
7346
7347 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7348
7349         * marshal.c, loader.c, class-internals.h, reflection.c:
7350         store the emthod data for a wrapper in an array instead of a list.
7351
7352 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7353
7354         * marshal.c: change the code to allocate memory more
7355         conservatively for method wrappers.
7356
7357 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7358
7359         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7360         fields from MonoClass to the marshal info structure where they belong.
7361
7362 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7363
7364         * class.c, object.c, class-internals.h, marshal.c: rearrange
7365         some fields and tweak some types to lower memory usage.
7366
7367 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7368
7369         * threads.c (signal_thread_state_change): Handle the case when the
7370         target thread is the current thread.
7371
7372         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7373
7374         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7375         emit_ptr_to_object_conv. 
7376
7377         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7378         marshalling. Fixes #71352.
7379
7380 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7381
7382         * metadata.h, blob.h: move table enum to blob.h so it can be included
7383         in any header.
7384         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7385         cut the size of MonoImage/MonoDynamicImage.
7386
7387 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7388
7389         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7390
7391 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7392
7393         * reflection.c, reflection.h, icall.c: add a function to check
7394         if an attribute type is defined for a metadata object.
7395
7396 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7397
7398         * object-internals.h: Added some needed fields from StringBuilder class.
7399         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7400
7401 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7402
7403         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7404         threads before shutting down the runtime.
7405
7406         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7407
7408 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7409
7410         * object-internal.h, threads.c: implement stacksize and 
7411         parameterized thread start functionality (requires
7412         matching corlib). Marked broken code for later removal.
7413
7414 2005-01-12  Martin Baulig  <martin@ximian.com>
7415
7416         * class-internals.h (MonoGenericClass): Moved the `initialized'
7417         flag to MonoDynamicGenericClass, removed `init_pending'.
7418         (MonoGenericInst): Added `is_reference' flag.
7419
7420 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7421
7422         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7423         inside the MSDOS header. Fixes #71201.
7424
7425         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7426         gc thread.
7427         (mono_domain_finalize): Ditto.
7428
7429 2005-01-12  Martin Baulig  <martin@ximian.com>
7430
7431         * class.c (mono_get_shared_generic_class): Use the cache for
7432         non-dynamic generic classes.
7433
7434         * class-internals.h (mono_class_create_generic_2): Removed
7435         function prototype, this function is now static inside class.c.
7436
7437         * class.c (mono_class_create_generic_2): Made this static, only
7438         call it from mono_class_init() and mono_class_setup_parent().
7439         (collect_implemented_interfaces_aux): Call mono_class_init() on
7440         the interfaces we collect.
7441         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7442
7443 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7444
7445         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7446         it a real thread handle.
7447
7448         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7449         MonoJitExceptionInfo, since each catch clause needs its own variable.
7450         
7451 2005-01-11  Dick Porter  <dick@ximian.com>
7452
7453         * image.c (mono_pe_file_open): New variant on mono_image_open()
7454         that does not set up the CLI metadata; used for FileVersionInfo so
7455         it can get the data for windows binaries too.
7456         
7457         * process.c (process_read_string_block): Don't read off the end of
7458         the StringTable block.
7459
7460         These both fix bug 70766.
7461
7462 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7463
7464         * gc.c: set some fields to NULL at GC cleanup time.
7465         * threads.c: if we quit the main thread, call exit ().
7466
7467 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7468
7469         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7470
7471 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7472
7473         * threads.h, threads.c, object.c: added accessor and settor for
7474         main_thread. Handle it specially when exiting from it: wait
7475         for other foreground threads to exit.
7476
7477 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7478
7479         * process.c, verify.c: remove some bloat.
7480
7481 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7482
7483         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7484         the calling convention to cdecl under win32.
7485
7486 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7487
7488         * object.c (mono_object_get_size): New function to get the size of
7489         an object instance.
7490
7491         * profiler.c (simple_allocation): Use above.
7492
7493 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7494
7495         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7496         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7497         get an appdomain by it's id and we can't assume the root's id is 0).
7498         * domain-internals.h: Change the function prototype to match.
7499         * icall.c: Change the icall table for AppDomain.
7500
7501 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7502
7503         * locales.c (string_invariant_compare_char): Only compute
7504         GUnicodeTypes in the case where we need them.  Test for ordinality
7505         first and return if so.
7506
7507         From the commit:
7508
7509                 /*
7510                  * FIXME: here we must use the information from c1type and c2type
7511                  * to find out the proper collation, even on the InvariantCulture, the
7512                  * sorting is not done by computing the unicode values, but their
7513                  * actual sort order.
7514                  */
7515
7516 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7517
7518         * loader.c: for P/Invoke methods, allow the "Internal" shared
7519         library name to refer to the calling process symbol namespace.
7520
7521 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7522
7523         * Makefile.am: Add the security manager to the build.
7524         * security-manager.c|h: New. Initialization of the security manager.
7525
7526 2005-01-07  Dick Porter  <dick@ximian.com>
7527
7528         * threads.c: 
7529         * monitor.c: Update thread state during Monitor and WaitHandle
7530         waits.  Fixes bug 71031.
7531
7532 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7533
7534         * reflection.c (property_encode_signature): Correctly handle when the
7535         property has no methods.
7536
7537 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7538
7539         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7540         
7541         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7542         fields from mb, not rmb. Fixes #71017.
7543
7544         * marshal.c (emit_ptr_to_str_conv): Add support for 
7545         ByValTStr -> string conversion. Fixes #71015.
7546
7547         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7548
7549         * mempool.c (mono_mempool_contains_addr): New helper function.
7550
7551 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7552
7553         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7554         HasSematics encoded fields.
7555         
7556         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7557         invalid string marshalling.
7558
7559         * metadata.c: Fix warnings.
7560         
7561 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7562
7563         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7564         profiler support.
7565
7566 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7567
7568         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7569         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7570         tests.
7571
7572 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7573
7574         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7575         so methods containing these can be AOTed.
7576
7577 2005-01-03  Martin Baulig  <martin@ximian.com>
7578
7579         * loader.c (find_method): Removed the hack for generic instances.
7580         (method_from_memberref): If our parent is a generic instance, pass
7581         its generic type definition to find_method() and then inflate the
7582         method.
7583         (mono_get_method_constrained): Pass the generic type definition to
7584         find_method() and inflate the method later.
7585
7586         * class-internals.h (MonoStats): Added `generic_class_count'.
7587
7588         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7589         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7590
7591         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7592         generic type definitions.
7593
7594 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7595
7596         * loader.c icall.c: Fix warnings.
7597
7598 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7599
7600         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7601         blittable types. Fixes #70864.
7602
7603 2004-12-29  Martin Baulig  <martin@ximian.com>
7604
7605         * icall.c
7606         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7607
7608         * reflection.c (mono_method_get_object): Create a
7609         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7610         call mono_get_inflated_method().
7611
7612         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7613
7614 2004-12-27  Martin Baulig  <martin@ximian.com>
7615
7616         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7617         (MonoMethodInflated): Added `inflated' field.
7618
7619         * class.c (mono_class_inflate_generic_method): Don't really
7620         inflate the method here; just set the `is_inflated' flag in the
7621         MonoMethod.
7622         (mono_class_get_inflated_method): Actually inflate the method here
7623         if it's not already inflated; we use the MonoMethodInflated's new
7624         `inflated' field as a cache.
7625
7626 2004-12-26  Martin Baulig  <martin@ximian.com>
7627
7628         * class.c
7629         (inflate_generic_class): Moved some code out of inflate_generic_type().
7630         (mono_class_inflate_generic_method): If we're already inflated,
7631         inflate the context and use the declaring method; ie. make sure
7632         the declaring method of an inflated method is always the generic
7633         method definition.
7634         (mono_class_create_from_typedef): Create
7635         `class->generic_container->context->gclass'.
7636
7637 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7638
7639         * metadata-internals.h, marshal.c, reflection.c: More
7640         MonoGHashTable->GHashTable.
7641
7642         * domain-internals.h, class.c: Change MonoGHashTable's into
7643         GHashTables for some cases where no gc stuff is used
7644
7645         All users: update apis
7646
7647 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7648
7649         * metadata.c (builtin_types): Make this `const'. Makes this get
7650         put into the shareable section.
7651         (mono_metadata_init): Casts to make gcc happy.
7652
7653 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7654
7655         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7656
7657 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7658
7659         * icall.c: Added an internal call to retrieve the position and length
7660         of assembly-level declarative security attributes (RequestMinimum, 
7661         RequestOptional and RequestRefuse). This is used by the Assembly class
7662         to re-create the corresponding permission sets.
7663
7664 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7665
7666         * marshal.c: fix the stelemref wrapper to be type correct
7667         (and faster).
7668
7669 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7670
7671         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7672         to do key & 0x7fffffff. Hashtable already does this. It just
7673         results in longer code.
7674
7675 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7676
7677         * appdomain.c: Bump corlib version.
7678         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7679         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7680         * reflection.c|h: Add functions to get declarative security infos
7681         (blob position and length) for assemblies, classes and methods.
7682
7683 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7684
7685         * reflection.c: sort the constant table (bug #70693).
7686
7687 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7688
7689         * object-internals.h, threads.c, domain.c: add accessors for
7690         the MonoThread and MonoDomain tls keys.
7691
7692 2004-12-18  Martin Baulig  <martin@ximian.com>
7693
7694         * class.c (inflate_generic_type): If we're inflating a generic
7695         instance, set `ngclass->context->container = context->container';
7696         ie. the container we inflated into.
7697
7698         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7699         inflate_generic_type() changes.
7700
7701 2004-12-17  Martin Baulig  <martin@ximian.com>
7702
7703         * class-internals.h
7704         (MonoGenericClass): Replaced `MonoType *generic_type' with
7705         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7706         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7707         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7708
7709 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7710
7711         * exception.c (mono_exception_from_token): New helper function.
7712
7713 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7714
7715         * assembly.c (mono_assembly_load_with_partial_name): Call 
7716         mono_assembly_loaded before invoking the preload hooks. Fixes
7717         #70564.
7718
7719         * object-internals.h (MonoThread): Change culture_info and 
7720         ui_culture_info into an array.
7721
7722         * threads.c: Cache culture info objects from more than one appdomain.
7723
7724         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7725         current UI culture.
7726
7727 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7728
7729         * threads.h threads.c appdomain.c: Clear the culture_info field of
7730         all threads during unloading if they point to an object in the dying
7731         appdomain.
7732
7733 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7734
7735         * culture-info.h (TextInfoEntry): New struct
7736         * object-internals.h: sync with managed
7737         * locales.c: fill the `text_info_data' field
7738         * culture-info-tables.h: update
7739
7740 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7741
7742         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7743         collector.
7744
7745 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7746
7747         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7748         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7749
7750 2004-12-12  Martin Baulig  <martin@ximian.com>
7751
7752         * mono-debug-debugger.c (write_type): If we're an enum and the
7753         builtin types have already been initialized, call mono_class_init().
7754
7755 2004-12-11  Martin Baulig  <martin@ximian.com>
7756
7757         * metadata.c (mono_metadata_load_generic_params): Added
7758         `MonoGenericContainer *parent_container' argument; automatically
7759         compute `container->is_method'; pass the correct owner to
7760         get_constraints().      
7761
7762         * reflection.c (compare_genericparam): Sort the GenericParam table
7763         according to increasing owners. 
7764
7765 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7766
7767         * profiler.c: allow disabling the default profiler.
7768
7769 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7770
7771         * decimal.c, icall.c: allow disabling System.Decimal support.
7772
7773 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7774
7775         * reflection.c: Add support for null attribute arguments.
7776
7777 2004-12-09  Martin Baulig  <martin@ximian.com>
7778
7779         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7780         names to get rid of compiler warnings.
7781
7782 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7783
7784         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7785         mono_marshal_load_type_info (). Fixes #69625.
7786         (mono_marshal_get_ptr_to_struct): Likewise.
7787
7788 2004-12-08  Martin Baulig  <martin@ximian.com>
7789
7790         * mono-debug.h: Bumped version number to 47.
7791
7792         * mono-debug-debugger.c
7793         (mono_debugger_event_handler, mono_debugger_event): Take two
7794         guint64 arguments insteed of a gpointer and a guint32.  
7795
7796 2004-12-08  Martin Baulig  <martin@ximian.com>
7797
7798         * debug-mono-symfile.h
7799         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7800         `address' to `native_offset'.
7801
7802 2004-12-08  Martin Baulig  <martin@ximian.com>
7803
7804         * class.c (mono_class_create_from_typespec): Only inflate if we
7805         either have `context->gclass' or `context->gmethod'.
7806
7807 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7808
7809         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7810
7811         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7812
7813         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7814
7815         * reflection.c (mono_assembly_get_object): Remove the workaround put
7816         in for the release.
7817         
7818         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7819
7820         * appdomain.c: Bump corlib version.
7821
7822         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7823         be visible in other appdomains.
7824
7825 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7826
7827         * threads.c: Interlocked inc and dec for longs were messed up,
7828         use a KISS based impl for this. Fixes 70234
7829
7830 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7831
7832         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7833
7834 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7835
7836         * icall.c: fix to follow policy not to allow struct
7837         arguments in icalls.
7838
7839 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7840
7841         * process.c: make the patch that handles spaces in file paths work
7842         on mono/windows too.
7843
7844 2004-12-06  Martin Baulig  <martin@ximian.com>
7845
7846         * class.c (mono_class_create_generic): Call
7847         mono_class_setup_supertypes() if we're dynamic.
7848         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7849
7850 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7851
7852         * object-internals.h: Add new fields to MonoThread.
7853
7854         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7855
7856         * icall.c threads-types.h threads.c: Add new icalls.
7857
7858         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7859
7860         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7861         managed side.
7862
7863         * appdomain.c: Bump corlib version.
7864
7865         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7866         internal assemblies. Fixes #69181.
7867
7868 2004-12-05  Martin Baulig  <martin@ximian.com>
7869
7870         * class.c (mono_class_inflate_generic_signature): Make this a
7871         no-op if `context' is NULL or we don't have any type parameters;
7872         also copy `sentinelpos'.        
7873
7874 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7875
7876         * image.c: Add unbox_wrapper_cache.
7877
7878         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7879
7880         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7881         function generator.
7882         
7883         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7884         Fixes #70173.
7885
7886         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7887         
7888 2004-12-04  Martin Baulig  <martin@ximian.com>
7889
7890         * loader.c (mono_method_get_signature_full): New public function;
7891         like mono_method_get_signature(), but with an additional
7892         `MonoGenericContext *' argument.
7893
7894         * class.c (mono_class_inflate_generic_signature): Formerly known
7895         as inflate_generic_signature(); make this public.
7896
7897 2004-12-04  Martin Baulig  <martin@ximian.com>
7898
7899         * metadata.c
7900         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7901         instead of a `MonoGenericContainer *'.  
7902         (mono_metadata_parse_array_full): Likewise.
7903         (mono_metadata_parse_signature_full): Likewise.
7904         (mono_metadata_parse_method_signature_full): Likewise.
7905         (mono_metadata_parse_generic_inst): Likewise.
7906         (mono_metadata_parse_generic_param): Likewise.
7907         (mono_metadata_parse_mh_full): Likewise.
7908         (mono_type_create_from_typespec_full): Likewise.
7909
7910 2004-12-03  Martin Baulig  <martin@ximian.com>
7911
7912         * class-internals.h (MonoGenericContainer): Replaced the
7913         `MonoGenericContext * pointer with a `MonoGenericContext'
7914         structure and made it the first element.
7915
7916 2004-12-03  Martin Baulig  <martin@ximian.com>
7917
7918         * class.c
7919         (inflate_generic_type): Set the `context->container' when creating
7920         a new MonoGenericContext.
7921         (mono_class_inflate_generic_method): Likewise.
7922         (mono_class_create_from_typespec): Just use `context->container'
7923         to get the container.
7924
7925         * loader.c (method_from_methodspec): Set `context->parent' from
7926         `context->container' - and if that's a method container, use its
7927         parent.  Also set the `context->container' when creating a new
7928         MonoGenericContext.
7929         (mono_get_method_from_token): Use just `context->container' to get
7930         the container.
7931
7932         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7933         `gclass->context->container'.
7934
7935         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7936         the `context->container' when creating a new MonoGenericContext.
7937
7938 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7939
7940         * reflection.c (compare_genericparam): Sort params with identical
7941         owner by their number. Fixes gen-111 on sparc.
7942
7943 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7944
7945         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7946         around the domain changes.
7947
7948         * appdomain.c (mono_domain_unload): Handle the case when the thread
7949         calling Unload is itself being aborted during unloading. Fixes #70022.
7950
7951         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7952
7953         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7954         checkpoint_func as an icall so it gets a wrapper.
7955         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7956         in the cross-appdomain wrappers too.
7957
7958         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7959
7960         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7961
7962         * reflection.c: Fix some memory leaks.
7963         
7964 2004-12-02  Martin Baulig  <martin@ximian.com>
7965
7966         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7967
7968         * metadata.c (generic_class_cache): New static hashtable.
7969         (mono_metadata_lookup_generic_class): New public method.
7970
7971 2004-12-02  Martin Baulig  <martin@ximian.com>
7972
7973         * class.c (mono_class_create_from_typedef): Call
7974         mono_class_setup_parent() and mono_class_create_mono_type() before
7975         parsing the interfaces.
7976
7977 2004-12-02  Martin Baulig  <martin@ximian.com>
7978
7979         * metadata.c (generic_inst_cache): New static hashtable.
7980         (mono_metadata_lookup_generic_inst): New public function.
7981         (mono_metadata_inflate_generic_inst): New public function.
7982         (mono_metadata_parse_generic_inst): New public function.
7983         (do_mono_metadata_parse_generic_class): Use the new
7984         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7985         since this'll also use the cache.
7986
7987         * reflection.c (mono_reflection_bind_generic_method_parameters):
7988         Use mono_metadata_lookup_generic_inst() to use the new cache.
7989
7990         * class.c (inflate_mono_type): Use
7991         mono_metadata_inflate_generic_inst() to inflate a generic
7992         instance; this'll also use the new cache.
7993
7994         * loader.c (method_from_methodspec): Use
7995         mono_metadata_parse_generic_inst() and
7996         mono_metadata_inflate_generic_inst() rather than parsing it
7997         manually, so we can use the new cache.
7998
7999 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8000
8001         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8002         the wait times out.
8003
8004 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8005
8006         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8007         iter->args based on whether parameters are passed in registers (i.e.
8008         MONO_ARCH_REGPARMS is defined)
8009
8010 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8011
8012         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8013         the exception message. Fixes #70070.
8014         (method_from_methodspec): Fix warnings.
8015
8016 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8017
8018         * process.c: (complete_path) return the path quoted
8019
8020 2004-12-01  Martin Baulig  <martin@ximian.com>
8021
8022         * class-internals.h (MonoGenericInst): New structure.
8023         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8024         `is_open' with `MonoGenericInst *inst'.
8025         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8026         `is_open' with `MonoGenericInst *inst'.
8027
8028 2004-11-30  Martin Baulig  <martin@ximian.com>
8029
8030         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8031
8032         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8033         to `generic_class_cache'.
8034
8035         * metadata.c
8036         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8037         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8038         (mono_generic_inst_is_valuetype): Renamed to
8039         mono_generic_class_is_valuetype().
8040
8041         * class-internals.h
8042         (MonoGenericInst): Renamed to MonoGenericClass.
8043         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8044         (MonoClass): Renamed `generic_inst' to `generic_class'.
8045         (MonoGenericContext): Renamed `ginst' to `gclass'.
8046
8047         * object-internals.h
8048         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8049
8050         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8051         mono_reflection_generic_class_initialize().
8052
8053         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8054         now known as "System.Reflection.MonoGenericClass".
8055         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8056
8057 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8058
8059         * class-internals.h: Added a flag field to MonoClass to cache the
8060         declarative security attributes actions associated with the class.
8061         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8062         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8063         applicable to the JITted method.
8064         * reflection.c|h: Added functions to extract (as flags) which security
8065         actions are available (declaratively) for a method, class or assembly.
8066         * metadata.c|h: Added functions to search the declarative security
8067         table in the metadata.
8068         
8069 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8070
8071         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8072         EXPORTEDTYPES are already in the class name cache, so there is no
8073         need to add extra code here to look at them. Just removes a bit of
8074         cruft.
8075
8076         (ves_icall_System_Environment_get_TickCount): No need for #if
8077         WINDOWS. We already have the code in io-layer.
8078
8079 2004-11-28  Martin Baulig  <martin@ximian.com>
8080
8081         * loader.c
8082         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8083         Fixes gen-112.cs.
8084
8085 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8086
8087         * assembly.c (do_mono_assembly_open): Instead of having a
8088         conditional WITH_BUNDLE, incorporate support for bundles here, by
8089         having a global `bundles' variable holding a pointer to the actual
8090         bundles. 
8091
8092         (mono_register_bundled_assemblies): New API call used by the
8093         bundle code. 
8094
8095         See mkbundle.1 for details.
8096         
8097 2004-11-27  Martin Baulig  <martin@ximian.com>
8098
8099         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8100         the vtable for generic methods.
8101
8102 2004-11-26  Martin Baulig  <martin@ximian.com>
8103
8104         * metadata.c
8105         (mono_metadata_generic_method_hash): New public function.
8106         (mono_metadata_generic_method_equal): Likewise.
8107
8108         * class-internals.h
8109         (MonoGenericContainer): Added `GHashTable *method_hash'.
8110
8111         * reflection.c (ReflectionMethodBuilder): Added
8112         `MonoGenericContainer *generic_container'.
8113         (reflection_methodbuilder_to_mono_method): Don't create a new
8114         MonoGenericContainer each time we're called.
8115         (mono_reflection_bind_generic_method_parameters): Use
8116         `container->method_hash' to cache the results so we don't create a
8117         different method if we're called several times with the same
8118         arguments.
8119
8120         * loader.c (method_from_methodspec): Use the new
8121         `container->method_hash' here, too.
8122
8123 2004-11-26  Martin Baulig  <martin@ximian.com>
8124
8125         * class.c (inflate_generic_signature): Correctly compute
8126         `res->has_type_parameters'.
8127         (mono_class_vtable): Use the `has_type_parameters' flag to
8128         determine whether we're a generic method.
8129
8130         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8131
8132 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8133
8134         * object.c (mono_runtime_run_main): Fix a small memory leak.
8135
8136 2004-11-25  Martin Baulig  <martin@ximian.com>
8137
8138         * class.c (set_generic_param_owner): Fixed the loop.
8139
8140 2004-11-25  Martin Baulig  <martin@ximian.com>
8141
8142         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8143         generic methods.
8144
8145 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8146
8147         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8148         names. Fixes #69787.
8149
8150 2004-11-24  Martin Baulig  <martin@ximian.com>
8151
8152         * class.c (mono_class_create_generic_2): If we don't have a
8153         `ginst->parent', inflate `gklass->parent' to get our parent.
8154
8155 2004-11-24  Martin Baulig  <martin@ximian.com>
8156
8157         * reflection.c (compare_genericparam): Correctly sort the
8158         GenericParam table; fixes #69779.
8159
8160 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8161
8162         * reflection.c: When writing a PE file, don't create a huge
8163         buffer in memory. Just write the arrays we have to the file.
8164         This reduces memory usage.
8165
8166         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8167         globally.
8168
8169 2004-11-17  Martin Baulig  <martin@ximian.com>
8170
8171         * class.c (mono_class_init): Don't setup `class->parent' for
8172         dynamic instances; moved this to mono_class_generic_2().
8173         (mono_class_create_generic): Also set `klass->inited' for dynamic
8174         generic instances.
8175         (mono_class_create_generic_2): Don't do anything for dynamic
8176         generic instances.  Set `klass->parent' here and also call
8177         mono_class_setup_parent() here. 
8178
8179         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8180         `MonoType *parent' argument; set `ginst->parent' before calling
8181         mono_class_create_generic_2(), so we set the correct parent.
8182
8183 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8184
8185         * reflection.c: allow getting attributes from ModuleBuilder
8186         (used by ikvm).
8187
8188 2004-11-17  Martin Baulig  <martin@ximian.com>
8189
8190         * class.c (mono_class_create_from_typedef): If a type parameter is
8191         inherited from an outer class, set its owner to that class.
8192
8193 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8194
8195         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8196           for (int*) written size. This fixes bug #69592.
8197
8198 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8199
8200         * icall.c: Added IsAuthenticodePresnet internal call.
8201         * image.c|h: New function that check a MonoImage for an Authenticode
8202         signature in the certificate PE data directory.
8203         * security.c|h: New internal call to ask the runtime if an 
8204         Authenticode signature seems referenced in the PE header.
8205
8206 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8207
8208         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8209
8210         * reflection.c (mono_image_create_pefile): Free the assembly streams
8211         after writing out the assembly file.
8212
8213         * object.c (mono_runtime_run_main): Fix small memory leak.
8214
8215         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8216         property access modifiers. Fixes #69389.
8217
8218 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8219
8220         * domain.c, object.c, object-internals.h, domain-internals.h,
8221         object.h, marshal.c: keep dynamic code info per domain.
8222
8223 2004-11-15  Martin Baulig  <martin@ximian.com>
8224
8225         * class.c (mono_type_get_name_recurse): Put type arguments in
8226         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8227         see bug #68387.
8228
8229 2004-11-15  Martin Baulig  <martin@ximian.com>
8230
8231         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8232         (mono_class_setup_vtable): When computing `the_cname' for a
8233         generic instance, don't include the namespace since we'd otherwise
8234         add it twice.
8235
8236 2004-11-15  Martin Baulig  <martin@ximian.com>
8237
8238         * class.c (mono_class_create_generic): Changed return type to void.
8239         (mono_class_create_generic_2): New public function; setup
8240         `class->method', `class->field' and `class->interfaces' here
8241         instead of in mono_class_init().
8242
8243         * class.h (mono_class_create_generic): Moved to class-internals.h.
8244
8245 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8246
8247         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8248         rather than writing to memory, write to this file. Right now,
8249         we are just writting into a buffer, and copying that. However
8250         we can avoid the buffer later.
8251
8252         (mono_dynamic_stream_reset): new function
8253
8254         * icall.c, object-internals.h: update for the above.
8255
8256 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8257
8258         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8259         have been using gc'd memory. First it is slower, unlikely
8260         the comment in the source code said, secondly, it increases
8261         our footprint to do it in the gc.
8262
8263         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8264         the method so that it does not have to copy to managed code.
8265
8266 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8267
8268         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8269
8270 2004-11-12  Martin Baulig  <martin@localhost>
8271
8272         * reflection.c (mono_image_create_token): Allow generic method
8273         definitions here, since they may appear in an `.override'; see
8274         gen-98/gen-99 for an example.
8275
8276 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8277
8278         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8279         #69365.
8280
8281         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8282         descriptive.
8283
8284 2004-11-11  Martin Baulig  <martin@ximian.com>
8285
8286         * class.c (mono_class_setup_vtable): In an explicit interface
8287         implementation, the method name now includes the arity.
8288
8289 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8290
8291         * object.c (mono_array_full_copy): Fix warning.
8292
8293 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8294
8295         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8296         mono_class_get_method_from_name() instead.
8297         
8298         * class-internals.h: Added two new types of wrappers. 
8299         Added MonoRemotingTarget enum. Added new trampoline function type, which
8300         takes an additional MonoRemotingTarget value as parameter, so it is
8301         possible to request a trampoline for a specific target.
8302         
8303         * class.c: Added new mono_class_get_method_from_name() method.
8304         
8305         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8306         general remoting sinks and one specific for cross domain calls.
8307         
8308         * debug-helpers.c: Added new wrapper names.
8309         
8310         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8311         of a remote class.
8312         
8313         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8314         
8315         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8316         with several other methods (mono_marshal_get_xappdomain_dispatch,
8317         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8318         and others) can generate a fast remoting wrapper for cross domain calls.
8319         More information can be found in docs/remoting.
8320         Other changes: Removed mono_find_method_by_name, and used
8321         mono_class_get_method_from_name instead.
8322         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8323         is stored in the remoting invoke hashtable.
8324         
8325         * marshal.h: published the new method for getting the xdomain wrapper,
8326         and also added a method for getting the adequate wrapper for a given
8327         method and target.
8328         
8329         * object-internals.h, object.c: Added a couple of methods for capying and
8330         cloning arrays.
8331         Modified mono_install_remoting_trampoline, which takes the new remoting
8332         trampoline that has a remoting target as parameter.
8333         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8334         will return the most suitable vtable for the target.
8335         Added mono_remote_class_vtable, which returns the vtable of a remote class
8336         (which can be the normal remoting vtable or the xdomain vtable).
8337         
8338         * threads.c: the xdomain invoke and dispatch wrappers must also be
8339         protected against interruptions.
8340
8341 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8342
8343         * icall.c: use memmove in BlockCopyInternal when the source and
8344         destination arrays are the same.
8345
8346 2004-11-09  Martin Baulig  <martin@ximian.com>
8347
8348         * class-internals.h (MonoGenericContainer): Removed `method' and
8349         `signature', replaced them with `is_method' and `is_signature'
8350         flags.  Added `context'.
8351
8352         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8353         instead of a `MonoGenericContainer *'.
8354
8355         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8356         for dynamic type parameters.
8357         (mono_metadata_load_generic_params): Setup `container->context'.
8358
8359         * reflection.c (mono_reflection_setup_generic_class): Setup
8360         `tb->generic_container->context'.
8361         (do_mono_reflection_bind_generic_parameters): Use
8362         mono_class_inflate_generic_type() to correctly inflate types,
8363         rather than using our own hack just for MONO_TYPE_VAR.
8364
8365 2004-11-09  Martin Baulig  <martin@ximian.com>
8366
8367         * class.c (mono_class_inflate_generic_method): Small fix; don't
8368         crash here.
8369
8370         * icall.c
8371         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8372         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8373         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8374         (ves_icall_Type_BindGenericParameters): Likewise.
8375         (ves_icall_Type_get_IsGenericInstance): Likewise.
8376         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8377         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8378         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8379         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8380
8381 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8382
8383         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8384         assembly versions and public key tokens. Fixes #69113.
8385
8386 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8387
8388         * metadata.c: fix bug introduced with the type cache changes
8389         on 2004-11-06.
8390
8391 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8392
8393         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8394         the MonoClass pointer instead of the token in exception clauses.
8395         * reflection.c: updates for the above and make the code not depend
8396         on the structure of MonoExceptionClause.
8397
8398 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8399
8400         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8401         Add support for dynamic assemblies. Fixes #69114.
8402
8403         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8404
8405 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8406
8407         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8408         since most only those methods use it. the code member of
8409         MonoMethodPInvoke was dead, so that can be removed too. Also,
8410         remove inline_count (again, not used), and move slot so that it
8411         can share bits with some other flags. This saves 8 bytes in the
8412         structure and gives us about 50 kb back for mcs helloworld.cs
8413
8414         * *.[ch]: Do naming changes for the above.
8415
8416         * loader.c (mono_method_get_header): Lazily init the header
8417         on first access.
8418         (mono_get_method_from_token): don't init the header here
8419         (mono_free_method): the header may never be allocated
8420
8421         Overall, this saves 150 kb of unmanaged allocations
8422         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8423         memory at runtime.
8424         
8425         * loader.c, loader.h (mono_method_get_header): new accessor.
8426
8427         * *.[ch]: use the above method. Prepares us to lazily load
8428         the header.
8429
8430         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8431         three warnings, which are actual bugs (see 69206).
8432
8433         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8434         unused. Saves a cool 4 bytes / method.
8435
8436 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8437
8438         * metadata.c (builtin_types): Add types for System.Object here.
8439         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8440         for a class or valuetype from klass->this_arg or klass->byval_arg.
8441
8442         On mcs for a hello world, this gets us down from 21836 MonoType's
8443         to 14560.
8444
8445         (mono_metadata_free_type): Account for the above change.
8446
8447 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8448
8449         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8450         exception instead of asserting if name is null.
8451         (ves_icall_System_AppDomain_GetData): Ditto.
8452
8453 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8454
8455         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8456         EnumBuilder.
8457
8458         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8459         Return NULL when the domain does not have entry_assembly set.
8460
8461         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8462         Add a 'resource_modules' argument.
8463         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8464
8465         * reflection.c (mono_reflection_create_runtime_class): Move setting
8466         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8467         for enums too.
8468
8469         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8470         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8471         Throw an ArgumentNullException if 'ptr' is null.
8472
8473         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8474         assemblies here. Fixes #69020.
8475
8476 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8477
8478         * reflection.c (build_compressed_metadata): Fix the previous patch for
8479         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8480         the stack.
8481
8482 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8483
8484         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8485         the cultures is false. Fixes #69090.
8486
8487         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8488         detected by valgrind.
8489         
8490         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8491         TypeResolve multiple times for the same type. Fixes #65577.
8492
8493 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8494
8495         * marshal.c: Avoid using ldftn to call managed functions. It is
8496         much slower than just a call.
8497
8498         * reflection.c (mono_module_get_object): free the basename we
8499         allocate here from glib.
8500         
8501         * reflection.c (ensure_runtime_vtable): make sure to free
8502         overrides.  Also, we were allocating an array of MonoMethod not an
8503         array of MonoMethod*.
8504
8505         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8506
8507         * image.c (mono_image_close): free image->guid here.
8508
8509 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8510
8511         * reflection.c: Fix some spec conformance issues with the PE file
8512         structures so mcs compiled apps run on the Net 2.0 beta.
8513
8514 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8515
8516         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8517         Implement this. Fixes #67264.
8518
8519         * debug-helpers.h debug-helpers.c marshal.c: Move 
8520         mono_find_method_by_name to debug-helpers.c.
8521
8522 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8523
8524         * object.c (mono_release_type_locks): type_initialization_hash is
8525         a GHashTable.
8526
8527         * reflection.c object.c object-internals.h: Fix warnings.
8528
8529         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8530         without accessors. Fixes #61561.
8531
8532         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8533         application base from the root domain if not set. Fixes #65641.
8534         (mono_runtime_init): Fix warning.
8535
8536 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8537
8538         * appdomain.c: call mono_thread_pool_init.
8539         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8540         of worker threads based on the number of CPUs and the environment
8541         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8542         for non-windows (windows) systems.
8543
8544 2004-10-27  Chris Toshok  <toshok@ximian.com>
8545
8546         * mono-debug-debugger.c (write_class): don't call mono_class_init
8547         here, as even with the check for (!klass->init_pending), we get
8548         into a situation where we're hitting cycles in class
8549         initialization.  Fixes #68816.
8550
8551 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8552
8553         * image.c: Avoid overwriting values in the loaded_images_hash when an
8554         assembly is loaded multiple times. Fixes #61152.
8555
8556         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8557         so multiple satellite assemblies for the same name can be loaded.
8558         Fixes #68259.
8559
8560         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8561         not NULL.
8562
8563         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8564         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8565
8566         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8567         pending finalizers are not invoked after the appdomain has been 
8568         unloaded. Fixes #67862.
8569
8570 2004-10-22  Martin Baulig  <martin@ximian.com>
8571
8572         * mono-debug-debugger.c
8573         (mono_debugger_runtime_invoke): Don't box valuetypes.
8574
8575 2004-10-22  Chris Toshok  <toshok@ximian.com>
8576
8577         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8578         don't hide private methods.
8579
8580 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8581
8582         * icall.c: Allows the runtime to "share" (when known) the public key
8583         token of an assembly. This avoid the need to recalculate the token 
8584         (from the public key) in managed code.
8585
8586 2004-10-21  Chris Toshok  <toshok@ximian.com>
8587
8588         * debug-helpers.c (append_class_name): argh, revert last patch.
8589         
8590 2004-10-21  Chris Toshok  <toshok@ximian.com>
8591
8592         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8593         not '/', so that it matches what the debugger uses to look up
8594         methods.
8595
8596 2004-10-21  Martin Baulig  <martin@ximian.com>
8597
8598         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8599         public method; this is called each time an exception is thrown and
8600         allows the debugger to use exception catch points.
8601
8602 2004-10-21  Martin Baulig  <martin@ximian.com>
8603
8604         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8605         the stack pointer and the exception object in some struct and pass
8606         that to the debugger.
8607
8608 2004-10-21  Chris Toshok  <toshok@ximian.com>
8609
8610         * mono-debug-debugger.c (do_write_class): add instance/static
8611         event support.  We don't expose "raise" or "other" yet.
8612         (event_is_static): new method.
8613
8614 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8615
8616         * mono-debug-debugger.c
8617         (mono_debugger_handle_exception): Remove
8618         bogus return value for fussy compilers.
8619
8620 2004-10-20  Martin Baulig  <martin@ximian.com>
8621
8622         * mono-debug-debugger.c
8623         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8624         (mono_debugger_handled_exception): Likewise.
8625
8626 2004-10-20  Martin Baulig  <martin@ximian.com>
8627
8628         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8629         MONO_DEBUGGER_EVENT_EXCEPTION.
8630
8631         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8632         public function to send the debugger a notification for an
8633         exception and inform it about a catch/finally clause.
8634
8635 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8636
8637         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8638         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8639         fix 2.95 build. 
8640
8641         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8642
8643 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8644
8645         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8646         marshalled as [In,Out]. Fixes #58325.
8647
8648 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8649
8650         * reflection.c (mono_method_body_get_object): Implement some fields.
8651
8652 2004-10-12  Martin Baulig  <martin@ximian.com>
8653
8654         * reflection.c (mono_reflection_bind_generic_parameters): Small
8655         fix, correctly retrieve our parent from a generic instance.
8656
8657 2004-10-12  Martin Baulig  <martin@ximian.com>
8658
8659         * metadata.c (mono_metadata_generic_param_equal): We always have
8660         an owner.
8661
8662         * class.c
8663         (mono_class_from_generic_parameter): We need to have an owner.
8664         (my_mono_class_from_generic_parameter): Likewise.
8665
8666         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8667         mono_reflection_create_generic_class() and added a new
8668         mono_reflection_setup_generic_class().  
8669         (mono_reflection_initialize_generic_param): If we're a nested
8670         generic type and inherited from the containing class, set our
8671         owner to the outer class.
8672
8673 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8674
8675         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8676
8677         * reflection.c (mono_method_body_get_object): New function to create
8678         a MethodBody object.
8679
8680         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8681
8682 2004-10-11  Martin Baulig  <martin@ximian.com>
8683
8684         * metadata.c (_mono_metadata_type_equal): Renamed to
8685         do_mono_metadata_type_equal() and made static.
8686
8687 2004-10-11  Martin Baulig  <martin@ximian.com>
8688
8689         * appdomain.c: Bump corlib version number to 28.
8690
8691 2004-10-10  Martin Baulig  <martin@ximian.com>
8692
8693         * class-internals.h
8694         (MonoGenericInst): Added `MonoGenericContainer *container'.
8695         (MonoGenericMethod): Likewise.
8696         (MonoGenericContext): Likewise.
8697         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8698
8699         * metadata.c
8700         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8701         (do_mono_metadata_parse_generic_inst): Likewise.
8702         (mono_metadata_parse_type_full): New public method.  This is the actual
8703         mono_metadata_parse_type() implementation - with an additional
8704         `MonoGenericContainer *' argument.
8705         (mono_metadata_parse_array_full): Likewise.
8706         (mono_metadata_parse_signature_full): Likewise.
8707         (mono_metadata_parse_method_signature_full): Likewise.
8708         (mono_metadata_parse_mh_full): Likewise.
8709         (mono_type_create_from_typespec): Likewise.
8710         (mono_metadata_interfaces_from_typedef_full): New public method;
8711         this is similar to the other _full() methods, but we take a
8712         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8713         (mono_metadata_parse_generic_param): Take an additional
8714         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8715         from that container.
8716         (mono_metadata_generic_param_equal): New static method to compare
8717         two type parameters.
8718         (_mono_metadata_type_equal): New static method; takes an
8719         additional `gboolean signature_only' argument - if true, we don't
8720         compare the owners of generic parameters.
8721         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8722         with a TRUE argument - do a signature-only comparision.
8723
8724         * loader.c: Use the new _full() methods and pass the
8725         MonoGenericContainer to them.
8726
8727         * object-internals.h (MonoReflectionTypeBuilder): Added
8728         `MonoGenericContainer *generic_container' field.
8729         (MonoReflectionMethodBuilder): Likewise.
8730
8731 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8732
8733         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8734         case initial images of dynamic assemblies.
8735
8736         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8737
8738         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8739
8740         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8741         length of event->other array.
8742         (typebuilder_setup_events): Ditto.
8743
8744         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8745         'assembly_by_name' and add an 'assemblies' list.
8746
8747         * assembly.h assembly.c: Add a new search hook for determining whenever
8748         an assembly is already loaded. Use this instead of searching in the
8749         loaded_assemblies list.
8750
8751         * domain.c appdomain.c: Implement the new search hook so loaded 
8752         assemblies are now scoped by appdomain. Fixes #67727.
8753
8754 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8755
8756         * threads.c (mono_thread_attach): Initialize synch_lock field so
8757         mono_thread_detach works again.
8758
8759         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8760         'lib' too. Fixes #63130.
8761
8762 2004-10-06  Jackson Harper  <jackson@ximian.com>
8763
8764         * culture-info-tables.h: regenerated.
8765
8766 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8767
8768         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8769         implemented by other interfaces in the result. Fixes #65764.
8770         
8771         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8772         Handle unloadable modules without crashing.
8773
8774         * image.c (load_modules): Revert the previous patch since modules must
8775         have a fixed index inside the array.
8776         
8777         * image.c (load_modules): Don't include native modules in the modules
8778         array.
8779
8780 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8781
8782         * reflection.h: Add param_defaults field.
8783
8784         * reflection.c: Add support for parameter defaults in dynamic methods.
8785         Fixes #64595.
8786
8787         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8788         an empty string when a type has no namespace. Fixes #64230.
8789
8790 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8791
8792         * tabledefs.h: Added "internal" security actions to support non-CAS
8793         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8794         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8795
8796 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8797
8798         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8799         constructor of abstract class. Fixes #61689.
8800
8801 2004-10-04  Martin Baulig  <martin@ximian.com>
8802
8803         * class-internals.h (MonoGenericContainer): New type.
8804         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8805         `MonoGenericContainer *generic_container'.
8806         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8807         `MonoGenericContainer *generic_container'.
8808
8809         * metadata.c (mono_metadata_load_generic_params): Return a
8810         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8811         removed the `num' argument.
8812
8813 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8814
8815         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8816         for dynamic images.
8817
8818         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8819         machine fields.
8820
8821         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8822
8823         * reflection.c: Save pe_kind and machine values into the generated
8824         image file.
8825
8826         * appdomain.c: Bump corlib version number.
8827
8828         * object-internals.h: Reorganize layout of LocalBuilder.
8829
8830         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8831         New helper function.
8832
8833         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8834         created MonoType for dynamic types. Fixes #66180.
8835
8836 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8837
8838         * threadpool.c: the ares hashtable needs a critical section around it.
8839         this prevents some nasty segfaults
8840
8841 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8842
8843         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8844         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8845         bug 67324).
8846         
8847 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8848
8849         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8850         
8851 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8852
8853         * image.c: Always canonicalize image file names, to avoid loading
8854         the same assembly twice when referenced using a relative path.
8855
8856 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8857
8858         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8859
8860         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8861
8862         * marshal.c: Fix warnings.
8863
8864 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8865
8866         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8867         attempting to marshal the delegate_trampoline as the method_addr.
8868         This patch has a static hashtable of marshalled delegates so that 
8869         we can map delegate_trampoline addresses back to delegates.  This
8870         allows a delegate passed to managed code to be passed back into native
8871         code.  Fixes #67039
8872
8873 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8874
8875         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8876
8877         * reflection.c (method_encode_code): Align method headers properly.
8878         Fixes #66025.
8879
8880 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8881
8882         * marshal.c: In the runtime invoke wrapper, reset the abort
8883         exception if it is cached. This avoids the automatic rethrowal of 
8884         the exception after the catch of the wrapper. Also check for pending
8885         interruptions before calling the managed method. This is done using
8886         the new method emit_thread_force_interrupt_checkpoint, since the
8887         normal checkpoint method is ignored when running the invoke wrapper.
8888         * object.c: If the abort exception is rethrown, set the abort_exc
8889         field of the thread, so it will be rethrown aftere every catch.
8890         * threadpool.c: Only run an interruption checkpoint if what has been
8891         requested is a stop of the thread (aborts will be ignored).
8892         * threads.c: By default, a thread will now never be interrumped while
8893         running the runtime invoke wrapper (this ensures that runtime_invoke
8894         will always return to the caller if an exception pointer is provided).
8895         There is a new special method mono_thread_force_interruption_checkpoint()
8896         to force an interruption checkpoint even if running a protected
8897         wrapper, which is used by the same runtime invoke wrapper to do a check
8898         at a safe point.
8899
8900 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8901
8902         * object.c, object-internals.h: Implemented mono_release_type_locks,
8903         which releases the cctor locks held by a thread.
8904         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8905         by a thread. Added mono_thread_exit() method to be used to safely stop
8906         a thread.
8907
8908 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8909
8910         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8911         Move null check before dereference.  Avoid indexing beyond the end
8912         of the 'modules' array.
8913
8914 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8915
8916         * metadata-internals.h (MonoImage): Add module_count field.
8917         * image.c (load_modules): Set image->module_count.
8918         (mono_image_load_file_for_image): Use image->module_count.
8919         * reflection.c (mono_image_load_module): Append to image->modules array 
8920         of dynamic assembly.
8921         (mono_module_get_object): Fix loop to actually increment index.
8922         Use image->module_count.
8923         * assembly.c (mono_assembly_load_references): Use image->module_count.
8924         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8925         Likewise.
8926
8927 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8928
8929         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8930         Avoid assert on generic types.
8931
8932 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8933
8934         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8935
8936         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8937
8938         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8939         function to convert a MarshalSpec structure to its managed counterpart.
8940
8941         * reflection.c: Fix warnings.
8942         
8943         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8944         field.
8945
8946         * icall.c (mono_create_icall_signature): Fix build.
8947
8948 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8949
8950         * icall.c: Add MakePointType icall.
8951
8952         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8953         warnings.
8954
8955 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8956
8957         * threadpool.c: reuse allocated slots in the queue.
8958
8959 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8960
8961         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8962
8963         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8964
8965         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8966         previous change.
8967
8968         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8969         ThrowOnUnmappableChar.
8970
8971         * icall.c (ves_icall_Type_GetPacking): New icall.
8972
8973 2004-09-24  Martin Baulig  <martin@ximian.com>
8974
8975         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8976
8977 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8978
8979         * appdomain.c:
8980         (mono_domain_set): allow setting a domain that is being unloaded.
8981         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8982         being unloaded.
8983
8984 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8985
8986         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8987         the GetCustomAttributes icall.
8988
8989 2004-09-23  Martin Baulig  <martin@ximian.com>
8990
8991         * object-internals.h (MonoReflectionGenericParam): Replaced
8992         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8993         with `guint32 attrs'.
8994
8995 2004-09-23  Martin Baulig  <martin@ximian.com>
8996
8997         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8998
8999 2004-09-23  Martin Baulig  <martin@ximian.com>
9000
9001         * object-internals.h (GenericParameterAttributes): New enum.
9002
9003 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9004
9005         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9006         
9007         * class.c (init_events): Fill out event->other field.
9008
9009         * class.c: Fix warnings.
9010
9011         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9012
9013 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9014
9015         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9016         walk which doesn't supply the IL offset.
9017
9018 2004-09-22  Martin Baulig  <martin@ximian.com>
9019
9020         * reflection.c (mono_reflection_setup_internal_class): If we're
9021         System.ValueType, System.Object or System.Enum, set
9022         `klass->instance_size' and create the vtable.
9023         (mono_reflection_create_internal_class): If we're an enum type,
9024         get the base class from our current corlib.
9025
9026 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9027
9028         * reflection.h (MonoResolveTokenError): New type.
9029
9030         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9031         icall.
9032
9033         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9034
9035 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9036
9037         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9038         Support also calling constructors, but only for already allocated objects.
9039
9040 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9041
9042         * reflection.c (type_get_qualified_name): If the klass is null
9043         return the typename to avoid a NullRefEx.
9044         (encode_cattr_value): Get the qualified name of the boxed type,
9045         not the underlying enumtype.  Fixes #62984.
9046
9047 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9048
9049         * marshal.c: Fix problems with previous checkin.
9050
9051 2004-09-21    <vargaz@freemail.hu>
9052
9053         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9054         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9055
9056         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9057
9058 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9059
9060         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9061         should only return a type for pointers, arrays, and passbyref types.
9062         Fixes bug #63841.
9063
9064 2004-09-21  Martin Baulig  <martin@ximian.com>
9065
9066         * domain.c (mono_debugger_check_runtime_version): New public
9067         function.
9068
9069         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9070
9071 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9072
9073         * reflection.c: Added missing sort to the declarative security 
9074         attributes table. MS implementation stops seeing the attributes if the
9075         token number regress in the table (as shown by ildasm and permview).
9076
9077 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9078
9079         * object-internals.h (MonoReflectionModule): Add 'token' field.
9080         
9081         * reflection.c (mono_reflection_get_token): Add support for Module
9082         and Assembly.
9083         (mono_module_get_object): Set 'token' field.
9084         (mono_module_file_get_object): Set 'token' field.
9085
9086         * icall.c: Add new Assembly and Module icalls.
9087
9088         * appdomain.c: Bump corlib version.
9089
9090 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9091
9092         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9093         tokens of metadata objects.
9094
9095         * reflection.h reflection.c (mono_reflection_get_token): New function
9096         to obtain the token of a metadata object.
9097
9098         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9099
9100 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9101
9102         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9103         
9104         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9105
9106 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9107
9108         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9109         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9110         AssemblyBuilder to access the permissions set in the class lib.
9111         * reflection.c: Added security attributes encoding step in 
9112         mono_image_build_metadata.
9113         * tabledefs.h: Added new security actions defined in 2.0:
9114         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9115
9116 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9117
9118         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9119         macro parameter.
9120
9121 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9122  
9123         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9124           finalized. There where random SIGSEVs at program termination, when
9125           an object being finalized was trying to do a string comparison and
9126           the current culture was already finalized.
9127  
9128 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9129
9130         * threads.c: call thread_cleanup before finishing the thread if we get
9131         there.
9132
9133 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9134
9135         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9136         assemblies from the parent. Fixes #65665.
9137
9138 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9139
9140         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9141         modifiers.
9142
9143 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9144
9145         * reflection.h: add prototype for mono_get_dbnull_object
9146         * reflection.c: add prototypes for get_default_param_value_blobs 
9147         and mono_get_object_from_blob for fussier compilers
9148
9149 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9150  
9151         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9152         false deadlock checks in class initialization.
9153  
9154 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9155
9156         * image.c (mono_image_addref): Fix comment.
9157
9158         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9159         possible.
9160
9161 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9162
9163         * reflection.c (mono_param_get_objects): Modified to return
9164         ParameterInfo.DefaultValue object.
9165
9166         (get_default_param_value_blobs):
9167         (mono_get_object_from_blob):
9168         (mono_get_dbnull_object): New helper routines. 
9169
9170         * object.c (mono_get_constant_value_from_blob): New helper routine
9171         carved out from get_default_field_value ()
9172
9173         * object-internals.h (mono_get_constant_value_from_blob): Added
9174         function declaration.
9175
9176 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9177
9178         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9179         referenced assemblies. Fixes #62135.
9180
9181         * exception.h exception.c (mono_get_exception_file_not_found2): New
9182         helper function.
9183
9184 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9185
9186         * class.h class.c: Add mono_type_get_underlying_type ().
9187
9188 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9189
9190         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9191         Fix GetTypes() to support dynamically created assemblies.
9192
9193 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9194
9195         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9196         
9197         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9198         previous patch.
9199
9200         * reflection.h reflection.c loader.c: Allow dynamic construction of
9201         pinvoke methods. Fixes #65571.
9202         
9203         * reflection.c (mono_reflection_get_type): Revert previous change since
9204         it causes regressions.
9205
9206 2004-09-08  Martin Baulig  <martin@ximian.com>
9207
9208         * class.c (class_compute_field_layout): Don't call
9209         mono_class_layout_fields() for open generic instances.
9210
9211 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9212         * threads.c appdomain.c: fix typo in GC macro
9213
9214 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9215
9216         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9217         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9218
9219 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9220
9221         * image.c (mono_image_close): Applied patch from 
9222         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9223         assembly is loaded multiple times from data.
9224         
9225         * image.c (mono_image_open): Fix warning.
9226
9227 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9228
9229         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9230         once. Fixes #58334.
9231         
9232         * reflection.c (mono_reflection_create_runtime_class): Initialize
9233         klass->nested_classes. Fixes #61224.
9234
9235 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9236
9237         * threads.c: sched_yield() on exit, to allow threads to quit.
9238
9239 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9240
9241         * object.c (mono_unhandled_exception): Remove leftover debug code.
9242
9243 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9244
9245         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9246
9247 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9248
9249         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9250         
9251         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9252
9253 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9254
9255         * marshal.c (emit_marshal_array): Null terminate string arrays.
9256         
9257         * marshal.c (raise_auto_layout_exception): Fix warning.
9258
9259         * reflection.c (mono_param_get_objects): Initialize the default value
9260         with DBNull.Value, not null. Fixes #62123.
9261
9262 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9263
9264         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9265         throw an exception with a cute explanation.
9266
9267 2004-09-06  Dick Porter  <dick@ximian.com>
9268
9269         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9270         Close the new process's thread handle, as we don't use it.  The
9271         handle stays around forever otherwise.
9272
9273 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9274
9275         * object.c (arith_overflow): Fix warning.
9276
9277         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9278         calling conventions in method refs. Fixes #65352.
9279
9280         * reflection.c: Fix warnings.
9281
9282 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9283
9284         * icall.c: Add a new icall for Array.Clear
9285
9286 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9287
9288         * object.c: When allocating an array, we have to throw
9289         an overflow exception if any of the lengths are < 0.
9290
9291 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9292
9293         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9294         properly. Also move implementation of string array marshalling to 
9295         managed code. Fixes #42316.
9296
9297 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9298
9299         * assembly.c: provide more information when loading an assembly fails.
9300
9301 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9302
9303         * filewatcher.c: don't expect the development fam package to be
9304         installed.
9305
9306 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9307
9308         * marshal.c: Make a copy of the signature cookie since it will be
9309         freed by the caller.
9310         
9311         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9312
9313         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9314
9315         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9316         marshal specs.
9317
9318         * marshal.c: More refactoring.
9319         
9320         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9321         smaller functions.
9322
9323 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9324
9325         * object.c: In mono_message_invoke, fill the output parameter array after
9326           calling the managed method (it was done before the call). This fixes
9327           bug #59299.
9328
9329 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9330
9331         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9332         as well.
9333
9334 2004-09-02  Martin Baulig  <martin@ximian.com>
9335
9336         * class.c (mono_class_instance_size): Don't allow generic type
9337         definitions or open generic instances.
9338         (mono_class_array_element_size): If we're a value type, call
9339         mono_class_instance_size() on the original class.
9340
9341         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9342         handle generic instances.
9343
9344         * mono-debug-debugger.c (write_type): Handle generic instances
9345         like classes.
9346
9347 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9348
9349         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9350         the allocation request fails. Fixes #65089.
9351
9352         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9353         
9354         * object.c (mono_runtime_free_method): New function to free a dynamic
9355         method.
9356
9357         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9358         delegate trampoline.
9359
9360         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9361         with hasthis as dynamic,
9362
9363         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9364
9365         * domain.c (mono_jit_info_table_remove): New function to remove an
9366         entry from the jit info table.
9367
9368         * class-internals.h (MonoMethod): Add 'dynamic' field.
9369
9370         * loader.c: Fix warnings.
9371
9372 2004-09-01  Martin Baulig  <martin@ximian.com>
9373
9374         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9375         instead of mono_debugger_lock() because the latter one is a no-op
9376         unless running in the debugger.
9377
9378 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9379
9380         * class.c (class_compute_field_layout): Classes with auto-layout or
9381         reference fields are not blittable.
9382         
9383 2004-09-01  Dick Porter  <dick@ximian.com>
9384
9385         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9386         mono_image_get_filename() to get the assembly location.
9387
9388         * icall.c:
9389         * metadata.h: Fix compile warnings
9390
9391 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9392
9393         * class.c (class_compute_field_layout): System.Object is blittable.
9394
9395         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9396         as in/out. Fixes #59909.
9397
9398 2004-09-01  Martin Baulig  <martin@ximian.com>
9399
9400         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9401         mono_metadata_generic_inst_is_valuetype() if we're a generic
9402         instance to check whether our underlying type is a reference type.
9403
9404 2004-09-01  Martin Baulig  <martin@ximian.com>
9405
9406         * metadata.c (mono_type_size): If we're a generic instance, call
9407         mono_class_value_size() for value types.
9408
9409 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9410
9411         * marshal.c: Implement more custom marshalling functionality. Fixes
9412         #64915.
9413
9414 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9415
9416         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9417
9418 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9419
9420         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9421
9422         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9423
9424         * icall.c: Fix some warnings.
9425
9426         * threads.c (abort_appdomain_thread): Fix unref errors.
9427         (mono_thread_current): Fix THREAD_DEBUG define.
9428
9429 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9430
9431         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9432
9433         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9434
9435 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9436
9437         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9438         string arrays.
9439
9440 2004-08-28  Martin Baulig  <martin@ximian.com>
9441
9442         * metadata.c
9443         (mono_metadata_generic_inst_is_valuetype): New public function.
9444
9445         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9446         mono_metadata_generic_inst_is_valuetype() if we're a generic
9447         instance to check whether our underlying type is a valuetype.
9448
9449 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9450
9451         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9452         #63768.
9453
9454 2004-08-25  Martin Baulig  <martin@ximian.com>
9455
9456         * loader.c (mono_get_method_from_token): Abstract methods can also
9457         be generic and thus have type parameters.
9458
9459         * metadata-internals.h
9460         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9461
9462         * reflection.c (mono_image_get_generic_param_info): Don't create a
9463         metadata row, just add an entry to the `gen_params' array.
9464         (build_compressed_metadata): Sort the `gen_params' array and then
9465         actually create the metadata.
9466
9467 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9468
9469         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9470
9471 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9472
9473         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9474
9475 2004-08-24  Martin Baulig  <martin@ximian.com>
9476
9477         * class.cs (mono_class_is_subclass_of): Like an interface, a
9478         generic instance also derives from System.Object.
9479
9480 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9481
9482         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9483         custom modifiers to be in any order. Fixes #61990.
9484
9485 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9486
9487         * object.c: Register mono_object_new_fast icall.
9488         
9489         * object.c (mono_class_get_allocation_ftn): Return to calling
9490         mono_object_new_fast, since it seems faster to compute the object 
9491         size in unmanaged code than passing it as a parameter.
9492
9493         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9494
9495         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9496         this function with Boehm as the oom handler, so we don't have to check
9497         the result of GC_malloc.
9498
9499         * object.c: Remove checks for oom.
9500
9501         * object.h object.c (mono_class_get_allocation_ftn): New function to
9502         return the icall which can be used to allocate an instance of a given
9503         class. 
9504
9505         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9506
9507         * class-internals.h: Add 'enabled' field.
9508
9509 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9510
9511         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9512
9513 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9514         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9515         value 0x0010.
9516
9517 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9518
9519         * appdomain.c: use the Tls function for appdomain too,
9520         at Zoltan's request. Actually return in mono_context_get
9521
9522         * appdomain.c, profiler.c, threads.c: use __thread
9523
9524 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9525
9526         * appdomain.c threads.c: Call GC_CreateThread on windows.
9527
9528         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9529         multiple libraries since this don't work on windows.
9530
9531 2004-08-18  Martin Baulig  <martin@ximian.com>
9532
9533         * class-internals.h
9534         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9535         MonoMethodHeader.
9536
9537         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9538         MonoMethodNormal since we also need it for abstract and interface
9539         methods.
9540
9541         * reflection.c
9542         (build_compressed_metadata): Sort the GenericParam table.
9543         (mono_image_create_token): Added `gboolean create_methodspec'
9544         argument; this is false when generating a MethodImpl token.
9545         (reflection_methodbuilder_to_mono_method): Abstract and interface
9546         methods may also have generic parameters.
9547
9548 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9549
9550         * appdomain.c: thread local alloc
9551
9552 2004-08-17  Martin Baulig  <martin@ximian.com>
9553
9554         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9555
9556         * icall.c
9557         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9558         argument.
9559
9560         * class.c (mono_type_get_full_name): New public function.
9561         (mono_type_get_name): Don't include the type arguments.
9562
9563 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9564
9565         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9566         for inclusion into the mono executable.
9567
9568 2004-08-16  Martin Baulig  <martin@ximian.com>
9569
9570         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9571         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9572
9573 2004-08-14  Martin Baulig  <martin@ximian.com>
9574
9575         * class.c (dup_type): Also copy the `byref' field.
9576
9577 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9578
9579         * reflection.c (create_dynamic_mono_image): Revert the last change 
9580         since it breaks bootstrap.
9581
9582 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9583
9584         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9585
9586         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9587         not free them with g_free.
9588
9589 2004-08-11  Martin Baulig  <martin@ximian.com>
9590
9591         * reflection.c (mono_reflection_setup_internal_class): Also call
9592         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9593
9594 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9595
9596         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9597         called during default (first) AppDomain creation. Keep track of
9598         Evidence when loading assemblies.
9599
9600 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9601
9602         * opcodes.c, opcodes.h: reduce runtime relocations.
9603
9604 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9605
9606         * culture-info.h, locales.c: fixes and chages to sue the new
9607         optimized format of the locale data.
9608         * culture-info-tables.h: regenerated.
9609
9610 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9611         
9612         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9613
9614 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9615
9616         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9617         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9618         * domain-internals.h: icall declaration.
9619         * icall.c: icall registration.
9620         * object-internals.h: New fields in MonoAssembly for CAS.
9621
9622 2004-08-05  Duncan Mak  <duncan@ximian.com>
9623
9624         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9625         CEE_LDELEM_ANY.
9626
9627 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9628
9629         * reflection.c: fix to deal with object[] arrays in custom ctors
9630         (bug #62550).
9631
9632 2004-08-05  Martin Baulig  <martin@ximian.com>
9633
9634         * class.c (mono_class_array_element_size): Added support for
9635         generic instances and correctly handle "recursive" types.
9636
9637 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9638
9639         * assembly.c: Fix warnings.
9640
9641 2004-08-04  Martin Baulig  <martin@ximian.com>
9642
9643         * class.c
9644         (mono_type_get_name_recurse): Added `gboolean include_arity'
9645         argument specifying whether or not we should include the generic
9646         arity in the type name.
9647         (_mono_type_get_name): New static function.
9648         (mono_class_setup_vtable): If we're a generic instance, don't
9649         include the generic arity in the names of explicit method
9650         implementations.        
9651
9652 2004-08-03  Martin Baulig  <martin@ximian.com>
9653
9654         * class.c (mono_type_get_name_recurse): Enclose the generic type
9655         arguments in `<', '>'.
9656
9657 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9658
9659         * gc.c: make GC warning messages use the trace API, they are just
9660         noise to most of the users.
9661
9662 2004-08-03  Martin Baulig  <martin@ximian.com>
9663
9664         * debug-mono-symfile.c (read_string): Correctly read the string.
9665
9666 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9667
9668         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9669         
9670         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9671         icalls.
9672         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9673
9674 2004-07-30  Martin Baulig  <martin@ximian.com>
9675
9676         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9677         Reflect latest symbol writer changes.   
9678
9679 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9680
9681         * object.c: always create an object if null is passed
9682         to Invoke() where a valuetype is expected.
9683
9684 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9685
9686         * marshal.c (mono_marshal_init): make managed
9687         signatures match native ones better for 64bits.
9688
9689 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9690
9691         * appdomain.c: hack to build correctly the private bin path on windows.
9692         Fixes bug #61991.
9693
9694 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9695
9696         * assembly.c: Load mscorlib from the correct framework directory
9697           (mono/<version>/mscorlib.dll).
9698         * appdomain.h: Added prototypes for new functions.
9699         * internals.h: Added some prototypes.
9700         * domain.c: When initializing the runtime, get from the executable and
9701           the configuration files the runtime version that the app supports.
9702           Added support methods for reading app.exe.config. Added list of versions
9703           supported by the JIT. Added two new methods: mono_init_from_assembly,
9704           which initializes the runtime and determines the required version from
9705           the provided exe file, and mono_init_version, which initializes
9706           the runtime using the provided version.
9707         * icall.c: Get machine.config from version-specific directory.
9708         * reflection.c: When generating an image, embed the version number
9709           of the current runtime.
9710
9711 2004-07-28  Dick Porter  <dick@ximian.com>
9712
9713         * socket-io.c
9714         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9715         returned sockaddr size before creating the remote address object.
9716         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9717         61608.
9718
9719 2004-07-28  Dick Porter  <dick@ximian.com>
9720
9721         * locales.c (string_invariant_compare_char): Fix invariant char
9722         compares between upper and lower cases.  Fixes bug 61458.
9723
9724 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9725         
9726         * marshal.c: actually cache stelem.ref wrappers.
9727         
9728 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9729
9730         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9731         sections and remove the mono_cli_rva_map () function.
9732
9733 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9734
9735         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9736         by Geoff Norton (<gnorton@customerdna.com>).
9737
9738 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9739
9740         * class.c: fix class loads for pointer types (typeof(int) !=
9741         typeof(int*)).
9742
9743 2004-07-27  Martin Baulig  <martin@ximian.com>
9744
9745         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9746         reading the debugging information from an external ".mdb" file.
9747
9748 2004-07-24  Martin Baulig  <martin@ximian.com>
9749
9750         * reflection.c (mono_image_get_type_info): Only write a class
9751         layout entry if we actually have a size or a packing size.
9752
9753 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9754
9755         * reflection.c (type_get_fully_qualified_name): 
9756         insert cast to get type checking of ?: with non-gcc compilers
9757
9758 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9759
9760         * rand.c: use g_getenv for both lookups of
9761         MONO_EGD_SOCKET
9762
9763 2004-07-17  Martin Baulig  <martin@ximian.com>
9764
9765         * reflection.c (mono_reflection_bind_generic_method_parameters):
9766         Set `gmethod->reflection_info'.
9767
9768 2004-07-17  Martin Baulig  <martin@ximian.com>
9769
9770         * class.c (mono_class_create_from_typedef): Insert the newly
9771         created class into the hash table before computing the interfaces
9772         since we could be called recursively.
9773
9774 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9775
9776         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9777         function to implement stelem.ref in managed code
9778         * class-internals.h, debug-helpers.c: a new wrapper type
9779         for the above.
9780
9781 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9782
9783         * gc.c: allow GC handles to work even when no GC is compiled in.
9784         Fix part of bug #61134 (GetAddrOfPinnedObject).
9785
9786 2004-07-13  Peter Williams  <peter@newton.cx>
9787  
9788         * process.c (complete_path): Make sure we don't attempt to execute
9789         directories.
9790  
9791 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9792
9793         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9794           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9795           and will add/subtract the hour if needed
9796
9797 2004-07-12  Martin Baulig  <martin@ximian.com>
9798
9799         * reflection.c (mono_field_get_object): If we have
9800         `field->generic_info', take the attributes from
9801         `field->generic_info->generic_type'.    
9802
9803 2004-07-12  Martin Baulig  <martin@ximian.com>
9804
9805         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9806         This function must be called before initializing the runtime.
9807         (mono_debug_init_1): New function; call this after initializing
9808         the runtime, but before loading the assembly.  It tells the
9809         debugger to load corlib and the builtin types.
9810
9811         * mono-debug-debugger.c: Did some larger changes in the debugging
9812         code; support recursive class declarations, make sure we actually
9813         add all classes.
9814
9815 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9816
9817         * debug-helpers.c: undo my previous patch and fixed the real issue in
9818         ../mini/exceptions-x86.c
9819
9820 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9821
9822         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9823         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9824         called from other .cctors.
9825
9826 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9827
9828         * loader.c: Removed the mono_loader_wine_init hack now that we are
9829         doing a managed version of Windows.Forms.
9830
9831 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9832
9833         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9834         threadpool.c, threads.c: remove static data from rootset.
9835
9836 2004-07-09  Dick Porter  <dick@ximian.com>
9837
9838         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9839         Don't do any more processing if the matched length was 0.  It was
9840         increasing the size of the string before.  Fixes bug 61167.
9841
9842 2004-07-09  Dick Porter  <dick@ximian.com>
9843
9844         * socket-io.h:
9845         * socket-io.c
9846         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9847         Add support for SO_PEERCRED if its available.
9848
9849 2004-07-09  Peter Bartok <pbartok@novell.com>
9850         * loader.c: winelib.exe.so error message is now only displayed if
9851         MONO_DEBUG is set. To help us avoid questions when people are trying
9852         out the new Managed.Windows.Forms.
9853
9854 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9855
9856         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9857         for isinst and castclass wrappers.
9858
9859         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9860         to libmetadata from the JIT, so they could be used by the marshalling
9861         code and the interpreter.
9862
9863         * marshal.c: Register marshalling related JIT icalls here instead of
9864         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9865         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9866
9867         * metadata.h: Remove unneeded marshalling conversions.
9868
9869         * opcodes.c: Update for new opcodes.
9870         
9871 2004-07-08  Martin Baulig  <martin@ximian.com>
9872
9873         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9874         (mono_debug_get_domain_data): Make this function static.
9875
9876 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9877
9878         * gc.c, object.h: add nice GC handle API for embedders.
9879
9880 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9881
9882         * reflection.c: more changes for the new api
9883
9884         * object.c: When we reflect on a field w/ a constant value, it
9885         will not have a memory location, so we must access metadata. Also,
9886         allow easier reading of strings so that we can read them from
9887         the constant data.
9888
9889         * class.c (mono_class_layout_fields): no need for literal fields here.
9890
9891         * class-internals.h: api changes for const fields
9892
9893         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9894
9895 2004-07-06  Martin Baulig  <martin@ximian.com>
9896
9897         * mono-debug.h: Increment version number to 44.
9898
9899         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9900         now a gpointer, rewrote this whole method.
9901
9902         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9903         function.  Add information about the wrapper in a new "misc table".
9904
9905         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9906         for the new misc table.
9907
9908 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9909
9910         * metadata-internals.h image.c: Add a cache for helper signatures.
9911
9912         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9913
9914 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9915
9916         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9917         delegates from a delegate. Fixes #61033.
9918         
9919         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9920         marshalling of stringbuilder arrays. Fixes #59900.
9921
9922 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9923
9924         * icall.c: Add EnumBuilder:setup_enum_type icall.
9925
9926 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9927
9928         * icall.c: Added a new icall for the property version of
9929         OffsetOfStringData.
9930
9931 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9932
9933         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9934         it has a constant size across platforms.
9935
9936         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9937         stack trace.
9938
9939 2004-06-29  Martin Baulig  <martin@ximian.com>
9940
9941         * mono-debug.c (mono_debug_add_method): Protect the whole function
9942         in mono_debugger_lock(), not just parts of it.
9943
9944 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9945
9946         * reflection.c: make sure padding bytes in heaps are zeroed.
9947
9948 2004-06-24  David Waite  <mass@akuma.org>
9949
9950         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9951         image.c, loader.c, locales.c, marshal.c, metadata.c,
9952         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9953         string-icalls.c, threads.c: change to C90-style comments from C99 /
9954         C++ -style
9955
9956 2004-06-24  Dick Porter  <dick@ximian.com>
9957
9958         * threads.c
9959         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9960         return createdNew.  Fixes bug 60412.
9961
9962         * threads-types.h: 
9963         * icall.c: Add createdNew parameter to CreateMutex icall
9964
9965 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9966
9967         * reflection.c, object-internals.h: save default value in params.
9968
9969 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9970
9971         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9972         no need to build a new path combining that with the application base.
9973         Fixes bug #60442.
9974
9975 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9976
9977         * reflection.c: fixed minor standard compliance issues.
9978
9979 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9980
9981         * reflection.c: fixed issue with encoding some custom attributes
9982         (arrays in properties and fields, bug #60411).
9983
9984 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9985
9986         * reflection.c: fix start address when copying the public key token.
9987
9988 2004-06-23  Martin Baulig  <martin@ximian.com>
9989
9990         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9991         the `exc' object in a static object to put it into the GC's root set.
9992
9993 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9994
9995         * reflection.c: make mono_reflection_setup_internal_class ()
9996         callable a second time to setup a new parent class.
9997
9998 2004-06-23  Dick Porter  <dick@ximian.com>
9999
10000         * threads.c: Check for WAIT_IO_COMPLETION return values.
10001
10002 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10003
10004         * appdomain.c: Removed the g_free on the public key token. Now copy 
10005         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10006         * assembly.c: Added public key token string value when loading 
10007         assemblies. Fix bug #60439.
10008         * icall.c: Added missing informations (like public key) in 
10009         GetReferencedAssemblies. Fix #60519.
10010         * image.h: Changed definition for public key token from const char*
10011         public_tok_value to guchar public_key_token [17];
10012         * reflection.c: Updated for changes to public key token.
10013
10014 2004-06-22  Lluis Sanchez Gual
10015
10016         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10017         for the field in base classes.
10018
10019 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10020
10021         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10022         mark headers as not supported, they are installed only for use by the
10023         debugger.
10024
10025 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10026
10027         * *.c, *.h: avoid namespace pollution in public headers.
10028
10029 2004-06-21  Martin Baulig  <martin@ximian.com>
10030
10031         * exception.c (mono_get_exception_security): It's in
10032         "System.Security", not in "System".
10033
10034         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10035         the exception classes.
10036
10037 2004-06-21  Martin Baulig  <martin@ximian.com>
10038
10039         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10040         Protect the exception object from being finalized.
10041
10042 2004-06-21  Martin Baulig  <martin@ximian.com>
10043
10044         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10045         public function.
10046
10047 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10048
10049         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10050         if it was not loaded before. Fix parts of #60439.
10051
10052 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10053
10054         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10055         code that was broken since Ben's change: wrappers are now
10056         dependent on the method signature only again.
10057
10058 2004-06-21  Martin Baulig  <martin@ximian.com>
10059
10060         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10061         added interface support.
10062
10063 2004-06-21  Martin Baulig  <martin@ximian.com>
10064
10065         * class.c (mono_vtable_get_static_field_data): New public method.
10066
10067 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10068
10069         * filewatcher.c : Windows build fix to be compliant with API changes.
10070
10071 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10072
10073         * class.h, class.c: more accessors.
10074         * metadata.h, metadata.c: prepare for hiding MonoType and
10075         MonoMethodSignature: people should use the accessors from now on
10076         outside of the tree.
10077
10078 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10079
10080         * *.c, *.h: more API cleanups.
10081
10082 2004-06-18  Jackson Harper  <jackson@ximian.com>
10083
10084         * assembly.c: Trace loading assemblies.
10085         * loader.c: Trace loading native libraries.
10086         * mono-config.c: Trace loading config files.
10087         
10088 2004-06-18  Dick Porter  <dick@ximian.com>
10089
10090         * locales.c: Tell ICU the lengths of strings, it can cope with
10091         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10092
10093 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10094
10095         * image.c: swapped name/filename;
10096
10097 2004-06-18  Martin Baulig  <martin@ximian.com>
10098
10099         * mono-debug-debugger.c (write_class): Write the parent class at
10100         the end of the header.
10101
10102 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10103
10104         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10105
10106 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10107
10108         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10109         (bundle_obj): New conditional define.
10110         (BUILT_SOURCES): Remove.
10111         ($(bundle_srcs)): Make parallel-make safe.
10112         (libmonoruntime_la_LIBADD): Make unconditional.
10113         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10114         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10115
10116 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10117
10118         * culture-info-tables.h: It was inconsistent with the latest
10119           supp info files.
10120
10121 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10122
10123         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10124         be loaded.
10125
10126         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10127         with gcc 2.95.
10128
10129 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10130
10131         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10132         cleaned up public header threads.h.
10133
10134 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10135
10136         * Makefile.am, *.c, *.h: more API cleanups.
10137
10138 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10139
10140         * Makefile.am: removed monosn from compilation.
10141         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10142         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10143         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10144         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10145         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10146         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10147
10148 2004-06-15  Jackson Harper  <jackson@ximian.com>
10149
10150         * assembly.c: Make locales lower case when searching the GAC for
10151         assemblies. gacutil will always make locales lowercase when
10152         installing so this effectively makes them case insensitive.
10153         
10154 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10155
10156         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10157         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10158           parameter which allows to choose whether the wait can be interrupted or 
10159           not. Also added the method mono_monitor_enter(), which locks the monitor
10160           using an infinite wait and without allowing interruption.
10161           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10162           interrupted.
10163         * object.h: Added new fields in MonoThread. suspend_event holds the event
10164           used to susped/resume the thread. synch_lock is the lock object to use for
10165           modifying the thread state.
10166         * threads.c: Use the new synch_lock object for locking, instead of "this",
10167           which can generate deadlocks.
10168           Moved thread state change in Thread.Sleep and Thread.Join from managed
10169           to unmanaged code. This avoids a deadlock when the thread was suspended
10170           just after acquiring the thread lock.
10171           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10172           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10173           which is not fully implemented in the io-layer.
10174         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10175
10176 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10177
10178         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10179         threads-types.h: more API cleanups.
10180
10181 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10182
10183         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10184         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10185         threadpool.c, threads.c: first pass at the exported API cleanup.
10186
10187 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10188
10189         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10190
10191 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10192
10193         * icall.c: added internalGetHome.
10194
10195 2004-06-14  Dick Porter  <dick@ximian.com>
10196
10197         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10198         possible to return successfully when '.' or '..' were the only
10199         entries in a directory, but were skipped.  The MonoIOStat was not
10200         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10201         Fixes bug 59574.
10202
10203 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10204
10205         * reflection.c: make binaries run on .Net 1.1 by default.
10206
10207 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10208
10209         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10210
10211 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10212
10213         * marshal.c: keep track of struct size with explicit layout
10214         (bug #59979).
10215
10216 2004-06-12  Martin Baulig  <martin@ximian.com>
10217
10218         * mono-debug-debugger.c: Comment out a debugging g_message().
10219
10220 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10221
10222         * reflection.c, reflection.h: do not free custom attrs that are cached.
10223         * icall.c: use braces to make code clearer.
10224
10225 2004-06-11  Martin Baulig  <martin@ximian.com>
10226
10227         * class.h (MonoInflatedField): New type.
10228         (MonoClassField): Replaced `MonoType *generic_type' with
10229         `MonoInflatedField *generic_info'.
10230
10231         * icall.c
10232         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10233
10234 2004-06-11  Martin Baulig  <martin@ximian.com>
10235
10236         * reflection.c (mono_image_create_method_token): Correctly encode
10237         varargs methods.
10238
10239 2004-06-11  Martin Baulig  <martin@ximian.com>
10240
10241         * metadata.c (mono_metadata_parse_method_signature): When parsing
10242         a MethodDef which has VarArgs, also set sentinelpos if we don't
10243         have any parameters.
10244
10245 2004-06-11  Martin Baulig  <martin@ximian.com>
10246
10247         * verify.c (mono_method_verify): In CEE_CALL, use
10248         mono_method_get_signature() to get the method's signature, unless
10249         we're a PInvoke method.
10250
10251 2004-06-10  Jackson Harper  <jackson@ximian.com>
10252
10253         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10254         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10255         logical name as the supplied path is just a prefix to the gac not
10256         the direct path to it.
10257         
10258 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10259
10260         * reflection.c: make the token for a created method match
10261         the token of the MethodBuilder it was created from
10262         (IKVM requires this behaviour now).
10263
10264 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10265
10266         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10267         reflection.c, socket-io.c: leak fixes.
10268
10269 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10270
10271         * icall.c: handle sentinel pos in vararg methods in position different
10272         from 0.
10273
10274 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10275
10276         * culture-info-tables.h: freshly generated.
10277
10278 2004-06-09  Martin Baulig  <martin@ximian.com>
10279
10280         * loader.c (mono_get_method_constrained): Call `mono_class_init
10281         (constrained_class)'.   
10282
10283 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10284
10285         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10286         any methods. Fixes #59629.
10287
10288 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10289
10290         * culture-info-tables.h: reflecting locale-builder updates.
10291
10292 2004-06-08  Dick Porter  <dick@ximian.com>
10293
10294         * object.h:
10295         * locales.c: Fixed compile warnings, including a real bug in
10296         CompareInfo_internal_compare.
10297         
10298 2004-06-08  Dick Porter  <dick@ximian.com>
10299
10300         * locales.c
10301         (ves_icall_System_Globalization_CompareInfo_internal_index):
10302         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10303         Double-check the resuls of usearches, because ICU currently
10304         ignores most of the collator settings here.  Fixes bug 59720.
10305         
10306 2004-06-08  Dick Porter  <dick@ximian.com>
10307
10308         * locales.c
10309         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10310         Fix memory leak and segfault-causing typo.  No idea how this one
10311         lasted so long without being noticed.
10312
10313 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10314
10315         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10316         any methods. Fixes #59629.
10317
10318 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10319
10320         * assembly.c:
10321         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10322         own the critical section before). Removed dead code (that's done
10323         in the preload hook).
10324
10325         (mono_assembly_load_with_partial_name): call the preload hook.
10326
10327 2004-06-08  Martin Baulig  <martin@ximian.com>
10328
10329         * metadata.c (mono_metadata_signature_alloc): Default
10330         `sentinelpos' to -1.
10331
10332         * reflection.c (mono_image_get_array_token): Likewise.
10333
10334 2004-06-08  Martin Baulig  <martin@ximian.com>
10335
10336         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10337
10338         * metadata.c (mono_metadata_parse_method_signature): When parsing
10339         a MethodDef which has VarArgs, set sentinelpos.
10340
10341         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10342         `gint16' since we're using -1 for non-varargs methods.
10343
10344         * reflection.c
10345         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10346         (method_encode_signature): Added varargs support.
10347         (method_builder_encode_signature): Likewise.
10348         (mono_image_get_varargs_method_token): New static method.
10349         (mono_image_create_method_token): New public method; this is
10350         called via an icall instead of mono_image_create_token() when
10351         calling a varargs method.       
10352
10353 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10354
10355         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10356
10357 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10358
10359         * culture-info-tables.h : Reflecting the latest locale-builder that
10360           fixed empty array representation ({} to {0}).
10361
10362 2004-06-07  Jackson Harper  <jackson@ximian.com>
10363
10364         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10365         looking up extra gac paths. This allows MONO_GAC_PATH to act
10366         exactly like a prefix.
10367         
10368 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10369
10370         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10371         type name before modifying it. Fixes #59405.
10372
10373 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10374
10375         * culture-info.h: added fields for "all datetime patterns".
10376         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10377           _construct_datetime_format ()): fill xxx_patterns fields.
10378         * object.h: added fields for "all datetime patterns" to
10379           MonoDateTimeFormatInfo.
10380         * culture-info-tables.h: reflecting locale-builder updates.
10381
10382 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10383
10384         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10385         the event has no add and remove methods. Fixes #59629.
10386
10387 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10388
10389         * object.c: Fixed possible integer overflow when allocating large
10390         strings.
10391
10392 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10393
10394         * culture-info-tables.h: reflecting locale-builder updates.
10395
10396 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10397
10398         * culture-info-tables.h: reflecting locale-builder updates.
10399
10400 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10401
10402         * culture-info-tables.h: reflecting locale-builder updates.
10403
10404 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10405
10406         * threads.c: Made Thread.Sleep abortable.
10407
10408 2004-06-02  Martin Baulig  <martin@ximian.com>
10409
10410         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10411
10412         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10413
10414 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10415
10416         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10417
10418 2004-05-30  Jackson Harper  <jackson@ximian.com>
10419
10420         * reflection.c: Do not hardcode assembly versions or public key
10421         tokens anymore. All of this except the corlib section was dead
10422         code anyways.
10423         
10424 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10425
10426         * object.c (mono_runtime_invoke_array): Automatically create boxed
10427         objects for byref valuetypes if needed. Fixes #59300.
10428         
10429         * object.c (mono_method_return_message_restore): Handle 
10430         MONO_TYPE_OBJECT as well.
10431
10432 2004-05-28  Jackson Harper  <jackson@ximian.com>
10433
10434         * reflection.c: The modified type encoding was causing build
10435         problems. Reverted for now.
10436         
10437 2004-05-28  Jackson Harper  <jackson@ximian.com>
10438
10439         * reflection.c/h: Take an assembly ref so that we dont create
10440         fully qualified names when encoding types in the same assembly as
10441         the custom attribute being emitted.
10442         * appdomain.c: Increment version number.
10443         
10444 2004-05-26  Duncan Mak  <duncan@ximian.com>
10445
10446         * icall.c
10447         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10448         Set the full version number (major, minor, build, revision).
10449
10450 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10451
10452         * marshal.c (emit_struct_conv): increment src/dst after blit
10453         (mono_marshal_get_managed_wrapper,
10454         mono_marshal_get_native_wrapper): make sure we have marshalling
10455         info before marshalling params (info computation affects
10456         blittable)
10457
10458         * class.c (class_compute_field_layout): correctly deal with
10459         blittable
10460         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10461         value types (as per what windows dows by default)
10462         (mono_class_setup_mono_type): System.ValueType is blittable
10463         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10464         blittable
10465
10466         * marshal.c (mono_marshal_load_type_info): flag types  as
10467         non-blittable if the native layout doesn't match the managed
10468         layout
10469
10470 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10471
10472         * appdomain.c: don't add stuff in the private search path that is
10473         above the application base. If application base is not set, there's
10474         no private search path.
10475
10476 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10477
10478         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10479         byref struct arguments in native->managed marshalling.
10480
10481 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10482
10483         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10484         cache methods using signature (special case for methods
10485         that are value type or string class)
10486         
10487         * image.c (mono_image_close): clean up allocated GSList's
10488         in runtime_invoke_cache.
10489
10490 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10491
10492         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10493         there's no MONO_CFG_DIR environment variable defined.
10494
10495 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10496
10497         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10498
10499 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10500
10501         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10502           is interrumped.
10503         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10504           before waiting for it, and call CloseHandle after the wait to unref it.
10505           This will make sure that handles are not disposed too early.
10506
10507 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10508
10509         * appdomain.c:
10510         * appdomain.h:
10511         * icall.c: removed
10512         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10513         needed now.
10514
10515         * object.c: se the application_base only for the domain that runs
10516         Main. Fixes bug #59216,
10517
10518 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10519
10520         * appdomain.c:
10521         * object.c: only the domain in which Main is run have
10522         SetupInformation.ConfigurationFile set, so moved a few lines from
10523         appdomain.c to object.c.
10524
10525 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10526
10527         * appdomain.c: we tried to load [name].(dll|exe), but according
10528         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10529         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10530         There's a test case attached to bug #58922.
10531
10532 2004-05-27  Dick Porter  <dick@ximian.com>
10533
10534         * icall.c:
10535         * file-io.c: Implemented icalls for locking and unlocking regions
10536         in a file.
10537         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10538         FALSE on error (fixes both compiler warning and real bug.)
10539
10540 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10541
10542         * culture-info-tables.h: reflecting locale-builder updates.
10543
10544           (Added missing ChangeLog entry for 05/26)
10545
10546 2004-05-27  Jackson Harper  <jackson@ximian.com>
10547
10548         * locales.c: Fix some cut and paste errors.
10549         
10550 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10551
10552         * mono-config.c: set the correct path for config. directory on windows.
10553
10554 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10555
10556         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10557           on win32.
10558
10559 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10560
10561         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10562         from pinvoke functions.
10563         
10564         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10565
10566 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10567
10568         * culture-info-tables.h: reflecting locale-builder updates.
10569
10570 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10571
10572         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10573         #59086.
10574
10575 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10576
10577         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10578         * icall.c: Modified icalls for RNG.
10579         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10580         Windows (CryptoAPI).
10581
10582 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10583
10584         * locales.c: Fix build.
10585
10586 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10587
10588         * culture-info-tables.h: reflecting locale-builder updates.
10589
10590 2004-05-25  Jackson Harper  <jackson@ximian.com>
10591
10592         * locales.c: When creating the current culture use the $LANGs
10593         specific culture. So DateTimeFormat and NumberFormat entries are created.
10594         
10595 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10596
10597         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10598         a char array as parameter.
10599
10600 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10601
10602         * image.c: In mono_image_open(), always use an absolute path name to
10603           look for already loaded images.
10604
10605 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10606
10607         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10608         missing in the windows build (like older cygwin include files).
10609
10610 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10611
10612         * icall.c: Fixed check for possible integer overflow in Buffer_
10613         BlockCopy icall. Replaced comments style // by /* */.
10614
10615 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10616
10617         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10618         
10619         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10620         check after MONO_VTADDR. Fixes pinvoke2.exe.
10621
10622         * marshal.h marshal.c metadata.h: Add beginnings of support for
10623         ftnptr -> delegate marshalling.
10624
10625 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10626
10627         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10628         * threads.c: Fix warnings.
10629
10630 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10631
10632         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10633         * icall.c: Registered icalls for Suspend and Resume.
10634         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10635           Thread.Abort.
10636         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10637         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10638         * process.c: Use WaitForSingleObjectEx.
10639         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10640           checkpoints.
10641         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10642           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10643           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10644           background threads. Added basic support for Abort in Windows.
10645           Start new threads using a managed delegate invoke wrapper. This wrapper
10646           has an interruption checkpoint that is needed since an interruption
10647           can be requested before the thread leaves the unmanaged code that starts 
10648           the thread.
10649         * marshal.c: Added interruption checkpoint after every native call, and
10650           also before managed calls for wrappers called from unmanaged code to
10651           go into managed code.
10652         * object.h: Added new field in MonoThread to keep track of interruption
10653           requests.
10654
10655 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10656
10657         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10658         calls.
10659
10660 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10661
10662         * appdomain.c:
10663         * assembly.c:
10664         * gc.c:
10665         * locales.c:
10666         * mono-config.c:
10667         * rand.c: getenv -> g_getenv (windows!)
10668
10669         * process.c: complete_path is also used on non-windows platforms.
10670
10671 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10672
10673         * icall.c: new signature for Process_Start.
10674
10675         * process.[ch]: new signature for Process_Start. If we're on windows
10676         and UseShellExecute is false, we have to search for the program by
10677         ourselves if we don't get a full path.
10678
10679 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10680
10681         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10682         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10683
10684 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10685
10686         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10687         Fixes bug #58373.
10688
10689 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10690
10691         * process.c: use double quotes to quote program name and arguments on
10692         windows. Fixes bug #58575.
10693
10694 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10695
10696         * file-io.c: don't return "." and ".." when using windows Find*File.
10697
10698 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10699
10700         * marshal.c: Don't pass wrappers to message init because method 
10701         addressed used to lookup metadata. part of remoting[2|3] fix.
10702
10703 2004-05-15  Jackson Harper  <jackson@ximian.com>
10704
10705         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10706         path is essentially the same as MONO_PATH except that it points to
10707         GACs instead of lib directories.
10708         * loader.h: The user gac is gone so we dont need function to
10709         enable/disable it.
10710         * mono-config.c: user gac option is now gone.
10711         
10712 2004-05-15  Jackson Harper  <jackson@ximian.com>
10713
10714         * culture-info.h: Make defines more consistent, add calendar data
10715         to the culture info table.
10716         * culture-info-tables.h: Add basic calendar data. Basically
10717         everyone gets default gregorian until all the data is
10718         updated.
10719         * locales.c: Use the new consistent defines. Set calendar data for
10720         culture info objects.
10721         * object.h: add a field for calendar data to CultureInfo
10722         
10723 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10724
10725         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10726         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10727         a signature.
10728         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10729         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10730         an extra param that is the pointer of the method to invoke. The IL for
10731         the invoke method is no longer specific to the method, but to the
10732         signature of the method. Thus, we can share the same code for multiple
10733         methods. This reduces the number of methods that have to be compiled.
10734
10735 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10736
10737         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10738
10739         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10740
10741         * icall.c: Optimize Buffer.BlockCopy.
10742
10743 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10744
10745         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10746         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10747         quote). Changed them to "MMMM yyyy".
10748
10749 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10750
10751         * rand.c
10752         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10753
10754 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10755
10756         * reflection.h: Updated after changes to managed structures.
10757
10758         * appdomain.c: Bump corlib version.
10759
10760 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10761
10762         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10763         windows.
10764
10765 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10766
10767         * Makefile.am: link to ../os/libmonoos.la on windows.
10768
10769         * assembly.c:
10770                 -If MONO_DEBUG, warn about non-existing directories in
10771                 MONO_PATH.
10772                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10773                 compile time variable.
10774                 -Removed init_default_path and call mono_set_rootdir from
10775                 libmonoos.a instead (windows only).
10776
10777         * assembly.h: declare mono_assembly_getrootdir().
10778
10779         * domain.c:
10780         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10781
10782         * loader.c: s/getenv/g_getenv/
10783
10784 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10785
10786         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10787
10788         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10789
10790         * metadata.h: Add new marshalling conversions.
10791
10792         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10793         function.
10794
10795         * reflection.c (mono_reflection_get_type): Lookup the type in all
10796         modules of a multi-module assembly. Fixes #58291.
10797
10798 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10799
10800         * threads.c: Before aborting a background, set the StopRequested
10801         state.  This avoids throwing the Abort exception.
10802         In mono_thread_manage, don't continue with the shutdown until all
10803         aborted threads have actually stopped.
10804
10805 2004-05-10  Jackson Harper  <jackson@ximian.com>
10806
10807         * locales.c: Remove the modifier from culture names.
10808         
10809 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10810
10811         * Makefile.am: monosn is not installed any more. It has been deprecated
10812         in favor of sn.
10813
10814 2004-05-07  Jackson Harper  <jackson@ximian.com>
10815
10816         * locales.c
10817         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10818         Fix array construction, add bailout if the length is 0.
10819
10820 2004-05-07  Dick Porter  <dick@ximian.com>
10821
10822         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10823         machine doesn't have a DNS entry.  Patch by Urs Muff
10824         (umuff@quark.com), fixes bug 57928.
10825
10826 2004-05-06  Jackson Harper  <jackson@ximian.com>
10827
10828         * reflection.c: Handle null PublicTokens properly. alloc mem for
10829         assembly names culture so we dont crash when freeing it.
10830         
10831 2004-05-06  Jackson Harper  <jackson@ximian.com>
10832
10833         * assembly.c: Check the usergac when loading with partial names.
10834         
10835 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10836
10837         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10838         does nothing for now (not required for Linux/Windows) but the class
10839         library can call it (and a newer or modified runtime could need it).
10840         * icall.c: Registred icall.
10841
10842 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10843
10844         * loader.c: prints a message on module loading error we set MONO_DEBUG
10845         environment variable.
10846
10847 2004-05-05  Jackson Harper  <jackson@ximian.com>
10848
10849         * appdomain.c: Handle PublicKeyToken=null properly.
10850         
10851 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10852
10853         * environment.c|h: Added icall ves_icall_System_Environment_
10854         GetOSVersionString to get the current OS version as a string.
10855         * icall.c: Registred icall.
10856
10857 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10858
10859         * object.c: in mono_object_get_virtual_method(), take into account that
10860         non-virtual methods don't have a slot in the vtable. Check needed when
10861         the object is a proxy.
10862
10863 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10864
10865         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10866         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10867
10868         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10869
10870         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10871         passed when a valuetype is expected.
10872
10873         * object.c (mono_unhandled_exception): Only set the exit code if the
10874         exception happens in the main thread. Fixes thread5.exe.
10875
10876         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10877         invalid names. Fixes #58047.
10878
10879 2004-05-03  Jackson Harper  <jackson@ximian.com>
10880
10881         * assembly.c: This line was committed accidently and is unneeded.
10882         
10883 2004-05-03  Jackson Harper  <jackson@ximian.com>
10884
10885         * icall.c: Add new icall for Assembly::LoadWithPartialName
10886         * assembly.c/.h: new function that probes the GAC to load partial
10887         assembly names by Paolo Molaro.
10888         
10889 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10890
10891         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10892         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10893         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10894         full type name.
10895
10896 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10897
10898         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10899         * reflection.c: fix bug when parsing a full type name and Version is not
10900         the last thing in the string.
10901
10902 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10903
10904         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10905         crashes when it is freed.
10906
10907 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10908
10909         * assembly.c: print the compat warning to stderr.
10910
10911 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10912
10913         * assembly.c (mono_assembly_load_references): Add a compatibility
10914         hack to run old applications that might be still referencing the
10915         3300-based assemblies, only do this for System.xxx.
10916
10917 2004-05-01  Jackson Harper  <jackson@ximian.com>
10918
10919         * appdomain.c: If the culture is neutral we set it to "".
10920         
10921 2004-04-29  Jackson Harper  <jackson@ximian.com>
10922
10923         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10924
10925 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10926  
10927         * string-icalls.c: added low overhead function for copying chars
10928         * icall.c: added needed icall for the above function
10929  
10930 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10931
10932         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10933         Environment.GetLogicalDrives.
10934
10935 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10936
10937         * rand.c: try and talk to egd or prngd
10938         for random bytes if opening devices fail.
10939
10940 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10941
10942         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10943         alignment for the type using the native alignment of its members 
10944         instead of using klass->min_align.
10945
10946         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10947
10948 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10949
10950         * file-io.c:
10951         * socket-io.c: added check for sys/aio.h.
10952
10953 2004-04-28  Dick Porter  <dick@ximian.com>
10954
10955         * threads.c: Don't abort a thread thats already aborting, when
10956         terminating everything.
10957
10958 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10959
10960         * icall.c: added 2 new async calls for Socket.
10961
10962         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10963         IO on *nix systems.
10964
10965         * threadpool.c: removed unused variable.
10966
10967 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10968
10969         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10970
10971 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10972
10973         * locales.c: put back string_invariant_tolower () and
10974         string_invariant_toupper ().
10975
10976 2004-04-26 David Waite <mass@akuma.org>
10977
10978         * file-io.h:
10979         * socket-io.h:
10980         * threads.h:
10981         * unicode.h: remove comma from end of enumeration declarations
10982
10983 2004-04-26 David Waite <mass@akuma.org>
10984
10985         * debug-mono-symfile.h:
10986         * decimal.c:
10987         * mono_debug.h:
10988         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10989
10990
10991 2004-04-26  Jackson Harper  <jackson@ximian.com>
10992
10993         * appdomain.c: Increment version number.
10994         
10995 2004-04-26  Jackson Harper  <jackson@ximian.com>
10996
10997         * appdomain.c: Set assembly references public token value when
10998         PublicKeyToken is specified, not the hash_value. Free public token
10999         values when free assembly name data. Previously the public key
11000         token was hex decoded, however we are using hex encoded public key
11001         tokens, so this is not neccasary.
11002         * assembly.c: Lookup assemblies in the gac if their public token
11003         value is set. Add function to allow enabling user gac
11004         lookups. Specify whether or not the assembly was loaded from the
11005         GAC. Compare full assembly names when checking the cache for
11006         assemblies (Temporarily disabled see comment in code). Remove
11007         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11008         specifies trace-loader they get extra info to stdout on the
11009         loading of assemblies.
11010         * image.h: Add a field for an assembly references public token
11011         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11012         whether an assembly has been loaded from the GAC.
11013         * image.c: Remove a corlib -> mscorlib name mapping.
11014         * loader.h: Add function to enable/disable the user gac.
11015         * mono-config.c: Check if the usergac is enabled in the config
11016         file.
11017         * icall.c: New icall to determine whether or not an assembly has
11018         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11019         * tabldefs.h: Add constant for assemblyref flag that specifies a
11020         full public key is used instead of a public token.
11021         * reflection.c: Remove mscorlib -> corlib mappings. Set
11022         PublicTokenValue instead of hash value. This value is a hex
11023         string so it does not need to be expanded.
11024
11025 2004-04-26  Martin Baulig  <martin@ximian.com>
11026
11027         * mono-debug-debugger.c (mono_debugger_initialize): Set
11028         `mono_debugger_initialized' before calling mono_debug_lock().
11029
11030 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11031
11032         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11033           InternalToUpper/InternalToLower.
11034         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11035           removed invariant culture shortcut.  This is now done in managed code.
11036         * locales.c: (string_invariant_toupper/tolower) removed.
11037
11038 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11039
11040         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11041         Added Poll internal call.
11042
11043         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11044         call for Poll. Select was too heavy for polling a single socket.
11045
11046         * threadpool.[ch]: added mono_threadpool_cleanup.
11047         * threads.c: use it. Don't use Thread_Abort on windows.
11048
11049 2004-04-23  Martin Baulig  <martin@ximian.com>
11050
11051         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11052
11053 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11054
11055         * icall.c: Registred new icalls for key pair protection and added an
11056         icall for Environment.GetFolderPath on Windows.
11057         * security.c|h: Added new icalls for key pair protection.
11058
11059 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11060
11061         * socket-io.c: don't display the non-supported family warning for known
11062         families. Now this is not displayed on windows when checking support
11063         for IPv4/IPv6.
11064
11065 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11066
11067         * class.c: don't display the layout warning for static fields.
11068
11069 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11070
11071         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11072         * locales.c, locales.h: Added new icalls for culture-specific
11073         Char.ToLower and Char.ToUpper.
11074
11075 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11076
11077         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11078         by David Waite.
11079
11080 2004-04-20  Martin Baulig  <martin@ximian.com>
11081
11082         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11083         of the type name before passing it to mono_reflection_type_from_name().
11084
11085 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11086
11087         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11088         encodings here. Fixes #56965.
11089
11090 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11091
11092         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11093         fix test on strstr result not that I can see anything that
11094         relies on the result.
11095
11096 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11097
11098         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11099         Fixes #57081.
11100
11101         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11102
11103         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11104         function to determine which marshalling to use for strings. Fixes
11105         #56965.
11106
11107         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11108
11109         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11110
11111 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11112
11113         * icall.c: #include mono-config.h
11114
11115 2004-04-15  Jackson Harper  <jackson@ximian.com>
11116
11117         * culture-info-tables.h: Fix date formats for en-US culture.
11118         
11119 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11120
11121         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11122         ThreadPool.SetMinThreads.
11123         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11124         ThreadPool.SetMinThreads.
11125
11126 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11127
11128         * mono-config.c: also load the .config file in the directory
11129         where the assembly was found.
11130
11131 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11132
11133         * assembly.c: load per-assembly config files.
11134         * icall.c: decrapified code to get the config dir and moved to
11135         mono-config.c.
11136         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11137         per-assembly config files. When doing a dll map lookup give precedence
11138         to the per-assembly data.
11139
11140 2004-04-14  Martin Baulig  <martin@ximian.com>
11141
11142         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11143         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11144         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11145
11146         * mono-debugger-debugger.c: While the debugger is locked, remember
11147         whether the symbol tables have changes and send one single
11148         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11149
11150 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11151
11152         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11153
11154         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11155         function.
11156
11157         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11158         account when marshalling string arrays. Fixes #56965.
11159
11160 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11161
11162         * icall.c: Add new icalls mapping for security.
11163         * security.c|h: Add internal calls for WindowsIdentity,
11164         WindowsImpersonationContext and WindowsPrincipal.
11165
11166 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11167
11168         * class.c: Added comment to ensure the System.MonoDummy class
11169         is removed when no longer necessary
11170
11171 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11172
11173         * appdomain.c: Pass arguments to the bootstraping exceptions to
11174         minimize JITed methods at boot
11175
11176         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11177         second string to be null.
11178
11179         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11180         Change the protocol to minimize the JIT methods at startup.  Now
11181         it Returns the internal codepage, if the value of "int_code_page"
11182         is 1 at entry, and we can not compute a suitable code page
11183         number, returns the code page as a string.
11184
11185 2004-04-13  Jackson Harper  <jackson@ximian.com>
11186
11187         * culture-info-tables.h: Fix number of decimal digits for all
11188         english locales.
11189
11190 2004-04-13  Jackson Harper  <jackson@ximian.com>
11191
11192         * icall.c: Clairfy out of sync error message. It is not always
11193         your corlib that is out of sync.
11194
11195 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11196
11197         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11198         properties when only the set accessor is overriden. Fixes #55874.
11199
11200 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11201
11202         * assembly.c (mono_assembly_load_references): Make this thread safe.
11203         Fixes #56327.
11204
11205 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11206
11207         * monosn.c: Add missing initialization calls.
11208
11209 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11210
11211         * locales.c:
11212         ves_icall_System_Globalization_CultureInfo_construct_number_format
11213         Fix g_assert so it compiles on fussier compilers re int/ptr
11214         mismatch
11215
11216 2004-04-08  Dick Porter  <dick@ximian.com>
11217
11218         * socket-io.h:
11219         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11220         53992.  Also rearrange the code so that the internal calls return
11221         an error value and exceptions are thrown from managed code.
11222
11223         * icall.c: Add type info to the socket icalls.
11224
11225 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11226
11227         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11228         owes me a beer.
11229
11230 2004-04-07  Martin Baulig  <martin@ximian.com>
11231
11232         * class.c (mono_class_from_generic_parameter): Don't default
11233         `klass->parent' to `mono_defaults.object_type'.
11234
11235 2004-04-07  Martin Baulig  <martin@ximian.com>
11236
11237         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11238         `param->pklass->reflection_info'.       
11239
11240 2004-04-07  Jackson Harper  <jackson@ximian.com>
11241
11242         * culture-info-tables.h: Fix date separator symbol.
11243         
11244 2004-04-07  Martin Baulig  <martin@ximian.com>
11245
11246         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11247         from System.Type to System.MonoType.
11248
11249 2004-04-07  Martin Baulig  <martin@ximian.com>
11250
11251         * reflection.h
11252         (MonoReflectionGenericParam): Added `has_reference_type' and
11253         `has_value_type' fields.
11254
11255         * reflection.c (mono_image_get_generic_param_info): Encode the
11256         correct flags if we have the `class' or `struct' constraint.
11257
11258 2004-04-07  Martin Baulig  <martin@ximian.com>
11259
11260         * reflection.h
11261         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11262
11263 2004-04-07  Jackson Harper  <jackson@ximian.com>
11264
11265         * appdomain.c: Revert extra patches, just wanted to bump the
11266         version number.
11267         
11268 2004-04-07  Jackson Harper  <jackson@ximian.com>
11269
11270         * Makefile.am: Add culture-info private headers.
11271         * icall.c: Add new icalls for contructing locales.
11272         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11273         * locales.h: Declare new culture info construction methods.
11274         * object.h: Add new fields used to avoid the CultureMap to
11275         MonoCultureInfo.
11276         * culture-info.h: Definition of structs used in the culture info
11277         tables.
11278         * culture-info-tables.h: Autogenerated tables that contain culture
11279         info data. This file was generated with the locale-builder tool.
11280         * appdomain.c: Incement corlib version number.
11281         
11282 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11283
11284         * appdomain.c: (mono_runtime_init) move mono_thread_init
11285         to before mono_object_new calls so critical sections
11286         are initialized before use.
11287
11288 2004-04-07  Martin Baulig  <martin@ximian.com>
11289
11290         * icall.c
11291         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11292         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11293         (ves_icall_MonoGenericParam_initialize): Removed.
11294         (monogenericparam_icalls): Removed.
11295         (generictypeparambuilder_icalls): Added new table for
11296         System.Reflection.Emit.GenericTypeParameterBuilder.
11297
11298         * reflection.c
11299         (mono_reflection_define_generic_parameter): Removed.
11300         (mono_reflection_initialize_generic_parameter): This is now called
11301         from GenericTypeParameterBuilder's .ctor.
11302
11303 2004-04-06  Martin Baulig  <martin@ximian.com>
11304
11305         * class.c (mono_class_init): Don't inflate nested classes in a
11306         generic instance.
11307         (mono_type_get_name_recurse): Include the generic arguments for
11308         generic instances and generic type declarations.
11309         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11310         (_mono_class_get_instantiation_name): Removed.
11311         (mono_class_create_generic): Always use `gklass->name' as our name.
11312
11313         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11314
11315         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11316         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11317         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11318         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11319         closed generic methods here.
11320
11321         * reflection.c
11322         (mono_reflection_generic_inst_get_nested_types): Removed.
11323         (inflate_mono_method): Copy the generic parameters from the
11324         MonoMethodHeader into out MonoGenericMethod.
11325
11326 2004-04-06  Martin Baulig  <martin@ximian.com>
11327
11328         * row-indexes.h
11329         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11330
11331         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11332
11333         * reflection.c (build_compressed_metadata): If we have any entries
11334         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11335         set the header version to 1.1.
11336
11337 2004-04-06  Martin Baulig  <martin@ximian.com>
11338
11339         * class.c (mono_class_init): If we're a generic instance,
11340         initialize our nested classes, too.
11341         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11342         suffix. 
11343
11344 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11345
11346         * process.c: quote the argument passed to the shell on windows.
11347
11348 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11349
11350         * threads.c (mono_alloc_special_static_data): Allow this to be
11351         called during startup.
11352
11353 2004-04-02  Martin Baulig  <martin@ximian.com>
11354
11355         * icall.c
11356         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11357
11358 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11359
11360         * icall.c: Fix build.
11361
11362 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11363
11364         * Makefile.am: Added security.c|h.
11365         * icall.c: Added icall for get_UserName;
11366         * security.c: New file for security related icalls. Added function
11367         get_UserName for System.Environment (fix #56144).
11368         * security.h: New. Header file for security.c
11369
11370 2004-04-02  Dick Porter  <dick@ximian.com>
11371
11372         * icall.c: Deleted the icalls that were obsoleted some time ago
11373         by the ICU string code, and which were mixed into the icall
11374         rearranging.  Fixes bug 55969.
11375
11376         * string-icalls.h: 
11377         * string-icalls.c: Deleted the code that those icalls reference.
11378
11379 2004-04-01  Martin Baulig  <martin@ximian.com>
11380
11381         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11382
11383         * class.c (mono_class_from_generic_parameter): Don't set 
11384         TYPE_ATTRIBUTE_INTERFACE.
11385         (my_mono_class_from_generic_parameter): Likewise.
11386
11387 2004-04-01  Martin Baulig  <martin@ximian.com>
11388
11389         * loader.c (find_method): Added an optional `MonoClass *ic'
11390         argument to search in a specific interface.
11391         (mono_get_method_constrained): New public function.
11392
11393 2004-04-01  Martin Baulig  <martin@ximian.com>
11394
11395         * reflection.c (mono_image_get_generic_field_token): Use the
11396         `handleref' cache here.
11397
11398 2004-04-01  Martin Baulig  <martin@ximian.com>
11399
11400         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11401
11402         * reflection.c (create_generic_typespec): Use the `typespec' hash
11403         here, not the `typeref' one.    
11404
11405 2004-04-01  Martin Baulig  <martin@ximian.com>
11406
11407         * class.c (mono_class_inflate_generic_type): Moved the
11408         functionality into a new static inflate_generic_type() which
11409         returns NULL if it didn't do anything.  Only increment the
11410         `mono_stats.inflated_type_count' if we actually inflated
11411         something.
11412         (mono_class_get_full): Check the classes type to see whether we
11413         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11414
11415 2004-04-01  Jackson Harper  <jackson@ximian.com>
11416
11417         * reflection.c: Set culture for assembly references.
11418         
11419 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11420
11421         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11422
11423 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11424
11425         * assembly.c:
11426         (do_mono_assembly_open): the critical section also covers
11427         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11428
11429 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11430
11431         * threads.c:
11432         (mono_manage_threads): abort the background threads when finishing.
11433         Fixes bug #47232.
11434
11435 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11436
11437         * gc.c: only close the done_event handle if there was no timeout.
11438         C-ified comments.
11439
11440 2004-03-30  Martin Baulig  <martin@ximian.com>
11441
11442         * icall.c (icall_entries): It's called "System.Activator", not
11443         "System.Activation".    
11444
11445 2004-03-30  Martin Baulig  <martin@ximian.com>
11446
11447         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11448         (mono_class_create_from_typespec): Likewise.
11449
11450 2004-03-30  Martin Baulig  <martin@ximian.com>
11451
11452         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11453         `has_ctor_constraint' and `initialized'.
11454
11455 2004-03-30  Martin Baulig  <martin@ximian.com>
11456
11457         * reflection.c (encode_new_constraint): New static function to add
11458         the constructor constraint attribute to a type parameter.
11459         (encode_constraints): Call encode_new_constraint() if necessary.
11460
11461         * reflection.h
11462         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11463
11464         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11465         
11466 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11467
11468         * reflection.c, icall.c: add support for pinning variables. 
11469
11470 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11471
11472         * marshal.c (mono_marshal_get_managed_wrapper):
11473         init bool local with zero rather than null.
11474
11475 2004-03-29  Martin Baulig  <martin@ximian.com>
11476
11477         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11478         the "official" behavior here.
11479         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11480
11481 2004-03-29  Martin Baulig  <martin@ximian.com>
11482
11483         * icall.c: Reflect latest API changes.
11484
11485 2004-03-29  Martin Baulig  <martin@ximian.com>
11486
11487         * loader.c (mono_get_method_from_token): Also call
11488         mono_metadata_load_generic_params () for abstract and interface
11489         methods; replace the type arguments in the method signature with
11490         the ones which are loaded from the metadata.
11491
11492 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11493
11494         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11495         of the lock is not the current thread. MS.NET don't do it, in spite of
11496         what the documentation says. See bug #56157.
11497
11498 2004-03-28  Martin Baulig  <martin@ximian.com>
11499
11500         * class.c (mono_class_init): Don't call init_properties() and
11501         init_events() for generic instances; set `prop->parent' when
11502         inflating properties.
11503
11504         * reflection.c (mono_generic_inst_get_object): Call
11505         `mono_class_init (ginst->klass)'.
11506         (mono_type_get_object): Only create a MonoGenericInst if your
11507         generic type is a TypeBuilder.
11508         (do_mono_reflection_bind_generic_parameters): Only set
11509         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11510
11511 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11512
11513         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11514         Fixes #56091.
11515
11516 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11517
11518         * icall.c: added Kill_internal icall.
11519         * process.[ch]: added Kill_internal icall.
11520
11521 2004-03-25  Martin Baulig  <martin@ximian.com>
11522
11523         * class.h (MonoStats): Added `generic_instance_count',
11524         `inflated_method_count', `inflated_type_count' and
11525         `generics_metadata_size'.       
11526
11527 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11528
11529         * reflection.c: no warnings now.
11530
11531 2004-03-25  Martin Baulig  <martin@ximian.com>
11532
11533         * class.c (mono_class_get_full): New public function; does a
11534         mono_class_get(), but also takes a `MonoGenericContext *'.
11535
11536         * loader.c (mono_field_from_memberref): Renamed to
11537         `field_from_memberref', made static and added `MonoGenericContext *'
11538         argument.
11539         (mono_field_from_token): Added `MonoGenericInst *' argument.
11540         (method_from_memberef): Likewise.
11541         (mono_get_method_from_token): Likewise.
11542         (mono_get_method_full): New public function; does a
11543         mono_get_method(), but also takes a `MonoGenericContext *'.
11544
11545         * verify.c (mono_method_verify): Get the method's generic context
11546         and pass it to mono_field_from_token(), mono_get_method_full() and
11547         mono_class_get_full().
11548
11549 2004-03-25  Martin Baulig  <martin@ximian.com>
11550
11551         * class.c (mono_class_inflate_generic_type): Take a
11552         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11553         `MonoGenericMethod *'.
11554
11555 2004-03-25  Martin Baulig  <martin@ximian.com>
11556
11557         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11558         instead of the MonoGenericMethod here.
11559
11560 2004-03-25  Martin Baulig  <martin@ximian.com>
11561
11562         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11563         each time we create a new MonoGenericInst, we also create a new
11564         context which points back to us.
11565
11566         * class.c (inflate_method): Use `ginst->context' instead of
11567         creating a new context.
11568
11569         * loader.c (method_from_memberref): Use
11570         `klass->generic_inst->context' instead of creating a new context.
11571
11572 2004-03-25  Martin Baulig  <martin@ximian.com>
11573
11574         * class.h (MonoGenericContext): New struct.
11575         (MonoGenericMethod): Removed `generic_inst'.
11576
11577         * class.c (mono_class_inflate_generic_method): Take a
11578         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11579
11580 2004-03-25  Martin Baulig  <martin@ximian.com>
11581
11582         * loader.h (MonoMethodInflated): New typedef.
11583
11584         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11585         `generic_param_count' consume just 30 bits, added `is_inflated'
11586         and `has_type_parameters' flags (one bit each).
11587
11588         * class.c (mono_class_inflate_generic_method): Create a
11589         MonoMethodInflated instead of a MonoMethodNormal and set
11590         `is_inflated' in the method signature.
11591
11592         * class.h (MonoGenericMethod): Removed `generic_method'.
11593
11594 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11595
11596         * image.c: Make sure the name of a MonoImage is always an absolute path.
11597           This fixes bug #54415.
11598
11599 2004-03-24  Martin Baulig  <martin@ximian.com>
11600
11601         * class.c (mono_class_setup_vtable): If we're a generic instance,
11602         use our generic type's vtable size.
11603
11604 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11605
11606         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11607         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11608         problems.
11609
11610 2004-03-23  Martin Baulig  <martin@ximian.com>
11611
11612         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11613         `MonoEvent *events'.
11614
11615         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11616         (typebuilder_icalls): Added "get_event_info"; calls
11617         mono_reflection_event_builder_get_event_info(). 
11618
11619         * reflection.c (mono_reflection_generic_inst_initialize): Added
11620         `MonoArray *events'.
11621         (mono_reflection_event_builder_get_event_info): New function.
11622
11623 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11624
11625         * object.h: add mono_type_initialization_init
11626
11627         * object.c (mono_runtime_class_init): 
11628         implement class constructor synchronization rules
11629         to cope with threading issues.  
11630         add mono_type_initialization_init
11631
11632         * appdomain.c (mono_runtime_init): call 
11633         mono_type_initialization_init
11634
11635         * class.h: removing initializing field from MonoVTable
11636
11637 2004-03-23  Martin Baulig  <martin@ximian.com>
11638
11639         * class.c (my_mono_class_from_generic_parameter): Use
11640         `param->name' if it's not NULL. 
11641
11642 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11643
11644         * class.c: do not insert non-virtual methods in the vtable.
11645         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11646         that means the method is non-virtual. This never would have
11647         happened before.
11648
11649 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11650
11651         * profiler.c: Added lock for accessing coverage_hash.
11652
11653 2004-03-22  Martin Baulig  <martin@ximian.com>
11654
11655         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11656         `method->method->signature->generic_param_count != 0' to make it
11657         work for interface methods.
11658
11659 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11660
11661         * process.c: quote the string passed to the shell using g_shell_quote.
11662
11663 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11664
11665         * threads.c:
11666         (mono_threads_manage): don't remove the finalizer thread and self
11667         from the threads hash table so that mono_thread_manage can be called
11668         more than once.
11669
11670 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11671
11672         * process.c: quote the arguments when UseShellExecute is true. Fixes
11673         bug #55790.
11674
11675 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11676
11677         * threads.c: set mono_thread_detach as a cleanup routine for every
11678         thread. This way it's always executed upon thread termination, either
11679         aborted or finished normally. No more xsp hangs!
11680
11681 2004-03-17  Martin Baulig  <martin@ximian.com>
11682
11683         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11684         `int count_nested' and a `MonoType **nested'.
11685
11686         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11687         most of the functionality into a new static
11688         do_mono_reflection_bind_generic_parameters() and don't take a
11689         `MonoType *nested_in' argument any more.  Don't compute nested
11690         types here.
11691         (mono_reflection_generic_inst_get_nested_types): New public method
11692         to get nested types.
11693
11694         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11695         we're a nested class.
11696
11697         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11698         mono_reflection_generic_inst_get_nested_types() to compute the
11699         nested types.
11700
11701 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11702
11703         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11704         descriptive error message under windows.
11705         
11706 2004-03-17  Martin Baulig  <martin@ximian.com>
11707
11708         * class.c (dup_type): Added `const MonoType *original' argument;
11709         copy the attrs from the original type.
11710
11711 2004-03-17  Martin Baulig  <martin@ximian.com>
11712
11713         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11714         `m->generic_inst_cache' here.
11715
11716 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11717
11718         * exception.h exception.c: Add stack_overflow_exception.
11719
11720 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11721
11722         * threadpool.c:
11723         (overlapped_callback): call SetEvent *after* invoking the callback.
11724         No need to call CloseHandle.
11725
11726 2004-03-16  Martin Baulig  <martin@ximian.com>
11727
11728         * reflection.c (mono_image_get_fieldref_token): Take a
11729         `MonoReflectionField *' instead of a `MonoClassField *' and a
11730         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11731
11732 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11733
11734         * appdomain.c: don't add the culture to the filename we're looking for
11735         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11736
11737 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11738
11739         * locales.c: don't ignore symbols when doing case insensitive compares.
11740         Thanks Dick! Fixes bug #54046.
11741
11742         * threads.c: surround 'threads' usage with enter/leave in
11743         mono_thread_manage.
11744
11745 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11746
11747         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11748         implicitly marshalled as [Out]. Fixes #55450.
11749
11750         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11751         an exception.
11752
11753 2004-03-16  Martin Baulig  <martin@ximian.com>
11754
11755         * class.c (mono_class_from_generic_parameter): Use the actual
11756         parameter name. 
11757
11758 2004-03-16  Martin Baulig  <martin@ximian.com>
11759
11760         * reflection.c (type_get_signature_size): New static function.
11761         Compues the size of the type in a method signature.
11762         (method_get_signature_size): New static function; calls
11763         type_get_signature_size() to compute the actual size of the
11764         method's signature.
11765         (method_encode_signature): Use method_get_signature_size() to get
11766         the signature's size rather than using `nparams * 10'.
11767
11768 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11769
11770         * file-io.h: define here WapiOverlapped on windows. I don't want the
11771         regular OVERLAPPED one.
11772
11773         * file-io.c:
11774         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11775         Disabling AIO on windows.
11776
11777 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11778
11779         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11780         bug #55385.
11781
11782 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11783
11784         * appdomain.c: upgraded corlib version.
11785
11786         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11787         and BeginWrite. Allow opening files for asynchrnous operations.
11788
11789         * file-io.h: new struct that maps FileStreamAsyncResult.
11790         * icall.c: added new icalls.
11791         * process.[ch]: support setting child process environment variables
11792         and use the SHELL or COMSPEC when UseShellExecute is true.
11793
11794         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11795         callback for async. IO is here and also BindHandle.
11796
11797         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11798         from here.
11799
11800 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11801
11802         * reflection.c (create_custom_attr): Allow len == 0.
11803
11804         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11805         computation on big-endian machines.
11806
11807 2004-03-13  Martin Baulig  <martin@ximian.com>
11808
11809         * class.h (MonoGenericInst): Added `int count_ifaces'.
11810
11811         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11812         `ginst->count_ifaces' instead `klass->interface_count' since we
11813         may get called before the vtable is created.
11814
11815         * loader.c (mono_method_get_param_names): If we're a generic
11816         instance, return and don't initialize the class.
11817
11818         * reflection.c (mono_reflection_setup_generic_class): Don't call
11819         ensure_runtime_vtable().
11820         (mono_reflection_bind_generic_parameters): Set
11821         `ginst->count_ifaces'.
11822
11823 2004-03-11  Jackson Harper <jackson@ximian.com>
11824
11825         * icall.c:
11826         * unicode.c:
11827         * unicode.h: Remove unused System.Char icalls.
11828         
11829 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11830
11831         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11832         code when we P/Invoke the first library in Windows.Forms, instead
11833         of when we first open the assembly.
11834
11835         * assembly.c: Drop the lookup from here.
11836
11837 2004-03-10  Martin Baulig  <martin@ximian.com>
11838
11839         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11840         class for properties, fields and events.  Finally fixes #54945.
11841
11842 2004-03-10  Martin Baulig  <martin@ximian.com>
11843
11844         * metadata.c (mono_metadata_class_equal): New static function;
11845         checks whether two generic instances or two generic parameters are
11846         equal.
11847         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11848         compare classes.        
11849
11850 2004-03-10  Martin Baulig  <martin@ximian.com>
11851
11852         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11853
11854         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11855         argument and write it into the `reflection_info' field.
11856
11857         * icall.c
11858         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11859         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11860
11861 2004-03-09  Jackson Harper  <jackson@ximian.com>
11862
11863         * char-conversions.h: use 8 bits for numeric data its all we need
11864         * icall.c: numeric data is only 8 bits now.
11865
11866 2004-03-09  Martin Baulig  <martin@ximian.com>
11867
11868         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11869
11870         * class.c (init_properties, init_events): Initialize the new
11871         `parent' field.
11872
11873         * reflection.c (typebuilder_setup_properties): Likewise.
11874         (typebuilder_setup_events): Likewise.
11875
11876         * reflection.h (MonoEventInfo): Replaced `parent with
11877         `declaring_type' and `reflected_type'.
11878
11879         * icall.c (ves_icall_get_property_info): Distinguish between
11880         declaring and reflected type.
11881         (ves_icall_get_event_info): Likewise.
11882
11883 2004-03-09  Martin Baulig  <martin@ximian.com>
11884
11885         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11886         (ves_icall_Type_GetField): Correctly set field->klass.
11887
11888 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11889
11890         * loader.h: Fix warning.
11891
11892 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11893
11894         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11895         library routine if present.  Notice that it will still continue
11896         executing even if its missing, for those working on the Gtk#
11897         edition of Windows.Forms.
11898
11899         * assembly.c (do_mono_assembly_open): If loading the
11900         System.Windows.Forms call mono_loader_wini_init.
11901
11902 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11903
11904         * class.h: Added MonoRemoteClass struct.
11905         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11906         function for MonoStrings.
11907         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11908         Added internal call for getting the proxy type.
11909         * marshal.c: Get the type of transparent proxies from its remote_class.
11910         Added methods that generate the IL for type checks and casts:
11911         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11912         mono_marshal_get_proxy_cancast.
11913         * marshal.h: Declaration of the previous new methods.
11914         * object.c: Added new moethods for creating and updating MonoRemoteClass
11915         instances: mono_remote_class, mono_upgrade_remote_class, 
11916         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11917         * verify.c: FIx transparent_proxy_fields layout.
11918         * appdomain.c: Bump corlib version.
11919
11920 2004-03-04  Jackson Harper  <jackson@ximian.com>
11921
11922         * icall.c: Add icall to access char conversion tables.
11923         * char-conversions.h: Character conversion tables.
11924         * Makefile.am: Add char-conversions.h private header file.
11925         
11926 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11927
11928         * appdomain.c (unload_thread_main): Increase unloading timeout to
11929         10 sec as a temporary workaround for Nant problems.
11930
11931 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11932
11933         * gc.c: Add checks for GC_enable and GC_disable.
11934
11935         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11936         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11937         (bug #54988).
11938         
11939 2004-02-27  Martin Baulig  <martin@ximian.com>
11940
11941         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11942         `MonoReflectionType *' instead of a `MonoType *'.
11943
11944 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11945
11946         * gc.c (run_finalize): Avoid finalizing the object representing the
11947         finalizer thread.
11948         (finalizer_thread): Fix warning.
11949
11950 2004-02-25  Martin Baulig  <martin@ximian.com>
11951
11952         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11953         argument for nested types.
11954         (mono_class_create_generic): Added support for nested generictypes.
11955
11956         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11957         `GList *nested'.
11958
11959         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11960
11961         * reflection.c (method_encode_signature): Increase the minimum
11962         value of `size' from 10 to 11.
11963         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11964         and `MonoType **types' arguments instead of the `MonoArray
11965         *types'; added `MonoType *nested_in'.  Recursively instantiate
11966         nested classes. 
11967
11968 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11969
11970         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11971         stack_overflow_ex members which are used by exception handling.
11972
11973         * appdomain.c (mono_runtime_init): Initialize the new members.
11974
11975         * gc.c (mono_gc_enable): New helper function.
11976         * gc.c (mono_gc_disable): New helper function.
11977
11978 2004-02-23  Martin Baulig  <martin@ximian.com>
11979
11980         * icall.c: I must have been really stupid - make it actually work
11981         this time ;-)
11982
11983 2004-02-23  Martin Baulig  <martin@ximian.com>
11984
11985         * loader.c (method_from_memberref): Only inflate the method if
11986         it's in another klass.
11987
11988 2004-02-23  Martin Baulig  <martin@ximian.com>
11989
11990         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11991         (mono_class_init): If we're a generic instance and an interface,
11992         compute `class->interface_id'; also create `class->interfaces'
11993         here and inflate them.
11994
11995         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11996         `ginst->is_open'.
11997         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11998
11999         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12000
12001 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12002
12003         * reflection.c (method_encode_code): Improved the error message
12004         generated by the exception.
12005
12006 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12007
12008         * icall.c: Martin did not do what he said in the ChangeLog for
12009         2004-02-18, but put back the changes for properties and events.
12010         Commenting those changes out again and adding comment to bug #54518.
12011         
12012         * process.c: removed warning.
12013
12014 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12015
12016         * marshal.c (emit_struct_conv): Print an error message instead of
12017         asserting when a type does not have the StructLayout attribute.
12018
12019 2004-02-20  Martin Baulig  <martin@ximian.com>
12020
12021         * reflection.c (mono_type_get_object): Also use the cache for
12022         generic instances.
12023         (mono_reflection_bind_generic_parameters): Always compute
12024         `ginst->ifaces'.        
12025
12026 2004-02-20  Martin Baulig  <martin@ximian.com>
12027
12028         * class.h (MonoGenericMethod): Removed `klass'.
12029
12030         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12031         *klass' argument.
12032
12033 2004-02-20  Martin Baulig  <martin@ximian.com>
12034
12035         * reflection.c (method_encode_methodspec): Actually use the
12036         uninflated signature for the memberref.
12037
12038 2004-02-20  Martin Baulig  <martin@ximian.com>
12039
12040         * class.h (MonoGenericMethod): Removed `declaring'.
12041
12042         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12043         is NULL, compute it here.
12044
12045 2004-02-20  Martin Baulig  <martin@ximian.com>
12046
12047         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12048
12049         * metadata.c (mono_metadata_generic_inst_hash): New method.
12050         (mono_metadata_generic_inst_equal): New method.
12051
12052         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12053         `klass->image->generic_inst_cache' cache to avoid creating
12054         duplicate MonoGenericInst's.
12055
12056         * class.c (mono_class_inflate_generic_type): Use the cache.
12057
12058 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12059
12060         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12061
12062 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12063
12064         * icall.c: added Socket.WSAIoctl icall.
12065
12066         * socket-io.[ch]: implemented
12067         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12068
12069 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12070
12071         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12072
12073 2004-02-18  Urs C Muff  <umuff@quark.com>
12074
12075         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12076         this work on PPC and other big-endian architectures.
12077
12078         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12079         fields with an underscore to make sure they're only accessed by
12080         the read32() macro.
12081
12082 2004-02-18  Martin Baulig  <martin@ximian.com>
12083
12084         * icall.c: Put the klass->refclass changes back for methods and
12085         fields, but not for properties and events.  We're currently not
12086         distinguishing between DeclaringType and ReflectedType for
12087         properties and events, that's what caused the regressions.
12088
12089 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12090
12091         * object.c:
12092         (mono_async_result_new): the handle can be NULL.
12093
12094         * threadpool.c: Use an event instead of a semaphore, don't initialize
12095         it until needed. This saves quite a few semaphores from being created
12096         when using the threadpool.
12097
12098 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12099
12100         * object.c (mono_string_is_interned_lookup): Fix interning of long
12101         strings. Fixes #54473.
12102
12103         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12104
12105         * icall.c: Revert the klass->refclass changes since they introduce
12106         regressions (bug #54518).
12107
12108 2004-02-18  Martin Baulig  <martin@ximian.com>
12109
12110         * class.c (mono_class_init): If we're a generic instance and don't
12111         come from a TypeBuilder, inflate our members here.
12112         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12113         (mono_class_create_generic): New public method.
12114         (mono_class_initialize_generic): Removed.
12115         (get_instantiation_name): Renamed to
12116         _mono_class_get_instantiation_name() and made it public.
12117
12118 2004-02-18  Martin Baulig  <martin@ximian.com>
12119
12120         * class.c (mono_class_inflate_generic_type): Clear the new
12121         instance's `nginst->klass' when inflating a generic instance.
12122         (mono_class_is_subclass_of): Added (basic) support for generic
12123         instances.
12124
12125 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12126
12127         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12128         MonoMempool to hold compiled native code.
12129
12130 2004-02-17  Martin Baulig  <martin@ximian.com>
12131
12132         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12133         `properties'.
12134
12135         * reflection.c (mono_reflection_generic_inst_initialize): Added
12136         `MonoArray *properties' argument.
12137
12138         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12139
12140 2004-02-17  Martin Baulig  <martin@ximian.com>
12141
12142         * icall.c (ves_icall_Type_GetFields): Renamed to
12143         ves_icall_Type_GetFields_internal() and added a
12144         `MonoReflectionType *rtype' argument; pass it to
12145         mono_field_get_object() to set the field's "reflected" type.
12146         (ves_icall_Type_GetConstructors): Likewise.
12147         (ves_icall_Type_GetEvents): Likewise.
12148         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12149         argument; pass it to mono_method_get_object() to set the method's
12150         "reflected" type.       
12151
12152 2004-02-17  Martin Baulig  <martin@ximian.com>
12153
12154         * class.h (MonoDynamicGenericInst): New type.
12155         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12156
12157         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12158         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12159         (ves_icall_MonoGenericInst_GetFields): New interncall.
12160
12161         * class.c (mono_class_from_generic): Don't call
12162         mono_class_initialize_generic() if this is a dynamic instance;
12163         ie. it's being created from a TypeBuilder.
12164         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12165         `class->byval_arg.type'.
12166
12167         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12168         to `inflate_method' and made static.
12169         (mono_reflection_inflate_field): Removed.
12170         (mono_reflection_generic_inst_initialize): New public method.
12171
12172         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12173         `ctors' and `fields'; added `initialized'.
12174
12175 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12176
12177         * debug-helpers.c (mono_method_full_name): Fix output for empty
12178         namespaces.
12179
12180 2004-02-12  Martin Baulig  <martin@ximian.com>
12181
12182         * class.h (MonoClassField): Added `MonoType *generic_type'.
12183
12184         * reflection.c (mono_image_get_fieldref_token): Added support for
12185         instantiated generic types.
12186         (field_encode_inflated_field): Removed.
12187         (mono_image_get_inflated_field_token): Removed.
12188         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12189
12190         * reflection.h (MonoReflectionInflatedField): Removed.
12191
12192 2004-02-12  Martin Baulig  <martin@ximian.com>
12193
12194         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12195         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12196
12197         * reflection.c (mono_image_get_methodspec_token): Take a
12198         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12199         (mono_image_create_token): Check whether we have a
12200         `method->signature->gen_method' and call
12201         mono_image_get_methodspec_token() if appropriate.
12202         (inflated_method_get_object): Removed.
12203         (mono_reflection_bind_generic_method_parameters): Return a
12204         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12205         (mono_reflection_inflate_method_or_ctor): Likewise.
12206
12207         * reflection.h (MonoReflectionInflatedMethod): Removed.
12208
12209 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12210
12211         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12212         for custom valuetype marshalling.
12213
12214         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12215
12216 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12217
12218         * icall.c: fixed WSAGetLastError_internal name.
12219
12220 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12221
12222         * threads.c (mono_thread_attach): Allow this to be called multiple
12223         times for a thread.
12224         
12225         * threads.c (build_wait_tids): Do not wait for ourselves.
12226
12227         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12228         appdomain list is empty.
12229
12230         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12231         memory returned by mono_string_builder_to_utf16, since it points into
12232         managed memory. Thanks to Bernie Solomon for noticing this.
12233
12234         * icall.c: Add AppDomainSetup icalls.
12235
12236         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12237
12238         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12239         types.
12240
12241         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12242         custom attributes to the method_aux struct. Also fix array indexes etc.
12243
12244         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12245         
12246 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12247
12248         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12249         (both static and runtime) and reduce startup time.
12250
12251 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12252
12253         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12254         AsAny marshalling conversion instead of crashing.
12255
12256         * marshal.c: Fix warnings.
12257
12258 2004-02-09  Martin Baulig  <martin@ximian.com>
12259
12260         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12261
12262         * reflection.h (MonoReflectionInflatedMethod): Removed the
12263         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12264
12265         * reflection.c (method_encode_methodspec): Removed the `method'
12266         argument; we get it from `gmethod->declaring'.
12267         (inflated_method_get_object): Removed the `declaring' argument.
12268
12269 2004-02-09  Martin Baulig  <martin@ximian.com>
12270
12271         * class.h (MonoGenericMethod): New type.
12272         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12273         `generic_method'.
12274
12275         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12276         a `MonoGenericMethod *gen_method' one.
12277
12278         * class.c (mono_class_inflate_generic_type): Take an additional
12279         `MonoGenericMethod * argument.  This is only non-NULL if we're
12280         inflating types for a generic method.   
12281         (mono_class_inflate_generic_signature): Renamed to
12282         inflate_generic_signature() and made static; take a
12283         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12284         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12285         instead of a `MonoGenericInst *' one.
12286         (mono_class_inflate_generic_method): Likewise.
12287
12288         * reflection.c (encode_generic_method_sig): Take a
12289         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12290         (method_encode_methodspec): Likewise.
12291         (inflated_method_get_object): Likewise. 
12292
12293         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12294         field with a `MonoGenericMethod *gmethod' one.  
12295
12296 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12297
12298         * class.h (mono_class_has_parent): add parens to expansion
12299         so you can ! this.
12300
12301 2004-02-08  Martin Baulig  <martin@ximian.com>
12302
12303         * image.h (MonoImage): Removed `generics_cache'.
12304
12305         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12306         instead of a `MonoType *' argument; removed the `inflate_methods'
12307         argument.  Don't inflate methods here.
12308
12309         * loader.c (find_method): If it's a generic instance, call
12310         mono_class_init() on the `sclass->generic_inst->generic_type'.
12311
12312         * metadata.c (mono_type_size): Make this work on uninitialized
12313         generic instances; call it on the `ginst->generic_type's class.
12314
12315         * reflection.c (mono_reflection_bind_generic_parameters): Call
12316         mono_class_from_generic() to create the `ginst->klass'.
12317
12318 2004-02-08  Martin Baulig  <martin@ximian.com>
12319
12320         * class.h (MonoClass): Changed type of `generic_inst' from
12321         `MonoType *' to `MonoGenericInst *'.
12322
12323 2004-02-08  Martin Baulig  <martin@ximian.com>
12324
12325         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12326         mono_type_get_object(), this is now creating a `MonoGenericInst'
12327         for MONO_TYPE_GENERICINST.
12328         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12329         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12330
12331         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12332         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12333         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12334         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12335         and reflected type.
12336
12337         * reflection.h (MonoReflectionInflatedMethod): Removed
12338         `declaring_type' and `reflected_type'.
12339
12340 2004-02-08  Martin Baulig  <martin@ximian.com>
12341
12342         * class.h (MonoGenericInst): Added `MonoType *parent' and
12343         `MonoType **ifaces'.
12344
12345         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12346         `parent' and `interfaces'.
12347
12348         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12349         `MonoType *' argument and return a `MonoType *'.
12350
12351         * icall.c
12352         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12353         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12354
12355 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12356
12357         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12358         valuetype marshalling.
12359
12360 2004-02-06  Martin Baulig  <martin@ximian.com>
12361
12362         * class.c
12363         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12364         (my_mono_class_from_generic_parameter): Likewise.
12365
12366 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12367
12368         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12369         contents of the symbol files lazily.
12370
12371         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12372
12373         * threads.h threads.c icall.c: New icalls for getting and setting the
12374         threads name.
12375
12376 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12377
12378         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12379         Raise an exception when the domain is not found.
12380
12381 2004-02-03  Martin Baulig  <martin@ximian.com>
12382
12383         * reflection.c (mono_image_get_methodspec_token): Use the
12384         uninflated signature; fixes gen-33.
12385
12386 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12387
12388         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12389         the finalizer code can use thread functionality.
12390
12391         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12392         the finalizer thread.
12393
12394         * threads.c: Make some functions more robust.
12395
12396         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12397
12398         * metadata.h: Add new marshalling conventions.
12399
12400         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12401         stringbuilder marshalling. Fixes #53700.
12402
12403         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12404
12405         * reflection.c (mono_image_get_type_info): Save declarative security
12406         info.
12407
12408         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12409         unmanaged fields as well.
12410
12411         * appdomain.c: Bump corlib version.
12412
12413 2004-02-01  Martin Baulig  <martin@ximian.com>
12414
12415         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12416         method type arguments.  
12417
12418 2004-01-30  Duncan Mak  <duncan@ximian.com>
12419
12420         * marshal.h: Add prototype for
12421         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12422         and
12423         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12424         fix the build.
12425
12426 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12427
12428         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12429         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12430
12431 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12432
12433         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12434         custom marshalling of valuetypes.
12435
12436         * marshal.c: Fix some warnings.
12437
12438 2004-01-29  Martin Baulig  <martin@ximian.com>
12439
12440         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12441         for generic method parameters.
12442
12443         * reflection.c (method_encode_methodspec): Write the uninflated
12444         signature into the methodspec table.
12445         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12446         is always the uninflated method.
12447         (reflection_methodbuilder_to_mono_method): Copy the generic
12448         parameters from the MethodBuilder into `header->gen_params'.
12449
12450 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12451
12452         * class.c (mono_class_from_generic_parameter): Fix warning.
12453
12454 2004-01-27  Martin Baulig  <martin@ximian.com>
12455
12456         * class.c (mono_class_from_generic_parameter): Don't create
12457         `klass->methods' here.  
12458
12459 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12460
12461         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12462         extension since it does not work with libraries named lib<FOO>.dll.so.
12463
12464 2004-01-25  Martin Baulig  <martin@ximian.com>
12465
12466         * class.c (mono_class_inflate_generic_type): Added support for
12467         MONO_TYPE_GENERICINST.
12468
12469         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12470         inflate methods on open constructed types.      
12471
12472 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12473
12474         * object.c: fire ProcessExit event in the root AppDomain after running
12475         Main. Fixes bug #53299.
12476
12477 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12478
12479         * socket-io.c: include the new socket-wrappers.h header.
12480         Use the wrappers instead of the unix socket functions to make the code
12481         more clear.
12482
12483 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12484
12485         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12486
12487         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12488         Fixes #22532.
12489
12490 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12491
12492         * reflection.c (mono_image_create_pefile): Handle the case when the
12493         entry point is not a MethodBuilder.
12494
12495         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12496         field to ReflectionMethod since it is not allways a builder.
12497
12498         * reflection.c (type_get_fully_qualified_name): New helper function to
12499         return the fully qualified name of a type.
12500
12501         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12502         type name for custom marshallers.
12503
12504         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12505
12506         * class.c (mono_class_setup_vtable): If a parent class already 
12507         implements an interface, use the implementing methods from that class.
12508         Fixes #53148.
12509
12510 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12511
12512         * threadpool.c: just return instead of ExitThread to allow for thread
12513         clean up earlier.
12514
12515 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12516
12517         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12518         when closing resource modules.
12519
12520         * reflection.c (mono_image_create_pefile): Handle the case when the
12521         entry point is not a MethodBuilder.
12522
12523         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12524         field to ReflectionMethod since it is not allways a builder.
12525
12526 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12527
12528         * marshal.c (mono_marshal_get_managed_wrapper): 
12529         mono_marshal_alloc takes native int so CONV_I
12530         the arg for 64bits.
12531
12532 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12533
12534         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12535         tokens in the cattr table. Fixes #53108.
12536
12537 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12538
12539         * loader.c: don't trim ".dll" before looking up in the config file.
12540         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12541
12542 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12543
12544         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12545         Return the module which contains the resource as well.
12546         (ves_icall_System_Reflection_Module_Close): New icall.
12547
12548         * appdomain.c: Bump corlib version number.
12549
12550         * image.c (mono_image_addref): New public function.
12551
12552         * assembly.c: Call mono_image_addref.
12553
12554         * reflection.c (mono_module_get_object): Increase reference count of 
12555         the image.
12556
12557         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12558         Fixes #22532.
12559
12560         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12561         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12562         proper exceptions on DllImport problems.
12563
12564 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12565
12566         * class.c, metadata.c: eliminate CSIZE macro.
12567
12568 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12569
12570         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12571         * object.h: Added async_callback field in MonoAsyncResult.
12572         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12573         * verify.c: Added async_callback in MonoAsyncResult layout.
12574
12575 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12576
12577         * reflection.c (mono_reflection_get_custom_attrs): Add support
12578         for Modules.
12579
12580 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12581
12582         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12583         marshalling.
12584         (mono_marshal_method_from_wrapper): Add null pointer check.
12585
12586 2004-01-16  Martin Baulig  <martin@ximian.com>
12587
12588         * debug-mono-symfile.h: Set version number to 36 and reflect
12589         latest symbol writer changes.
12590
12591 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12592
12593         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12594         multi-dimensional arrays.
12595         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12596         (mono_class_from_mono_type): Use bounded_array_class_get.
12597         
12598         * class.c (mono_bounded_array_class_get): New function which takes
12599         a 'bounded' bool argument to distinguish vectors from one dimensional
12600         arrays.
12601
12602         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12603         bounded_array_class_get if the array has bounds.
12604
12605         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12606         Search modules loaded using AssemblyBuilder:AddModule as well.
12607
12608 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12609
12610         * appdomain.c: increased corlib version.
12611         * filewatcher.c: removed g_print.
12612         * icall.c:
12613         (get_property_info): only allocate what is actually requested.
12614         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12615
12616 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12617
12618         * Makefile.am: added filewatcher.[ch]
12619         * filewatcher.[ch]: FileSystemWatcher runtime support.
12620         * icall.c: added new FSW icalls.
12621
12622 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12623
12624         * string-icalls.c: fix stringbuilder regression as suggested by
12625         Iain McCoy <iain@mccoy.id.au>.
12626
12627 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12628
12629         * process.c (process_read_stringtable_block): Recognize '007f' as
12630         a language neutral stringtable block.
12631
12632 2004-01-12  Patrik Torstensson
12633
12634         * object.h (MonoStringBuilder) : Changed layout to support our
12635         new stringbuilder class.
12636         * marshal.c: Change marshalling to support the new layout of 
12637         string builder.
12638         * appdomain.c: increased version number because new layout of
12639         string builder.
12640
12641 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12642
12643         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12644         assembly name as an string instead of an AssemblyName, since it is
12645         easier to extract info from it.
12646
12647         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12648         the culture subdirectories too. Fixes #52231.
12649
12650 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12651
12652         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12653         It takes 2 new parameters with an optional name for the method to look
12654         for and case ignoring info.
12655
12656         * threadpool.c: removed unused variable.
12657
12658 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12659
12660         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12661         It takes 2 new parameters with an optional name for the property to look
12662         for and case ignoring info.
12663         Fixes bug #52753.
12664
12665 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12666
12667         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12668         Fix #52451.
12669
12670 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12671
12672         * appdomain.c:
12673         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12674         Fixes bug #52630.
12675
12676 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12677
12678         * reflection.c: Add support for more than one unmanaged resource.
12679
12680         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12681         in field->def_value, as done in all other cases.
12682
12683         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12684         TypeBuilders.
12685
12686         * reflection.c (mono_reflection_create_runtime_class): Remove 
12687         errorneous assignment to klass->element_class, since it is already
12688         done in mono_reflection_setup_internal_class.
12689
12690 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12691
12692         * gc.c: added missing LeaveCriticalSection.
12693         * icall.c: indented a couple of lines.
12694         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12695         if we call EndInvoke inside a callback. Fixes bug #52601.
12696
12697 2004-01-07  Martin Baulig  <martin@ximian.com>
12698
12699         * mono-debug-debugger.h
12700         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12701
12702 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12703
12704         * appdomain.c: Use messages in NotImplementedException.
12705
12706         * exception.c (mono_get_exception_not_implemented): Now this takes
12707         a message argument.
12708
12709         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12710         exception instead of g_asserting an aborting when something is not
12711         implemented.
12712
12713         Add some inline docs.
12714
12715 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12716
12717         * reflection.h: Update after changes to object layout.
12718
12719         * reflection.c: Implement saving of unmanaged aka win32 resources.
12720
12721         * appdomain.c: Bump version number.
12722
12723         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12724         Handle missing domains gracefully.
12725
12726 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12727
12728         * file-io.c : On Windows, there are much more invalid_path_chars.
12729
12730 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12731
12732         * class.h, object.c: prepare for GetType () speedup.
12733
12734 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12735
12736         * profiler.c: workaround for --profile null reference exception on
12737           cygwin. Patch by Patrik Torstensson.
12738
12739 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12740
12741         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12742         make work for unaligned access.
12743
12744 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12745
12746         * class.c: small cleanup (class->fields [i] -> field).
12747         * image.c: check address of metadata is valid.
12748
12749 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12752         search the list of loaded assemblies.
12753
12754         * reflection.c (mono_reflection_type_from_name): Use 
12755         mono_assembly_loaded instead of mono_image_loaded.
12756
12757         * reflection.c: Fix warnings.
12758
12759 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12760
12761         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12762         is dynamic. This is needed since an assembly can contain both dynamic and
12763         non-dynamic images.
12764
12765         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12766         assembly->dynamic.
12767
12768         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12769
12770         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12771         to store modules loaded using AddModule.
12772
12773         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12774         on Modules.
12775
12776         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12777
12778         * reflection.c (mono_image_fill_export_table_from_module): New function to
12779         fill out the EXPORTEDTYPES table from a module.
12780
12781         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12782         into a separate function. Also handle loaded non-dynamic modules.
12783
12784         * reflection.c (mono_image_basic_init): Fix memory allocation.
12785
12786         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12787
12788         * assembly.c (mono_assembly_load_references): Make this public.
12789
12790 2003-12-19  Martin Baulig  <martin@ximian.com>
12791
12792         * class.c (mono_class_initialize_generic): Made this static, take
12793         a `MonoGenericInst *' instead of a `MonoClass *'.
12794         (mono_class_from_generic): Call mono_class_initialize_generic()
12795         unless we're already initialized or being called from
12796         do_mono_metadata_parse_generic_inst().
12797
12798         * class.h (MonoGenericInst): Added `initialized' and
12799         `init_pending' flags.
12800
12801         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12802         `mono_class_init (gklass)' or mono_class_initialize_generic()
12803         here; set `generic_inst->init_pending' while parsing the
12804         `type_argv'.
12805
12806 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12807
12808         * locales.c: include string.h for memxxx prototypes
12809
12810 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12811
12812         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12813         constructor when accessing literal fields.
12814
12815 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12816
12817         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12818
12819         * reflection.c (assembly_add_resource_manifest): New function to fill
12820         the MANIFESTRESOURCE table.
12821
12822         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12823
12824         * reflection.h: Update to changes in class layout.
12825
12826         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12827         Reenable call to mono_runtime_is_shutting_down ().
12828
12829         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12830         determine if the runtime is shutting down.
12831
12832 2003-12-16  Jackson Harper <jackson@ximian.com>
12833
12834         * icall.c: comment out call to mono_runtime_is_shutting_down to
12835         fix build.
12836         
12837 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12838
12839         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12840         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12841
12842 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12843
12844         * reflection.c: move definition of swap_with_size
12845         to before its first call
12846
12847 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12848
12849         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12850
12851         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12852         icall.
12853
12854         * object.c: Fix warnings.
12855
12856         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12857         members if FlattenHierarchy is set.
12858
12859         * reflection.c (mono_image_add_decl_security): New function to emit
12860         declarative security.
12861
12862         * reflection.h reflection.c: Add support for declarative security.
12863
12864         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12865         
12866 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12867
12868         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12869         
12870         * appdomain.c verify.c: Moved corlib version checking into its own
12871         function in appdomain.c since it needs to create vtables etc.
12872
12873 2003-12-13  Patrik Torstensson <p@rxc.se>
12874
12875         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12876         instead of unwrapped server.
12877
12878 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12879
12880         * verify.c (check_corlib): Fix field index.
12881
12882 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12883
12884         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12885         GetGacPath icall.
12886
12887 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12888
12889         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12890         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12891         cope with sizeof(size_t) != sizeof(guint32).
12892
12893 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12894
12895         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12896         in case of failure.
12897
12898 2003-12-10  Mark Crichton <crichton@gimp.org>
12899
12900         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12901         in managed code.
12902
12903         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12904
12905 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12906
12907         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12908         marked as deleted.
12909
12910 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12911
12912         * verify.c (check_corlib): Handle the case when the version field is 
12913         initialized by a static constructor.
12914
12915 2003-12-08  Patrik Torstensson  <p@rxc.se>
12916
12917     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12918
12919 2003-12-08  Martin Baulig  <martin@ximian.com>
12920
12921         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12922         a MonoReflectionGenericParameter, also take the parameter index
12923         and name as arguments.
12924         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12925         (ves_icall_MonoGenericParam_initialize): New interncall.
12926         (ves_icall_Type_make_byref_type): New interncall.
12927
12928         * reflection.h (MonoReflectionGenericParam): Derive from
12929         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12930         `index' fields.
12931
12932         * reflection.c (mono_reflection_define_generic_parameter): Create
12933         and return a new MonoReflectionGenericParam; don't initialize the
12934         constraints here.
12935         (mono_reflection_initialize_generic_parameter): New public method;
12936         initializes the constraints and creates the `param->pklass'.
12937
12938 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12939
12940         * reflection.h reflection.c: Use the new fields 'num_types', 
12941         'num_fields' and 'num_methods' to track the number of types etc.
12942
12943         * verify.c (check_corlib): Check corlib version number.
12944
12945 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12946
12947         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12948         function works on all methods.
12949
12950 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12951
12952         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12953         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12954         the custom_type_info flag of the transparent proxy.
12955         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12956         objects that supports IRemotingTypeInfo.
12957         * object.h: Added custom_type_info field in transparent proxy.
12958
12959 2003-12-06  Martin Baulig  <martin@ximian.com>
12960
12961         * class.c (mono_class_create_from_generic): Removed.
12962         (mono_class_from_generic): Check `ginst->klass' before doing
12963         anything else.  This is important to fully support "recursive"
12964         generic types.
12965
12966         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12967         empty `generic_inst->klass' before doing anything else.
12968
12969 2003-12-06  Dick Porter  <dick@ximian.com>
12970
12971         * verify.c: 
12972         * object.h:
12973         * icall.c:
12974         * locales.c: Use C structs to access class fields.  Don't do a
12975         conversion between MonoString and UChar because both are
12976         platform-endian UTF-16.  Compare now takes startindex and count
12977         parameters.  Add a char overload for IndexOf.  Speed up the
12978         invariant string IndexOf.
12979
12980 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12981
12982         * Makefile.am (monosn_LDADD): Fix parallel build.
12983
12984 2003-12-04  Martin Baulig  <martin@ximian.com>
12985
12986         * icall.c
12987         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12988         (ves_icall_Type_make_array_type): New interncall.       
12989
12990 2003-12-04  Martin Baulig  <martin@ximian.com>
12991
12992         * locales.c: also change it in the !HAVE_ICU case.
12993
12994 2003-12-04  Dick Porter  <dick@ximian.com>
12995
12996         * icall.c:
12997         * locales.c: construct_compareinfo is now in CompareInfo, not
12998         CultureInfo.
12999
13000 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13001
13002         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13003         image->files array.
13004
13005         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13006         table as well.
13007
13008         * assembly.c (mono_assembly_load_references): Only load references
13009         once.
13010
13011         * class.c (mono_class_from_name): Avoid linear search of the 
13012         EXPORTEDTYPE table.
13013
13014         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13015
13016 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13017
13018         * image.h (MonoImage): Add 'field_cache' field.
13019
13020         * loader.c (mono_field_from_token): Cache field lookups.
13021         
13022         * reflection.c (mono_module_get_object): Fix name property.
13023
13024         * icall.c (ves_icall_get_enum_info): Update after changes to 
13025         mono_metadata_get_constant_index ().
13026
13027         * icall.c: Get rid of get_type_info icall, use a separate icall for
13028         each type property to avoid needless memory allocations. Fixes #51514.
13029
13030         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13031         to avoid needless binary searches.
13032
13033         * class.c (class_compute_field_layout): Move the initialization of
13034         field->def_value to mono_class_vtable ().
13035
13036         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13037         non-corlib types.
13038
13039         * object.c (mono_object_allocate): Make it inline.
13040
13041         * object.c (mono_object_allocate_spec): Make it inline.
13042         
13043 2003-12-02  Dick Porter  <dick@ximian.com>
13044
13045         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13046         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13047
13048 2003-12-01  Dick Porter  <dick@ximian.com>
13049
13050         * threads.c: Fix signature and call in CreateMutex and
13051         CreateEvent.
13052
13053 2003-12-01  Dick Porter  <dick@ximian.com>
13054
13055         * icall.c: 
13056         * locales.c: Implement string compares and searching
13057
13058         * object.h: Add extra Thread field
13059
13060 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13061
13062         * reflection.c (fixup_method): Add support for MonoCMethod.
13063
13064 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13065
13066         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13067
13068         * reflection.c (assembly_name_to_aname): Allow extra characters in
13069         assembly names. Fixes #51468.
13070
13071 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13072
13073         * exception.c (mono_exception_from_name_domain): New helper function.
13074
13075         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13076         exception object in the correct domain.
13077
13078         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13079         formatting + make a copy a the input data.
13080
13081         * loader.c (mono_get_method_from_token): Methods which contain
13082         native code do not have entries in the ImplMap.
13083
13084         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13085         Thanks to Gonzalo for spotting this.
13086         
13087         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13088         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13089
13090         * assembly.h (mono_assembly_load_from): Split the second part of 
13091         assembly loading into a new public function.
13092
13093         * exception.h (mono_get_exception_bad_image_format): New function.
13094
13095 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13096
13097         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13098         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13099         
13100         * icall.c: Add new icall for creating dynamic methods.
13101
13102         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13103
13104         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13105
13106         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13107         create a dynamic method.
13108
13109         * reflection.c (resolve_object): New helper function.
13110
13111         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13112         which manipulate it so they can also work on dynamic methods.
13113
13114         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13115         creating the MonoReflectionMethodAux structure if it is not needed.
13116         
13117         * reflection.h verify.c: Update after changes to object layout.
13118
13119         * reflection.c (method_builder_encode_signature): Fix compilation on
13120         gcc 2.95.x.
13121
13122 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13123
13124         * appdomain.h: Added support for context static fields. Added static_data
13125           field to MonoAppContext and renamed thread_static_fields to a more
13126           generic special_static_fields in MonoAppDomain, since it can now contain
13127           context static fields.
13128         * domain.c: Updated hashtable name.
13129         * object.c: Replaced field_is_thread_static() for a more generic
13130           field_is_special_static() which also checks for context static attribute.
13131           In mono_class_vtable(), added support for static context fields.
13132         * threads.c: Changed methods that manage thread static fields to more
13133           generic methods so they can be reused both for thread and context static
13134           data.
13135         * threads.h: Declared some new methods.
13136
13137 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13138
13139         * reflection.h: Update after changes to the managed types.
13140
13141         * reflection.c (encode_custom_modifiers): New helper function.
13142
13143         * reflection.c (method_encode_signature): Emit custom modifiers.
13144
13145         * reflection.c (field_encode_signature): Emit custom modifiers.
13146
13147 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13148
13149         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13150
13151         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13152         implementation.
13153
13154         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13155         icall.
13156
13157         * object.c (mono_field_get_value_object): New function.
13158
13159         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13160         specific.
13161
13162 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13163
13164         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13165         return a preallocated out-of-memory exception instance.
13166
13167         * object.c (out_of_memory): Use the new function.
13168
13169         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13170         flag is before the custom modifiers. Fixes #49802.
13171
13172 2003-11-16  Martin Baulig  <martin@ximian.com>
13173
13174         * class.c (mono_class_is_open_constructed_type): Implemented the
13175         MONO_TYPE_GENERICINST case.
13176
13177 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13178
13179         * assembly.c (mono_assembly_fill_assembly_name): New function to
13180         fill out the MonoAssemblyName structure.
13181         (mono_assembly_open): Use the new function.
13182
13183         * icall.c (fill_reflection_assembly_name): New helper function.
13184
13185         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13186         new function.
13187
13188         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13189
13190 2003-11-15  Martin Baulig  <martin@ximian.com>
13191
13192         * class.c (mono_class_is_open_constructed_type): New public
13193         function; checks whether a type is an open constructed type,
13194         ie. whether it still contains type parameters.
13195         (mono_class_inflate_generic_type): If we're a type parameter and
13196         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13197         type.
13198
13199         * class.h (MonoGenericInst): Added `guint32 is_open'.
13200
13201         * loader.c (method_from_methodspec): Check whether we're an open
13202         or closed constructed type and set `ginst->is_open'.
13203
13204         * reflection.c (mono_reflection_bind_generic_parameters): Check
13205         whether we're an open or closed constructed type and set
13206         `ginst->is_open'.
13207         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13208         from open constructed types.
13209
13210 2003-11-15  Martin Baulig  <martin@ximian.com>
13211
13212         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13213         a generic instance (instead of a generic type declaration) with
13214         unbound generic parameters, bind them to our actual types.
13215
13216 2003-11-14  Martin Baulig  <martin@ximian.com>
13217
13218         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13219
13220         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13221         an interface type, populate `res->interfaces' with instantiated
13222         versions of all the interfaces we inherit.
13223
13224 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13225
13226         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13227         when MONO_PATH is set but doesn't contain the install dir.
13228
13229 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13230
13231         * icall.c:
13232         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13233         it's also implemented in base classes. Fixes bug #50927.
13234
13235 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13236
13237         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13238         if this method is called from a finalizer. Fixes #50913.
13239
13240 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13241
13242         * threads.c: Implement VolatileRead/VolatileWrite
13243
13244         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13245
13246 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13247
13248         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13249         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13250         2.95.3.
13251
13252         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13253         from Peter Ross (pro@missioncriticalit.com).
13254         
13255 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13256
13257         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13258
13259 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13260
13261         * assembly.c (mono_assembly_load_references): Disable check because it
13262         triggers on older corlibs which lots of people have.
13263
13264 2003-11-12  Jackson Harper  <jackson@ximian.com>
13265
13266         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13267         load corlib.dll if mscorlib.dll is not found.
13268         * assembly.h: Remove corlib name define.
13269         * class.c:
13270         * domain.c:
13271         * image.c: Change corlib name to mscorlib.
13272         
13273 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13274
13275         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13276
13277 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13278
13279         * appdomain.h: Added loader_optimization here to sync with the C#
13280         code, and add disallow_binding_redirects field.
13281
13282 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13283
13284         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13285
13286         * reflection.c (mono_image_build_metadata): Fix crash on modules
13287         with no types.
13288
13289         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13290
13291         * icall.c (ves_icall_get_method_info): Return callingConvention as
13292         well.
13293
13294         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13295         namespaces from the EXPORTEDTYPE table as well.
13296
13297         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13298         from all modules inside the assembly.
13299         
13300 2003-11-11  Martin Baulig  <martin@ximian.com>
13301
13302         * reflection.c (mono_reflection_bind_generic_parameters): Make
13303         this work for interfaces.
13304
13305 2003-11-11  Martin Baulig  <martin@ximian.com>
13306
13307         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13308
13309 2003-11-11  Martin Baulig  <martin@ximian.com>
13310
13311         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13312         "MonoInflatedMethod" and "MonoInflatedCtor".
13313
13314 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13315
13316         * reflection.c (resolution_scope_from_image): Use the assembly table
13317         from the manifest module, since other modules don't have it.
13318
13319         * debug-helpers.c (mono_type_full_name): New helper function.
13320
13321         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13322
13323         * image.c (mono_image_load_file_for_image): New public function which
13324         is a replacement for the load_file_for_image in class.c.
13325
13326         * assembly.c (mono_assembly_load_module): A wrapper for the function
13327         above which does assembly association and reference loading too.
13328
13329         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13330
13331 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13332
13333         * appdomain.c: not all of the attributes for the full assembly name
13334         are required and the order doesn't matter. Fixes bug #50787.
13335
13336 2003-11-10  Dick Porter  <dick@ximian.com>
13337
13338         * locales.c: Use platform-endian UTF16
13339
13340 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13341
13342         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13343         
13344 2003-11-10  Martin Baulig  <martin@ximian.com>
13345
13346         * metadata.c
13347         (mono_metadata_load_generic_params): Make this actually work.
13348
13349         * reflection.c (mono_reflection_bind_generic_parameters): If our
13350         parent is a generic instance, pass all the `types' to it, no
13351         matter whether it has the same number of type parameters or not.
13352
13353 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13354
13355         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13356
13357         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13358         assignment code to this function so it gets called recursively for all
13359         modules.
13360
13361         * image.c (load_modules): Remove the assembly assignment since it is
13362         now done by mono_assembly_load_references.
13363         
13364         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13365         Add 'module' argument.
13366         (mono_module_get_types): New helper function.
13367         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13368
13369 2003-11-08  Martin Baulig  <martin@ximian.com>
13370
13371         * class.c (mono_class_inflate_generic_method): Interface method
13372         don't have a header.
13373
13374         * reflection.c (mono_image_get_methodspec_token): Take an
13375         additional `MonoGenericInst *' argument instead of reading it from
13376         the header; this is necessary to support interfaces.
13377         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13378         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13379         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13380         argument.
13381
13382         * reflection.h (MonoReflectionInflatedMethod): Added
13383         `MonoGenericInst *ginst'.
13384
13385 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13386
13387         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13388
13389 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13390
13391         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13392
13393 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13394
13395         * reflection.c 
13396         (reflection_methodbuilder_from_method_builder):
13397         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13398         initialize a ReflectionMethodBuilder structure.
13399         (mono_image_get_methodbuilder_token):
13400         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13401         tokens which point to types in another module inside the same assembly.
13402
13403         * reflection.c: Use the new helper functions.
13404         
13405         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13406
13407         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13408         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13409
13410         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13411         neccesary.
13412
13413         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13414         current module. Emit the manifest only for the main module.
13415
13416         * reflection.c (mono_image_create_token): Add assertion when a 
13417         memberref needs to be created.
13418
13419         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13420
13421         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13422         larger buffer for the custom attribute blob. Fixes #50637.
13423         
13424 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13425
13426         * threadpool.c: notify listener on async processing handles after
13427         invoking the async callback. Thanks to Zoltan.
13428
13429 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13430
13431         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13432         avoid code duplication.
13433
13434         * reflection.h (MonoDynamicImage): New type which is currently unused,
13435         but will be used through the ref.emit code in place of 
13436         MonoDynamicAssembly.
13437
13438         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13439         object layout.
13440
13441         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13442         a MonoDynamicImage instead of just a MonoImage.
13443         
13444         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13445         icalls to ModuleBuilder but keep their semantics, so they will work
13446         with moduleb->assemblyb. This will change later.
13447         
13448 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13449
13450         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13451         object layout.
13452
13453         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13454         main module, since it is now done by the managed code.
13455
13456 2003-11-03  Martin Baulig  <martin@ximian.com>
13457
13458         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13459         `ginst->klass' here.
13460         (method_encode_methodspec): Don't use the `ginst->generic_method's
13461         klass if it's a generic instance, use `ginst->klass' in this case.
13462
13463 2003-11-03  Martin Baulig  <martin@ximian.com>
13464
13465         * reflection.c (mono_image_get_generic_method_param_info):
13466         Removed, use mono_image_get_generic_param_info() instead.
13467         (mono_image_get_type_info): Write the GenericParam table before
13468         the Method table.  This is neccessary because in the GenericParam
13469         table, type parameters of the class (ie. '!0' etc.) must come
13470         before the ones from its generic methods (ie. '!!0' etc).
13471
13472 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13473
13474         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13475
13476 2003-11-02  Martin Baulig  <martin@ximian.com>
13477
13478         * reflection.c (create_generic_typespec): Take a
13479         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13480         the generic parameters from it.
13481
13482 2003-11-02  Martin Baulig  <martin@ximian.com>
13483
13484         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13485         instead of a `MonoClassField *' since we just need the type.
13486         (create_generic_typespec): New static function.  Creates a
13487         TypeSpec token for a generic type declaration.
13488         (mono_image_get_generic_field_token): New static function.
13489         (mono_image_create_token): If we're a FieldBuilder in a generic
13490         type declaration, call mono_image_get_generic_field_token() to get
13491         the token.
13492
13493 2003-11-02  Martin Baulig  <martin@ximian.com>
13494
13495         * reflection.h
13496         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13497         `MonoReflectionGenericInst *declaring_type' and
13498         `MonoReflectionGenericInst *reflected_type' fields.
13499
13500         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13501         `MonoReflectionGenericInst *declaring_type' and a
13502         `MonoReflectionGenericInst *reflected_type' argument instead of a
13503         single `MonoReflectionGenericInst *type' one.  Set
13504         `res->declaring_type' and `res->reflected_type' from them.
13505         (mono_reflection_inflate_field): Likewise.      
13506
13507 2003-11-02  Martin Baulig  <martin@ximian.com>
13508
13509         * class.c (mono_class_setup_vtable): Don't store generic methods
13510         in the vtable.  
13511
13512 2003-11-02  Martin Baulig  <martin@ximian.com>
13513
13514         * reflection.h (MonoReflectionGenericInst): Added
13515         `MonoReflectionType *declaring_type'.
13516
13517         * reflection.c (mono_reflection_bind_generic_parameters): Use
13518         `if (tb->parent)' instead of `klass->parent'.
13519
13520 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13521
13522         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13523         with an empty ASSEMBLY table.
13524
13525         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13526         variable in the inner and outer loops.
13527
13528 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13529
13530         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13531         argument.
13532
13533         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13534         
13535         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13536         icalls. Instead, do everything in managed code. This is needed since
13537         it is hard to restore the original domain etc. in unmanaged code in the
13538         presence of undeniable exceptions.
13539
13540         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13541         New icalls to push and pop appdomain refs.
13542
13543 2003-10-31  Martin Baulig  <martin@ximian.com>
13544
13545         * class.c (inflate_generic_type): Renamed to
13546         mono_class_inflate_generic_type() and made it public.
13547
13548         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13549         New interncall.
13550
13551         * loader.c (mono_field_from_memberref): Also set the retklass for
13552         typespecs.
13553
13554         * fielder.c (mono_image_get_inflated_field_token): New static
13555         method; creates a metadata token for an inflated field.
13556         (mono_image_create_token, fixup_method): Added support for
13557         "MonoInflatedField".
13558         (fieldbuilder_to_mono_class_field): New static function.
13559         (mono_reflection_inflate_field): New public function.
13560
13561         * reflection.h
13562         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13563         (MonoReflectionInflatedField): New typedef.     
13564
13565 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13566
13567         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13568         for Solaris and other platforms without s6_addr16
13569
13570 2003-10-30  Martin Baulig  <martin@ximian.com>
13571
13572         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13573         argument instead of two.
13574         (mono_class_inflate_generic_signature): Likewise.
13575         (inflate_generic_header): Likewise.
13576         (mono_class_inflate_generic_method): Likewise.  In addition, if
13577         `ginst->klass' is set, it becomes the new `method->klass'.
13578
13579         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13580         field.
13581
13582         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13583         first byte. [FIXME]
13584         (method_encode_methodspec): If we have generic parameters, create
13585         a MethodSpec instead of a MethodRef.
13586         (fixup_method): Added support for "MonoInflatedMethod" and
13587         "MonoInflatedCtor".
13588         (mono_image_create_token): Added support for "MonoInflatedMethod"
13589         and "MonoInflatedCtor".
13590         (inflated_method_get_object): New static function; returns a
13591         managed "System.Reflection.MonoInflatedMethod" object.
13592         (mono_reflection_bind_generic_method_parameters): Return a
13593         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13594         (mono_reflection_inflate_method_or_ctor): Likewise.
13595         (mono_image_get_generic_method_param_info): Initialize unused
13596         fields to zero.
13597         (mono_image_get_generic_param_info): Likewise.
13598
13599         * reflection.h (MonoReflectionInflatedMethod): New public
13600         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13601         "S.R.MonoInflatedCtor" classes.
13602
13603         * loader.c (method_from_memberref): If we're a TypeSpec and it
13604         resolves to a generic instance, inflate the method.
13605
13606 2003-10-28  Dick Porter  <dick@ximian.com>
13607
13608         * object.c (mono_runtime_run_main): Convert command-line arguments
13609         into utf8, falling back to the user's locale encoding to do so.
13610
13611 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13612
13613         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13614         at this time.
13615
13616         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13617
13618         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13619         up icalls at method definition time. Partially fixes #33569.
13620
13621 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13622
13623         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13624         marshalling of arrays. Fixes #50116.
13625
13626         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13627
13628         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13629         points to a vtable in the dying appdomain.
13630
13631         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13632         listeners into unmanaged code inside the lock.
13633
13634         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13635         domains and add some comments.
13636
13637 2003-10-25  Martin Baulig  <martin@ximian.com>
13638
13639         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13640
13641         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13642
13643         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13644         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13645         currently parsing.  Create the generic class and store it in
13646         `generic_inst->klass' before parsing the type arguments.  This is
13647         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13648         for an example.
13649         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13650         to support recursive typespec entries.
13651
13652         * class.c (mono_class_setup_parent): If our parent is a generic
13653         instance, we may get called before it has its name set.
13654         (mono_class_from_generic): Splitted into
13655         mono_class_create_from_generic() and mono_class_initialize_generic().
13656
13657 2003-10-25  Martin Baulig  <martin@ximian.com>
13658
13659         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13660         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13661         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13662         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13663
13664         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13665         (create_typespec): Likewise.
13666         (mono_reflection_bind_generic_parameters): Return a
13667         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13668         (mono_reflection_inflate_method_or_ctor): New public function.
13669
13670         * reflection.h (MonoReflectionGenericInst): New typedef.        
13671
13672 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13673
13674         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13675         inside the domain lock. Fixes #49993.
13676         
13677         * object.c (mono_class_vtable): When typed allocation is used, 
13678         allocate vtables in the GC heap instead of in the mempool, since the
13679         vtables contain GC descriptors which are used by the collector even
13680         after the domain owning the mempool is unloaded.
13681
13682         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13683
13684         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13685         reflect what it does. Also invalidate mempools instead of freeing
13686         them if a define is set.
13687
13688         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13689         of the appdomain.
13690         
13691         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13692         hold the finalizable objects in this domain.
13693
13694         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13695         appdomain.
13696
13697         * appdomain.c (mono_domain_set): New function to set the current
13698         appdomain, but only if it is not being unloaded.
13699
13700         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13701         appdomain which is being unloaded.
13702         
13703         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13704         unloading of the root appdomain.
13705
13706         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13707         icall to execute a method in another appdomain. Intended as a 
13708         replacement for InternalSetDomain, which can confuse the code 
13709         generation in the JIT.
13710
13711         * appdomain.c (mono_domain_is_unloading): New function to determine
13712         whenever an appdomain is unloading.
13713
13714         * appdomain.c (mono_domain_unload): New function to correctly unload
13715         an appdomain.
13716
13717         * assembly.c (mono_assembly_load_references): Check that an assembly
13718         does not references itself.
13719
13720         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13721         domain manually, it asks the finalizer thread to do it, then waits for
13722         the result. Also added a timeout.
13723
13724         * icall.c: Register the new icalls.
13725
13726         * threads.h threads.c: Export the mono_gc_stop_world and 
13727         mono_gc_start_world functions.
13728         
13729         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13730         function to fill out the mempool with 0x2a.
13731
13732 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13733
13734         * reflection.h (MonoReflectionMethodAux): New structure to store
13735         information which is rarely used, thus is not in the MonoMethod
13736         structure.
13737
13738         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13739         store the aux info.
13740
13741         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13742         and marshalling info into the aux structure.
13743
13744         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13745         from the aux structure.
13746
13747         * loader.c (mono_method_get_param_names): Retrieve the param names from
13748         the aux structure.
13749         
13750 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13751
13752         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13753         warning.
13754
13755 2003-10-21  Dick Porter  <dick@ximian.com>
13756
13757         * socket-io.c
13758         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13759         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13760
13761 2003-10-21  Martin Baulig  <martin@ximian.com>
13762
13763         * reflection.c (mono_reflection_bind_generic_parameters):
13764         `klass->parent' is NULL for interfaces.
13765
13766 2003-10-21  Martin Baulig  <martin@ximian.com>
13767
13768         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13769
13770 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13771
13772         * exception.c (mono_exception_from_name_msg): New helper function for
13773         creating exceptions and initializing their message field.
13774
13775         * exception.c: Simplify functions using the new helper.
13776
13777         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13778         New function.
13779
13780         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13781         mono_raise_exception, since otherwise gcc doesn't generate the function
13782         epilog for raise_exception, confusing the stack unwinding in the JIT.
13783         Fixes #45043.
13784
13785         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13786         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13787         Fixes #49499.
13788
13789 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13790
13791         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13792         utf8.
13793
13794 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13795
13796         * icall.c: Removed GetUninitializedObject method because
13797           AllocateUninitializedClassInstance does the same.
13798
13799 2003-10-18  Martin Baulig  <martin@ximian.com>
13800
13801         * class.c (inflate_generic_signature): Renamed to
13802         mono_class_inflate_generic_signature() and made it public.
13803         (my_mono_class_from_generic_parameter): New static function; if we
13804         don't already have the generic parameter's MonoClass, create a
13805         very simple one which is just used internally in the runtime and
13806         not passed back to managed code.
13807
13808         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13809
13810         * metadata.h (MonoMethodSignature): Moved the
13811         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13812         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13813
13814         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13815         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13816         interncall on the MonoMethod class, not on MethodInfo.
13817         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13818         calling mono_reflection_bind_generic_method_parameters() directly.
13819
13820         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13821         return the already computed `method->signature'.
13822         (method_from_methodspec): New static function to load a method
13823         from a MethodSpec entry.
13824         (mono_get_method_from_token): Call the new method_from_methodspec()
13825         for MethodSpec tokens.  
13826         (mono_get_method_from_token): If we're a generic method, load the
13827         type parameters.
13828
13829         * reflection.c (mono_image_get_memberref_token): Allow
13830         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13831         table.
13832         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13833         (mono_image_create_token): First check whether it's a generic
13834         method (so we'd need to create a MethodSpec), then do the other
13835         two alternatives.
13836         (mono_reflection_bind_generic_method_parameters): Return a
13837         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13838         called directly from the interncall.
13839
13840 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13841
13842         * reflection.c (load_public_key): Move loading of the public key
13843         into managed code.
13844
13845         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13846
13847         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13848         fields.
13849
13850         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13851         culture, hash_alg and public_key. Fixes #49555.
13852
13853 2003-10-17  Martin Baulig  <martin@ximian.com>
13854
13855         * class.h (MonoGenericInst): Moved this declaration here and added
13856         `MonoMethod *generic_method'.
13857
13858         * icall.c
13859         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13860         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13861
13862         * metadata.c (mono_metadata_type_equal): Two types of
13863         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13864         index; ie. don't compare the address of the `MonoGenericParam'
13865         structure.
13866         (mono_metadata_load_generic_params): Removed the `MonoMethod
13867         *method' argument.
13868
13869         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13870         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13871
13872         * reflection.c (method_encode_signature): Encode the number of
13873         generic parameters.
13874         (encode_generic_method_sig): New static function.
13875         (method_encode_methodspec): New static function; creates an entry
13876         in the MethodSpec table for a generic method.
13877         (mono_image_get_methodspec_token): New static function.
13878         (mono_image_create_token): Call mono_image_get_methodspec_token()
13879         for generic methods.
13880         (mono_reflection_bind_generic_method_parameters): New public
13881         function.  Instantiates a generic method.
13882
13883 2003-10-16  Martin Baulig  <martin@ximian.com>
13884
13885         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13886         *gen_params' here from MonoMethodHeader.
13887
13888         * metadata.c (mono_metadata_parse_method_signature): If we have
13889         generic parameters, initialize `method->gen_params' and then set
13890         the correct `type->data.generic_param' in all the parameters.
13891
13892 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13893
13894         * threads.c (mono_threads_get_default_stacksize): New function to 
13895         return the default stacksize.
13896
13897         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13898         termination of the finalizer thread, since the previous method had
13899         race conditions. Fixes #49628.
13900
13901         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13902         as for the other managed threads.
13903
13904 2003-10-16  Martin Baulig  <martin@ximian.com>
13905
13906         * class.c (inflate_generic_signature): Copy `generic_param_count'
13907         and `gen_params'.
13908
13909         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13910         New interncall.
13911
13912         * metadata.c (mono_metadata_parse_method_signature): Actually set
13913         the `method->generic_param_count' here.
13914         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13915
13916 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13917
13918         * object.h: Add a new field to TypedRef to simplify the implementation
13919         of the REFANY opcodes in the JIT.
13920
13921         * icall.c: Make use of the new field.
13922
13923         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13924         dynamically.
13925
13926 2003-10-15  Martin Baulig  <martin@ximian.com>
13927
13928         * class.c (mono_class_from_gen_param): Renamed to
13929         mono_class_from_generic_parameter() and moved most of the
13930         functionality from mono_reflection_define_generic_parameter()
13931         here; ie. we create a "real" class here.
13932         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13933         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13934         previously been called.
13935
13936         * class.h (MonoGenericParam): Moved the declaration of this struct
13937         here from metadata.h and added `MonoMethod *method'.
13938
13939         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13940         interncall.
13941
13942         * loader.c (mono_get_method_from_token): If we have any generic
13943         parameters, call mono_metadata_load_generic_params() to read them
13944         from the MONO_TABLE_GENERICPAR.
13945
13946         * metadata.c (mono_metadata_load_generic_params): Added
13947         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13948
13949         * metadata.h (MonoMethodSignature): Replaced
13950         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13951         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13952
13953         * reflection.c (mono_reflection_define_generic_parameter): Moved
13954         most of the functionality into the new
13955         mono_class_from_generic_parameter(); set the `method' field if
13956         we're a method parameter.       
13957
13958 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13959
13960         * marshal.c (emit_struct_conv): if native size is 0
13961         emit no code.
13962
13963 2003-10-14  Martin Baulig  <martin@ximian.com>
13964
13965         * icall.c: The generics API has changed in the spec since it was
13966         added to System.Type; these modifications make it match the spec
13967         again.
13968         (ves_icall_Type_GetGenericParameters): Renamed to
13969         `ves_icall_Type_GetGenericArguments'.
13970         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13971         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13972         `ves_icall_MonoType_get_HasGenericArguments'.
13973         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13974         `ves_icall_MonoType_get_IsGenericParameter'.
13975         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13976         this is no interncall anymore.
13977         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13978         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13979
13980 2003-10-14  Martin Baulig  <martin@ximian.com>
13981
13982         * reflection.c (mono_reflection_bind_generic_parameters): Also
13983         inflate generic methods if we're reading the class from IL.
13984
13985 2003-10-13  Martin Baulig  <martin@ximian.com>
13986
13987         * reflection.c (mono_reflection_define_generic_parameter): This
13988         method isn't called directly from the icall anymore; take a
13989         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13990         method generic parameters.
13991         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13992         (method_builder_encode_signature): Encode generic parameters.
13993         (mono_image_get_method_info): Write generic params to the
13994         MONO_TABLE_GENERICPARAM table.
13995
13996         * reflection.h (MonoReflectionMethodBuilder): Added
13997         `MonoArray *generic_params'.
13998
13999         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14000
14001         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14002         wrapper for mono_reflection_define_generic_parameter().
14003         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14004
14005 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14006
14007         * marshal.h: Add missing function to fix build.
14008
14009         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14010         the SetLastError pinvoke attribute.
14011
14012         * marshal.c (mono_marshal_set_last_error): New helper function called
14013         by the generated code.
14014         
14015         * marshal.c (mono_mb_emit_branch): New helper function.
14016
14017         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14018
14019         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14020         classes as parameters and return values of delegates. Fixes #29256. 
14021
14022 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14023
14024         * locales.c: use gint32 in non HAVE_ICU case
14025
14026 2003-10-11  Martin Baulig  <martin@ximian.com>
14027
14028         * mono-debug.c (mono_debug_add_method): Added a workaround for
14029         bug #48591.
14030
14031 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14032
14033         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14034         delegates passed to native code must use the STDCALL calling 
14035         convention. Fixes #35987.
14036
14037 2003-10-10  Martin Baulig  <martin@ximian.com>
14038
14039         * class.c (inflate_generic_type): If we're inflating for a generic
14040         type instance (and not for a generic method), return
14041         MONO_TYPE_MVAR unchanged.
14042
14043 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14044
14045         * string-icalls.c: Join ignores null strings in the source array.
14046         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14047         * threads.c: GetAvailableTheads is slightly more accurate.
14048
14049 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14050
14051         * threads.h threads.c : add mono_threads_set_default_stacksize
14052         and pass default to CreateThread calls.
14053
14054 2003-10-09  Dick Porter  <dick@ximian.com>
14055
14056         * icall.c:
14057         * locales.h:
14058         * locales.c: Internal calls for constructing CultureInfo and
14059         related objects from libicu (if its available.)
14060
14061 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14062
14063         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14064
14065 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14066
14067         * threadpool.c: added an argument to async_invoke_thread that is the
14068         item to process, pass the MonoAsyncResult to the thread start function
14069         when creating a new thread. This way we don't need to acquire any lock
14070         when we're creating a new thread. Readded a semaphore for faster
14071         response times (instead of that Sleep i added).
14072
14073 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14074
14075         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14076         get daylight change dates better on Windows, fix handling
14077         of platforms without tm_gmtoff.
14078
14079 2003-10-06  Martin Baulig  <martin@ximian.com>
14080
14081         * class.c (inflate_generic_method): Renamed to
14082         mono_class_inflate_generic_method() and made public.
14083         (mono_class_init): Don't inflate the generic methods here.
14084         (mono_class_from_generic): Added `gboolean inflate_methods'
14085         argument.  Inflate the methods here.
14086
14087         * loader.c (mono_method_get_param_names): Ignore instances of
14088         generic types for the moment.
14089
14090         * reflection.c (fixup_method): Added support for inflated methods.
14091         (mono_image_create_token): Use mono_image_get_methodref_token()
14092         for inflated methods.
14093         (mono_custom_attrs_from_param): Ignore instances of generic types
14094         for the moment.
14095         (mono_reflection_bind_generic_parameters): New public function.
14096         Moved all the functionality from
14097         ves_icall_Type_BindGenericParameters() here and added support for
14098         dynamic types.
14099         (mono_reflection_define_generic_parameter): Initialize
14100         `klass->methods' here.
14101
14102         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14103         functionality into mono_reflection_define_generic_parameter().
14104         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14105         TypeBuilder, return that TypeBuilder.
14106
14107 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14108
14109         * appdomain.c: removed mono_delegate_semaphore.
14110
14111         * threadpool.c:
14112         (mono_thread_pool_add): moved hash table creation inside and the thread 
14113         creation outside of the critical region.
14114         (mono_thread_pool_finish): removed obsolete code.
14115         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14116         continue or exit the thread depending on the queue.
14117
14118 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14119
14120         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14121         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14122         handle more bool marshalling options
14123
14124 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14125
14126         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14127         arrays of structs. Also add a more descriptive error message when
14128         a structure member is marshalled as LPArray.
14129
14130 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14131
14132         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14133         marshalling arrays of complex types. Fixes #29098. Also remove an
14134         usused and incomplete function.
14135
14136 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14137
14138         * gc.c: report heap_size - free_bytes as total memory allocated
14139         (bug#49362).
14140
14141 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14142
14143         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14144         fix timezone handling problems on Windows.
14145         
14146         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14147         asserts when the year is outside the range handled by ms the functions.
14148
14149         * class.c (setup_interface_offsets): If the class is an interface,
14150         fill out its interface_offsets slot.
14151
14152 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14153
14154         * threadpool.c: mark threadpool threads as background.
14155
14156 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14157
14158         * decimal.c - define DECINLINE to nothing if not using GCC
14159
14160 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14161
14162         * assembly.c: More refcount fixes.
14163
14164 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14165
14166         * string-icalls.c: if we're not trimming, return the same string.
14167         When not splitting, don't create a new string.
14168
14169 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14170
14171         * image.c:
14172         (mono_image_open): increment the ref_count inside the critical section.
14173
14174 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14175
14176         * image.c (mono_image_open): Fix reference counting bug.
14177
14178 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14179
14180         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14181         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14182         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14183         mono_lookup_pinvoke_call throws.        
14184
14185 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14186
14187         * reflection.c (mono_reflection_parse_type): Fix #49114.
14188
14189         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14190         temporary workaround for cygwin header problem.
14191
14192         * object.c (mono_object_isinst): Synchronize this with the code
14193         generated by the JIT for casts.
14194
14195 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14196
14197         * reflection.c (encode_type): Fix #38332.
14198
14199 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14200
14201         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14202         the original method from the wrapper method.
14203
14204 2003-09-25  Martin Baulig  <martin@ximian.com>
14205
14206         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14207         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14208         (ves_icall_Type_get_IsGenericInstance): New interncall.
14209
14210 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14211
14212         * object.c: fix cast warning in big endian code.
14213
14214 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14215
14216         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14217         
14218 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14219
14220         * assembly.c: don't call check_env from mono_assembly_load. It's
14221         already done once in mono_assemblies_init and may cause headaches when
14222         multiple threads are loading assemblies.
14223
14224 2003-09-19  Martin Baulig  <martin@ximian.com>
14225
14226         * reflection.c (mono_reflection_define_generic_parameter): Don't
14227         allocate `klass->methods', set `klass->flags' to
14228         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14229
14230 2003-09-18  Martin Baulig  <martin@ximian.com>
14231
14232         * class.c (mono_class_init): Don't create `class->methods' if it's
14233         already initialized.
14234
14235         * metadata.c (mono_metadata_load_generic_params): Make this
14236         actually work.
14237
14238         * reflection.c (mono_reflection_define_generic_parameter): Set
14239         parent class and interfaces from the constraints.
14240
14241         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14242         to keep this struct in sync with the declaration in TypeBuilder.cs.
14243
14244 2003-09-17  Martin Baulig  <martin@ximian.com>
14245
14246         * metadata.h (MonoType): Replaced the data's `int type_param'
14247         field with `MonoGenericParam *generic_param'.
14248         (MonoGenericParam): Added `MonoClass *klass'.
14249
14250         * class.c (mono_class_from_gen_param): Removed the
14251         `MonoImage *image' and `int type_num' arguments.
14252
14253         * metadata.c (mono_metadata_parse_generic_param): New static
14254         method; creates a MonoGenericParam which just contains the index.
14255         (do_mono_metadata_parse_type): Call
14256         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14257         MONO_TYPE_MVAR.
14258
14259         * reflection.c (mono_image_typedef_or_ref): Generic type
14260         parameters may be in the same assembly, but never use a typedef
14261         for them.
14262         (mono_reflection_define_generic_parameter): We're now creating a
14263         "real" class for the type parameter; it's now safe to call
14264         mono_class_from_mono_type() on the class'es type, it'll do the
14265         right thing.
14266
14267 2003-09-16  Martin Baulig  <martin@ximian.com>
14268
14269         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14270         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14271         the `symfile' data structure must be fully initialized before it
14272         gets added to the table.
14273
14274 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14275
14276         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14277
14278         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14279         class init trampolines.
14280
14281 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14282
14283         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14284         to the built-in profiler to turn off time and allocation profiling
14285         respectively.
14286
14287 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14288
14289         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14290         g_direct_equal.
14291
14292         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14293         in human readable form.
14294
14295 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14296
14297         * reflection.c icall.c: Fixed warnings.
14298
14299         * image.c (load_class_names): Use a temporary hash table to hold the
14300         namespaces in order to avoid doing many string comparisons.
14301
14302         * image.h: Fix typo.
14303
14304         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14305         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14306         since the NULL case is short-circuited inside g_hash_table_lookup, 
14307         leading to better performance.  
14308
14309         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14310         obtain the first custom attribute for a given index. Depends on the
14311         CustomAttribute table being sorted by the parent field.
14312
14313         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14314         for better performance.
14315
14316 2003-09-07  Martin Baulig  <martin@ximian.com>
14317
14318         * class.c (mono_class_init): If we're a generic instance, inflate
14319         all our methods instead of loading them from the image.
14320         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14321
14322 2003-09-07  Martin Baulig  <martin@ximian.com>
14323
14324         * mono-debug-debugger.c: Added support for constructors.
14325
14326 2003-09-06  Martin Baulig  <martin@ximian.com>
14327
14328         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14329         New interncall.
14330
14331         * reflection.c (mono_reflection_setup_generic_class): Call
14332         ensure_runtime_vtable() to create the vtable.
14333
14334 2003-09-05  Martin Baulig  <martin@ximian.com>
14335
14336         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14337         MONO_TYPE_MVAR.
14338
14339 2003-09-04  Martin Baulig  <martin@ximian.com>
14340
14341         * reflection.c (mono_reflection_define_generic_parameter): Generic
14342         parameters start with zero.
14343
14344 2003-09-04  Martin Baulig  <martin@ximian.com>
14345
14346         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14347
14348         * reflection.h (MonoReflectionGenericParam): New typedef.
14349         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14350         the generic parameters from the managed TypeBuilder.
14351
14352         * reflection.c (mono_reflection_define_generic_parameter): New function.
14353         (mono_reflection_create_runtime_class): Encode generic parameters.
14354         (mono_reflection_setup_generic_class): New function; this is
14355         called after adding adding all generic params to the TypeBuilder.
14356         (encode_type): Added MONO_TYPE_VAR.
14357
14358 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14359
14360         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14361         here from the JIT.
14362
14363         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14364         load hook.
14365
14366 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14367
14368         * reflection.h reflection.c class.h class.c: Delete duplicate 
14369         definition of mono_type_get_name () from reflection.c and export the
14370         one in class.c.
14371
14372         * class.c: Class loading fixes from Bernie Solomon 
14373         (bernard@ugsolutions.com).
14374
14375         * reflection.c: Endianness fixes from Bernie Solomon 
14376         (bernard@ugsolutions.com).
14377         
14378 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14379
14380         * assembly.h assembly.c: Define a file format version for AOT
14381         libraries.
14382         
14383         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14384
14385         * appdomain.h (MonoJitInfo): New field to determine whenever the
14386         code is domain neutral.
14387         
14388 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14389
14390         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14391
14392 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14393
14394         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14395         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14396         Avoid caching the result since strings must be domain specific. Fixes
14397         #48050.
14398
14399 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14400
14401         * marshal.c (mono_marshal_init): Make this callable multiple times
14402         since it is hard to find a correct place to call it.
14403
14404         * object.c (mono_runtime_class_init): Execute static constructors in
14405         the correct appdomain.
14406
14407         * image.c (build_guid_table): Handle the case when multiple images have
14408         the same GUID.
14409
14410 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14411
14412         * icall.c: added a couple of icalls for System.Web.
14413
14414 2003-08-28  Martin Baulig  <martin@ximian.com>
14415
14416         * icall.c (ves_icall_Type_BindGenericParameters): Use
14417         `klass->generic_inst' instead of `&klass->byval_arg' in the
14418         mono_type_get_object() call.  The returned type must be
14419         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14420
14421 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14422
14423         * NOTES: New file.
14424
14425         * object.c (mono_class_proxy_vtable): Make it thread safe.
14426
14427         * pedump.c: Fix warning.
14428
14429         * object.c appdomain.h: Get rid of metadata_section. 
14430         It is no longer needed and it was causing deadlocks with domain->lock.
14431
14432         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14433
14434 2003-08-26  Martin Baulig  <martin@ximian.com>
14435
14436         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14437
14438 2003-08-26  Martin Baulig  <martin@ximian.com>
14439
14440         * pedump.c (main): Call mono_metadata_init(),
14441         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14442         and mono_loader_init().
14443
14444 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14445
14446         * loader.h: Add missing include to fix build.
14447
14448         * image.h: mono_image_load_references is no more.
14449
14450         * assembly.c: Reworked assembly loading to make it really thread safe.
14451         After these changes, the assembly returned by mono_assembly_open is
14452         fully initialized, i.e. all its references assemblies are loaded.
14453
14454         * assembly.c (mono_image_load_references): Renamed to 
14455         mono_assembly_load_references, and made private, since clients no
14456         longer need to call it.
14457
14458         * class.c: Removed calls to mono_assembly_load_references, since it was
14459         a source of deadlocks.
14460
14461         * loader.h loader.c class.h class.c: Protect data structures using a 
14462         new lock, the loader lock.
14463
14464         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14465         GPtrArrays only when needed.
14466
14467         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14468         into empty structures by mcs. Fixes pinvoke7.cs.
14469         
14470         * domain.c (mono_init): Call a new initialization function.
14471
14472         * appdomain.c (mono_runtime_init): Call the new initializer function
14473         of the marshal module.
14474
14475         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14476         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14477
14478         * marshal.h marshal.c: Added locks around the wrapper caches to make
14479         this module thread safe.
14480
14481         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14482         this argument. Fixes pinvoke1.exe.
14483
14484 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14485
14486         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14487         enumeration of values. Removed fields to store remote call output values in
14488         MonoAsyncResult. Not needed any more.
14489         * object.c: Initialize call_type and async_result fields in mono_message_init.
14490         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14491         dispatching the message.
14492         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14493         async call to finish. To do it use a message with EndInvoke call type.
14494
14495 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14496
14497         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14498         determines whenever a method has marshalling info.
14499
14500 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14501
14502         * assembly.c: fix the build on windows.
14503
14504 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14505
14506         * object.cs: Fixed bug #47785.
14507
14508 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14509
14510         * string-icalls.c (StringReplace): If their are no occurances of
14511         the old string found return a reference to the supplied
14512         string. This saves some memory and matches MS behavoir.
14513         
14514 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14515
14516         * socket-io.c: fixed compilation for systems that define AF_INET6
14517         and don't define SOL_IP/SOL_IPV6.
14518
14519 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14520
14521         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14522         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14523
14524         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14525
14526         * domain.c: Make this module thread safe.
14527
14528         * domain.c (mono_init): Call new initialization function.
14529
14530         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14531         reference types too. Fixes #38812.
14532
14533         * image.c (mono_image_init): Fixed warnings.
14534
14535         * class.c (mono_class_from_typeref): Handle assembly load failure
14536         correctly.
14537
14538         * appdomain.c (add_assemblies_to_domain): Handle the case when
14539         the references of an assembly are not yet loaded.
14540
14541         * metadata.c image.c assembly.c: Moved initialization of global
14542         variables to a separate function called at startup since lazy 
14543         initialization of these variables is not thread safe.
14544         
14545         * image.c assembly.c: Made this module thread safe by adding locks in 
14546         the appropriate places.
14547
14548         * domain.c (mono_init): Call the new initialization functions of the
14549         three modules.
14550
14551 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14552
14553         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14554           make a direct call. It is proxy's work to make the call asynchronous.
14555           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14556           the return values.
14557         * object.cs: mono_method_call_message_new(): read AsyncResult and
14558           state object from parameters list, if this info is requested.
14559         * object.h: Added fields to store remote call output values in
14560           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14561
14562 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14563
14564         * object.h: add needed fields to MonoThread.
14565         * threads.c, threads.h: allow registering a function to cleanup data
14566         allocated per thread by the JIT.
14567
14568 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14569
14570         * loader.h: portability fix by Bernie Solomon
14571         * <bernard@ugsolutions.com>.
14572
14573 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14574
14575         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14576         return a MonoArray. This simplifies the code and also ensures that
14577         the cache allways contains an object reference as a value.
14578
14579         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14580         function.
14581
14582 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14583
14584         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14585         fixes a problem with byte ordering when getting the address family for
14586         a socket.
14587
14588 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14589
14590         * .cvsignore: Added monosn.
14591
14592         * reflection.h reflection.c loader.c: Added support for parameter
14593         marshalling to dynamically created types. Fixes #47295.
14594
14595 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14596
14597         * rand.c: remove useless warnings.
14598
14599 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14600
14601         * class.c: implemented ldtoken for methods and fieldrefs.
14602
14603 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14604
14605         * threadpool.c: when mono_async_invoke was called, no one took care of
14606         monitoring the queue. So if the method invoked took some time and we
14607         got new async invoke requests after 500 ms (the thread created waited
14608         that long in WaitForSingleObject), the new async invoke was not called
14609         until the previous one finished.
14610
14611         This is fixed now. Thanks to Totte for helping with it.
14612
14613 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14614
14615         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14616
14617 2003-08-11  Martin Baulig  <martin@ximian.com>
14618
14619         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14620
14621 2003-08-06  Martin Baulig  <martin@ximian.com>
14622
14623         * mono-debug-debugger.c: Added support for static fields,
14624         properties and methods.
14625
14626 2003-08-06  Martin Baulig  <martin@ximian.com>
14627
14628         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14629         make this work for applications with multiple application domains.
14630
14631 2003-08-04  Martin Baulig  <martin@ximian.com>
14632
14633         * mono-debug-debugger.c: Completely reworked the type support; the
14634         most important thing is that we're now just using one single
14635         `MonoType' instance per type.
14636
14637 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14638
14639         * mono-endian.h, mono-endian.c, icall.c: Added icall
14640         ves_icall_System_Double_AssertEndianity to assert double word endianity
14641         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14642
14643 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14644
14645         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14646         support, icalls and fixes.
14647
14648 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14649
14650         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14651         classes that are a punctuation character in .NET is not the same a
14652         g_unichar_ispunct.
14653
14654 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14655
14656         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14657
14658 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14659
14660         * icall.c: Add new MemCopy internalcall.
14661         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14662         Simplified code; It is not necessary to handle all the cases here,
14663         as the C# code takes care of it.  Only handle the case of the name
14664         resource embedded into the assembly.
14665
14666         Changed signature to return the data pointer and the size of the
14667         data. 
14668
14669 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14670
14671         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14672         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14673
14674 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14675
14676         * socket-io.c: ignore EINTR error in select.
14677
14678 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14679
14680         * class.h, class.c: removed unused subclasses field in MonoClass.
14681
14682 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14683
14684         * icall.c: improve fix of get_base_definition(). If the parent class
14685           doesn't have the mehod, look at the parent of the parent.
14686         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14687           to check if a parameter is an in or out parameter
14688           (PARAM_ATTRIBUTE_IN is not set by default).
14689           mono_method_return_message_restore(): Use mono_class_value_size to
14690           get the size of a value type. mono_type_stack_size (parameterType)
14691           does not return the correct value if parameterType is byRef.
14692           mono_load_remote_field(), mono_load_remote_field_new(),
14693           mono_store_remote_field(), mono_store_remote_field_new():
14694           raise exception if the remote call returns an exception.
14695
14696 2003-07-28  Martin Baulig  <martin@ximian.com>
14697
14698         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14699         method.  This is a wrapper around mono_runtime_invoke() which
14700         boxes the instance object if neccessary.
14701
14702 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14703
14704         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14705         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14706
14707 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14708
14709         * icall.c: disable mcs bug workaround.
14710
14711 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14712
14713         * object.c (mono_runtime_class_init): Take the metadata_section
14714         mutex before obtaining the domain mutex.
14715
14716         * appdomain.h: Added definition of metadata_section mutex here. 
14717
14718         * object.c: define metadata_mutex here.
14719
14720 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14721
14722         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14723         fixed.
14724
14725 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14726
14727         * reflection.c: Fix bug #46669
14728
14729 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14730
14731         * exception.c:
14732         * exception.h:
14733         * icall.c:
14734         * object.h: fill in the type name for TypeLoadException.
14735
14736 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14737
14738         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14739         relationship between TypeBuilders while compiling corlib) and bug
14740         45993 (Array types returned from the runtime while compiling
14741         corlib were from the loaded corlib).
14742
14743 2003-07-22  Martin Baulig  <martin@ximian.com>
14744
14745         * mono-debug-debugger.c: Reworked the type support a bit more;
14746         distinguish between types and classes.
14747
14748 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14749
14750         * icall.c: add IsArrayImpl icall.
14751
14752 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14753
14754         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14755         initializing real_size only once. Also fix bug #46602.
14756
14757 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14758
14759         * object.c: Renamed mono_metadata_section to metadata_section.
14760
14761 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14762
14763         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14764           empty array if the type is an array. Fixed.
14765           ves_icall_MonoMethod_get_base_definition: if the base method
14766           is abstract, get the MethodInfo from the list of methods of
14767           the class.
14768         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14769           and it was 1-based. Fixed in mono_param_get_objects.
14770
14771 2003-07-20  Martin Baulig  <martin@ximian.com>
14772
14773         * mono-debug.h: Set version number to 31.
14774         (mono_debug_init): Added `MonoDomain *' argument.
14775
14776         * mono-debug-debugger.c: Reworked the type support; explicitly
14777         tell the debugger about builtin types; pass the `klass' address to
14778         the debugger.
14779
14780 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14781
14782         * image.c: Allow new metadata tables to be loaded without a
14783         warning. Also update the warning message to give the new constant value.
14784                 
14785 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14786
14787         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14788         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14789         array type representation changes.
14790
14791 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14792
14793         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14794         on Environment.Exit () call.
14795
14796 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14797
14798         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14799         requires a matching corlib.
14800
14801 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14802
14803         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14804           Committed again without the CRs.
14805         
14806 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14807
14808         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14809           getting it from the "this" socket instance. Did not work
14810           if the socket is a subclass of Socket.
14811           Also fixed bug #35371.
14812
14813 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14814
14815         * metadata.c: fixed size for TypedByRef.
14816         * loader.c: when searching for a method, consider the vararg amrker.
14817         * unicode.c, decimal.c: constify some arrays.
14818
14819 2003-07-15  Dick Porter  <dick@ximian.com>
14820
14821         * socket-io.c: Fixed compilation for gcc < 3.2.
14822
14823         Fixed compilation for machines that don't have AF_INET6 (thanks to
14824         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14825
14826         Fixed compile warnings.
14827         
14828         Fixed formatting and line endings.
14829
14830 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14831
14832         * socket-io.h:
14833         * socket-io.c: Added IPv6 support.
14834
14835 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14836
14837         * class.c (mono_class_is_assignable_from): New function to implement
14838         the is_assignable_from logic. Used by mono_object_isinst, 
14839         Type::IsAssignableFrom () and the interpreter.
14840
14841         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14842         Object, even interfaces.
14843         
14844         * object.c (mono_object_isinst): Implement in terms of 
14845         is_assignable_from.
14846
14847         * icall.c (ves_icall_type_is_assignable_from): New icall.
14848
14849 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14850
14851         * domain.c (foreach_domain): fix compiler warning.
14852
14853 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14854
14855         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14856         not available on all plattforms
14857
14858 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14859
14860         * image.h image.c: Store the metadata version string in MonoImage.
14861         * icall.c: New icall to retrieve the image version.
14862         * reflection.c (create_dynamic_image): Fill in the image version field
14863         * reflection.c (build_compressed_metadata): Use the image version
14864         from the image structure.
14865
14866 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14867
14868         * appdomain.c: modified comment.
14869         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14870         That will be its last iteration when mono_gc_cleanup is called from
14871         mono_runtime_cleanup and before the domain is unloaded.
14872
14873         Fixes bug #45962.
14874
14875 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14876
14877         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14878         attributes.
14879
14880 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14881
14882         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14883         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14884         Bernie Solomon <bernard@ugsolutions.com>.
14885
14886 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14887
14888         * object.c, object.h: provide mono_object_new_fast() for faster
14889         allocation in some special cases.
14890
14891 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14892
14893         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14894         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14895
14896 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14897
14898         * threadpool.c: fix leaks.
14899
14900 2003-07-01  Dick Porter  <dick@ximian.com>
14901
14902         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14903         using MonoGHashTables.  Fixes threadpool bug posted to list.
14904
14905 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14906
14907         * image.h, image.c: added support to load an assembly from a byte array.
14908         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14909         assembly bundle support.
14910
14911 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14912
14913         * threadpool.c (mono_thread_pool_add): keep a reference to the
14914         AsyncResult to prevent GC
14915
14916 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14917
14918         * class.c: leak fix.
14919
14920 2003-06-25  Dick Porter  <dick@ximian.com>
14921
14922         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14923         for the async object, the WaitHandle object will close the handle.
14924         Fixes bug 45321.
14925
14926 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14927
14928         * class.c: in mono_array_class_get (), lookup from the hash with the
14929         same type we insert: this works around a bug in
14930         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14931         lluis. The real fix will have to wait for after the release.
14932
14933 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14934
14935         * icall.c: fix memory leak when getting type members.
14936
14937 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14938
14939         * reflection.c: added more pubtoken special cases.
14940
14941 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14942
14943         * class.c: handle field offset correctly when class size
14944         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14945
14946 2003-06-20  Martin Baulig  <martin@ximian.com>
14947
14948         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14949         *image' field.
14950
14951 2003-06-20  Martin Baulig  <martin@ximian.com>
14952
14953         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14954
14955 2003-06-20  Martin Baulig  <martin@ximian.com>
14956
14957         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14958         just distinguish between variables in registers and variables at
14959         an offset relative to a register.
14960
14961 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14962
14963         * icall.c: #ifdef out latest changes until mcs is fixed.
14964
14965 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14966
14967         * icall.c: return members in metadata order.
14968
14969 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14970
14971         * icall.c: avoid infinite loop in GetTimeZoneData.
14972
14973 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14974
14975         * icall.c: added Marshal.Prelink/All icalls.
14976
14977 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14978
14979         * object.c, object.h: fix warnings and do some overflow checking
14980         when creating arrays.
14981
14982 2003-06-17  Dick Porter  <dick@ximian.com>
14983
14984         * file-io.h:
14985         * file-io.c: File attributes need to be tweaked slightly when
14986         passed from the managed to the w32 world.
14987
14988 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14989         * profiler.h profiler-private.h profiler.c: Rework last patch
14990         based on suggestion by Paolo.
14991         
14992 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14993
14994         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14995         instruction level coverage data collection.
14996         * profiler.h profiler.c (: Added new callback function which can be
14997         used by the profiler to limit which functions should have coverage
14998         instrumentation.
14999         * profiler.c (mono_profiler_load): Call g_module_build_path to
15000         generate the file name of the profiler library.
15001
15002 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15003
15004         * profiler.c, profiler.h, profiler-private.h: added basic block 
15005         coverage profiling API.
15006
15007 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15008
15009         * reflection.c (mono_reflection_create_runtime_class): Add support
15010         for events in dynamically generated code.
15011
15012         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15013         not allocated.
15014
15015 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15016
15017         * icall.c: when getting timezone info, return reasonable values if we
15018         can't get the actual data.
15019
15020 2003-06-14  Dick Porter  <dick@ximian.com>
15021
15022         * threads.c (start_wrapper): Remove the reference to the thread
15023         object in the TLS data, so the thread object can be finalized.
15024         This won't be reached if the thread threw an uncaught exception,
15025         so those thread handles will stay referenced :-( (This is due to
15026         missing support for scanning thread-specific data in the Boehm GC
15027         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15028
15029 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15030
15031         * reflection.c: ensure streams and tables are first allocated with
15032         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15033
15034 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15035
15036         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15037
15038 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15039
15040         * reflection.c (mono_reflection_create_runtime_class): Add support for
15041         properties to dynamically created classes.
15042         * reflection.c: Fix a few places where non-MonoObjects were inserted
15043         into the tokens hashtable.
15044
15045 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15046
15047         * object.c: some support to handle out of memory exceptions.
15048
15049 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15050
15051         * marshal.c (mono_marshal_get_native_wrapper): support reference
15052         return types
15053
15054 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15055
15056         * object.h, object.c: more portability stuff from Bernie Solomon.
15057         Unexport mono_object_allocate(). Added mono_object_unbox ().
15058         Set exitcode when an unhandled exception is thrown.
15059
15060 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15061
15062         * marshal.c (mono_marshal_get_native_wrapper): use custom
15063         marshaler for return types.
15064
15065 2003-06-10  Dick Porter  <dick@ximian.com>
15066
15067         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15068         ip_mreq is available
15069
15070 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15071
15072         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15073         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15074         by Bernie Solomon <bernard@ugsolutions.com>.
15075
15076 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15077
15078         * gc.c (mono_gc_init): Avoid error message on shutdown when
15079         GC_DONT_GC=1 is used.
15080
15081         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15082         New icall to return the GUID of a module.
15083
15084 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15085
15086         * class.c: ensure instance size always includes the parent's size
15087         even whem class size is set explicitly (fixes bug#44294).
15088
15089 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15090
15091         * profiler.h, profiler.c: made the simple profiler thread-safe,
15092         get more accurate timing info. Allow the loading of an
15093         externally-developed profiler module.
15094
15095 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15096
15097         * marshal.c (mono_marshal_get_native_wrapper): improved
15098         class/byref arguments.
15099         (mono_marshal_get_native_wrapper): better string marshaling support.
15100
15101 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15102
15103         * class.c: ensure .pack and .size are handled correctly and
15104         simplified layout of static fields.
15105
15106 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15107
15108         * appdomain.c
15109         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15110
15111         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15112         current directory (fix bug 44008)
15113
15114 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15115
15116         * marshal.c (mono_marshal_get_native_wrapper): started support for
15117         custom marshalers.
15118         (mono_delegate_to_ftnptr): consider marshalling specifications
15119
15120 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15121
15122         * reflection.c, reflection.h: emit custom marshal info.
15123
15124 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15125
15126         * object.c: free the GError.
15127         * icall.c: added CloseEvent_internal.
15128         * threads.[ch]:
15129         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15130         call.
15131
15132 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15133
15134         * loader.c (mono_method_get_signature): Add support for dynamic
15135         assemblies.
15136
15137 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15138
15139         * reflection.c: fixed bug #43905.
15140
15141 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15142
15143         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15144         handling TypedReference and ArgIterator.
15145         * loader.c, loader.h: added function to get signature at call site.
15146
15147 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15148
15149         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15150         data readonly. Buglets and warning fixes. Some MethodSpec support.
15151
15152 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15153
15154         * class.h, class.c, object.c: remove relative numbering support.
15155
15156 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15157
15158         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15159         free the string, until we get a chance to fix Gtk#
15160
15161 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15162
15163         * marshal.c: revert last patch.
15164
15165 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15166
15167         * icall.c: updates for new mono_class_vtable() not calling
15168         the type constructor anymore.
15169
15170 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15171
15172         * object.h, object.c: separate vtable creation from type
15173         initialization. Make running the .cctor thread safe.
15174
15175 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15176
15177         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15178
15179 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15180
15181         * loader.c (mono_get_method): consider calling convention
15182
15183 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15184
15185         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15186         to return the invisible global type for a module.
15187
15188         * reflection.c (mono_image_build_metadata): Emit global fields too.
15189
15190 2003-05-20  Peter Williams  <peterw@ximian.com>
15191
15192         * loader.c (mono_lookup_internal_call): Add a few newlines.
15193
15194 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15195
15196         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15197         literal strings.
15198
15199         * appdomain.c (set_domain_search_path): Recalculate search path when
15200         AppDomainSetup.PrivateBinPath changes.
15201
15202         * object.c (mono_class_compute_gc_descriptor): It turns out some
15203         parts of the class libs (like System.Thread) holds pointers to
15204         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15205         to treat native int a pointer type here.
15206         
15207 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15208
15209         * appdomain.h, domain.c: add hashtable for jump target resolution.
15210
15211 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15212
15213         * reflection.h reflection.c icall.c: Added new icalls 
15214         GetManifestResourceInfoInternal, GetModulesInternal and support
15215         infrastructure.
15216
15217 2003-05-16  Dick Porter  <dick@ximian.com>
15218
15219         * icall.c:
15220         * file-io.h:
15221         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15222
15223 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15224
15225         * object.c: mono_store_remote_field: little fix to previous patch.
15226
15227 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15228
15229         * class.c: add constructors to array classes.
15230         * icall.c: special case array construction for InternalInvoke (),
15231
15232 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15233
15234         * class.h class.c reflection.c object.c: Added support for field
15235         defaults in dynamically generated classes.
15236
15237 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15238
15239         * reflection.c: properly encode charset for ddlimport.
15240
15241 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15242
15243         * threads.c: allow compiling without GC.
15244
15245 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15246
15247         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15248         handling of thread static data.
15249
15250 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15251
15252         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15253
15254 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15255
15256         * class.c (mono_array_class_get): always set the serializable flags
15257         (mono_array_class_get): always set the SEALED attribute for array types
15258
15259 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15260
15261         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15262         attributes (fix for bug 42021).
15263
15264 2003-05-12  Dick Porter  <dick@ximian.com>
15265
15266         * gc.c: Don't run finalizers when the finalizer thread is
15267         finishing up, because the default domain has already been
15268         destroyed.
15269
15270 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15271
15272         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15273         value is null, we should throw an exception.   This is slightly
15274         different than the other conventions used for the constructor.
15275
15276 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15277
15278         * socket-io.c: fixed windows build.
15279
15280 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15281
15282         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15283
15284 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15285
15286         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15287         compilers.
15288
15289 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15290
15291         * class.c (mono_class_layout_fields): Add experimental GC aware
15292         auto layout facility. Requires class library changes to work correctly.
15293
15294         (mono_class_setup_vtable): Avoid overriding explicit interface
15295         method implementations. Fixes iface3.exe test.
15296
15297         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15298         object reference.
15299         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15300         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15301
15302         * metadata.h: Add new type classification macro which determines
15303         whenever the type holds an object reference.
15304
15305 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15306
15307         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15308
15309 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15310
15311         * gc.c (finalizer_thread): Work around a GC bug.
15312
15313 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15314
15315         * marshal.c (emit_struct_conv): allow unions
15316
15317         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15318
15319 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15320
15321         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15322
15323 2003-05-06  Martin Baulig  <martin@ximian.com>
15324
15325         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15326
15327 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15328
15329         * socket-io.c:
15330         (Select_internal): allow NULLs, don't create arrays if not needed.
15331         Coupled with Socket.cs changes.
15332
15333         * threadpool.c:
15334         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15335         register a finalizer for it that will close the semaphore handle. This
15336         fixes the leak and make Lupus' test run with > 4080 loops.
15337
15338 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15339
15340         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15341         Jerome Laban (bug #42287)
15342
15343 2003-05-02  Martin Baulig  <martin@ximian.com>
15344
15345         * debug-mono-symfile.h
15346         (MonoSymbolFile): Moved declaration into mono-debug.h.
15347         (MonoDebugMethodJitInfo): Likewise.
15348         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15349         argument.
15350         (_mono_debug_address_from_il_offset): Take a
15351         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15352
15353         * mono-debug.h
15354         (MonoDebugDomainData): New struct.
15355         (mono_debug_get_domain_data): New function.
15356         (mono_debug_add_method): Take an additional `MonoDomain *'
15357         argument.
15358         (mono_debug_source_location_from_address): Likewise.
15359         (mono_debug_il_offset_from_address): Likewise.
15360         (mono_debug_address_from_il_offset): Likewise.
15361
15362 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15363
15364         * reflection.c: one more check for null type in custom attrs.
15365
15366 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15367
15368         * reflection.c: avoid warning (comparison is always false due to limited
15369         range of data type).
15370
15371 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15372
15373         * icall.c: throw an exception in Type.GetField if the argument 'name'
15374         is NULL.
15375
15376 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15377
15378         * reflection.c: fixed handling of enums in named arguments to custom
15379         attributes (bug #42123).
15380
15381 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15382
15383         * reflection.c: use the right array element type and handle
15384         a null for a Type argument, too.
15385
15386 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15387
15388         * reflection.c: handle arrays as arguments to custom attributes.
15389
15390 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15391
15392         * reflection.c: handle a string value in a custom attr
15393         ctor that takes an object.
15394
15395 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15396
15397         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15398         (fix bug #42063)
15399
15400 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15401
15402         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15403
15404 2003-04-27  Martin Baulig  <martin@ximian.com>
15405
15406         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15407         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15408         MONO_DEBUGGER_EVENT_BREAKPOINT.
15409         (mono_breakpoint_trampoline_code): Removed.
15410         (mono_debugger_event_handler): The last argument is now a
15411         `guint32'.
15412         (mono_debugger_insert_breakpoint_full): Removed the
15413         `use_trampoline' argument.
15414         (mono_debugger_method_has_breakpoint): Likewise.
15415         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15416         mono_debugger_breakpoint_callback(); take the method and
15417         breakpoint number as arguments.
15418
15419 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15420
15421         * metadata.c: fix off by one when loading parameters attributes.
15422
15423 2003-04-24  Martin Baulig  <martin@ximian.com>
15424
15425         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15426
15427 2003-04-24  Martin Baulig  <martin@ximian.com>
15428
15429         * mono-debug-debugger.c: Moved all code which interacts with the
15430         Mono Debugger here.
15431
15432         * debug-mono-symfile.c: This code now just deals with the symbol
15433         file itself, the debugger code is now in mono-debug-debugger.c.
15434
15435 2003-04-23  Martin Baulig  <martin@ximian.com>
15436
15437         * mono-debug.c (mono_debug_source_location_from_il_offset):
15438         New method; like mono_debug_source_location_from_address(), but
15439         takes an IL offset instead of a machine address.
15440
15441 2003-04-23  Martin Baulig  <martin@ximian.com>
15442
15443         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15444         `line' field; this is now computed by the debugger.
15445
15446 2003-04-23  Martin Baulig  <martin@ximian.com>
15447
15448         * mono-debug.[ch]: New files.  This is the new debugging interface.
15449
15450         * mono-debug-debugger.[ch]: New files.  Moved all code which
15451         interacts with the Mono Debugger here.
15452
15453 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15454
15455         * domain.c (mono_init): initialize mono_defaults.monitor_class
15456
15457 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15458
15459         * reflection.c (method_encode_code): Add a spicy exception to help
15460         future compiler authors.
15461
15462 2003-04-21  Martin Baulig  <martin@ximian.com>
15463
15464         * icall.c
15465         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15466         Make this work with relative pathnames; g_filename_to_uri() needs
15467         an absolute filename.
15468
15469 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15470
15471         * icall.c: Track name changes in Object and ValueType.
15472
15473 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15474
15475         * metadata.c (mono_type_stack_size): size should be a multiple of
15476         sizeof (gpointer)
15477
15478 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15479
15480         * gc.c:
15481         (internal_domain_finalize): moved into mono_domain_finalize. No need
15482         to create another thread because the finalizers will be run in the
15483         finalizer thread.
15484         
15485         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15486         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15487         to be run (MS does this too).
15488
15489 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15490
15491         * object.c (mono_class_compute_gc_descriptor): Update comment.
15492
15493         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15494
15495         * image.h: Add synchronized wrapper cache.
15496
15497         * image.c (do_mono_image_open): Initialize cache.
15498
15499         * reflection.c (create_dynamic_mono_image): Initialize cache.
15500
15501 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15502
15503         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15504         ves_icall_System_Buffer_ByteLengthInternal.
15505
15506 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15507
15508         * reflection.c: setup klass->nested_in earlier. Allow
15509         a dash in the assembly name.
15510
15511 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15512
15513         * metadata.c (mono_type_to_unmanaged): dont access
15514         type->data.klass for MONO_TYPE_OBJECT
15515         (mono_type_to_unmanaged): consider System.Delegate class
15516
15517 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15518
15519         * class.c: just setup supertypes in the proper place instead of
15520         initializing the full element class for arrays.
15521
15522 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15523
15524         * class.c: ensure the element class of arrays is initialized.
15525         Setup the supertype info for array classes, too.
15526
15527 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15528
15529         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15530
15531 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15532
15533         * Makefile.am: re-added -m option when running cygpath. This way,
15534         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15535         separator.
15536         * mono-config.c: same codepath for locating mono config file for WIN32
15537         and the rest.
15538         * assembly.c: if mono_assembly_setrootdir is called, don't override
15539         the value set.
15540
15541 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15542
15543         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15544         MONO_ASSEMBLIES variable.
15545
15546 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15547
15548         * icall.c: added Assembly::GetNamespaces() icall.
15549
15550 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15551
15552         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15553
15554 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15555
15556         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15557         * object.c: fixed bug in the construction of vtable for proxies
15558
15559 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15560
15561         * object.c (mono_array_new): Mark mono_array_new as an icall.
15562
15563 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15564
15565         * class.c: fixed test for public method when overriding interfaces.
15566         Closes bug #40970.
15567
15568 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15569
15570         * appdomain.h, domain.c: added mono_domain_foreach() to
15571         be able to access the currently loaded appdomains.
15572         * object.c: make string interning work across sppdomains.
15573         Mark some functions for use as icalls.
15574
15575 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15576
15577         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15578
15579         * reflection.h reflection.c: Allocate long living data using 
15580         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15581
15582         * reflection.c: Double the allocation size in streams instead of
15583         increasing it, to prevent unneccesary copying on large assemblies.
15584         
15585         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15586         creation if the assembly does not have the Run flag set.
15587
15588 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15589
15590         * class.h: avoid the C++ keywords in header files (Jerome Laban
15591         spotted and fixed this).
15592
15593 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15594
15595         * object.c:
15596         (mono_unhandled_exception): fill in the arguments for the
15597         UnhandledException event. Only trigger that event for the default
15598         domain (as MS does).
15599
15600 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15601
15602         * object.c: Improve typed allocation stuff based on suggestions from
15603         Paolo. Also turn it on if the GC library supports it.
15604
15605 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15606
15607         * object.c object.h class.h: Added experimental typed allocation
15608         facility using the interfaces in gc_gcj.h.
15609
15610         * os/gc_wrapper.h: Added new include files.
15611         
15612 2003-04-03  Martin Baulig  <martin@ximian.com>
15613
15614         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15615         which is not yet enabled by default.
15616
15617         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15618         functions.
15619         (mono_gc_lock, mono_gc_unlock): New static functions.
15620
15621         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15622         functions; stop/start the world for the garbage collector.  This
15623         is using the windows API; we need to complete the SuspendThread()/
15624         ResumeThread() implementation in the io-layer to make this work on Unix.
15625         (mono_gc_push_all_stacks): New public function; tells the garbage
15626         collector about the stack pointers from all managed threads.
15627
15628 2003-04-03  Martin Baulig  <martin@ximian.com>
15629
15630         * object.h (MonoThread): Added `gpointer stack_ptr'.
15631
15632         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15633
15634 2003-04-03  Martin Baulig  <martin@ximian.com>
15635
15636         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15637
15638 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15639
15640         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15641         field.last.
15642
15643 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15644
15645         * loader.c (mono_lookup_internal_call): Report the corlib that is
15646         out of sync.
15647
15648 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15649
15650         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15651         System.DBNull (it's class not valuetype).
15652
15653 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15654
15655         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15656         if the array method was already assigned a token (fixes bug#40646).
15657
15658 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15659
15660         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15661         if no assembly is given.
15662
15663 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15664
15665         * metadata.h: Added the new tables.
15666
15667         * row-indexes.h: Added definitions for new tables.
15668
15669         * metadata.c: Add schemas for new tables, and add support for
15670         computing the sizes of them.
15671
15672         * class.c: Update for handling the new type cases.
15673
15674 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15675
15676         * metadata.h (MONO_TYPE_IS_VOID): new macro
15677
15678 2003-03-31  Martin Baulig  <martin@ximian.com>
15679
15680         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15681
15682         * threads.c (mono_thread_new_init): Call `thread_created' in the
15683         mono_thread_callbacks.
15684
15685 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15686
15687         * loader.h: added marshalbyrefobject_class to mono_defaults
15688         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15689         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15690           generation of output parameters.
15691           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15692         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15693           contextbound and the target object belongs to the context of the caller.
15694         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15695         * object.c: Implemented support for interfaces and abstract classes
15696           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15697           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15698
15699 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15700
15701         * class.h class.c (mono_class_is_subclass_of): New function.
15702         
15703         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15704         routines for most common case (calls from ArrayList::ToArray).
15705
15706         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15707         routine so programs which call Environment::Exit() can be profiled.
15708
15709         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15710         Added MONO_ARCH_SAVE_REGS.
15711
15712         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15713
15714 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15715
15716         * blob.h: Add a couple of new MonoType types definitions.
15717
15718         * tabledefs.h: Add a couple of new call convs.
15719
15720 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15721
15722         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15723         the layout of the class.
15724
15725         * reflection.c (alloc_table): double the size on overflow to avoid
15726         unnecessary copying.
15727
15728         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15729         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15730         null so it can be garbage collected.
15731         
15732 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15733
15734         * reflection.c (mono_reflection_get_type): Return the resolved type
15735         only if it is in the assembly we searched.
15736
15737         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15738
15739         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15740         method.
15741
15742 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15743
15744         * appdomain.c:
15745         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15746         the right one is 'file:///blah', but MS allows it.
15747         * assembly.c:
15748         (mono_assembly_open): allow 'file://blah'
15749
15750         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15751
15752 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15753
15754         * socket-io.c: fixes bug #40310.
15755
15756 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15757
15758         * reflection.c (mono_reflection_parse_type): handle deeply nested
15759         types correctly.
15760
15761         * reflection.c (mono_image_create_token): Use unique token values
15762         since they will be put into a hash table.
15763
15764         * class.c (mono_class_setup_vtable): If a method occurs in more than
15765         one place in the vtable, and it gets overriden, then change the
15766         other occurances too.
15767
15768         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15769         object as return type.
15770
15771 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15772
15773         * icall.c: Deleted "ToString" implementation for double and float
15774         because they are full implemented in managed code.
15775
15776 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15777
15778         * reflection.c, reflection.h: implemented and exported functions
15779         to retrieve info about custom attributes.
15780
15781 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15782
15783         * appdomain.c: moved Uri handling to assembly.c
15784         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15785         work when using a file Uri in *nix and windows.
15786
15787         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15788         GetReferencedAssemblies.
15789
15790 2003-03-18  Dick Porter  <dick@ximian.com>
15791
15792         * icall.c: Rename a couple of internal calls
15793
15794         * threads.c: Set the thread state to Stopped when a thread exits.
15795         Fixes bug 39377.
15796
15797 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15798
15799         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15800         New icall.
15801
15802         * object.c (mono_class_vtable): fix warning.
15803
15804 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15805
15806         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15807
15808         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15809         memory.
15810         (method_encode_clauses): Create exception info structures in the right
15811         order.
15812         (mono_reflection_setup_internal_class): Initialize supertypes field.
15813
15814         * class.c object.c: Handle interfaces which implement other interfaces 
15815         correctly.
15816
15817         * class.h class.c: Move the supertypes array initialization code into 
15818         a separate function so it can be used for dynamic types too. Also call
15819         it earlier, in mono_class_init(), since it can be used before the
15820         type is initialized.
15821
15822 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15823
15824         * Makefile.am:
15825         * assembly.c:
15826         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15827
15828         * appdomain.c:
15829         * appdomain.h:
15830         * marshal.c:
15831         * object.c: remove warnings.
15832
15833 2003-03-13  Martin Baulig  <martin@ximian.com>
15834
15835         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15836         (MonoDebugLexicalBlockEntry): New types.
15837
15838         * debug-mono-symfile.c
15839         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15840
15841 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15842
15843         * process.c: ret can be any non-zero value accroding to MS doc.
15844
15845 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15846
15847         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15848         fixing a warning for a miss-used prototype, would have cause
15849         random memory corruption.
15850
15851 2003-03-07  Martin Baulig  <martin@ximian.com>
15852
15853         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15854         getting really annoying ....
15855
15856 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15857
15858         * reflection.c (fixup_method): added support for array methods.
15859
15860 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15861
15862         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15863         (pointed out by Michael Adams).
15864
15865 2003-03-04  Dick Porter  <dick@ximian.com>
15866
15867         * icall.c: Temporarily reverted the Double and Single ToString()
15868         change, because it broke nunit.
15869
15870 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15871
15872         * object.h, threads.h: make include files compatible with C++
15873         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15874
15875 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15876
15877         * icall.c: Erased ToString helper functions for Double and Single.
15878         Now, that implementations ar all in managed code (Double and Single
15879         Formatters).
15880
15881 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15882
15883         * appdomain.c: Added method for initializing the default context of
15884         a domain. Added internal call for getting the default context.
15885         * appdomain.h: Added context variable in MonoDomain struct.
15886         * domain.c: mono_domain_set also sets the default context of the domain
15887         * icall.c: Mapped internal method InternalGetDefaultContext.
15888         * object.c: mono_object_get_virtual_method returns always a remoting
15889         wrapper if the object is a transparent proxy.
15890         mono_runtime_invoke_array: when creating an object by calling the
15891         constructor, if the created object is a proxy, then the constructor should
15892         be called using the a remoting wrapper.
15893
15894 2003-03-03  Dick Porter  <dick@ximian.com>
15895
15896         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15897         variable so it compiles on solaris.  Problem spotted by
15898         Christopher Taylor <ct@cs.clemson.edu>
15899
15900 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15901
15902         * appdomain.c:
15903         (get_info_from_assembly_name): don't leak value.
15904
15905         * icall.c:
15906         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15907         result.
15908
15909 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15910
15911         * assembly.c: export mono_image_load_references ().
15912         * class.c: handle function pointers. mono_class_from_name() now
15913         supports nested type names directly.
15914
15915 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15916
15917         * reflection.h reflection.c: Encode already created dynamic methods 
15918         and fields correctly as a DEF instead of a REF.
15919
15920         * reflection.c: Get rid of the force_ref argument to 
15921         mono_image_typedef_or_ref since it was wrong in the first place.
15922
15923         * string-icalls.c: add error checking to string constructors according
15924         to the MSDN docs.
15925
15926         * reflection.c: Emit types in the order their TypeBuilders were 
15927         created. Previously, a new table index was assigned to each type before
15928         the tables were emitted. This was wrong because the signature blob
15929         might already refer to a type by its original table index.
15930
15931 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15932
15933         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15934         change.
15935         
15936 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15937
15938         * Makefile.am: make assemblies dir have \ instead of / on windows.
15939
15940 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15941
15942         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15943         iterate over the NESTEDCLASS table using a linear search since the
15944         table is not guaranteed to be sorted by the secondary key.
15945
15946         * class.c (mono_class_create_from_typedef): fixed up call to
15947         mono_metadata_nesting_typedef.
15948         
15949 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15950
15951         * marshal.c (mono_string_to_byvalstr): clear the memory as
15952         suggested by Jerome Laban <jlaban@wanadoo.fr>
15953
15954 2003-02-26  Dick Porter  <dick@ximian.com>
15955
15956         * process.c: Cope with padding in .rsrc blocks
15957
15958 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15959
15960         * metadata.h: reverted the filter_len change, it breaks reflection
15961         
15962 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15963
15964         * metadata.h: added a new field to store the filter_len
15965         
15966
15967 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15968
15969         * reflection.c: handle custom attributes for types and members
15970         created with Reflection.Emit (bug#38422).
15971
15972 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15973
15974         * reflection.c: define RTSpecialName automatically for constructors for
15975         compatibility with MS.NET.
15976
15977         * reflection.c (mono_reflection_create_runtime_class): initialize
15978         nested_in field of dynamically created classes.
15979
15980 2003-02-22  Martin Baulig  <martin@ximian.com>
15981
15982         * debug-mono-symfile.h: Incremented version number.
15983
15984 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15985
15986         * object.h icall.c process.c: fix warnings.
15987
15988 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15989
15990         * appdomain.h appdomain.c:
15991         (mono_domain_try_type_resolve): split the 
15992         name_or_tb argument into a name and a tb argument.
15993         (mono_domain_has_type_resolve): new function to check whenever the
15994         application has registered a TypeResolve event handler.
15995         
15996         * icall.c reflection.h reflection.c: move the type resolve logic into
15997         mono_reflection_get_type () so it will be invoked when 
15998         Assembly::GetType () is called.
15999
16000         * reflection.c:
16001         (mono_reflection_get_type): renamed to get_type_internal.
16002         (mono_reflection_get_type): fixed type name generation so it works 
16003         for nested types too.
16004         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16005         costly type name generation if there is no resolve event handler.
16006
16007 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16008
16009         * class.c, image.c: load exported types from file references.
16010
16011 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16012
16013         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16014           used to cache the managed methods used to create proxies and make 
16015           remote invocation of methods.
16016         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16017           to be remotely created.
16018         * object.c: Modified the method mono_class_vtable(). It now initializes 
16019           the remote flag of the vtable. Modified mono_object_new_specific(), 
16020           so now it checks the remote flag.
16021         * icall.c: Added a couple of internal methods, one for enabling instance 
16022           creation interception for a type, and one for creating objects bypassing
16023           the remote check.
16024
16025 2003-02-18  Martin Baulig  <martin@ximian.com>
16026
16027         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16028         New interncall to get a method's metadata token.
16029
16030         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16031         New interncall for the debugger.
16032
16033 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16034
16035         * class.c (mono_class_setup_vtable): allocate supertype array
16036
16037 2003-02-18  Martin Baulig  <martin@ximian.com>
16038
16039         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16040
16041 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16042
16043         * reflection.c:
16044         (assembly_name_to_aname): jump over unknown properties (i've found
16045         something like: 'type, assembly, version=xxx, custom=null, public...',
16046         so now will ignore custom=null and still get the rest of the values).
16047
16048 2003-02-17  Dick Porter  <dick@ximian.com>
16049
16050         * threads.c: Have Thread.Start() wait for a semaphore to signal
16051         that the thread has set up all its local data.  This fixes bug
16052         34323, where Abort() raced the new thread's TLS data.
16053
16054         Also removes the handle_store() call from start_wrapper, because
16055         threads are now always created suspended and there is no longer a
16056         race between the parent and child threads to store the info.
16057
16058 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16059
16060         * image.c: explain the #- heap issue in a message, hopefully
16061         avoiding FAQs on mono-list.
16062
16063 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16064
16065         * icall.c:
16066         (GetEntryAssembly): if the domain has not invoked
16067         AppDomain.ExecuteAssembly yet, return the assembly of the default
16068         AppDomain.
16069
16070 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16071
16072         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16073
16074 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16075
16076         * metadata.c, reflection.c: simple speedup to type hash
16077         and equals code.
16078
16079 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16080
16081         * image.c, image.h, class.c, assembly.c: move module loading
16082         to MonoImage. When loading metadata, consider alignemnet from
16083         the start of metadata, not from the metadata address in memory.
16084
16085 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16086
16087         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16088         AssemblyBuilder objects. Factored out custom attribute creation into
16089         a separate function.
16090         (create_custom_attr): new function to create custom attributes.
16091
16092 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16093
16094         * Makefile.am: Got tired of typing the full pathname to pedump.
16095         Until there is another option, am installing this.
16096
16097 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16098
16099         * class.c (class_compute_field_layout): always set field->parent 
16100         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16101
16102 2003-02-11  Dick Porter  <dick@ximian.com>
16103
16104         * threads-types.h:
16105         * monitor.c: Rewrote Monitor, making lock much faster and
16106         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16107         creates them as needed.
16108
16109         * exception.c: Added SynchronizationLockException
16110
16111         * threads.c: Deleted old Monitor implementation.  The new one is
16112         in a new file.
16113
16114 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16115
16116         * class.c: handled TypedReference type code. Set the correct size for
16117         class data. Setup interface_offsets for interface classes, too.
16118
16119 2003-02-09  Martin Baulig  <martin@ximian.com>
16120
16121         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16122
16123 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16124
16125         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16126         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16127         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16128         * verify.c: check for code that runs after the end of the method.
16129
16130 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16131
16132         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16133         "System.Math::Round2".
16134         * sysmath.h: Added Floor, Round and Round2 definitions.
16135         * sysmath.c: Modified certain functions that were not 100% compliant
16136         with MS.NET (math precision) and added the implementation of Floor,
16137         Round and Round2.
16138
16139 2003-02-07  Martin Baulig  <martin@ximian.com>
16140
16141         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16142
16143 2003-02-07  Martin Baulig  <martin@ximian.com>
16144
16145         * debug-mono-symfile.c: Reflected latest symwriter changes.
16146         (mono_debug_create_mono_symbol_file): Removed.
16147         (mono_debug_open_mono_symbol_file): Take an argument which
16148         specifies whether to create a dynamic symbol file.
16149
16150 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16151
16152         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16153
16154 2003-02-05  Martin Baulig  <martin@ximian.com>
16155
16156         * reflection.c (mono_image_build_metadata): Make this public,
16157         protect it against being called multiple times, don't create
16158         resources and don't build the compressed metadata here.
16159         (mono_image_create_pefile): Do this here.
16160
16161         * icall.c
16162         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16163
16164 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16165
16166         * socket-io.c: fixed bug #36322.
16167
16168 2003-02-06  Piers Haken <piersh@friskit.com>
16169
16170         * appdomain.[ch]:
16171         * class.h:
16172         * debug-mono-symfile.c:
16173         * icall.c:
16174         * loader.c:
16175         * mono-config.c:
16176         * monosn.c:
16177         * reflection.c:
16178         * socket-io.c: warning cleanups
16179
16180 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16181
16182         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16183         function. works like remoting invoke, but does a check for the Proxy first.
16184
16185 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16186
16187         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16188
16189 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16190
16191         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16192         array of pointers.
16193         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16194         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16195
16196         * object.c (mono_store_remote_field_new): used by the new jit
16197         instead of mono_store_remote_field
16198         (mono_load_remote_field_new): used by the new jit
16199         instead of mono_load_remote_field
16200
16201 2003-02-05  Patrik Torstensson
16202
16203         * appdomain.c: changed unload to take the domain id instead
16204         of domain
16205         
16206         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16207
16208
16209 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16210
16211         * appdomain.c: don't look for assemblies in ApplicationBase if
16212         PrivateBinPathProbe is set.
16213
16214 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16215
16216         * object.c: make the first argument in main_args contain the absolute
16217         path to the assembly. Fixes bug #37511.
16218
16219 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16220
16221         * icall.c: get correct UTC offset for countries not using daylight
16222         time saving. Fixes bug #30030.
16223
16224 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16225
16226         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16227         and 1 are the family).
16228
16229 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16230
16231         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16232
16233         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16234
16235 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16236
16237         * reflection.c: added support for SignatureHelper tokens, which is
16238         needed by the Calli opcode.
16239
16240         * reflection.h: track changes to SignatureHelper class.
16241
16242         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16243
16244 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16245
16246         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16247
16248 2003-02-03  Patrik Torstensson
16249         * appdomain.[c|h], domain.c : 
16250          - Added support for getting a domain via domain id
16251          - Support for setting and getting domain from System.AppDomain 
16252            (used in cross appdomain channel)
16253          - Added support for get/set for a MonoAppContext on a thread 
16254            (Context class in System.Runtime.Remoting.Contexts),
16255          - Removed hack in Get/SetData and ExecuteAssembly.
16256         
16257         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16258         the managed world to get control when a proxy is created.
16259
16260         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16261         
16262 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16263
16264         * icall.c
16265         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16266         Populate the codebase field as well.
16267
16268 2003-02-02  Martin Baulig  <martin@ximian.com>
16269
16270         * debug-mono-symfile.c
16271         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16272         (mono_debug_symfile_add_method): Allow interncalls.
16273
16274 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16275
16276         * icall.c: throw parse exception if strtod fails or the string is empty.
16277
16278 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16279
16280         * marshal.c: handle object type separately from defined
16281         class types.
16282
16283 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16284
16285         * marshal.c: handle NATIVE_LPSTR for strings when it's
16286         explicitly specified.
16287
16288 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16289
16290         * reflection.c, reflection.h, icall.c: setup the reflection
16291         handle cache for ModuleBuilders and AssemblyBuilders.
16292
16293 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16294
16295         * reflection.c (reflection_methodbuilder_to_mono_method): set
16296         pinvoke flag
16297
16298 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16299
16300         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16301
16302 2003-01-29  Dick Porter  <dick@ximian.com>
16303
16304         * threads.c: No need for the fake_thread kludge now that Thread
16305         doesn't run a class constructor
16306         
16307 2003-01-29  Dick Porter  <dick@ximian.com>
16308
16309         * threads.c: Use g_direct_hash instead of the rather bogus
16310         g_int_hash
16311
16312 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16313
16314         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16315         (fix pinvoke12.exe)
16316         (mono_marshal_get_struct_to_ptr): generate valid IL code
16317         (mono_marshal_get_ptr_to_struct): generate valid IL code
16318         (*): correctly set sig->pinvoke, we need to memdup the signature
16319         to do that
16320
16321 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16322
16323         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16324         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16325
16326 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16327
16328         * profiler.c: provide more callers information.
16329
16330 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16331
16332         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16333
16334         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16335
16336         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16337
16338 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16339
16340         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16341         exception instead of going into an infinite loop on dates which it 
16342         can't yet handle.
16343
16344         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16345         out-of-range exception if needed.
16346
16347         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16348         an implementation for an interface method and to override an inherited
16349         method at the same time. 
16350         Imagine a scenario when a virtual method is used to override a
16351         virtual abstract method in a parent class, and this same method 
16352         provides an implementation for an method inherited from an interface. 
16353         In this case, the interface resolution code will set im->slot, which 
16354         means that the virtual method override pass will skip this method 
16355         which means a pointer to the abstract method inherited from the parent
16356         will remain in the vtable of this non-abstract class.
16357
16358         * class.c: (mono_class_setup_vtable): continue search for a real 
16359         method if only an abstract method is found.     
16360
16361 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16362
16363         * reflection.c: add size to encoding for ByValStr and ByValArray
16364         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16365
16366 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16367
16368         * class.c (mono_class_setup_vtable): pass the override info as an
16369         argument.
16370
16371         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16372         correctly.
16373         
16374         * reflection.c (ensure_runtime_vtable); add support for method 
16375         overrides.
16376         
16377 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16378
16379         * reflection.c (resolution_scope_from_image): Hack to work to work with
16380         dynamic assemblies.
16381
16382         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16383         added a 'force_ref' argument to force this function to allways return 
16384         a TypeRef. This is needed by mono_image_get_memberref_token ().
16385         
16386 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16387
16388         * reflection.c (mono_image_get_type_info): interfaces really don't have
16389         a parent.
16390
16391         * reflection.c (mono_image_basic_init): fill out missing fields of
16392         image structure.
16393
16394         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16395         dynamic assemblies. This is required so dynamic assemblies show up in
16396         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16397         Type::GetType() etc. This is consistent with MS behaviour.
16398
16399         * image.c image.h reflection.c: add newly created classes to the name 
16400         cache so mono_class_get () will find them.      
16401
16402 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16403
16404         First part of changes to get IKVM.NET running under mono.
16405         
16406         * appdomain.h, appdomain.c: added new function 
16407         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16408         This function will call AppDomain::DoTypeResolve to do the actual work.
16409
16410         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16411         moved existing code dealing with dynamic tokens to a new function 
16412         called mono_reflection_lookup_dynamic_token (). This function will 
16413         raise TypeResolve events when appropriate. Since reflection.c is not 
16414         part of libmetadata, a new hook function called 
16415         mono_lookup_dynamic_token() is added to class.c which will call this.
16416
16417         * assembly.h assembly.c: make the invoke_load_hook function public,
16418         so it can be called for dynamic assemblies.
16419
16420         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16421
16422         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16423         type isn't found.
16424
16425         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16426         MonoGHashTable, since it contains pointers to objects which the GC 
16427         needs to track.
16428
16429         * assembly.c (search_loaded): remove unused variable.
16430         
16431 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16432
16433         * object.c: fixed issue exposed by gcc-generated IL programs
16434         that use RVA data for pointers.
16435
16436 2003-01-25  Martin Baulig  <martin@ximian.com>
16437
16438         * threads.c (start_wrapper): Moved the initialization of
16439         `start_func' above the mono_new_thread_init() call to which we
16440         pass it as argument.
16441
16442 2003-01-24  Martin Baulig  <martin@ximian.com>
16443
16444         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16445         the MonoThread pointer.
16446
16447 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16448
16449         * icall.c: Rename `PowImpl' to Pow.
16450
16451 2003-01-23  Dick Porter  <dick@ximian.com>
16452
16453         * threads.c (start_wrapper): Create a Thread object if needed, so
16454         the Main() thread can do the class initialisation in a subthread
16455         that has been set up to allow managed code execution.
16456
16457         Pass the thread ID instead of the MonoThread pointer to the thread
16458         start and attach callbacks.  This change is required, because the
16459         jit thread start callback must be called _before_ the Thread
16460         object can be created.
16461         
16462         (mono_thread_init): Removed much object creation code that is no
16463         longer needed.  No managed code is called from here now.
16464
16465         * object.c (mono_runtime_exec_managed_code): Create a subthread
16466         for Main, and call back to the runtime to use it.
16467         Set the exit code when Main exits.
16468
16469         * gc.c: Make sure domain finalisation happens in a subthread.
16470         Re-enable threaded GC, fixing bug 31333 (again).
16471
16472         * environment.c: System.Environment internall calls (so far just
16473         ExitCode is here, the others are still in icall.c)
16474
16475         * appdomain.c (mono_runtime_cleanup): All threads running managed
16476         code should have finished before mono_runtime_cleanup() is
16477         reached, so no need to clean up threads.
16478
16479 2003-01-22  Martin Baulig  <martin@ximian.com>
16480
16481         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16482         `gpointer func' arguments.      
16483         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16484         but added `MonoThread *thread' argument.
16485         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16486
16487         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16488         and pass it to the mono_thread_start_cb callback.
16489         (mono_install_thread_callbacks): New public function to install a
16490         set of callbacks which are set by the debugger.
16491         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16492
16493 2003-01-22  Martin Baulig  <martin@ximian.com>
16494
16495         * Makefile.am: Install debug-mono-symfile.h.
16496
16497 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16498
16499         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16500
16501 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16502
16503         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16504         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16505         (mono_array_class_get): correctly set access levels of arrays
16506
16507 2003-01-20      Patrik Torstensson
16508         * image.h (MonoAssemblyName): changed major, minor, build, revision
16509         from signed to unsigned.
16510
16511 2003-01-20  sean kasun <skasun@azstarnet.com>
16512
16513         * reflection.c (load_cattr_value): Now this handles
16514         MONO_TYPE_SZARRAY.  Fixes bug #35629
16515
16516 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16517
16518         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16519         integer value
16520
16521 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16522
16523         * decimal.c: fixed bug #26056.
16524
16525 2003-01-17  Martin Baulig  <martin@ximian.com>
16526
16527         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16528
16529 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16530
16531         * exception.[ch]:
16532         (mono_get_exception_type_initialization): new function.
16533
16534         * object.c: throw a TypeInitializationException when an exception is
16535         thrown invoking the class constructor.
16536
16537 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16538
16539         * reflection.c: fixed attribute reading.
16540
16541 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16542
16543         * icall.c:
16544         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16545         provided, look for the type in the calling assembly and then in
16546         mscorlib; if the assembly name is provided, only try that one.
16547
16548 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16549
16550         * object.c: register the vtable before there is a chance it's
16551         queried again recursively.
16552
16553 2003-01-13  Duncan Mak  <duncan@ximian.com>
16554
16555         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16556         gc-internal.h. 
16557         
16558 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16559
16560         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16561
16562 2003-01-11  Martin Baulig  <martin@ximian.com>
16563
16564         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16565         this to 20 for the release.
16566
16567 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16568
16569         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16570
16571         * loader.c (mono_method_get_marshal_info): bug fix
16572
16573         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16574         structures with explicit layout
16575
16576 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16577
16578         * profiler.c: made the output more readable (and sorted). 
16579         Added caller information for the allocation profiler.
16580
16581 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16582
16583         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16584
16585 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16586
16587         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16588         to get value types.
16589         
16590 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16591
16592         * object.c, profiler.h, profiler.c, profiler-private.h:
16593         Added object allocation profiler.
16594
16595 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16596
16597         * reflection.h, reflection.c: handle global methods.
16598         Compress blob entries.
16599
16600 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16601
16602         * marshal.c: fix compilation.
16603
16604 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16605
16606         * loader.c (mono_method_get_marshal_info): impl.
16607
16608         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16609
16610 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16611
16612         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16613         for reference types.
16614
16615 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16616
16617         * loader.c: fixed off by one error in loaded parameter names.
16618
16619 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16620
16621         * marshal.c (mono_marshal_get_icall_wrapper): like
16622         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16623         instead of a MonoMethod.
16624
16625 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16626
16627         * decimal.c: fixed bug #36537.
16628
16629 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16630
16631         * marshal.c: throw a missing method exception if a
16632         P/Invoke method is not found.
16633
16634 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16635
16636         * icall.c: allow a null this for constructors.
16637
16638 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16639
16640         * icall.c: raise the proper exceptions if the arguments to the
16641         internal Invoke are incorrect.
16642
16643 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16644
16645         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16646
16647 2003-01-03  Martin Baulig  <martin@ximian.com>
16648
16649         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16650
16651 2002-12-31  Martin Baulig  <martin@ximian.com>
16652
16653         * debug-mono-symfile.c: Completely rewrote the type section.
16654         Instead of using individual malloc()ed fields, we use one big
16655         continuous memory area and offsets into this area.
16656         See the comments in the source code for details.
16657
16658 2002-12-30  Martin Baulig  <martin@ximian.com>
16659
16660         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16661
16662 2002-12-30  Martin Baulig  <martin@ximian.com>
16663
16664         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16665         line number table in this data blob instead of using an external
16666         pointer.
16667
16668 2002-12-28  Martin Baulig  <martin@ximian.com>
16669
16670         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16671
16672 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16673
16674         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16675         as a boxed return type.
16676
16677 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16678
16679         * appdomain.c
16680         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16681         g_build_filename to properly get separators on the filename created.
16682
16683         * object.h: Small change, introduce MonoMarshalByRefObject to
16684         track the layout of that structure in the C# universe as we make
16685         changes there.
16686
16687 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16688
16689         * object.c: removed assert to allow static fields on interfaces.
16690         * loader.c: a TypeSpec may be used for any type, not just arrays.
16691
16692 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16693
16694         * class.c, class.h: added mono_class_array_element_size ().
16695         Ignore static methods in interfaces.
16696
16697 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16698
16699         * threads.c: fixed the build under cygwin.
16700
16701 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16702
16703         * reflection.c: handle nullref constants. Allocate keys for
16704         reflection handles with the GC.
16705
16706 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16707
16708         * threads.c, threads.h: added mono_thread_get_abort_signal()
16709         to get a suitable signal for thread abort.
16710
16711 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16712
16713         * metadata.c: fix handling of ExportedType table.
16714
16715 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16716
16717         * icall.c: added WriteWindowsDebugString internal call.
16718
16719 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16720
16721         * reflection.h: added fields to match C# implementation.
16722
16723 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16724
16725         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16726
16727 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16728
16729         * gc.h, gc-internal.h: Rename header for GC internal calls to
16730         gc-internal.h from gc.h as to not clash with Boehm GC having its
16731         header installed as <gc.h> in outside include paths.
16732         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16733         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16734
16735 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16736
16737         * icall.c: assign minor, build and revision in FillName.
16738
16739 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16740
16741         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16742         Added support for running code generated by Reflection.Emit.
16743
16744 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16745
16746         * appdomain.c: check for NULL argument in LoadFrom.
16747
16748 2002-12-10  Dick Porter  <dick@ximian.com>
16749
16750         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16751
16752 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16753
16754         * appdomain.c: fix buglet when building exe file name.  Handle full
16755         assembly name (needed after latest changes to AssemblyName).
16756         * image.c:
16757         (mono_image_close): free some hashtables.
16758
16759 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16760
16761         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16762         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16763         on some systems (redhat 7.3) 
16764
16765 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16766
16767         * threads.c: delete the critical section of a sync block,
16768         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16769
16770 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16771
16772         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16773
16774 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16775
16776         * appdomain.[ch]: handle the assembly preload event to try loading the
16777         assemblies using the paths we have in the current domain.
16778
16779         * assembly.[ch]: created an assembly preload hook that is called to try
16780         loading the assembly by other means that the ones provided here.
16781
16782         * domain.c: initialize the domain search path.
16783
16784         From now on, assemblies (TODO: except corlib and System) are loaded
16785         according to these rules when using mono_assembly_load ():
16786
16787                 1. It tries to load the assembly from the ApplicationBase
16788                 of the current domain appending .dll and .exe (TODO: have to
16789                 try loading from name/name.dll and name/name.exe).
16790
16791                 2. It tries the search path specified in PrivateBinPath for the
16792                 current domain (if any).
16793
16794                 3. Previous behavior.
16795
16796 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16797
16798         * icall.c: implemented GetInterfaceMap() related icall.
16799         * domain.c, loader.h: load MethodInfo in mono_defaults.
16800
16801 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16802
16803         * gc.c: disable the finalizer thread for now, untill all the issues
16804         with it are resolved.
16805
16806 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16807
16808         * string-icalls.c: handle embedded nulls in string ctor when the
16809         length is specified.
16810
16811 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16812
16813         * class.c: look for explicit interface implementation in parent
16814         classes, too.
16815
16816 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16817
16818         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16819
16820 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16821
16822         * gc.c: protect handles with a critical section.
16823
16824 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16825
16826         * icall.c:
16827         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16828         parameters. If no assembly specified, try getting the type from all
16829         the assemblies in the current domain, else, load the assembly and get
16830         the type from it.
16831
16832 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16833
16834         * marshal.c: applied patch from Aleksey Demakov that fixes
16835         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16836
16837 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16838
16839         * icall.c: fixed get_location.
16840
16841 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16842
16843         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16844         declarations to make it work with older gcc. 
16845
16846         * loader.c (mono_get_method): set signature->pinvoke for native calls
16847
16848 2002-11-20  Dick Porter  <dick@ximian.com>
16849
16850         * threads.c (mono_thread_init): Set the main thread's handle
16851
16852 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16853
16854         * gc.c: allow compilation without GC support. Changed to match the
16855         mono coding style.
16856
16857 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16858
16859         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16860
16861 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16862
16863         * reflection.c: set a public key token on the core assemblies.
16864
16865 2002-11-18  Dick Porter  <dick@ximian.com>
16866
16867         * threads.c: Split out some thread initialisation so that other
16868         files can set the start callback function.
16869
16870         * gc.c: Run finalisers in a separate thread, to avoid stack
16871         overflow.  Fixes bug 31333.
16872
16873         * appdomain.c: Set up GC finalisation thread.
16874
16875         * reflection.c: 
16876         * object.c: 
16877         * domain.c: Use gc.h macros for GC_malloc
16878         
16879 2002-11-15  Dick Porter  <dick@ximian.com>
16880
16881         * threadpool.c: 
16882         * threads.c:
16883         * appdomain.c: Removed mono_runtime_init_with_attach(),
16884         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16885         merging the extra parameter with the existing function.  Removed
16886         unneeded code in mono_thread_attach().
16887
16888 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16889
16890         * image.c (mono_image_loaded_by_guid): a method to get loaded
16891         images by guid. 
16892         (load_metadata_ptrs): we store the guid as string.
16893
16894 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16895
16896         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16897
16898         * metadata.c (mono_guid_to_string): imported method form Zoltan
16899         Varga (slightly modified)
16900
16901         * assembly.c (mono_assembly_open): load precompiled code
16902
16903         * loader.h (MonoMethod): we store the method token for use in the
16904         aot compiler. 
16905
16906 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16907
16908         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16909         the hook function called when an assembly is loaded.
16910         
16911         * domain.c: Modified file.
16912         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16913
16914         Fixes bug #33196.
16915
16916 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16917
16918         * reflection.c: Map PEFileKind to the value expected by the WinNT
16919         image loader. 
16920
16921 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16922
16923         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16924         Read until the buffer is filled completely.
16925
16926 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16927
16928         * icall.c: implemented MonoType.InternalGetEvent ().
16929
16930 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16931
16932         * appdomain.c: implemented InitAppDomainSetup. Delayed
16933         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16934         the entry_assembly.
16935
16936         * assembly.c: base_dir is now an absolute path ending with
16937         G_DIR_SEPARATOR.
16938
16939         * icall.c: modified get_location according to the above changes.
16940
16941         * object.c: init AppDomain.SetupInformation for the default domain after
16942         we have the entry assembly.
16943
16944         * domain.c: when unloading a domain, setup = NULL.
16945
16946 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16947
16948         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16949
16950 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16951
16952         * object.h, object.c: introduced mono_object_get_virtual_method ()
16953         to lookup the method invoked on an object when a callvirt is done on
16954         a method.
16955         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16956
16957 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16958
16959         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16960         current domain when loaded an assembly and failed to load it.
16961
16962         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16963
16964 2002-10-31  Dick Porter  <dick@ximian.com>
16965
16966         * icall.c: 
16967         * file-io.h: 
16968         * file-io.c: Return the error status in a parameter, as the
16969         GetLastError() value has long since been blown away if we try and
16970         look it up in a subsequent internal call invocation.  Delete the
16971         GetLastError() internal call, because it's useless.
16972
16973 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16974
16975         * class.[ch]: added cast_class to fix bug 29517
16976
16977 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16978
16979         * marshal.c: create valid IL code in the filter clause:
16980         the new JIT is less forgiving:-)
16981
16982 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16983
16984         * icall.c: removed get_property internal call.
16985
16986 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16987
16988         * appdomain.h domain.c: Added an ID to appdomains.
16989         
16990         * threads.c threads.h icall.c: Implement icall
16991         Thread:GetDomainID(), and remove unused icall 
16992         CurrentThreadDomain_internal.
16993
16994 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16995
16996         * icall.c: Don't recurse through the base types in GetConstructor.
16997         Fixes bug #32063. 
16998
16999 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17000
17001         * mempool.h, mempool.c: added mono_mempool_empty() and
17002         mono_mempool_stats().
17003
17004 2002-10-23  Dick Porter  <dick@ximian.com>
17005
17006         * file-io.c: 
17007         * file-io.h: 
17008         * icall.c: Added MonoIO.GetFileType internal call
17009
17010 2002-10-17  Dick Porter  <dick@ximian.com>
17011
17012         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17013         delegate semaphore before waiting for all threads to finish,
17014         because new threads can also call async delegates.  Fixes bug
17015         32004.
17016
17017         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17018         of 3 seconds, in case another async job is queued.  (This part is
17019         needed because the bug fix reintroduced the 3s exit lag.)  This
17020         makes the mono_runtime_shutdown flag superfluous.
17021
17022 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17023
17024         * reflection.c: include ehader size in method section headers.
17025         Really check for suplicated modules entries.
17026
17027 2002-10-17  Martin Baulig  <martin@gnome.org>
17028
17029         * debug-mono-symfile.c: Added back support for locals.
17030
17031 2002-10-14  Martin Baulig  <martin@gnome.org>
17032
17033         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17034         MONO_TYPE_VOID.
17035
17036 2002-10-14  Martin Baulig  <martin@gnome.org>
17037
17038         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17039         mono_class_get() instead of looking in the class cache. 
17040
17041 2002-10-13  Martin Baulig  <martin@gnome.org>
17042
17043         * debug-mono-symfile.c: Set version number to 28, include the
17044         signature in method names.
17045
17046 2002-10-13  Martin Baulig  <martin@gnome.org>
17047
17048         * debug-mono-symfile.h: Set version number to 27.
17049
17050 2002-10-11  Martin Baulig  <martin@gnome.org>
17051
17052         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17053
17054 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17055
17056         * metadata.c, metadata.h: added helper function to allocate signatures.
17057
17058 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17059
17060         * icall.c: added internal call to get the location of machine.config.
17061
17062 2002-10-08  Martin Baulig  <martin@gnome.org>
17063
17064         * debug-mono-symfile.c: Ignore classes with a pending init for the
17065         moment.
17066
17067 2002-10-03  Dick Porter  <dick@ximian.com>
17068
17069         * threads.c: Freebsd pthread_t is a pointer
17070
17071 2002-10-03  Dick Porter  <dick@ximian.com>
17072
17073         * socket-io.c: Implemented GetHostName_internal
17074
17075 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17076
17077         * mono-config.c:
17078         (mono_config_parse_file): don't leak the text.
17079
17080 2002-10-02  Martin Baulig  <martin@gnome.org>
17081
17082         * debug-mono-symfile.c: Added support for methods.
17083
17084 2002-10-01  Martin Baulig  <martin@gnome.org>
17085
17086         * debug-mono-symfile.c: Don't emit methods and line numbers for
17087         the dynamic symbol file, just write the type table.  We can easily
17088         have an external helper program which creates a symbol file for an
17089         IL file.        
17090
17091 2002-10-01  Dick Porter  <dick@ximian.com>
17092
17093         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17094         Only add the handle to the cleanup array when we're about to
17095         launch the thread.  Bug 31425 deadlocked when the test was run on
17096         mono under w32.
17097
17098 2002-10-01  Martin Baulig  <martin@gnome.org>
17099
17100         * debug-mono-symfile.c: Added support for properties.
17101
17102 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17103
17104         * reflection.c: unaligned store fix from Mark Crichton
17105         <crichton@gimp.org>.
17106
17107 2002-09-27  Martin Baulig  <martin@gnome.org>
17108
17109         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17110         New interncall.
17111
17112 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17113
17114         * assembly.h, assembly.c: use a sane API to hook into the assembly
17115         loading process instead of a useless special-purpouse hack
17116         (ngen needs a hook, too, for example).
17117
17118 2002-09-27  Dick Porter  <dick@ximian.com>
17119
17120         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17121         io-layer can set up some process handle info.  Not needed on w32,
17122         but doesn't hurt either.
17123
17124         * process.c: Pass the program name in the second parameter to
17125         CreateProcess, so the path is searched.  Include the working
17126         directory. Implemented process name, process enumeration, and some
17127         process detail internal calls.
17128         
17129         * icall.c: Added internal calls for process lookup, and some
17130         process details
17131
17132 2002-09-26  Martin Baulig  <martin@gnome.org>
17133
17134         * assembly.c (mono_install_open_assembly_hook): New global
17135         function to install a function to be invoked each time a new
17136         assembly is loaded.
17137         (mono_assembly_open): Run this callback function if set.
17138
17139         * debug-mono-symfile.c: Put back line numbers for the dynamic
17140         symbol file and also record the .il file as source file.  This
17141         allows us to install the temporary symbol file as `file.dbg' just
17142         like a compiler-generated one.
17143
17144 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17145
17146         * Corrected typo in gc.c (BOHEM vs BOEHM).
17147
17148 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17149
17150         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17151         GetProperties. Also avoid calling g_slist_length in GetProperties and
17152         GetMethods.
17153
17154 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17155
17156         * reflection.c: avoid unaligned stores (bug spotted by
17157         Mark Crichton  <crichton@gimp.org>).
17158
17159 2002-09-25  Martin Baulig  <martin@gnome.org>
17160
17161         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17162         instead of guint64 for addresses and added prologue/epilogue info.
17163
17164 2002-09-25  Martin Baulig  <martin@gnome.org>
17165
17166         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17167         store line number info.  For the dynamic symbol file, we only need
17168         to provide the JIT generated dynamic line number info for the dynamic
17169         symbol file.
17170
17171 2002-09-25  Martin Baulig  <martin@gnome.org>
17172
17173         * debug-mono-symfile.h: Incremented version number.
17174
17175 2002-09-24  Martin Baulig  <martin@gnome.org>
17176
17177         * class.c (mono_debugger_class_init_func): New global function
17178         pointer variable.
17179         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17180         call it.
17181
17182         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17183         function.  This is called via the mono_debugger_class_init_func
17184         hook to add all types to the dynamic type table.
17185         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17186         from its metadata token.
17187
17188         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17189         New interncall for the debugger.
17190
17191 2002-09-24  Nick Drochak <ndrochak@gol.com>
17192
17193         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17194         before using it in case it is null.
17195         
17196 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17197
17198         * metadata.c: allow custom modifiers in local var signatures
17199         (bug spotted by Zoltan Varga).
17200
17201 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17202
17203         * class.c: deal with the <Module> class that may have a NULL vtable.
17204         Eliminate warnings.
17205
17206 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17207
17208         * image.c, image.h: more strong name helpers.
17209         * monosn.c: more work: convert pem keys to cryptoapi format.
17210
17211 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17212
17213         * string-icalls.c: speedup IndexOf.
17214
17215 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17216
17217         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17218
17219 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17220
17221         * icall.c: cleanup: use mono_object_domain ().
17222
17223 2002-09-23  Martin Baulig  <martin@gnome.org>
17224
17225         * debug-mono-symfile.c: Improved type support.
17226
17227 2002-09-22  Martin Baulig  <martin@gnome.org>
17228
17229         * debug-mono-symfile.c: Added support for reference types and strings.
17230
17231 2002-09-22  Martin Baulig  <martin@gnome.org>
17232
17233         * debug-mono-symfile.c: Started to work on the type table.
17234
17235 2002-09-21  Martin Baulig  <martin@gnome.org>
17236
17237         * debug-mono-symfile.c: Largely reworked the symbol table format.
17238         The symbol table is now incrementally updated each time a new
17239         method is added.  We're now also using our own magic and version
17240         so that you don't need to recompile all your classes if the
17241         dynamic table changes.
17242         (mono_debug_update_mono_symbol_file): Removed.
17243         (mono_debug_symfile_add_method): New function to add a method.
17244
17245 2002-09-21  Martin Baulig  <martin@gnome.org>
17246
17247         * icall.c
17248         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17249         New interncall.
17250
17251         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17252         New interncall to get a method from its metadata token.
17253
17254 2002-09-21  Martin Baulig  <martin@gnome.org>
17255
17256         * debug-mono-symfile.c: Create type table.
17257
17258 2002-09-20  Martin Baulig  <martin@gnome.org>
17259
17260         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17261
17262 2002-09-20  Martin Baulig  <martin@gnome.org>
17263
17264         * debug-mono-symfile.c: Provide information about params and locals.
17265
17266 2002-09-20  Martin Baulig  <martin@gnome.org>
17267
17268         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17269         New interncall.
17270
17271         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17272         interncall to get a method from its metadata token.
17273
17274 2002-09-20  Martin Baulig  <martin@gnome.org>
17275
17276         * debug-mono-symfile.c: Added a few checks for method->header
17277         being non-NULL.  This should never happen, but for the moment
17278         let's use a g_warning() rather than a g_assert().
17279
17280 2002-09-19  Mark Crichton  <crichton@gimp.org>
17281
17282         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17283         even if support for it isn't present.  Added an #ifdef to fix this.
17284
17285         * socket-io.c: Added checks back for Solaris support.
17286
17287 2002-09-19  Martin Baulig  <martin@gnome.org>
17288
17289         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17290         changes in the symbol file format.
17291
17292 2002-09-18  Martin Baulig  <martin@gnome.org>
17293
17294         * debug-mono-symfile.c: Set version number to 21.
17295
17296 2002-09-18  Dick Porter  <dick@ximian.com>
17297
17298         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17299         on netbsd.  Fixes bug 30051.
17300
17301 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17302
17303         * reflection.c:
17304         (set_version_from_string): little fix.
17305
17306 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17307
17308         * monosn.c, Makefile.am: added strong name utility.
17309         * reflection.h, reflection.c: implemented delayed signing,
17310         locale, version and hash id assembly attributes.
17311
17312 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17313
17314         * loader.c, metadata.c: load param attributes in signatures.
17315
17316 2002-09-16  Martin Baulig  <martin@gnome.org>
17317
17318         * debug-mono-symfile.c: Added string table with all method names.
17319
17320 2002-09-14  Martin Baulig  <martin@gnome.org>
17321
17322         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17323         fast method lookup.
17324
17325 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17326
17327         * reflection.c: record the public key token of referenced assemblies.
17328
17329 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17330
17331         * image.c, image.h: added functions to get the strong name and the
17332         public key of an assembly.
17333         * pedump.c: use them.
17334
17335 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17336
17337         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17338
17339 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17340
17341         * marshal.c (mono_marshal_get_managed_wrapper): Added
17342         MONO_TYPE_BOOLEAN 
17343
17344 2002-09-11  Martin Baulig  <martin@gnome.org>
17345
17346         * gc.c: Call GC_unregister_disappearing_link() on all links when
17347         finalizing them, this is necessary to aviod a crash in boehm's
17348         finalize handler.
17349
17350 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17351
17352         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17353         nick@chemlab.org.
17354
17355 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17356
17357         * icall.c: implemented MonoType::Module.
17358         * reflection.c, reflection.h: mono_module_get_object () from
17359         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17360
17361 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17362
17363         * icall.c: ignore overridden methods in GetMethods ().
17364         Fix for FieldInfo::SetValue().
17365         * object.c: handle float/double in runtime invoke.
17366
17367 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17368
17369         * object.c: allow a constructor to be called again on an object.
17370
17371 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17372
17373         * class.h, class.c: move field layout code to it's own function and
17374         export it. Get an interface id earlier. Move fields in MonoClass
17375         so they are more cache friendly and align the bitfields.
17376         * loader.c: temporary handle get_param_names() for a runtime method.
17377         * reflection.c, reflection.h: more code to handle runtime creation of
17378         types.
17379
17380 2002-09-09  Martin Baulig  <martin@gnome.org>
17381
17382         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17383         signature with the pinvoke field being set for the actual call.
17384
17385 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17386
17387         * icall.c: removed some unused icalls. Start of map of glib charsets
17388         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17389
17390 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17391
17392         * debug-helpers.c: break infinite loop (found and fixed by
17393         Holger Arnold <harnold@gmx.de>).
17394
17395 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17396
17397         * icall.c: target may be null in create_delegate.
17398
17399 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17400
17401         * marshal.c: handle a boolean return type.
17402
17403 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17404
17405         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17406
17407 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17408
17409         * gc.c: fix weakreferences.
17410
17411 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17412
17413         * icall.c: added icall to get default codepage.
17414
17415 2002-09-03  Dick Porter  <dick@ximian.com>
17416
17417         * threads.h: 
17418         * threads.c: Use MonoThread instead of MonoObject where
17419         apropriate.
17420
17421         Store running thread objects in a hash table, so that we have all
17422         the info to hand when waiting for them to finish
17423         (means we don't need OpenThread() any more, so mingw builds should
17424         be fully functional again.)
17425
17426         * verify.c:
17427         * object.h: Added thread ID to MonoThread
17428
17429 2002-09-03  Martin Baulig  <martin@gnome.org>
17430
17431         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17432
17433 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17434
17435         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17436
17437 2002-09-03  Martin Baulig  <martin@gnome.org>
17438
17439         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17440         argument to store the end address of the disassembled instruction.
17441
17442         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17443         here from debug-symfile.h.
17444         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17445         JIT into this struct.
17446         (MonoSymbolFile): Added `char *image_file' field.
17447         (MonoDebugGetMethodFunc): Removed.
17448         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17449         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17450         (mono_debug_find_method): New method.
17451
17452         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17453         create a full symbol file.
17454         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17455         and static symbol files.
17456         (mono_debug_find_method): The symbol file keeps an internal method hash,
17457         call this to get a MonoDebugMethodInfo from a MonoMethod.
17458
17459         * debug-symfile.[ch]: Removed.
17460
17461 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17462
17463         * image.c (do_mono_image_open): Remove linker version check.
17464
17465 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17466
17467         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17468         wrappers for instance methods.
17469         
17470 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17471
17472         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17473
17474 2002-08-28  Dick Porter  <dick@ximian.com>
17475
17476         * Makefile.am: Export HOST_CC for w32 builds
17477
17478 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17479
17480         * file-io.c process.c: MonoString are null terminated, no
17481         need for mono_string_to_utf16() anymore.
17482
17483 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17484
17485         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17486
17487 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17488
17489         * icall.c, reflection.h: speedup System.MonoType.
17490
17491 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17492
17493         * reflection.c: allow null as the value of a string argument in
17494         custom attributes constructors.
17495
17496 2002-08-27  Martin Baulig  <martin@gnome.org>
17497
17498         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17499         `trampoline_address' field.
17500
17501 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17502
17503         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17504         check (fixes bug #29486) 
17505
17506 2002-08-27  Martin Baulig  <martin@gnome.org>
17507
17508         * debug-mono-symfile.c: Changed the file format in a way that allows us
17509         open it read-only and to use a specially malloced area for all the
17510         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17511         debugging IL code and there is no MCS generated symbol file for it.
17512
17513 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17514
17515         * object.c: added a define for a good string and array
17516         creation speedup (not enabled by default because we need to deal with
17517         the synch stuff).
17518
17519 2002-08-26  Martin Baulig  <martin@gnome.org>
17520
17521         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17522         function to create a dynamic symbol file.  This is used by the
17523         debugger to create a symbol file for IL code on-the-fly.
17524
17525 2002-08-26  Martin Baulig  <martin@gnome.org>
17526
17527         * loader.c (mono_lookup_pinvoke_call): Include the error message
17528         from g_module_error() in the error message.
17529
17530 2002-08-24  Martin Baulig  <martin@gnome.org>
17531
17532         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17533         function to update the symbol file.  The symbol file is mmap()ed
17534         writable, but private.  This allows us to install the symbol file
17535         together with the assembly.
17536
17537 2002-08-24  Martin Baulig  <martin@gnome.org>
17538
17539         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17540         but they can read the new symbol file format which mcs is now creating.
17541
17542         * debug-symfile.c (mono_debug_find_source_location): Moved to
17543         debug-mono-symfile.c; this is now operating on the new symbol file.
17544
17545 2002-08-23  Martin Baulig  <martin@gnome.org>
17546
17547         * debug-helpers.c (mono_method_desc_from_method): New function to get
17548         a MonoMethodDesc from a MonoMethod.
17549
17550 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17551
17552         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17553         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17554
17555 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17556
17557         * string-icalls.[ch]: make helper methods static.
17558
17559 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17560
17561         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17562         types to it and to SetValueInternal.
17563
17564         * object.c: Moved handle_enum label to its proper place. This was the
17565         f... bug! ;-)
17566
17567         This time i compiled mcs and gtk-sharp and they both work.
17568
17569 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17570
17571         * icall.c: reverted partially my previous patch until 
17572         object.c:set_value handles enums correcly.
17573
17574 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17575
17576         * icall.c:
17577         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17578         (ves_icall_System_Environment_get_MachineName): removed warning when
17579         compiling under cygwin.
17580
17581 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17582
17583         * object.c: fixed field_get_value() for reference types.
17584
17585 2002-08-22  Dick Porter  <dick@ximian.com>
17586
17587         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17588         Don't free a buffer while it's still needed.  Patch from Jonathan
17589         Liger <Jonathan.liger@wanadoo.fr>
17590
17591 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17592
17593         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17594         internal call.
17595
17596 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17597
17598         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17599         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17600
17601         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17602         we call unmanaged code which throws exceptions.
17603
17604 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17605
17606         * appdomain.h: added per-domain entry_assembly.
17607         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17608         arguments.
17609         * icall.c: Assembly::GetEntryAssembly icall.
17610         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17611         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17612
17613 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17614
17615         * appdomain.h, gc.c: added mono_domain_finalize ().
17616
17617 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17618
17619         * object.c:
17620         (mono_print_unhandled_exception): changed g_warning by g_printerr
17621         because g_log has a 1024 characters limit (yeah, i got a big stack
17622         trace). Don't print exception name, that should be in ToString 
17623         returned string.
17624
17625 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17626
17627         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17628         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17629
17630 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17631
17632         * object.c:
17633         (mono_print_unhandled_exception): after previous commit, i realized
17634         that MS calls ToString on the exception. I changed this function to
17635         do that. This way we get stack_trace for free.
17636
17637 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17638
17639         * object.c:
17640         (mono_print_unhandled_exception): invoke Message property instead of
17641         getting 'message' field from Exception. Don't allocate memory for
17642         'trace' and 'message' if not needed.
17643
17644 2002-08-18  Dick Porter  <dick@ximian.com>
17645
17646         * unicode.c: Fix asserts to match Encoder.cs checks
17647
17648 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17649
17650         * marshal.c: fix unaligned store issue and a few wrong
17651         opcode argument types.
17652
17653 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17654
17655         * icall.c: added GetUninitializedObjectInternal internal call.
17656
17657 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17658
17659         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17660         to the right domain.
17661
17662 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17663
17664         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17665
17666         * class.c (class_compute_field_layout): set blittable to false for Strings
17667
17668         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17669
17670 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17671
17672         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17673         first chunk of code to create types at runtime. Code to
17674         handle ReflectedType/DeclaringType. Make reflection handles
17675         domain specific.
17676
17677 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17678
17679         * class.c: set correct name in arrays.
17680
17681 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17682
17683         * appdomain.c (mono_domain_transfer_object): make it work with
17684         valuetypes. bug fixes.
17685
17686 2002-08-12  Dick Porter  <dick@ximian.com>
17687
17688         * object.h: Rename some parameters to avoid c++ keywords (Patch
17689         from Joseph Wenninger <kde@jowenn.at>)
17690
17691 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17692
17693         * icall.c: added icall to implement Assembly.GetFile*.
17694
17695 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17696
17697         * reflection.h, reflection.c: code to embed managed resources.
17698
17699 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * class.c: move all the type size stuff into
17702         class_compute_field_layout().
17703
17704 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17705
17706         * class.c: ensure enums have always the correct instance size.
17707         * unicode.c: remove wrong assert.
17708
17709 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17710
17711         * assembly.c: fix mem corruption issue.
17712         * image.h, image.c: added mono_image_get_resource () to access
17713         managed resources.
17714         * icall.c: implemented Assembly.EntryPoint property and some
17715         Managed Resources related internalcalls.
17716
17717
17718 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17719
17720         * image.c, image.h: impemented mono_image_get_entry_point ().
17721         * appdomain.c: use mono_image_get_entry_point.
17722
17723 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17724
17725         * reflection.c: support the object type argument when loading
17726         custom attributes.
17727
17728 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17729
17730         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17731         String as return type.
17732
17733 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17734
17735         * reflection.c: fix encoding of named args for custom attrs to match
17736         the ms implementation. Read them back when instantiating custom
17737         attributes.
17738
17739 2002-08-02  Radek Doulik  <rodo@ximian.com>
17740
17741         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17742         by Dietmar as quick fix
17743         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17744         16 as stack size, used on more places as quick fix before Dietmar
17745         will fix it properly
17746
17747 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17748
17749         * object.h, object.c: added accessors for fields and properties.
17750
17751 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17752
17753         * class.c, class.h: made mono_class_get_field_from_name ()
17754         loop on parent types.
17755         Added mono_class_get_property_from_name ().
17756
17757 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17758
17759         * class.c, class.h: move the code to setup the type vtable in its own
17760         function so that it can be reused also for types created at runtime.
17761         Eliminate the "class" identifier from the header file.
17762         * reflection.c: setup the vtable for enums so that we can create
17763         objects for use in SetConstant ().
17764
17765 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17766
17767         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17768         instead of the delegate itself as this pointer (bug #28383)
17769
17770 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17771
17772         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17773         conversions.
17774
17775 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17776
17777         * loader.c: don't set the pinvoke bit on icalls.
17778
17779 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17780
17781         * debug-helpers.c (mono_method_full_name): only print a number to
17782         indicate wrapper type (so that the output is more readable in traces).
17783
17784 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17785
17786         * class.c (mono_class_init): include method override patch from Paolo
17787
17788 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17789
17790         * icall.c: fixed GetTypeCode().
17791
17792 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17793
17794         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17795         use real delegate invoke function to make it work with multicast
17796         delegates (fix bug# 28291).
17797
17798 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17799
17800         * object.c: load constant strings.
17801
17802 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17803
17804         * reflection.c: no magic numbers.
17805         * tabledefs.h: security action enum.
17806
17807 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17808
17809         * assembly.c: fix possible memory corruption.
17810
17811 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17812
17813         * reflection.h, reflection.c: added support for linking resources.
17814         * verify.c: check we have an updated corlib.
17815
17816 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17817
17818         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17819         string arrays.
17820         (mono_marshal_string_array): null terminate unmanaged string arrays.
17821         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17822
17823 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * icall.c: Type.GetType () can now return also types from the
17826         calling assembly.
17827
17828 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17829
17830         * loader.h, loader.c: stack walking support.
17831         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17832         GetCallingAssembly.
17833
17834 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17835
17836         * marshal.c: added optimisations for blittable types 
17837
17838         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17839         (mono_class_setup_mono_type): set blittable attribute for single
17840         and double.
17841
17842         * marshal.c (mono_string_utf8_to_builder): impl.
17843         (mono_string_builder_to_utf8): impl.
17844         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17845
17846 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17847
17848         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17849         (mono_marshal_get_managed_wrapper): impl. byref types
17850
17851 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17852
17853         * icall.c:
17854         (search_method): don't display debug message. 
17855
17856 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17857
17858         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17859
17860 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17861
17862         * appdomain.c: set the missing filename when throwing exception.
17863
17864 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17865
17866         * metadata.c (mono_type_size): code cleanup
17867         (mono_type_stack_size): removed some test code
17868
17869 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17870
17871         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17872         mono_get_exception_file_not_found now.
17873
17874         * exception.c (mono_exception_from_name_two_strings): New version
17875         that will call a constructor with two string arguments. 
17876         (mono_get_exception_file_not_found): New helper routine, used to
17877         report file-not-found errors.
17878
17879 2002-07-20  Dick Porter  <dick@ximian.com>
17880
17881         * process.h:
17882         * process.c: Pass file handles to CreateProcess
17883         
17884         * icall.c:
17885         * file-io.h:
17886         * file-io.c: Implemented CreatePipe
17887
17888 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17889
17890         * metadata.c (mono_get_param_info): set alignment for value types
17891
17892 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17893
17894         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17895         Constify mono_domain_assembly_open().
17896         * loader.c: handle null namespace in icalls.
17897
17898 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17899
17900         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17901         (emit_str_to_ptr_conv): marshal object as structs
17902
17903         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17904
17905         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17906
17907 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17908
17909         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17910         (mono_marshal_get_native_wrapper): we an now return value types
17911
17912 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17913
17914         * verify.c: more checks implemented.
17915
17916 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17917
17918         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17919         (fix bug #27695)
17920         (mono_marshal_get_native_wrapper): allow byref arguments
17921         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17922         impl. PtrToStringXXX methods
17923         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17924         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17925         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17926         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17927         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17928
17929 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17930
17931         * reflection.c: fix buglet in parsing an assembly name.
17932
17933 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17934
17935         * marshal.c (emit_ptr_to_str_conv): first impl.
17936
17937 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17938
17939         * object.c, class.h: cache the vtable in the class as suggested by
17940         vargaz@freemail.hu (Zoltan Varga).
17941
17942 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17943
17944         * class.h, loader.c: added mono_field_from_token().
17945         * verify.c: first cut of type checking code.
17946
17947 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17948
17949         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17950
17951 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17952
17953         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17954         (fix bug #27782)
17955         (mono_marshal_get_remoting_invoke): impl.
17956         (mono_delegate_begin_invoke): impl.
17957         (mono_mb_emit_save_args): impl.
17958         (mono_delegate_end_invoke): impl.
17959         (mono_marshal_get_delegate_begin_invoke):
17960         (mono_marshal_get_delegate_end_invoke):
17961         (mono_marshal_get_delegate_invoke): generate a special name for
17962         those methods (including the signature) and associate them whith
17963         the delegate class. 
17964
17965 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17966
17967         * reflection.[ch]: 
17968         (mono_reflection_type_from_name): now it has a MonoImage parameter
17969         which is used as the default image to search the type in. If the image
17970         is NULL or getting the type from it fails, it defaults to corlib.
17971
17972         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17973         new parameter.
17974
17975 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17976
17977         * reflection.c: update the parameter table index.
17978
17979 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17980
17981         * domain.c: don't include the mark byte in the string hash.
17982
17983 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17984
17985         * icall.cs: icall for Type.GetTypeCode ().
17986         * verify: a couple of fixes and disabled local initialization checks.
17987
17988 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17989
17990         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17991
17992         * debug-helpers.c (mono_method_full_name): print the type of the
17993         runtime wrapper
17994
17995         * metadata.c (mono_signature_hash): a hash function for signatures
17996         (mono_signature_hash): better hash algorithm
17997
17998         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17999
18000         * debug-helpers.c (mono_method_full_name): this can now generate
18001         method names with signatures
18002
18003         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18004         method dont have this pointers.
18005
18006 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18007
18008         * reflection.c: fixup typebuilder tokens.
18009         * image.c: fix buglet.
18010         * marshal.h: remove whitespace.
18011         * metadata.h, metadata.c: reinstate code that was removed.
18012         * verify.c: handle catch directives and fix another couple of bugs.
18013
18014 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18015
18016         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18017         (mono_marshal_get_native_wrapper): make it comp. with the old code
18018         (mono_marshal_get_native_wrapper): support boolean
18019         (mono_marshal_get_managed_wrapper): support more types
18020
18021 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18022
18023         * class.c (class_compute_field_layout): compute class->blittable attribute.
18024
18025 2002-07-09  Dick Porter  <dick@ximian.com>
18026
18027         * threads.c: Make the thread cleaning up cope with threads that
18028         call ExitThread()
18029
18030 2002-07-08  Radek Doulik  <rodo@ximian.com>
18031
18032         * reflection.c (method_encode_code): use non-translated values to
18033         compute finally_start, this fixes exception handling on ppc, yay!
18034
18035         * decimal.h (struct signscale): fix endianess
18036
18037 2002-07-07  Radek Doulik  <rodo@ximian.com>
18038
18039         * reflection.c: swap box_val and not val
18040
18041 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18042
18043         * reflection.c, reflection.h: handle full assembly info in type name.
18044         Handle Type arguments when loading custom attributes.
18045         * icall.c: updated to use new mono_reflection_type_from_name () method.
18046
18047 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18048
18049         * loader.c:
18050         (method_from_memberref): also print assembly name when method not found.
18051
18052 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18053
18054         * icall.c:
18055         (ves_icall_TypeGetProperties): fixed bug #27473. 
18056
18057 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18058
18059         * reflection.c: display image name and token when cannot find the
18060         .ctor for an attribute.
18061
18062 2002-07-05  Martin Baulig  <martin@gnome.org>
18063
18064         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18065
18066 2002-07-04  Dick Porter  <dick@ximian.com>
18067
18068         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18069         compile on mingw.  This will cause mingw builds to not wait for
18070         subthreads to terminate after the main thread does.  I've lodged a
18071         bug with the mingw developers for them to wrap OpenThread().
18072
18073 2002-07-03  Dick Porter  <dick@ximian.com>
18074
18075         * threads.c: Store thread IDs instead of handles, because
18076         GetCurrentThread() returns a pseudohandle and therefore stores
18077         useless values.  mono_thread_cleanup() continues checking the
18078         array of threads until it is empty, to cope with subthreads
18079         spawning new threads after the main thread has finished.
18080
18081         * profiler.h:
18082         * profiler.c:
18083         * profiler-private.h: Pass the thread ID to thread profiler
18084         functions, instead of a handle
18085
18086 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18087
18088         * verify.c: fixes to make it more usable.
18089         * pedump.c: added --verify code to verify IL code in an assembly.
18090
18091 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18092
18093         * reflection.c: turn errors into warnings to allow compiling corlib.
18094
18095 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18096
18097         * reflection.c: add special cases to compile corlib.
18098
18099 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18100
18101         * reflection.c: handle properties with only a set method.
18102
18103 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18104
18105         * opcodes.h: add enum with opcodes in opval order.
18106
18107 2002-07-01  Dick Porter  <dick@ximian.com>
18108         
18109         * object.h:
18110         * object.c (mono_runtime_run_main): Removed unneeded argument
18111
18112 2002-06-28  Martin Baulig  <martin@gnome.org>
18113
18114         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18115
18116 2002-06-27  Dick Porter  <dick@ximian.com>
18117
18118         * threads.c: Store the handle in both the parent thread and in the
18119         subthread, to minimise the time between starting a new thread and
18120         storing its ID.
18121
18122 2002-06-26  Dick Porter  <dick@ximian.com>
18123
18124         * appdomain.c (mono_runtime_cleanup): Close the socket library
18125         after all the threads have finished, not before
18126
18127 2002-06-26  Martin Baulig  <martin@gnome.org>
18128
18129         * debug-symfile.c (mono_debug_find_source_location): Added
18130         `guint32 *line_number' argument.  If it's not NULL, store the line number
18131         there and return the file name without the line number.
18132
18133 2002-06-25  Dick Porter  <dick@ximian.com>
18134
18135         * icall.c:
18136         * process.h:
18137         * process.c: Process forking and other support functions
18138
18139 2002-06-25  Dick Porter  <dick@ximian.com>
18140
18141         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18142         things dont happen when the image is closed.
18143         (mono_image_lookup_resource): Walk the resource section looking
18144         for a particular entry
18145
18146         * cil-coff.h: PE resource section decoding
18147
18148 2002-06-25  Dick Porter  <dick@ximian.com>
18149         
18150         * assembly.h:
18151         * assembly.c: 
18152         (mono_assembly_foreach): Accessor functions to walk the list of
18153         loaded assemblies
18154         (mono_assembly_set_main):
18155         (mono_assembly_get_main): Process methods need to know which
18156         assembly is the "main" one
18157
18158         * object.c (mono_runtime_run_main): Record the main assembly
18159
18160         * debug-helpers.c: Fix typo
18161
18162 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18163
18164         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18165         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18166
18167 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18168
18169         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18170
18171 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18172
18173         * image.c (do_mono_image_open): Initialize reference count,
18174         otherwise we leak the MonoImage.
18175
18176 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18177
18178         * reflection.c: small tweak to handle self-hosting.
18179
18180 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18181
18182         * reflection.c: fix type name parse code.
18183
18184 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18185
18186         * reflection.c: break out of the loop.
18187         * image.c: special case corlib.
18188
18189 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18190
18191         * reflection.c: add all the custom attrs at the end to ensure the
18192         ctors have been properly initialized when the attributes are defined
18193         in the current assembly.
18194
18195 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18196
18197         * reflection.c: handle correctly multiple-nested types.
18198
18199 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18200
18201         * row-indexes.h: fix typos.
18202         * reflection.c: adjust for typos and fix method_def_or_ref
18203         encoding in MethodImpl table.
18204
18205 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18206
18207         * reflection.c: fix entry point patching (thanks Serge!).
18208
18209 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18210
18211         * verify.c: add check for System.Exception
18212
18213 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18214
18215         * image.c, class.c: minifix for code just c&p'ed.
18216         * reflection.c: warning fix.
18217         * object.h, loader.h, domain.c: load also StringBuilder.
18218
18219 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18220
18221         * marshal.h, marshal.c: some support code to handle complex marshaling.
18222
18223 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18224
18225         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18226         Better signatures with vtable error dump.
18227
18228 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18229
18230         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18231
18232 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18233
18234         * icall.c (ves_icall_Type_GetField): impl.
18235
18236 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18237
18238         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18239         to retrieve a marshal description blob for a field or param.
18240
18241 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18242
18243         * reflection.h, reflection.c: change order of nested type emission
18244         to avoid table corruption. The NestedTypes table is sorted.
18245         * icall.c: change order of GetConstructor results to workaround mcs bug.
18246
18247 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18248
18249         * reflection.h, reflection.c: handle field and param marshal
18250         information.
18251
18252 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18253
18254         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18255
18256 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18257
18258         * reflection.c: fix call convention.
18259
18260 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18261
18262         * reflection.h, reflection.c: mono_image_get_memberref_token()
18263         takes a type instead of a class, now. Added
18264         mono_image_get_array_token() to create tokens for the special
18265         multi-dim array methods.
18266
18267 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18268
18269         * assembly.c: handle modules (no assembly table). Split
18270         loading references in its own function.
18271         * class.c: handle moduleref resolution scope.
18272         * image.c, image.h: cache module name in image.
18273
18274 2002-06-07  Martin Baulig  <martin@gnome.org>
18275
18276         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18277         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18278
18279 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18280
18281         * icall.c: more signature fixes that used uint instead of int.
18282
18283 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18284
18285         * reflection.c: fixed signature of field refs.
18286
18287 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18288
18289         * class.c, reflection.c: handle typerefs of nested types
18290         (both on read and when writing files).
18291
18292 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18293
18294         * icall.c: fix method signatures that tried to workaround the previous
18295         typo, d'oh!
18296
18297 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18298
18299         * debug-helpers.c: fix typo.
18300
18301 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18302
18303         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18304         rewrote the PE/COFF writing code (our programs are understood by the
18305         ms runtime, now).
18306
18307 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18308
18309         * gc.c, gc.h, icall.c: weakreference support.
18310
18311 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18312
18313         * Makefile.am, mono-config.c: use $(sysconfdir).
18314
18315 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18316
18317         * icall.c: changed default precision of Double.ToString() to 15.
18318         Fixed memory leak. Unified with Single.ToString.
18319
18320 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18321
18322         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18323
18324 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18325
18326         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18327         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18328         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18329         and myself.
18330
18331 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18332
18333         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18334
18335 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18336
18337         * reflection.c, socket-io.c: more compilation fixes.
18338
18339 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18340
18341         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18342         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18343         unicode.c: warning and compiler compatibility fixes.
18344
18345 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18346
18347         * class.h, metadata.c: fixed warnings/compilation errors.
18348
18349 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18350
18351         * Makefile.am, mono-config.c, mono-config.h: configuration file
18352         support routines.
18353         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18354         config file. Export methods to insert and lookup mappings.
18355
18356 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18357
18358         * reflection.c: handle types and boxed objects in custom attr
18359         constructors.
18360
18361 2002-05-30  Martin Baulig  <martin@gnome.org>
18362
18363         * debug-symfile.c
18364         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18365
18366 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18367
18368         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18369         to lookup the implmap row for a P/Invoke method.
18370         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18371         P/Invoke method from the runtime on an as needed basis.
18372
18373 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18374
18375         * metadata.c (mono_metadata_parse_signature): impl.
18376
18377 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18378
18379         * class.c: handle .pack directive.
18380
18381 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18382
18383         * object.c: initialize static fields with RVA data.
18384
18385 2002-05-25  Martin Baulig  <martin@gnome.org>
18386
18387         * debug-symfile.c
18388         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18389
18390 2002-05-24  Martin Baulig  <martin@gnome.org>
18391
18392         * debug-symfile.c
18393         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18394         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18395         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18396
18397 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18398
18399         * object.c: special case string ctros in invoke.
18400         * gc.c: silly whitespace changes.
18401
18402 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18403
18404         * threadpool.[ch]: impl. a threadpool that can
18405         be used by mint and mono.
18406
18407 2002-05-22  Martin Baulig  <martin@gnome.org>
18408
18409         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18410         The first argument is now a `MonoReflectionModuleBuilder *', the return
18411         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18412         `methods' field to get the method builder.  The `token' argument is the
18413         unfixed token.
18414
18415         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18416         invalid characters instead of g_assert_not_reached()ing.  This seems
18417         to be the behaviour of mscorlib.
18418
18419 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18420
18421         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18422         Hestilow to fix bug #25104
18423
18424 2002-05-21  Martin Baulig  <martin@gnome.org>
18425
18426         * debug-symfile.c (mono_debug_find_source_location): New function.
18427         Looks up an IL offset in the line number table and returns the source
18428         location as a string.
18429
18430 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18431
18432         * icall.c:
18433         (mono_double_ToStringImpl): changed %f by %g until we have something
18434         better.
18435
18436 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18437
18438         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18439         parameters first in C#.
18440
18441 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18442
18443         * icall.c, reflection.h: added icall to get info about an event.
18444
18445 2002-05-20  Radek Doulik  <rodo@ximian.com>
18446
18447         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18448         endian
18449         (mono_value_box): don't use memcpy for small sizes on
18450         architectures with unaligned access
18451
18452 2002-05-20  Martin Baulig  <martin@gnome.org>
18453
18454         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18455         if `tb->parent == NULL'.
18456         (mono_reflection_create_internal_class): New function.  This is
18457         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18458         for enum types.
18459
18460         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18461         New interncall.
18462
18463 2002-05-19  Martin Baulig  <martin@gnome.org>
18464
18465         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18466         argument to get the length, don't default to the array length.
18467
18468 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18469
18470         * assembly.c (mono_assembly_setrootdir): New function used to
18471         override the MONO_ASSEMBLIES directory.
18472
18473 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18474
18475         * icall.c: ValueType_GetHashCode() initialize local var.
18476
18477 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18478
18479         * reflection.c: sort custom attributes table.
18480
18481 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18482
18483         * reflection.c: support named args in custom attributes (write support).
18484
18485 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18486
18487         * reflection.c: fix finally position calculation.
18488
18489 2002-05-15  Radek Doulik  <rodo@ximian.com>
18490
18491         * reflection.c: fixed endianess at many places
18492
18493         * icall.c (ves_icall_InitializeArray): comment out debug msg
18494
18495 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18496
18497         * object.c (mono_unhandled_exception): new function to handle
18498         unhandled exceptions.
18499         (mono_unhandled_exception): call the UnhandledException event.
18500         (mono_runtime_delegate_invoke): impl.
18501
18502 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18503
18504         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18505         returns the RVA, not the direct pointer to the data. Handle the case
18506         when the class size is fixed.
18507
18508 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18509
18510         * reflection.c: fix some endianess issues.
18511
18512 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18513
18514         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18515
18516         * threads.c (mono_thread_init): added a callback which is invoked
18517         at thread start.
18518
18519 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18520         
18521         * icall.c: make GetHashCode return non-negative values.
18522
18523 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18524
18525         * object.c, icall.c, gc.c: revert to address-based hashcode.
18526
18527 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18528
18529         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18530
18531 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18532
18533         * icall.c, class.c: special case <Module>.
18534
18535 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18536
18537         * icall.c: fix bug in GetNow().
18538
18539 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18540
18541         * object.c (mono_runtime_class_init): make sure that we call all
18542         static class constructors.
18543
18544 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18545
18546         * reflection.c: sort methodsemantics table.
18547
18548 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18549
18550         * reflection.h, reflection.c: honour init locals setting.
18551
18552 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18553
18554         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18555
18556 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18557
18558         * reflection.c: support ContructorBuilders in attribute blob creation.
18559
18560 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18561
18562         * reflection.c: some changes to build a binary that can be run
18563         directly in windows.
18564
18565 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18566
18567         * loader.c: print a big message when an icall can't be found.
18568
18569 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18570
18571         * string-icalls.c: fix bug 24248.
18572
18573 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18574
18575         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18576         icall.c, reflection.h: separate assembly loading by pathname and by
18577         assembly name. Use the MONO_PATH env var to search for assemblies.
18578
18579 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18580
18581         * assembly.c, image.h: add some support for assemblies
18582         with multiple modules.
18583         * class.c, class.h: export mono_class_from_typeref().
18584         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18585         instead.
18586
18587 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18588
18589         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18590         documentation says (the ECMA one is correct).
18591
18592 2002-05-02  Dick Porter  <dick@ximian.com>
18593
18594         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18595         Don't name the synchronisation mutex.
18596
18597 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18598
18599         * rand.c
18600         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18601         Make the prototypes match.
18602         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18603         Same.
18604
18605         * icall.c
18606         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18607         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18608         all systems have tm.tm_zone, so use strftime() with %Z to print
18609         the timezone abreviation into a temp string.
18610
18611         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18612         rather than mono_array_addr() on a MonoString on Big Endian
18613         machines.
18614
18615 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18616
18617         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18618         fix bug 24041
18619
18620 2002-04-30  Dick Porter  <dick@ximian.com>
18621
18622         * socket-io.c: Cope with SOCKET being an integer rather than a
18623         pointer now.
18624
18625         * threads.c: Added Thread_free_internal, to deal with thread
18626         handle cleanup.  Moved calls to handle_store() and handle_remove()
18627         to start_wrapper(), so each can only be called once.  Allocate
18628         synchronisation blocks with GC_malloc(), and use GC finalisation
18629         to close the handles.
18630
18631         * icall.c: added System.Threading.Thread::Thread_free_internal
18632
18633 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18634
18635         * icall.c: support Environment.Exit, CommandLineArgs().
18636
18637 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18638
18639         * object.c, object.h: added mono_runtime_run_main () and
18640         mono_runtime_get_main_args () for use in System.Environment.
18641
18642 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18643
18644         * gc.c: fix thinko, enable actual finalization since the jit is now
18645         fixed.
18646
18647 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18648
18649         * gc.c, object.c: take into account that an object may be offset wrt the address
18650         returned by GC_malloc().
18651
18652 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18653
18654         * image.c: handle files without entries in the assembly table (modules).
18655
18656 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18657
18658         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18659         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18660         allowed to be null when it's System.Object class setup.
18661
18662 2002-04-27  Martin Baulig  <martin@gnome.org>
18663
18664         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18665         if `tb->parent == NULL' rather than crashing.
18666
18667 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18668
18669         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18670         calling acos() where asin() should have been called.
18671
18672 2002-04-26  Martin Baulig  <martin@gnome.org>
18673
18674         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18675         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18676         there's a subdirectory called `System', but we don't want to read that
18677         subdirectory as an assembly.
18678
18679 2002-04-25  Martin Baulig  <martin@gnome.org>
18680
18681         * debug-symfile.c: Reflect latest MonoString changes.
18682
18683 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18684
18685         * rand.c, rand.h: instance method icalls need to have an explicit
18686         this pointer as first argument in the C implementation.
18687
18688 2002-04-25  Nick Drochak <ndrochak@gol.com>
18689
18690         * icall.c: Fix typo in map for GetNonZeroBytes
18691
18692 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18693
18694         * string-icalls.c : String does now passes unit tests without any 
18695         errors, the following changes has been made:
18696         
18697         Implemented replace methods.
18698         Renaming of methods to (try) follow the standard.
18699         Fixed compare ordinal
18700         Made all memory allocated directly to function instead of via icall function.
18701         Small performance fix in is_in_array function
18702                         
18703  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18704
18705         c (mono_string_Internal_ctor_charp_int_int):
18706         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18707         sindex < 0, throw ArgumentOutOfRangeException instead of
18708         ArgumentNullException.
18709
18710         Added new check for length == 0, however
18711         I need to make it return String.Empty from the C code.
18712         
18713         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18714         that calculate the length for us here.
18715         
18716         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18717         mono_string_new_utf16 with mono_string_new, since value is utf8.
18718
18719 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18720
18721         * object.c: register the object for finalization if needed.
18722         Allocate one more char in the string for the terminating 0 char.
18723
18724 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18725
18726         * class.c, class.h, image.c: check if a type implemenst a destructor.
18727         Use the proper key for array class lookups.
18728         * icall.c: register the icalls in the System.GC class.
18729         * gc.c, gc.h: GC-related functions and icalls.
18730
18731 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18732
18733         * icall.c:
18734         * socket-io.c:
18735         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18736         changed a couple of free () by g_free ().
18737
18738         * decimal.c: one-liner in the comments for decimal2string ().
18739
18740 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18741
18742         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18743
18744 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18745
18746         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18747         * object.c (mono_runtime_invoke_array) : handle null in params
18748
18749 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18750
18751         * string-icalls.c: fixed bug in split (one off bug)
18752
18753 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18754
18755         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18756         * icalls.c: added String::Equals as internal method
18757
18758 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18759
18760         * threads.c: fixed bug in the double interlocked functions
18761
18762 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18763
18764         * threads.c: implemented all of the new interlocked icalls.
18765         * string-icalls.c: fix a bug in insert.
18766         * icalls.c: added the icalls for interlocked, removed old string functions.
18767         
18768 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18769
18770         * loader.c: fix off-by-one error when reading argument names.
18771
18772 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18773
18774         * profiler.c: win32 counter implementation (untested).
18775         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18776         (the latter needs testing and more complete impl. from win32 folks).
18777
18778 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18779
18780         * object.c: mono_array_new_full workaround mono_array_class_get
18781         problem.
18782
18783 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18784
18785         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18786         * object.h (mono_string_chars): Changed casting type.
18787
18788 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18789
18790         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18791                            method signatures to use gunichar2 instead of gint16.
18792
18793 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18794
18795         * object.h, object.c: domain-specific versions of mono_object_new and
18796         mono_array_new.
18797
18798 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18799
18800         * object.c: changed String layout
18801
18802         * string-icalls.c (mono_string_Internal_ctor_chara): added
18803         internal string constructors.
18804
18805 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18806
18807         * threads.c: pass 'this' to the thread start routine.
18808
18809 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18810
18811         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18812         InternalCompareStr don't call twice mono_string_cmp_char for the last
18813         character. Improved performance in mono_string_cmp_char.
18814
18815 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18816
18817         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18818         code into its own library: libmonoruntime.
18819
18820 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18821
18822         * object.h, object.c: changed array format so that szarrays do not
18823         require a bounds structure.
18824         * icall.c, appdomain.c: support for new szarray format.
18825
18826 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18827
18828         * metadata.c: compare also the retuns type when comparing signatures:
18829         we didn't do this as an optimization since really overloaded methods
18830         must differ also in the arguments, but this doesn't work with
18831         low-level IL code (or when using explicit conversion operators: see
18832         bug#23498 for an example).
18833
18834 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18835
18836         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18837
18838 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18839
18840         * icall.c: make MonoType::GetElementType its own icall.
18841
18842 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18843
18844         * icall.c: remove MonoMethod_get_Name().
18845         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18846         object.
18847
18848 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18849
18850         * string-icalls.c: optimized a few methods.
18851
18852 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18853
18854         * icall.c: added all new string internal calls
18855         * string-icalls.c: added, new string internal call implementation.
18856         * object.c: added mono_string_new_size for allocating a string a size
18857
18858 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18859
18860         * object.c (mono_object_isinst): use the same code as in the
18861         optimized x86 version.
18862
18863 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18864
18865         * profiler.c: TSC-based timer code (faster and more accurate).
18866         Not hooked up in configure, yet (set USE_X86TSC to 1).
18867
18868 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18869
18870         * profiler.c, profiler.h: track time spent compiling methods.
18871         * threads.c: track thread creation/destruction.
18872
18873 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18874
18875         * profiler.c, profiler.h, profiler-private.h: profiling interface
18876         and sample implementation. Moved here so that it can be used also by
18877         the jit.
18878
18879 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18880
18881         * reflection.c, reflection.h: keep types and other handles separate in
18882         the hash tables for referred tokens. Add guid for modules.
18883
18884 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18885
18886         * assembly.c: fix bugs found with valgrind.
18887         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18888
18889 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18890
18891         * threads: added icall support for getting current domain for
18892                    the thread.
18893  
18894 2002-04-13  Martin Baulig  <martin@gnome.org>
18895
18896         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18897         (MonoDebugVarInfo): Added `index' field for register based addresses.
18898         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18899         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18900         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18901         `MonoDebugVarInfo *this_var'.
18902
18903         * debug-symfile.c (relocate_variable): New static function to write
18904         a location description for a local variable or method parameter.
18905
18906 2002-04-12  Martin Baulig  <martin@gnome.org>
18907
18908         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18909         stack offset and begin/end scope address of a local variable.
18910         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18911         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18912         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18913
18914         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18915         Added new relocation types for start/end scope of a local variable.
18916
18917 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18918
18919         * object.h: add mono_object_domain() macro.
18920         * reflection.c: handle typespecs.
18921         * icall.c: MonoMethod::get_Name() implementation.
18922
18923 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18924
18925         * icall.c: String::GetHashCode() icall implementation.
18926
18927 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18928
18929         * icall.c: String::IndexOfAny icall.
18930         * object.c, object.h: make array->max_length more useful.
18931         Intrduced mono_object_class() and mono_string_length() macros.
18932
18933 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18934
18935         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18936         instead of g_unichar_isdigit.
18937
18938 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18939
18940         * icall.c: Implement a simple Double.ToString().
18941
18942 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18943
18944         * appdomain.h: only io-layer.h is supposed to be included.
18945         * icall.c: explicitly import environ. Fix warning.
18946
18947 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18948
18949         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18950                 return true even if it's not Daylight Savings time.
18951                 Only return false for the case where the function isn't
18952                 implemented for a plaform (read Windows).
18953
18954 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18955
18956         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18957         data with a mutex.
18958
18959 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18960
18961         * mempool.c (mono_mempool_alloc): only use g_malloc when
18962         absolutely necessary.
18963
18964 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18965
18966         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18967
18968         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18969         (mono_class_proxy_vtable): use domain mempool
18970
18971 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18972
18973         * appdomain.h, appdomain.c: split initialization that requires the
18974         execution engine support into mono_runtime_init().
18975
18976 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18977
18978         * class.c (mono_class_init): don't include vtable inside MonoClass
18979         to save some memory, gather some statistics.
18980         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18981
18982 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18983
18984         * icall.c: internalcall implementation for ValueType.Equals().
18985
18986 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18987
18988         * object.c (mono_message_init): moved 
18989         (mono_runtime_exec_main): new arch. independent impl.
18990         (mono_runtime_invoke_array): new method - like
18991         mono_runtime_invoke, but you can pass an array of objects.
18992         (mono_remoting_invoke): new arch. independent impl.
18993         (mono_message_invoke): new arch. independent impl.
18994         (mono_runtime_class_init): new arch. independent impl.
18995         (mono_runtime_object_init): new arch. independent impl.
18996
18997 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18998
18999         * metadata.c, object.c, reflection.c: documented the exported
19000         functions.
19001
19002 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19003
19004         * icall.c: simpler code to pass the assembly builder data to corlib.
19005         Implement GetNestedTypes() internalcall.
19006
19007 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19008
19009         * class.c: warn if a type can't be loaded.
19010
19011 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19012
19013         * image.h: typedef MonoImageOpenStatus
19014         * types.h: removed unused file
19015         
19016 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19017
19018         * icall.c: Enum_ToObject accepts enum value arguments.
19019
19020 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19021
19022         * class.c: move initialization of properties, events and nested
19023         classes, so that they happen for interfaces, too.
19024
19025 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19026
19027         * icall.c: cleanup some ugly casts in Array_SetValue*.
19028
19029 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19030
19031         * icall.c: the values array fro enums is of the correct type, now.
19032         Implement (correctly) getFullName instead of assQualifiedName for
19033         MonoType.
19034         * reflection.h, reflection.c: added mono_type_get_name ().
19035
19036 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19037
19038         * assembly.c, image.h: for each MonoImage, record from wich assembly
19039         it was loaded.
19040         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19041         Make Type.Assembly work.
19042
19043 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19044
19045         * debug-symfile.h: use char* instead of gpointer to avoid
19046         unnecessary casts.
19047
19048         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19049
19050         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19051         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19052
19053 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19054
19055         * icall.c (mono_message_init): impl. (code cleanup)
19056         (ves_icall_InternalExecute): impl. FieldGetter
19057
19058         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19059         defined we call all (non-static)methods through the vtable. 
19060
19061 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19062
19063         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19064         finalizer even though the memory is still referenced (and the chunk of
19065         memory is not freed).
19066
19067 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19068
19069         * assembly.c: fix brokeness.
19070
19071 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19072
19073         * class.c: kill some warnings. Check explicit interface method
19074         implementation also without considering the namespace.
19075         Load also literal strings in static class data.
19076
19077 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19078
19079         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19080         (default_assembly_name_resolver): Make the resolver take the
19081         "base" directory where the assembly was originally defined, so we
19082         can load DLLs that are in the same directory as the assembly that
19083         is being referenced.
19084
19085 2002-03-28  Dick Porter  <dick@ximian.com>
19086
19087         * file-io.h: 
19088         * file-io.c:
19089         * socket-io.c: 
19090         * unicode.h: 
19091         * unicode.c: Warning cleanups
19092
19093 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19094
19095         * object.h, reflection.h: use the correct type instead of MonoObject.
19096
19097 2002-03-28  Martin Baulig  <martin@gnome.org>
19098
19099         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19100         (mono_debug_update_symbol_file): Initialize classes if necessary.
19101
19102 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19103
19104         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19105         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19106
19107 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19108
19109         * assembly.h: fix function prototype.
19110         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19111         * mono-endian.h: use const cast.
19112
19113 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19114
19115         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19116
19117 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19118
19119         * loader.c: don't assert when a typeref can't be loaded, give
19120         a chance to the runtime to trow an exception instead.
19121         * loader.h: fix warning.
19122
19123 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19124
19125         * class.c (mono_class_proxy_vtable): added proxy support
19126
19127 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19128
19129         * icall.c: removed last of PAL calls, added System.Environment
19130         * file-io.h, file-io.c: MonoIO implementation
19131         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19132
19133 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19134
19135         * appdomain.c: do not use the byte marker in ldstr table lookup.
19136         * debug-helpers.c: allow two ':' to separate class and method name.
19137         * object.c: allocate arrays bounds with the GC, too.
19138         * verify: add a few more checks.
19139
19140 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19141
19142         * reflection.c: output also literal strings. Allocate parameter data
19143         with GC_malloc() (thanks, Martin, for catching this!).
19144
19145 2002-03-26  Martin Baulig  <martin@gnome.org>
19146
19147         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19148         include the `this' offset in the `param_offsets'.
19149
19150 2002-03-25  Martin Baulig  <martin@gnome.org>
19151
19152         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19153         mono_debug_get_class() function to get the classes. Added new
19154         relocation types for arrays and strings.
19155         (mono_debug_get_class): New static function to search in all
19156         referenced assemblies for a metadata token.
19157
19158         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19159
19160 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19161
19162         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19163         hold gc-allocated objects. Make the string heap a stream like the
19164         others. Removed duplicated code when writing stream info.
19165         Added asserts to catch possible buffer overflows. Set the sorted map
19166         for tables that need sorting. Added some documentation.
19167
19168 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19169
19170         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19171         for interned strings and vtables.
19172
19173 2002-03-24  Martin Baulig  <martin@gnome.org>
19174
19175         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19176         it in the array since it was created with g_slist_prepend().
19177
19178 2002-03-24  Martin Baulig  <martin@gnome.org>
19179
19180         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19181         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19182         (mono_debug_method_from_token): Renamed to
19183         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19184         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19185
19186         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19187         relocation types.
19188
19189         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19190
19191 2002-03-24  Martin Baulig  <martin@gnome.org>
19192
19193         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19194         (mono_debug_method_from_token): New func.
19195
19196         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19197         New interncall, calls mono_debug_local_type_from_signature().
19198         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19199         calls mono_debug_method_from_token().
19200
19201 2002-03-23  Martin Baulig  <martin@gnome.org>
19202
19203         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19204         specifies the number of bytes to be converted, not the array size.
19205         Return the number of chars, not the number of bytes.
19206         (ves_icall_iconv_get_chars): The `byteCount' argument
19207         specifies the number of bytes to be converted, not the array size.
19208
19209 2002-03-23  Martin Baulig  <martin@gnome.org>
19210
19211         * reflection.h (MonoReflectionSigHelper): New type.
19212
19213         * reflection.c (mono_reflection_sighelper_get_signature_local),
19214         (mono_reflection_sighelper_get_signature_local): New functions.
19215
19216         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19217         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19218         interncalls.
19219
19220 2002-03-23  Martin Baulig  <martin@gnome.org>
19221
19222         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19223         is_writeable is set.
19224         (mono_raw_buffer_update): New function to write the modified map
19225         back to disk.
19226
19227         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19228
19229         * debug-symfile.c (mono_debug_update_symbol_file): Call
19230         mono_raw_buffer_update() when done writing.
19231
19232 2002-03-23  Martin Baulig  <martin@gnome.org>
19233
19234         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19235
19236         * debug-symfile.c: Added support for arguments and local variables.
19237
19238 2002-03-23  Dick Porter  <dick@ximian.com>
19239
19240         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19241         protected by ifdefs, hence breaking the w32 build.
19242
19243 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19244
19245         * object.c: implement is_interned() the right way.
19246
19247 2002-03-21  Martin Baulig  <martin@gnome.org>
19248
19249         * debug-symfile.[ch]: New files to handle debugging information
19250         files. There's also support to dynamically update these symbol
19251         files to include machine dependent information.
19252
19253 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19254
19255         * threads.c (mono_thread_create): new function to create thread
19256         from C
19257
19258 2002-03-20  Martin Baulig  <martin@gnome.org>
19259
19260         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19261         method is a constructor.
19262         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19263         points to ves_icall_InternalInvoke().
19264
19265 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19266
19267         * file-io.c: Flush shouldn't throw exceptions.
19268
19269 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19270
19271         * file-io.c: FileStream flush support; FileSetLength now
19272         restores file pointer.
19273
19274 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19275
19276         * class.c: set image for pointer classes.
19277
19278 2002/03/19  Nick Drochak <ndrochak@gol.com>
19279
19280         * sysmath.c: Forgot one.
19281
19282 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19283
19284         * sysmath.c: Avoid redefining existing names.
19285
19286 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19287
19288         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19289         handled by runtime as icall rather than dllimport from libm.so
19290         * file-io.c, file-io.h: fixed handle argument type.
19291
19292 2002-03-18  Dick Porter  <dick@ximian.com>
19293
19294         * reflection.c (mono_image_get_type_info): rename interface to
19295         iface, because of "#define interface struct" on windows.
19296
19297 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19298
19299         * class.c, class.h: rename and export mono_ptr_class_get().
19300         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19301         * reflection.c, reflection.h, icall.c: better/saner type name
19302         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19303         method signatures.
19304
19305 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19306
19307         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19308
19309         * icall.c (ves_icall_InternalInvoke): impl.
19310
19311 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19312
19313         * reflection.c: output the interface map table, too.
19314
19315 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19316
19317         * class.c (class_compute_field_layout): separate computation of 
19318         static field layout
19319
19320 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19321
19322         * icall.c: added System.Buffer support.
19323         * file-io.c: moved file icalls from PAL to FileStream.
19324
19325 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19326
19327         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19328
19329 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19330
19331         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19332
19333 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19334
19335         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19336
19337 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19338
19339         * debug-helpers.{c,h}: moved here from monograph some useful functions
19340         to locate a method by name/signature in a class or image. Included
19341         also a small and flexible IL disassembler.
19342
19343 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19344
19345         * reflection.c: fixup tokens in methods with small header size, too.
19346
19347 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19348
19349         * object.c (mono_string_to_utf8): remove assert(!error), instead
19350         print a warning. 
19351
19352 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19353
19354         * icall.c: update to the new mono_Array_class_get interface.
19355
19356 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19357
19358         * appdomain.c, object.c: Boehm-GC enable.
19359         * icall.c: make get_data_chunk() support split data requests.
19360         Ensure a class is initialized in more cases. Return only the first
19361         property found in GetProperties() or the compiler gets confused. 
19362         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19363         * reflection.h, reflection.c: add fixup mechanism for field and method
19364         tokens. Initialize assembly->typeref in a single place. Output
19365         properties after events. Support custom attributes for events, too.
19366         Typo fix for paramter custom attrs.
19367
19368 2002-03-07  Martin Baulig  <martin@gnome.org>
19369
19370         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19371
19372 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19373
19374         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19375
19376 2002-03-06  Martin Baulig  <martin@gnome.org>
19377
19378         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19379         non-zero lower bounds. See testcases #F10-#F13.
19380
19381 2002-03-05  Martin Baulig  <martin@gnome.org>
19382
19383         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19384
19385         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19386         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19387         here.
19388         (ves_icall_System_Array_SetValue): Likewise.
19389         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19390         as argument and does the actual work. This function is used when copying a
19391         multi-dimensional array.
19392         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19393         now do all the widening conversions of value types.
19394         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19395
19396 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19397
19398         * class.c: remove some magic numbers and use the smbolic names,
19399         instead. Added init_events() to load event info at class init time.
19400         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19401         and mono_metadata_methods_from_event().
19402         * reflection.h, reflection.c: added support for writing out the evnets
19403         related information.
19404
19405 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19406
19407         * reflection.h, icall.c: use a different method (GetInterfaces)
19408         to gather interface info and add isbyref, isprimitive and
19409         ispointer to the ves_icall_get_type_info() return value.
19410
19411 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19412
19413         * class.h: stared adding support for events.
19414         * icall.c: split find_members implementation. Added debug icall to get
19415         the address of an object.
19416         * reflection.c: handle TypeBuilders in mono_type_get_object().
19417
19418 2002-03-01  Martin Baulig  <martin@gnome.org>
19419
19420         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19421         ArgumentOutOfRangeException(), not an ArgumentException().
19422         (ves_icall_System_Array_GetLowerBound): Likewise.
19423         (ves_icall_System_Array_GetValue): Improved argument checking.
19424         (ves_icall_System_Array_SetValue): Improved argument checking.
19425
19426 2002-03-01  Martin Baulig  <martin@gnome.org>
19427
19428         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19429         called with invalid arguments rather than just dying with g_assert().
19430         (ves_icall_System_Array_SetValue): Likewise.
19431         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19432         raise a NotImplementedException instead.
19433         (ves_icall_System_Array_GetLength): Added argument checking.
19434         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19435
19436 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19437
19438         * object.h (mono_assert): new macros mono_assert and
19439         mono_assert_not_reached
19440
19441 2002-02-28  Martin Baulig  <martin@gnome.org>
19442
19443         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19444         and "System::String::IsInterned" to "System::String::_IsInterned".
19445
19446 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19447
19448         * icall.c: remove hacks for typebuilder. Added icall to create a
19449         modified type from a tybebuilder.
19450         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19451         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19452         to create a backing MonoClass for a TypeBuilder.
19453
19454 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19455
19456         * class.c, class.h: more refactoring of class init.
19457         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19458
19459 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19460
19461         * marshal.c, marshal.h: start of marshaling interface.
19462
19463 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19464
19465         * icall.c: fix order in assembly qualified name icall.
19466
19467 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19468
19469         * class.c: do not free str, since we store it in the hash table.
19470         * reflection.h: add label field to MonoILExceptionInfo.
19471         * reflection.c: handle references to more than one assembly. Handle
19472         case when there isn't a module created in the assembly.
19473
19474 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19475
19476         * class.c: Fix typo. Start refactoring of class init code.
19477
19478 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19479
19480         * appdomain.c: exit with 1 on error.
19481         * class.c: we already have the name in MonoClassField.
19482         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19483         MonoStreamHeader instead of an offset of image->raw_metadata.
19484
19485 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19486
19487         * appdomain.c (mono_init): Be even more descriptive about the error.
19488
19489 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19490
19491         * appdomain.c: give the user an informative message when corlib can't
19492         be loaded.
19493
19494 2002-02-26  Martin Baulig  <martin@gnome.org>
19495
19496         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19497         New icall to get the time zone data.
19498
19499 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * reflection.c: set virtual and raw size of section correctly.
19502         * threads.c: transfer domain information to newly created threads.
19503
19504 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19505
19506         * class.c: when instancing a class in a domain, load the default
19507         vaules for static fields from the constant table. Fix System.Enum to
19508         not be an enum.
19509         * icall.c: implement Object::GetType() internalcall. Implemented
19510         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19511         Fixed checking of binding flags in find_members().
19512         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19513         * reflection.c: handle enumerations when writing to the constant
19514         table. Use a different object cache for types.
19515
19516
19517 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19518
19519         * object.c (mono_object_isinst): fix for arrays
19520
19521         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19522
19523 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19524
19525         * object.c: don't use mprotect ()  and fix intern pool hash table
19526         lookup for big endian systems.
19527
19528 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19529
19530         * icall.c: change type_is_subtype_of () signature.
19531
19532 2002-02-21  Mark Crichton  <crichton@gimp.org>
19533
19534         * rand.c, rand.h: Added random number generator for
19535         System.Security.Cryptography classes.
19536
19537         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19538
19539         * icall.c: Added System.Security.Cryptography calls.
19540
19541 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19542
19543         * class.c, icall.c, metadata.c: better support for pointer types.
19544         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19545         * reflection.c: Add support for getting custom attrs for properties
19546         and simplify some code.
19547
19548 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * icall.c: change getToken () and add custom attribute GetBlob()helper
19551         method.
19552         * reflection.h: add custom attrs array to the reflection builder structures.
19553         * reflection.c: encode and emit custom attributes for all the relevant
19554         reflection objects. Cache fieldref and methodref tokens. Change
19555         mono_image_create_token() interface to take a MonoDynamicAssembly.
19556         More complete custom attributes decoder. Load custom attributes for
19557         Assembly, Field, Method and Constructor objects, too. Make the
19558         returned array an Attribute[] one, not object[]. Added
19559         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19560         custom attribute constructor.
19561
19562 2002-02-20  Dick Porter  <dick@ximian.com>
19563
19564         * icall.c:
19565         * rawbuffer.c:
19566         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19567         problem code out for now).
19568
19569 2002-02-19  Radek Doulik  <rodo@ximian.com>
19570
19571         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19572
19573 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19574
19575         * icall.c: register the GetCustomAttributes method.
19576         * object.c, object.h: add mono_string_new_len ().
19577         * reflection.h, reflection.c: added mono_runtime_invoke(),
19578         mono_install_runtime_invoke(). Added
19579         mono_reflection_get_custom_attrs () to load custom attributes and
19580         create the attribute objects.
19581
19582 2002-02-19  Dick Porter  <dick@ximian.com>
19583         * threads-dummy-types.c:
19584         * threads-dummy-types.h:
19585         * threads-dummy.c:
19586         * threads-dummy.h:
19587         * threads-pthread-types.c:
19588         * threads-pthread-types.h:
19589         * threads-pthread.c:
19590         * threads-pthread.h:  Deleted obsolete files
19591
19592 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19593
19594         * class.c (mono_class_vtable): runtime init the class when we
19595         allocate static class data.
19596
19597         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19598
19599         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19600         and String - but we will need generic marshalling support in the
19601         future. 
19602         (mono_init): set the domain name in a ms compatible way
19603
19604         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19605         String[].
19606
19607 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19608
19609         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19610         for sizes
19611
19612         * appdomain.c (mono_domain_unload): impl.
19613
19614 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19615
19616         * appdomain.c, object.c: fix intern pool implementation.
19617         * class.c: fix alignment code.
19618
19619 2002-02-16  Radek Doulik  <rodo@ximian.com>
19620
19621         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19622         and s2 > s1, just copy lower bytes to be compatible with little
19623         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19624         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19625
19626         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19627         force big_endian to be 1 for big endian machines 
19628         (ves_icall_iconv_new_decoder): ditto
19629
19630 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19631
19632         * socket-io.c (convert_sockopt_level_and_name): If the system
19633         doesn't define SOL_IP or SOL_TCP, get them by hand using
19634         getprotobyname() and caching the values (because this could be a
19635         slow operation).
19636         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19637         Use the appropriate struct when the system does support it. Ie,
19638         not all systems have struct ip_mreqn so use struct ip_mreq when
19639         appropriate.
19640
19641 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19642
19643         * reflection.c: handle finally clauses.
19644
19645 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19646
19647         * socket-io.c: use g_snprintf() instead of snprintf.
19648
19649 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19650
19651         * reflection.c (mono_param_get_objects): Cast second argument to
19652         mono_method_get_param_names to a const char** to silence the
19653         compiler warning.
19654
19655         * appdomain.c (mono_domain_assembly_open): Put parens around the
19656         truth statement in the for-loop.
19657
19658         * unicode.c (iconv_convert): Got rid of a compiler warning about
19659         int i being unused when the system has a new iconv.
19660         (iconv_get_length): Same.
19661
19662         * image.c (load_class_names): Cast the second argument to
19663         g_hash_table_insert() to char* to hush compiler warnings about the
19664         arg being a const.
19665         (mono_image_open): Same here.
19666
19667         * socket-io.c: Don't conditionally include sys/filio.h or
19668         sys/sockio.h here anymore since we now get them from
19669         io-layer/io-layer.h
19670         (inet_pton): If the system doesn't support inet_aton, implement
19671         using inet_addr and also #define INADDR_NONE if it isn't defined
19672         by the system.
19673
19674 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19675
19676         * metadata.c, metadata.h: added function to get packing and size info
19677         of a typedef.
19678         * reflection.h, reflection.c: handle field RVA data. Save info about
19679         the table layout if needed. Assign typedef indexes to all the types
19680         before dumping the info about them to avoid forward reference problems.
19681
19682 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19683
19684         * socket-io.c (convert_sockopt_level_and_name): ifdef
19685         SO_ACCEPTCONN because it is not defined on my system (old debian)
19686
19687 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19688
19689         * opcode.c: use stddef.h to get NULL.
19690
19691 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19692
19693         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19694         for FIONBIO, FIONREAD and SIOCATMARK.
19695         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19696         define INADDR_NONE and besides, inet_addr() is deprecated and
19697         should not be used. Use inet_pton() instead - it also has the
19698         added bonus that it can easily handle IPv6 addresses as well.
19699         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19700
19701 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19702
19703         * decimal.c: remove _MSC_VER conditional.
19704
19705 2002-02-13  Dick Porter  <dick@ximian.com>
19706
19707         * socket-io.c: 
19708         * icall.c: Internal calls for Blocking, Select, Shutdown,
19709         GetSocketOption and SetSocketOption
19710
19711 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19712
19713         * assembly.cs: better resolver: use it instead of some kludgy
19714         code.
19715
19716 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19717
19718         * reflection.c: the best way to speed-up the compiler is to avoid
19719         infinite loops.
19720
19721 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19722
19723         * class.c (mono_class_vtable): changed the object layout
19724         (obj->vtable->class). 
19725         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19726
19727 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19728
19729         * assembly.c: look for assemblies in the assembly dir, too.
19730
19731 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19732
19733         * class.c: fix thinko in mono_class_from_type().
19734
19735 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19736
19737         * exception.h, exception.c: added TypeLoadException.
19738         * object.h, object.c: added mono_array_clone ().
19739         * icall.c: handle throwOnError in AssemblyGetType().
19740         Added Array.Clone().
19741         * opcode.h, opcode.c: use a single value for the opcode val.
19742         Compile fix for non-gcc compilers.
19743
19744 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19745
19746         * opcodes.c, opcodes.h: export interesting info about opcodes.
19747
19748 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19749
19750         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19751         icalls. 
19752
19753         * class.c (class_compute_field_layout): set element_class for enums
19754         (mono_class_create_from_typedef): set element_class for normal classes
19755
19756         * icall.c (ves_icall_System_Enum_get_value): impl.
19757
19758         * class.c (mono_class_create_from_typedef): do not set valuetype
19759         flag for System.ValueType and System.Enum
19760
19761 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19762
19763         * unicode.c (iconv_convert): fix big endian problem.
19764
19765 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19766
19767         * class.c: add asserts if we are ever going to scribble over memory.
19768         * socket-io.c: not all systems have AF_IRDA defined.
19769
19770 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19771
19772         * class.c (class_compute_field_layout): do not consider static
19773         fields to compute alignment
19774
19775 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19776
19777         * appdomain.c (mono_appdomain_get): impl.
19778         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19779
19780 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19781
19782         * icall.c: ignore "file://" prefix when loading an assembly.
19783
19784 2002-01-23  Dick Porter  <dick@ximian.com>
19785
19786         * socket-io.c:
19787         * icall.c:
19788         * Makefile.am: Added socket support
19789
19790 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19791
19792         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19793         code back.  This should return the assemblies that are loaded by
19794         the runtime on behalf of an application domain. 
19795
19796         The current implementation is still broken, it just returns every
19797         assembly loaded, but until we get real applications domain this
19798         will do.
19799
19800 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19801
19802         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19803         AppDomain object.
19804
19805 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19806
19807         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19808         the mono_class_from_name lookup.
19809         (ves_icall_get_parameter_info): ditto.
19810         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19811         method.
19812         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19813
19814 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19815
19816         * class.c: load also nested classes on class init.
19817         System.ValueType instance methods gets passed boxed
19818         values, unless methods in derived classed that get a pointer to the
19819         data.
19820         * icall.c: use better name parsing code in GetType().
19821         * image.c, image.h: add mono_image_loaded ().
19822         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19823         * reflection.c, reflection.h: added mono_reflection_parse_type().
19824
19825 2002-01-22  Veronica De Santis <veron78@interfree.it>
19826
19827         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19828         * threads.c : Added the implementation of internal calls for events
19829         * threads.h : Added prototypes of internal calls for events
19830         
19831 2002-01-21  Radek Doulik  <rodo@ximian.com>
19832
19833         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19834
19835 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19836
19837         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19838         (mono_class_value_size): use min_align
19839
19840 2002-01-20  Dick Porter  <dick@ximian.com>
19841
19842         * threads.h:
19843         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19844         so it compiles on w32.
19845
19846 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19847
19848         * metadata.c (mono_type_stack_size): impl.
19849
19850         * class.c (mono_class_get_field): impl. memberref token
19851
19852 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19853
19854         * icall.h : Added the internal calls mapping for CreateMutex_internal
19855                     and ReleaseMutex_internal.
19856         * threads.h : Added the prototype of mutexes internal calls.
19857         * threads.c : Added the implementations of mutexes internal calls.
19858
19859 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19860
19861         * metaparse.h: removed unused file.
19862         * reflection.c, reflection.h: added stream_data_align () function 
19863         to align data in streams and keep stream aligned. Add support for
19864         exception support in method headers.
19865
19866 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19867
19868         * unicode.c: make iconv_convert () return the number of bytess written
19869         in the output buffer.
19870
19871 2002-01-15  Dick Porter  <dick@ximian.com>
19872         * threads.c: Make the runtime's idea of infinite timeouts coincide
19873         with the class library's
19874
19875         Fix a particularly egregious bug in mono_thread_cleanup(). That
19876         code was so utterly bogus it must have been written on a Monday.
19877
19878 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19879
19880         * reflection.h: add subtypes field to TypeBuilder.
19881         * reflection.c: encode constants for literal fields.
19882         Handle subtypes. Fix user string token (and add a zero byte)
19883         at the end.
19884         
19885 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19886
19887         * class.c (mono_class_init): bug fix: assign slot numbers for
19888         abstract methods.
19889
19890 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19891
19892         * reflection.c: don't try to output a code RVA for abstract methods.
19893         Small fixes for method header format. Output parameter info to the
19894         ParamDef table. Save method overriding info to MethodImpl table.
19895         Fix property support. Allow typedef.extends to be a type in the
19896         building assembly.
19897         * verify.c: fix off-by-one error.
19898
19899 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19900
19901         * class.c: fix mono_class_from_mono_type () for szarray types.
19902         Remove unused cache check in mono_class_from_type_spec().
19903         * icall.c: *type_from_name () functions handle simple arrays and byref.
19904         * reflection.c: handle byref and szarray types. Handle methods without
19905         body (gets P/Invoke compilation working). Handle types and fields in
19906         get_token ().
19907         * reflection.h: add rank to MonoTypeInfo.
19908
19909 2002-01-10  Dick Porter  <dick@ximian.com>
19910
19911         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19912         internal calls
19913
19914 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19915
19916         * icall.c: initialize class in type_from_handle ().
19917         Loop also in parent classes for get_method ().
19918         * reflection.c: properly encode class and valuetype types.
19919         Start on encoding TypeBuilder types. Handle fieldrefs.
19920         Use correct length when registering a user string.
19921         Handle ConstructorBuilder and MonoMethod in get_token ().
19922         Make mono_type_get_object () aware of cached types.
19923         * object.c: back out change to mono_string_new ().
19924
19925 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19926         * object.c: mono_string_new should return a NULL when the string 
19927         passed in is NULL -- not try to deference it.
19928         
19929 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19930
19931         * icall.c: hack to make IsSubType work for TypeBuilders.
19932         * reflection.c: emit constructors before methods.
19933         Retrieve param names in mono_param_get_objects().
19934
19935 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19936
19937         * Makefile.am: fix list of headers and sources so automake 1.5
19938         doesn't complain. Removed \# at end of list.
19939
19940 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19941
19942         * reflection.c: get token for a method ref. Set return type of
19943         constructor to void.
19944         * loader.c: debug message.
19945         * class.c: typo fix.
19946
19947 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19948
19949         * icall.c: fix array init with rank > 1. FindMembers
19950         loops in parent class as well.
19951         * image.c: do not insert nested types in name cache.
19952         * reflection.c: warning fix.
19953         * reflection.h: add override method (for interface impl).
19954
19955 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19956
19957         * metadata.c: fix customattr decoding.
19958
19959 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19960
19961         * rawbuffer.cs: Added native Win32 implementation, avoids using
19962         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19963
19964 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19965
19966         * class.c: make the low-level routines handle the cache.
19967
19968 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19969
19970         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19971
19972 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19973
19974         * class.c: fix mono_array_element_size() for objects.
19975         * class.h, class.c: add properties to MonoClass and load them
19976         at init time.
19977         * icall.c: check with isinst() when assigning a value to an array
19978         instead of requiring the classes to match exactly.
19979         Implemented icall for System.Type::GetType().
19980         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19981         enums. Handle bindingflags when looking for methods and fields.
19982         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19983         and mono_metadata_methods_from_property().
19984         * reflection.h, reflection.c: added structures for propreties,
19985         parameters and enums. Implemented mono_property_get_object() and
19986         mono_param_get_objects().
19987
19988 2001-12-18  Dick Porter  <dick@ximian.com>
19989
19990         * file-io.c: Use mono_string_to_utf16() instead of
19991         mono_string_chars()
19992
19993         * object.c: Added mono_string_to_utf16(), which copies the non
19994         NULL-terminated MonoString into a new double-null-terminated
19995         buffer.
19996
19997 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19998
19999         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20000
20001 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20002
20003         * file-io.c: raise exceptions if handle is invalid.
20004
20005 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20006
20007         * assembly.c: yet another check for mscorlib.
20008         * class.c, class.h: load nesting info for classes.
20009         * icall.c: many new functions to support the Reflection classes.
20010         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20011         * reflection.h, reflection.c: mono_image_create_token(),
20012         mono_assembly_get_object(), mono_type_get_object(),
20013         mono_method_get_object(), mono_field_get_object(): methods to return
20014         objects that parallel the C representation of assemblies, types,
20015         methods, fields.
20016
20017 2001-12-11  Dick Porter  <dick@ximian.com>
20018
20019         * icall.c:
20020         * file-io.c: Internal calls for file IO.
20021
20022 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20023
20024         * tabledefs.h: missing FileAttributes.
20025         * verify.h, verify.c: use is_valid_string () to simplify and check for
20026         valid strings more correctly. Fix warnings and speeling.
20027         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20028         Check code: branches, maxstack, method calls.
20029
20030 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20031
20032         * object.c (mono_object_allocate): removed static, so that the jit
20033         can allocate value types.
20034
20035         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20036
20037 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20038
20039         * class.c: init enum types right away and register the
20040         token->MonoClass map in mono_class_create_from_typedef ().
20041         * verify.h, verify.c: first cut of the verifier.
20042         * pedump.c: add --verify switch to verify metadata tables.
20043         * tabledefs.h: add some missing enums.
20044
20045 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20046
20047         * class.c (mono_install_runtime_class_init): impl.
20048         (mono_class_init): renamed mono_class_metadata_init to
20049         mono_class_init, also removed the metadata_inited flag
20050
20051         * object.c (mono_object_isinst): use faster algorithm
20052
20053 2001-11-30  Radek Doulik  <rodo@ximian.com>
20054
20055         * mono-endian.h: reverted last change
20056         added function prototypes
20057
20058         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20059         add mono-endian.c back
20060
20061         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20062         for unaligned access, I've mistaked it with endianess. I am
20063         sorry.
20064         (mono_read16): fix reverted endianess
20065         (mono_read64): ditto
20066         (mono_read32): ditto
20067
20068 2001-11-30  Dick Porter  <dick@ximian.com>
20069
20070         * exception.c: Implement mono_exception_from_name()
20071
20072 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20073
20074         * metadata.h, metadata.c: remove params_size and locals_size and their
20075         calculation from the metadata code: they are only usefult to the
20076         interp.
20077
20078 2001-11-29  Radek Doulik  <rodo@ximian.com>
20079
20080         * object.c (mono_ldstr): swap bytes here, it's probably not the
20081         best place, but works for me now, I'll redo it once I know mono
20082         better, also note that I add PROT_WRITE and don't reset back, also
20083         note that it's only affects big endians, so x86 should be OK
20084
20085         * mono-endian.h (read16): use just glib macros for both endians
20086
20087         * mono-endian.c: removed as glib macros are used in in
20088         mono-endian.h so we don't need to care about endianess for read
20089         macros as glib does that for us already
20090
20091 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20092
20093         * class.h, class.h: take minimum alignment into consideration so
20094         that the fields of a class remain aligned also when in an array.
20095
20096 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20097
20098         * loader.h, loader.c: add mono_method_get_param_names().
20099         * class.c: 0-init class fields.
20100
20101 2001-11-26  Dick Porter  <dick@ximian.com>
20102
20103         * icall.c:
20104         * threads-types.h:
20105         * threads.c: New file that handles System.Threading on all platforms
20106
20107         * object.c: 
20108         * object.h: Remove the synchronisation struct from MonoObject,
20109         replace it with a pointer that gets initialised on demand
20110
20111         * Makefile.am: Replace all the system-specific threading code with
20112         a single file that uses the new wrapper library
20113
20114 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20115
20116         * class.c, class.h: add mono_install_trampoline() so that the runtime
20117         can register a function to create a trampoline: removes the ugly
20118         requirement that a runtime needed to export arch_create_jit_trampoline.
20119         * object.h, object.c: added mono_install_handler() so that the runtime
20120         can install an handler for exceptions generated in C code (with
20121         mono_raise_exception()). Added C struct for System.Delegate.
20122         * pedump.c: removed arch_create_jit_trampoline.
20123         * reflection.c: some cleanups to allow registering user strings and
20124         later getting a token for methodrefs and fieldrefs before the assembly
20125         is built.
20126         * row-indexes.h: updates and fixes from the new ECMA specs.
20127
20128 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20129
20130         * class.h, class.c: add enum_basetype field to MonoClass.
20131         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20132         to get index in the constant table reated to a field, param or
20133         property.
20134         * reflection.h, reflection.c: handle constructors. Set public-key and
20135         version number of the built assembly to 0.
20136         * row-indexes.h: update from new ECMA spec.
20137
20138 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20139
20140         * class.h, class.c: add a max_interface_id to MonoClass.
20141         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20142         since it's used to do that. Added mono_type_type_from_obj().
20143         Make GetType() return NULL instead of segfaulting if the type was not
20144         found. Handle simple arrays in assQualifiedName.
20145         * object.h: add a struct to represent an Exception.
20146         * reflection.c: output call convention in method signature.
20147         Add code to support P/Invoke methods and fixed offsets for fields.
20148
20149 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20150
20151         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20152         the value.
20153         * icall.c: use mono_array_addr instead of array->vector: fixes the
20154         reflection image writing.
20155         * reflection.c: init call convention byte to 0 in method signature.
20156         Encode the property signature. Don't output property-related methods
20157         twice. Really process the properties for a type (don't cast a field to
20158         a property, my mom always told me that).
20159         Fix 64 bit issues in pointer alignment in a different and more
20160         readable way.
20161
20162 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20163
20164         * loader.h: Removed type class from MonoDefaults, added monotype
20165
20166         * loader.c: Loaded MonoType, removed loading of Type
20167
20168         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20169         and fills in System.Type._impl with a RuntimeTypeHandle rather
20170         than the actual MonoClass *
20171
20172         (ves_icall_type_from_handle): change from type_class to
20173         monotype_class
20174
20175         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20176         implemented
20177
20178         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20179         implemented
20180
20181         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20182
20183         (ves_icall_System_Reflection_Assembly_GetType): implemented
20184
20185         (ves_icall_System_MonoType_assQualifiedName): implemented
20186
20187         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20188
20189 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20190
20191         * assembly.c (mono_assembly_open): Implement a cache for the
20192         assemblies. 
20193
20194         (mono_assembly_close): only destroy the assembly when the last
20195         reference is gone.
20196         
20197 2001-11-09  Dick Porter  <dick@ximian.com>
20198
20199         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20200
20201 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20202
20203         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20204
20205 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20206
20207         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20208         from Martin Weindel.
20209         * object.h: add mono_string_chars ().
20210
20211 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20212
20213         * reflection.c (build_compressed_metadata): Eliminates warnings
20214         and uses 64-bit clean code.
20215
20216         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20217         (mono_type_equal): Change signature to eliminate warnings.
20218
20219 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20220
20221         * icall.c, loader.c: remove the internalcall array constructors.
20222         Changes to match the new MonoArray structure.
20223         * object.h, object.c: an array object doesn't allocate an extra
20224         vector. Add mono_array_new_full () to create jagged arrays easily.
20225
20226 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20227
20228         * metadata.h, metadata.c: add mono_metadata_field_info () to
20229         retreive all the info about a field from vairous tables.
20230         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20231         * class.h, class.c: augment MonoClassField with more info.
20232         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20233         policy and load a field's RVA if needed.
20234
20235 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20236
20237         * class.c (mono_class_metadata_init): create a trampoline for all
20238         virtual functions instead of actually compiling them.
20239
20240 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20241
20242         * class.h, class.c: include name in MonoClassField.
20243         * class.c: fix fundamental type of System.Object and System.String.
20244         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20245         tokens in ldtoken.
20246         * icall.c: remove internalcalls for the Reflection stuff that is now
20247         done in C# code.
20248         * loader.c: mono_field_from_memberref () implementation.
20249         * mono-endian.c: thinko (s/struct/union/g).
20250         * object.c, object.h: make the mono_string_* prototypes actually use
20251         MonoString instead of MonoObject.
20252         * reflection.c, reflection.h: updates for changes in the reflection
20253         code in corlib: we use C structures that map to the actual C# classes.
20254         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20255         fat method header if needed and use the info from the ILGenerator for
20256         methods. Handle fields in types. Misc fixes.
20257
20258 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20259
20260         * class.c (mono_class_metadata_init): bug fix: always allocate
20261         space for static class data
20262
20263 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20264
20265         * class.c (mono_compute_relative_numbering): use relative
20266         numbering to support fast runtime type checks.
20267
20268 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20269
20270         * class.c (mono_class_create_from_typeref): added debugging output
20271         to print class name when MonoDummy is returned instead of real class
20272
20273 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20274
20275         * class.c (mono_class_metadata_init): interface offset table now
20276         contains pointers into the vtable - this is more efficient for the jit
20277
20278 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20279
20280         * class.c (mono_class_metadata_init): use a temporary vtable (the
20281         old algorithm only worked for the interpreter, but not for the jit)
20282
20283 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20284
20285         * loader.c (method_from_memberref): use mono_class_get to get the
20286         class of an array instead of using System.Array directly.
20287         (mono_get_method): also add MEMBERREF methods to the method cache
20288         which usefull for arrays.
20289
20290 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20291
20292         * pedump.c (arch_compile_method): added to compute vtable entry
20293
20294         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20295         number of interfaces.
20296         
20297         * class.h: merged MonoArrayClass into MonoClass
20298
20299         * class.c (mono_class_create_from_typedef): compute the vtable size and
20300         allocate space to include the vtable inside MonoClass
20301         (mono_class_metadata_init): initialize the vtable
20302
20303 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20304
20305         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20306         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20307         * image.c: endian fixes by Laurent Rioux.
20308         * object.h, object.c: rename MonoStringObject to MonoString and
20309         MonoArrayObject to MonoArray. Change some function names to conform to
20310         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20311         guint16* as first argument, so don't use char*.
20312         Provide macros to do the interesting things on arrays in a portable way.
20313         * threads-pthread.c: updates for the API changes and #include <sched.h>
20314         (required for sched_yield()).
20315         * icall.c: updates for the API changes above.
20316         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20317         platforms that need them.
20318
20319 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20320
20321         * class.c: set the correct type for all the fundamental
20322         type when loading the class.
20323
20324 2001-10-05  Dick Porter  <dick@ximian.com>
20325
20326         * threads-pthread.c (pthread_mutex_timedlock): Simple
20327         compatibility version for C libraries that lack this call.
20328
20329 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20330
20331         * class.c: MonoTypes stored in MonoClass are stored as
20332         fundamental MonoTypes when the class represents a
20333         fundamental type (System.Int32, ...).
20334         The TypeHandle return by ldtoken is a MonoType*.
20335         * icall.c: ves_icall_get_data_chunk () write out all the
20336         PE/COFF stuff. Implement ves_icall_define_method (),
20337         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20338         * image.c: properly skip unknown streams.
20339         * loader.h, loader.c: add type_class to mono_defaults.
20340         * metadata.c, metadata.h: export compute_size () as
20341         mono_metadata_compute_size () with a better interface.
20342         Typo and C&P fixes.
20343         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20344         * reflection.c, reflection.h: many cleanups, fixes, output method
20345         signatures and headers, typedef and typeref info, compress the metadata
20346         tables, output all the heap streams, cli header etc.
20347         * row-indexes.h: typo fixes.
20348
20349 2001-10-04  Dick Porter  <dick@ximian.com>
20350
20351         * object.h: Add a synchronisation mutex struct to MonoObject
20352
20353         * object.c (mono_new_object): Initialise the object
20354         synchronisation mutexes
20355
20356         * icall.c: System.Threading.Monitor internal calls
20357         
20358         * threads-pthread.h:
20359         * threads-pthread.c: System.Threading.Monitor internal calls
20360
20361         * threads-types.h: New file, includes the system-specific thread
20362         structures
20363         
20364         * threads-pthread-types.h:
20365         * threads-pthread-types.c: New files, handle pthread-specific
20366         synchronisation types
20367
20368         * threads-dummy-types.h: 
20369         * threads-dummy-types.c: New files of dummy support for
20370         thread-specific types
20371
20372         * metadata.c:
20373         * image.c:
20374         * pedump.c: include mono-endian.h not endian.h
20375         
20376         * Makefile.am: More threads files.
20377         Name mono-endian.h not endian.h
20378
20379 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20380
20381         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20382         stuff and implement a few more bits.
20383         * icall.c: a field needs to be dereferenced twice. Do not use the same
20384         name for two variables in the same scope.
20385         * image.c, image.h: cleanups.
20386
20387 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20388
20389         * class.c (mono_class_metadata_init): bug fix: compute the right size
20390
20391 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20392
20393         * icall.c: implemented some of the Reflection internalcalls.
20394         * image.c, image.h: start writing out the PE/COFF image.
20395         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20396         that does the reverse than decode_blob_size ().
20397         * object.c: use mono_metadata_encode_value (). Move here
20398         temporary implementation of mono_string_to_utf8 ().
20399         * rawbuffer.c: make malloc_map static.
20400
20401 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20402
20403         * metadata.c: fix type comparison for arrays.
20404         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20405         Added a couple of new classes to monodefaults.
20406         * icall.c: added a couple of Reflection-related internalcalls.
20407         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20408         Added a byval_arg MonoType to MonoClass.
20409
20410 2001-09-28  Dick Porter  <dick@ximian.com>
20411
20412         * icall.c:
20413         * threads-pthread.h: 
20414         * threads-pthread.c: Implemented internal calls for
20415         LocalDataStoreSlot operations.  Applied mutexes around all shared
20416         data.  Reworked the thread creation and Start() operations to
20417         avoid a race condition.
20418         
20419         * threads-dummy.h:
20420         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20421
20422 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20423
20424         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20425
20426 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20427
20428         * class.c, loader.c: warn and return NULL instead of erroring out.
20429         * icall.c: added System.AppDomain::getCurDomain().
20430         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20431
20432 2001-09-25  Dick Porter  <dick@ximian.com>
20433
20434         * threads-pthread.h:
20435         * threads-pthread.c: Implemented timed thread joining and added
20436         System.Threading.Thread::Join_internal internal call
20437
20438         * icall.c: Added System.Threading.Thread::Join_internal internal call
20439
20440         * threads-dummy.h:
20441         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20442
20443 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20444
20445         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20446         mono_string_intern () to implement the semantics of the ldstr opcode
20447         and the interning of System.Strings.
20448         * icall.c: provide hooks to make String::IsIntern and String::Intern
20449         internalcalls.
20450
20451 2001-09-23  Dick Porter  <dick@ximian.com>
20452
20453         * threads-dummy.c: 
20454         * threads-dummy.h: New files of dummy threading routines
20455
20456         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20457         support code based on system specifics
20458
20459         Rename PTHREAD_LIBS to THREAD_LIBS
20460         
20461 2001-09-23  Dick Porter  <dick@ximian.com>
20462
20463         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20464         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20465         internal calls.
20466         (mono_thread_init): Set up a Thread object instance to return when
20467         the main thread calls Thread.CurrentThread
20468         (mono_thread_cleanup): Wait for all subthreads to exit
20469
20470         * icall.c: New internal calls for System.Threading.Thread::Sleep
20471         (including Schedule) and CurrentThread
20472
20473         * threads.h: New file, to insulate thread-specific stuff from the
20474         rest of the code
20475
20476 2001-09-21  Dick Porter  <dick@ximian.com>
20477
20478         * threads-pthread.h: 
20479         * threads-pthread.c: New file, for handling pthreads-style
20480         threading support.  Start() now starts a new thread and executes
20481         the ThreadStart delegate instance.
20482
20483         * icall.c: Added the internalcall for
20484         System.Threading.Thread::Start_internal
20485
20486         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20487
20488 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20489
20490         * loader.c: work around the different signatures for delegates
20491         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20492
20493 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20494
20495         * class.h, class.c: add mono_class_get_field_from_name ().
20496         * *: Fix C comments and other ANSI C issues.
20497
20498 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20499
20500         * endian.h, assembly.c: fix some endianness issues.
20501
20502 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20503
20504         * loader.h, load.c: add delegate_class to mono_defaults.
20505         Handle runtime provided methods in mono_get_method ().
20506
20507 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20508
20509         * loader.c (mono_get_method): use pinvoke for internal call
20510
20511         * icall.c: use pinvoke for internal call
20512
20513         * loader.c (method_from_memberref): set the method name
20514
20515 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20516
20517         * metadata.c: help the compiler generate better code for
20518         mono_class_from_mono_type ().
20519
20520 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20521
20522         * class.c (mono_class_metadata_init): delayed computing of the
20523         class size to mono_class_metadata_init ()
20524
20525 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20526
20527         * class.c, class.h: add an interfaces member to MonoClass.
20528         * image.c, image.h: add assembly_name field to MonoImage
20529         from the assembly table.
20530         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20531
20532 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20533
20534         * class.c: Handle Array in mono_class_from_mono_type ().
20535         * metadata.c, pedump.c: some endian fixes.
20536
20537 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20538
20539         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20540         * metadata.c: fix small problem introduced with the latest commit.
20541
20542 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20543
20544         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20545         We don't need a MonoMetadata pointer anymore to compare signatures in
20546         mono_metadata_signature_equal (), update callers.
20547         Reduced memory usage an number of allocations for MonoMethodHeader and
20548         MonoMethodSignature.
20549
20550 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20551
20552         * metadata.c: added compare for szarray.
20553
20554 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20555
20556         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20557         and add a couple more types to it and mono_defaults. Give an hint on
20558         classes that need implementing in our corlib and are referenced
20559         in mscorlib.
20560
20561 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20562
20563         * class.h, class.c: keep track if a class is also an Enum.
20564         * loader.c: Implement a couple more types for use in libffi
20565         marshalling. Gives better diagnostics when failing to dlopen
20566         a library. Set method->klass for P/Invoke methods, too.
20567
20568 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20569
20570         * class.c, class.h: add a MonoType this_arg to MonoClass that
20571         represents a pointer to an object of the class' type that
20572         can be used by the interpreter and later the type cache.
20573         Add best guess alignment info for valuetype objects.
20574
20575 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20576
20577         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20578         into MonoType: one less level of indirection and allocation and
20579         simplifies quite a bit of code. Added cache for MonoTypes that are
20580         used frequently, so that we don't need to allocate them all the time.
20581
20582 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20583
20584         * class.c (mono_class_create_from_typedef): System.Enum is also a
20585         value type, although it does not derive from System.ValueType
20586         (maybe a bug in the ms compiler?)
20587
20588         * metadata.c (mono_type_size): return the right size for value types
20589
20590         * loader.c (mono_get_method): only initialize method header if not abstract
20591
20592         * class.c (mono_class_from_mono_type): use mono_default values. 
20593
20594 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20595
20596         * *: use MonoClass pointers instead of <type_tokens>
20597         
20598         * class.h: new flag: metadata_inited.
20599
20600         * class.c (mono_class_metadata_init): impl.
20601         (mono_class_instance_size): impl.
20602         (mono_class_data_size): impl.
20603
20604 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20605
20606         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20607         MonoClass now has the name and name_space fields. 
20608         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20609         mono_get_method () takes and optional MonoClass as argument.
20610         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20611         instead that takes advantage of a map from class names to typedef
20612         tokens in MonoImage.
20613
20614 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20615
20616         * metadata.c: zero is not a valid alignment boundary.
20617         Merge MONO_TYPE_VOID in default decoding code.
20618
20619 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20620
20621         * image.h: merged MonoMetadata into MonoImage
20622
20623         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20624         identify the type of elements.
20625
20626 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20627
20628         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20629         * cil-coff.h: split MonoMSDOSHeader and add size info.
20630         * image.c: add some consistency checks.
20631         * metadata.c: fix row size computation: one programmer
20632         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20633         add explanation for the locator routine.
20634         Fix decoding of size in method header.
20635         
20636 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20637
20638         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20639         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20640         function from gnome-libs.  This uses the right path separator
20641         based on the OS, and also works around a bug in some systems where
20642         a double slash is not allowed. 
20643         (default_assembly_name_resolver): Use g_concat_dir_and_file
20644         (mono_assembly_open): ditto.
20645
20646 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20647
20648         * metadata.c (mono_metadata_signature_equal): impl.
20649
20650         * *: void is now a realy MonoType (instead of using NULL)
20651         
20652         * metadata.c (do_mono_metadata_parse_type): use
20653         mono_metadata_parse_type to parse void value.
20654
20655 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20656
20657         * metadata.c, metadata.h: in the signature and method header store
20658         only the space required for holding the loca vars and incoming arguments.
20659
20660 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20661
20662         * metadata.c (do_mono_metadata_parse_type): treat void like any
20663         other type (instead of assigning NULL);
20664
20665 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20666
20667         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20668
20669 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20670
20671         * image.c (do_mono_image_open): added a cache for arrays.
20672
20673 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20674
20675         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20676         decode a single column from a row in a metadata table and changes
20677         to take advantage of it in the typedef locator (gives a nice speed up).
20678         Store offset info for function params.
20679
20680 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20681
20682         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20683
20684 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20685
20686         * assembly.c: how could mono_assembly_close () had ever worked?
20687         * metadata.c, metadata.h: provide offset info for local vars.
20688         Implement mono_type_size () to take care of alignment as well
20689         as size (it was mono_field_type_size in cli/class.c before).
20690
20691 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20692
20693         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20694
20695         * assembly.h (CORLIB_NAME): set to corlib.dll
20696
20697         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20698
20699 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20700
20701         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20702         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20703         tokentype.h: massive namespace cleanup.
20704
20705 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20706
20707         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20708
20709 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20710
20711         * metadata.c (mono_metadata_free_type): added check for type !=
20712         NULL (void) before calling mono_metadata_free_type()
20713
20714 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20715
20716         * metadata.h, row_indexes.h: added header with enumerations to use
20717         to index in the columns from tables in metadata and to decode coded
20718         tokens: we should start using this instead of embedding magic numbers
20719         all over the code.
20720
20721 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20722
20723         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20724         Move metadata_t info from cli_image_info_t to MonoImage, where
20725         it's easily accessible. Changed all the uses accordingly.
20726         Added the method and class caches to MonoImage.
20727         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20728         and mono_metadata_decode_value () signature to be more consistent
20729         with the other parse functions (and simplify code). Taken advantage
20730         of zero-length array allocation with GCC. Removed reduntant (and
20731         wrong) MonoFieldType struct and use MonoParam instead. Changed
20732         mono_metadata_parse_field_type () to use common code for parsing.
20733         Added mono_metadata_typedef_from_field () and
20734         mono_metadata_typedef_from_method () to lookup a typedef index from a
20735         field or method token.
20736         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20737
20738 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20739
20740         * metadata.c (mono_metadata_parse_field_type): Implement. 
20741         (do_mono_metadata_parse_type): Split engine from
20742         mono_metadata_parse_type, so that we can create smaller structures
20743         for things that just have one pointer to the MonoType (look at
20744         the MonoFieldType)
20745
20746 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20747
20748         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20749         as Jan Gray found out, it is incorrect. 
20750
20751 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20752
20753         * assembly.c: Implement asssembly loading.  This loads an image
20754         and loads all the referenced assemblies.  Come to think of it, we
20755         could always do lazy loading of the assemblies. 
20756
20757         * image.c (mono_image_open): Keep loaded images in a hashtable.
20758
20759         * image.h (MonoImage): Add reference count.
20760
20761 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20762
20763         * assembly.c (mono_assembly_open): Keep track of the file name in
20764         case the assembly has no ASSEMBLY table.
20765
20766         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20767         from get.c here.
20768
20769 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20770
20771         * metadata.c, metadata.h: decode local vars in method header
20772         parse function. Change callers accordingly.
20773
20774 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20775
20776         * metadata.h, cil-coff.h: protect against multiple inclusion.
20777         Added some new structures to hold information decoded from metadata:
20778         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20779         and relevant decoding/free functions.
20780         * metadata.c: implement decoding functions. Add warning for out of bounds
20781         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20782         all the info about a method signature and invocation. Remove check on
20783         uninitialized local var in parse_mh() and fix memory leak.
20784
20785 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20786
20787         * metadata.h: More macros.
20788
20789         * tokentype.h: New file.
20790
20791 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20792
20793         * assembly.c: added a consistency check and initialize
20794         some structures with g_new0().
20795         * metadata.c: fixed a couple more bugs in table size computation
20796         and add other checks for out-of bound access to metadata.
20797
20798 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20799
20800         * metatada.c: fix bugs computing table sizes. Spew a
20801         warning when index in string heap is out of bounds.
20802
20803 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20804
20805         * metadata.h: Add a couple of macros to manipulate tokens. 
20806
20807 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20808
20809         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20810         cli_section_tables).
20811
20812 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20813
20814         * metadata.c (mono_metadata_user_string): New function, provides
20815         access to the UserString heap. 
20816
20817 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20818
20819         * metadata.c: Add inline documentation.
20820
20821 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20822
20823         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20824         files. 
20825
20826 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20827
20828         * typeattr.h: New file, TypeAttribute flags. 
20829
20830 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20831
20832         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20833         mono_assembly_ensure_section): Section loading code.
20834         (load_section_tables): Load the sections.
20835
20836         * mono/metadata/metadata.c (mono_metadata_locate_token,
20837         mono_metadata_locate): Functions to locate the information
20838         definition given a token or a table and an index.
20839         (mono_metadata_compute_table_bases): New.
20840         (compute_size): New function to compute the sizes of the various
20841         tables.
20842
20843         * mono/metadata/metadata.h: Finish listing the different index
20844         types. 
20845
20846         * mono/metadata/pedump.c: Improve to dump new information.
20847
20848 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20849
20850         * mono/metadata/metadata.c: Entered all the tables matching
20851         Beta2. 
20852
20853         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20854
20855
20856