Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
3
4         * marshal.c: memory retention fixes: use the proper
5         image cache for runtime_invoke method lookups.
6
7 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
8
9         * mempool.c: added code to help debug mempool allocations.
10
11 2007-01-11  Dick Porter  <dick@ximian.com>
12
13         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14         support (experimenting with faking it with IP_MTU_DISCOVER for
15         systems that don't have IP_DONTFRAGMENT.)
16         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17         icall.
18
19         * icall-def.h: new System.Net.Sockets.Disconnect icall.
20
21         * socket-io.h: Add new fields to MonoSocketAsyncResult
22         corresponding to the new ones in Socket.cs.
23
24 2007-01-11  Raja R Harinath  <rharinath@novell.com>
25
26         Fix IronPython regression mentioned in #80249
27         * metadata.c (do_mono_metadata_parse_generic_class): Clear
28         'cached_context' field, since it may have been initialized as a
29         side-effect of metadata parsing.
30
31         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
32         (_MonoGenericClass.cached_class): Move here and rename from lone
33         remaining field of ...
34         (_MonoInflatedGenericClass): ... this.  Remove.
35         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
36         to changes.
37
38         Fix mcs/tests/test-128.cs regression.
39         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
40         2007-01-10 change below.
41         [MONO_TYPE_OBJECT]: Recurse into array case.
42
43 2007-01-11  Raja R Harinath  <harinath@gmail.com>
44
45         * class-internals.h (mono_get_inflated_generic_class): Remove.
46         * class.c (mono_get_inflated_generic_class): Remove.
47         (mono_generic_class_get_class): Rename from
48         mono_class_create_generic.
49         (mono_class_from_mono_type) [GENERICINST]: Use it.
50         * reflection.c, metadata.c: Update to changes.  Use
51         'mono_class_from_mono_type'.
52
53 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
54
55         * reflection.c: use passed type when encoding an array element
56         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
57
58 2007-01-09  Robert Jordan  <robertj@gmx.net>
59
60         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
61         result arguments (someDelegate.EndInvoke (unrelatedAres)).
62         Fixes bug #80392.
63
64 2007-01-09  Raja R Harinath  <rharinath@novell.com>
65
66         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
67
68         * object.c (set_value): Avoid aliasing between type->data.klass
69         and type->data.generic_class.
70
71         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
72
73 2007-01-08  Raja R Harinath  <rharinath@novell.com>
74
75         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
76         between type->data.klass and type->data.generic_class.
77
78 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
79
80         * marshal.c: In MS.NET, StringBuilder objects are not copied by
81         value in out parameters.
82
83 2007-01-08  Raja R Harinath  <rharinath@novell.com>
84
85         Simplify invariant for MonoGenericClass::klass field.
86         * class.c (mono_class_create_generic): Verify 'klass' is null.
87         * metadata.c (do_mono_metadata_parse_generic_class): Don't
88         initialize 'klass' field.
89
90 2007-01-05  Raja R Harinath  <rharinath@novell.com>
91
92         Ongoing work to avoid redundant data and simplify invariants.
93         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
94         'generic_class', and change type to a GenericInst.
95         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
96         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
97
98 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
99
100         * class.c : skip io-layer under PLATFORM_WIN32.
101
102 2007-01-03  Tor Lillqvist  <tml@novell.com>
103
104         Fix #80305: In a bundled executable, look in the bundled exe
105         assembly to determine the runtime version. Add the possibility to
106         bundle also the machine.config file.
107         
108         * assembly.c (mono_assembly_open_from_bundle): Make
109         non-static. Allow being called even if we have no bundled
110         assemblies, and return NULL right away in that case.
111
112         * domain-internals.h: Declare mono_assembly_open_from_bundle()
113         here.
114
115         * domain.c (app_config_parse): Take an assembly exe file name as
116         parameter instead of a config file name. Check for a bundled
117         config file for that assembly by calling
118         mono_config_string_for_assembly_file() (see below) before looking
119         for one in the file system.
120         (get_runtimes_from_exe): Corrsponding change to call of
121         app_config_parse().
122         (get_runtimes_from_exe): Check for bundled assembly exe file first
123         by calling mono_assembly_open_from_bundle(). If no bundled
124         assembly exe file is found, call mono_image_open() as before to
125         look it up in the file system.
126
127         * mono-config.c: Add variable bundled_machinec_onfig.
128         (mono_config_string_for_assembly_file): New function.
129         (mono_config_for_assembly): Move code snippet that looks for a
130         bundled assembly .config file into the above new function. Call
131         it.
132         (mono_register_machine_config, mono_get_machine_config): New
133         functions to set and retrieve
134
135         * assembly.h: Declare mono_register_machine_config().
136
137         * mono-config.h: Declare mono_get_machine_config() and
138         mono_config_string_for_assembly_file().
139
140         * icall.c: No declaration of environ necessary on Win32. It is
141         declared (as a macro expanding to a function call) in stdlib.h.
142         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
143         New internal mono function. Returns the value of
144         mono_get_machine_config() as a Mono string.
145
146         * icall-def.h: Add get_bundled_machine_config().
147
148 2007-01-04  Raja R Harinath  <rharinath@novell.com>
149
150         Remove redundant field
151         * class-internals.h (_MonoGenericContext.container): Remove field.
152         * loader.c (mono_method_get_signature_full): Don't parse a
153         "container" for a signature parse when the signature is inflated
154         immediately.
155         (method_from_methodspec): Likewise, for a generic_inst.
156         * class.c, metadata.c, reflection.c: Update to changes.
157
158 2006-01-04  Raja R Harinath  <rharinath@novell.com>
159
160         * class-internals.h (_MonoGenericClass): Rename 'context' field to
161         'cached_context', and change semantics -- it starts off NULL, and
162         is initialized on demand.
163         * class.c (mono_generic_class_get_context): New accessor to
164         replace 'context' field accesses.
165         (mono_class_get_context): New helper.
166         (*): Update to changes.
167         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
168
169 2007-01-03  Miguel de Icaza  <miguel@novell.com>
170
171         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
172         before the memcpy.   Fixes Marshal2 regression.
173
174 2007-01-02  Jb Evain  <jbevain@gmail.com>
175
176         * blob.h: add a MONO_TYPE_ENUM definition
177         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
178         fix the encoding of arrays of enums in custom attributes.
179
180         Fixes #79666.
181
182 2007-01-01  Miguel de Icaza  <miguel@novell.com>
183
184         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
185         string is null terminated, but only cut the string short if it
186         overflows the buffer.   
187         
188         (mono_string_to_byvalstr): Also fix this routine.   The code here
189         was not properly terminating a string (it was only terminated
190         because of the previous catch-all memset). 
191
192         I left the memset, because I do not know if applications expect
193         the runtime to clear this region. 
194
195         Fixes #79944.
196
197         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
198         Clear the error before returning to unmanaged code to prevent the
199         runtime from being confused later on (fixes  80420).
200         (ves_icall_type_from_name): Always call mono_loader_clear_error
201         after parsing a type that could have failed.
202         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
203
204         * loader.c (mono_loader_clear_error): Fix indentation.
205
206 2006-12-28  Martin Baulig  <martin@ximian.com>
207
208         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
209
210 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
211
212         * reflection.c: patch from Rolf Bjarne Kvinge to fix
213         getting a token for an EnumBuilder.
214
215 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
216
217         * reflection.c: be more careful in case resource generation
218         fails to create the data array.
219
220 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
221
222         * sgen-gc.c: write barrier for clone and fix unregister handles.
223
224 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
225
226         * reflection.c: some fixes needed in the generics code for the moving GC.
227
228 2006-12-22  Robert Jordan  <robertj@gmx.net>
229
230         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
231         account. Fixes bug #80299.
232
233 2006-12-21  Raja R Harinath  <rharinath@novell.com>
234
235         Fix WaitHandle usage in delegates.
236         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
237         * object.c (mono_wait_handle_new): Use the property set method to
238         initialize the handle.
239         (mono_wait_handle_get_handle): New.
240         * threadpool.c (mono_async_invoke): Use it.
241         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
242         Likewise.
243         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
244
245 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
246
247         * marshal.c (emit_marshal): Call emit_marshal_variant and
248         emit_marshal_com_interface when applicable.
249         (emit_marshal_variant, emit_marshal_com_interface): Add
250         methods for this case and remove if's from emit_marshal_object.
251         
252 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
253
254         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
255
256 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
257
258         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
259         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
260         and GlobalFree on Windows. Remove FIXME.
261
262 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
263
264         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
265         implementation for managed objects.
266
267 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
268
269         * object.c: implemented code to be used for checking
270         that no reference field overlaps with non-references.
271
272 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
273
274         * threadpool.c: fix queue code to be compatible with the
275         moving GC.
276
277 2006-12-18  Miguel de Icaza  <miguel@novell.com>
278
279         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
280         in structures by throwing ArgumentNullException.
281
282         (emit_marshal_safehandle): Also when they are null parameters.
283
284         (emit_marshal_safehandle): Add support for ref
285         SafeHandles parameters
286
287 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
288
289         * profiler.c: updated to use the mono-dl API instead of
290         gmodule.
291
292 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
293
294         * profiler.c: updated to use the mono-dl dynamic loading
295         API instead of gmodule.
296
297 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
298
299         * profiler.c: use readlink, older versions of glib don't have
300         g_file_read_link ().
301
302 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
303
304         * profiler.c: try to detect the path to mono if libc fails to provide
305         a useful name (bug #80286).
306
307 2006-12-16  Raja R Harinath  <rharinath@novell.com>
308
309         Fix #80242
310         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
311         instance, use the generic type definition instead.
312         (ves_icall_Type_GetNestedTypes): Likewise.
313         * class.c (mono_class_create_generic): Always set the
314         nested_classes of a generic instance to NULL, even if the generic
315         type definition has nested types.
316
317 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
318
319         * marshal.c (mono_string_from_bstr): Revert previous Windows change
320         and fix on Linux.
321         
322 2006-12-15  Miguel de Icaza  <miguel@novell.com>
323
324         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
325         my arguments were in the wrong order.   I also fixed the Windows
326         version which seems to have had the same issue.
327
328         (mono_free_bstr): On Unix, this is g_free.
329         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
330         conversions (for the tests in corlib to pass).
331
332 2006-12-14  Miguel de Icaza  <miguel@novell.com>
333
334         * marshal.c (emit_ptr_to_object_conv): For now, ignore
335         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
336         exception if a ref SafeHandle in a struct has changed).
337         
338         (emit_struct_conv): Do not perform layout checks for classes
339         derived from SafeHandle, as those are specially handled. 
340
341         (emit_object_to_ptr_conv): Add support for
342         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
343
344         (emit_marshal_safehandle): Implement conversion of return values
345         of safehandles (MARSHAL_ACTION_CONV_RESULT).
346         
347         * threads.c: WaitHandle now is compiled with two different handles
348         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
349         for 2.0.
350         
351         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
352         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
353         these routines to cope with both kinds of fields.
354
355 2006-12-12  Miguel de Icaza  <miguel@novell.com>
356
357         * metadata.c (mono_type_to_unmanaged): Handle the case where
358         type->data.klass is a SafeHandle, and in that case, return the
359         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
360         MONO_MARSHAL_CONV_SAFEHANDLE. 
361
362 2006-12-11  Miguel de Icaza  <miguel@novell.com>
363
364         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
365         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
366         calling emit_marshal_object.
367
368         (emit_marshal_safehandle): Implement marshalling of
369         SafeHandle parameters (no ref support yet).
370
371         (MarshalAction): Document the defines as I implement
372         them for SafeHandle.
373
374         (emit_marshal_object): indentation police.
375
376         * class-internals.h: Define MonoSafeHandle.
377         Add safehandle_class to MonoDefaults type.
378
379         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
380         list of classes to check for fields. 
381
382         * domain.c (mono_init_internal): Add SafeHandle to the list of
383         mono_defaults loaded.
384
385 2006-12-15  Raja R Harinath  <rharinath@novell.com>
386
387         Fix #80253
388         * reflection.c (mono_reflection_bind_generic_parameters): If the
389         generic type definition is a type builder, ensure that it is fully
390         initialized before instantiating it.  Kill some dead code.
391
392 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
393
394         * object.c: clear the loader_error () before loading
395         more metadata stuff (bug #80258).
396
397 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
398
399         * icall.c, icall-defs.h: type modifiers icalls for
400         parameters and properties.
401
402 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
403
404         * object.c, icall.c: fixed warnings.
405
406 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
407
408         * marshal.c: fixed a couple of leaks and coding style in a few places.
409
410 2006-12-08  Dick Porter  <dick@ximian.com>
411
412         * process.c: Cope with NULL ProcessStartInfo arguments on windows
413         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
414         80173.
415
416 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
417
418         * process.c: ProcessStartInfo may have only filename set and
419         arguments can be NULL.
420
421 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
422
423         * icall.c: fix leak found by Robert Jordan.
424
425 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
426
427         * marshal.c, marshal.h: generate managed method to access an element
428         of a multi-dimensional array.
429
430 2006-11-30  Paolo Molaro (lupus@ximian.com)
431
432         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
433
434 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
435
436         * icall.c: back out GetFields () fix until the serialization code is
437         fixed to not depend on the incorrect behaviour.
438
439 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
440
441         * profiler.c: provide defaults if none are set.
442
443 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
444
445         * Makefile.am, attrdefs.h: new public header file with
446         constants for attributes for use by embedders.
447
448 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
449
450         * icall.c: GetFields () fix for bug #80064.
451
452 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
453
454         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
455         removed long unused icalls.
456
457 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
458   
459         * marshal.c: 
460                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
461                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
462                 can be generated without a delegate class.
463                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
464         
465         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
466
467 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
468
469         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
470         #80069.
471
472 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
473
474         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
475         icall-def.h: added icalls needed by System.GC.
476
477 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
478
479         * loader.c: ensure the class in catch clauses is handled
480         correctly for generics methods (fixes bug#79980).
481
482 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
483
484         * monitor.h, monitor.c: added mono_locks_dump () function
485         to help debug deadlocks involving managed locks.
486
487 2006-11-13  Dick Porter  <dick@ximian.com>
488
489         * file-io.c (get_file_attributes): If the file is a symlink try
490         and get the stat data for the target, but also add the
491         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
492         the specs for the windows symlink support, but will probably have
493         to be reworked when I have test data from a vista machine.  Fixes
494         bug 79887.
495
496 2006-11-13  Dick Porter  <dick@ximian.com>
497
498         * gc.c (mono_domain_finalize): 
499         * marshal.c (mono_delegate_begin_invoke): 
500         * threadpool.c (socket_io_init, mono_thread_pool_init)
501         (mono_thread_pool_finish): 
502         * monitor.c (mono_monitor_try_enter_internal): 
503         * threads.c (mono_thread_resume, mono_thread_init)
504         (mono_thread_suspend_all_other_threads)
505         (mono_thread_execute_interruption): 
506         * appdomain.c (mono_domain_unload): Check for NULL error returns
507         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
508         75733.
509
510 2006-11-11  Miguel de Icaza  <miguel@novell.com>
511
512         * process.c
513         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
514         Only close the handle if the value of the handle is not
515         INVALID_HANDLE_VALUE.  This just makes the process a bit more
516         robust.
517
518         Improvement for #75733, so that we do not run into this problem. 
519
520         
521         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
522         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
523         internal variables.  Fixes #79462 
524         
525
526 2006-11-09  Dick Porter  <dick@ximian.com>
527
528         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
529         Use poll() not select().  Fixes bug 79397.
530
531 2006-11-09  Raja R Harinath  <rharinath@novell.com>
532
533         Fix #79872
534         * assembly.c (mono_assembly_load_from_full): Check that the given
535         image has an assembly manifest.
536
537 2006-11-09  Ankit Jain  <jankit@novell.com>
538
539         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
540         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
541         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
542
543 2006-11-07  Dick Porter  <dick@ximian.com>
544
545         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
546         Put the old resolver behaviour back for pre-2.0 profiles.
547
548 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
549
550         * threadpool.c: precise GC and locking fixes.
551
552 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
553
554         * class.c: don't load types that have an explicit unaligned
555         managed reference. Provide better info in the TypeLoad exception.
556         Part of the fix for bug #79744.
557         * object.c: use the correct check for class type load issues.
558
559 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
560
561         * class.c: enforce alignment of fields with managed references
562         even when Pack=1 is forced by the user (bug #77788).
563
564 2006-11-03  Dick Porter  <dick@ximian.com>
565
566         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
567         If the address reverse lookup fails, return it as the hostname
568         anyway.  Fixes bug 79721.
569
570 2006-11-03  Dick Porter  <dick@ximian.com>
571
572         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
573         Fix build on Windows.
574
575 2006-11-02  Dick Porter  <dick@ximian.com>
576
577         * icall-def.h: 
578         * object-internals.h: 
579         * exception.c (mono_get_exception_thread_interrupted): 
580         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
581         Fixes bug 74525.
582
583         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
584         Check for pending Thread.Interrupt.
585
586 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
587         * loader.c: Fixed bug 79684.
588
589 2006-10-27  Dick Porter  <dick@ximian.com>
590
591         * file-io.c (get_file_attributes): Force symlinks to directories
592         to be returned as a regular file.  Fixes bug 79733.
593 2006-10-26  Dick Porter  <dick@ximian.com>
594
595         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
596         CreateFile to open a directory then we need to set the
597         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
598
599 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
600
601         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
602         friends.
603
604 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
605
606         * sgengc.c: small cleanup of timer code.
607
608 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
609
610         * sgen-gc.c: fix some warnings and start adding support for
611         complete object removal on domain unload.
612
613 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
614
615         * assembly.c: build_assembly_name should not consider a version
616         number without build or revision number invalid. Fixes bug #79715.
617
618 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
619
620         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
621         call kernel32 function OutputDebugString directly.
622         
623         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
624         
625 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
626
627         * reflection.c: small cleanup, using a function to insert a MonoString
628         in the string heap.
629
630 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
631
632         * reflection.c: moving GC fixes.
633
634 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
635
636         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
637         all the objects with finalizers belonging to an unloading appdomain.
638
639 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
640
641         * sgen-gc.c: added ability to allocate even when the nursery is fully
642         pinned and fixed a couple of bugs.
643
644 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
645
646         * threads.h: Revert the last change for now.
647
648         * threads.h (mono_thread_get_pending_exception): Rename this to
649         mono_thread_get_undeniable_exception ().
650
651 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
652
653         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
654         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
655         when fname does not refer to valid assembly. This result in a more
656         meaningful error message.
657         * exception.c: added mono_get_exception_bad_image_format2 which 
658         constructs a BadImageFormatException using the ctor taking a custom
659         message and the file name. Passing in a NULL msg results in a default
660         message.
661         * exception.h: define mono_get_exception_bad_image_format2 function.
662         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
663         when file name pointed to an invalid IL image. Use 
664         mono_get_exception_file_not_found2 to construct FileNotFoundException,
665         as this results in a more meaningful error message.
666
667 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
668
669         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
670         #79465.
671
672 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
673
674         * metadata.c (mono_type_size): Change the align parameter to guint32 for
675         consistency with the other _size functions.
676         (mono_type_stack_size): Ditto.
677
678         * class.c object.c icall.c: Fix warnings caused by the above change.
679
680         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
681
682         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
683
684         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
685
686 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
687
688         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
689         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
690         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
691         threadpool.h, threads-types.h: mark more internal functions.
692
693 2006-10-11  Dick Porter  <dick@ximian.com>
694
695         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
696         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
697         reproduce the bug even before applying the fix.)
698
699 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
700
701         * reflection.c: allow retrieving attributes for arguments in generic
702         methods (bug #79241).
703
704 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
705
706         * debug-mono-symfile.c: properly check fopen () result (found by
707         coverity).
708
709 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
710
711         * reflection.c: make error message clearer and fixed two
712         issuelets found by Coverity.
713
714 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
715
716         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
717
718 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
719
720         * object-internals.h, gc-internal.h, profiler-private.h:
721         mark internal functions.
722
723 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
724
725         * reflection.c: put data in the text section.
726         * icall.c: recognize more types in type_from_typename ().
727         * process.c, marshal.c: added some GC FIXMEs.
728
729 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
730
731         * loader.c: check for NULL before initializing.
732
733 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
734
735         * gc.c (finalizer_thread): Use a non-alertable wait here.
736
737         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
738         until the correct solution is found.
739
740 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
741
742         * reflection.c (mono_module_get_object): Avoid an assert when operating on
743         modules with no metadata. Fixes #79596.
744
745         * image.c (load_metadata_ptrs): Put back the error message when
746         the #- heap is encountered since the support is not complete yet.
747
748 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
749
750         * gc.c: do not allow the user to SuppressFinalize () a
751         delegate because it would leak the trampoline if present.
752
753 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
754
755         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
756         PropertyPtr table.
757
758 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
759
760         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
761
762         * metadata.c (mono_metadata_get_param_attrs): Ditto.
763
764         * row-indexes.h: Add definitions for *Ptr tables.
765
766         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
767
768         * metadata.c (mono_metadata_translate_token_index): New helper function to
769         translate table indexes used in uncompressed metadata.
770         (mono_metadata_decode_table_row): Ditto.
771         (mono_metadata_decode_table_row_col): Ditto.
772
773         * metadata.c: Add table schema for *Ptr tables.
774
775         * class.c loader.c: Use the new helper function to access the affected metadata
776         tables.
777         
778         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
779         #38532.
780         
781 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
782
783         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
784         sequences which can be unbounded in size. Fixes #79583.
785
786 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
787
788         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
789         static initialization.
790
791         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
792
793         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
794
795         * domain.c (mono_domain_free): Free up type_init_exception_hash.
796
797         * object.c (mono_runtime_class_init): Implement correct semantics when a static
798         ctor fails, i.e. throw the same exception on subsequent accesses.
799         
800 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
801
802         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
803         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
804         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
805         Handle marshalling of interfaces and VARIANTs contained in structs.
806         
807         Code is contributed under MIT/X11 license.
808         
809 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
810
811         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
812         
813         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
814         mempool.
815
816 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
817
818         * console-io.c: ignore previous SIGINT handler.
819
820 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
821
822         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
823         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
824         #79460, #79461, #79485.
825
826         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
827
828         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
829         #79217.
830
831 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
832
833         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
834         could be generated from it.
835
836 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
837
838         * rand.c: fix read loop to correctly handle EINTR.
839
840 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
841
842         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
843         internal calls are defined to keep methods closer to the declaring
844         type and allow a significant reduction in runtime relocations and
845         memory usage.
846
847 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
848
849         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
850         exception message to have FileNotFoundException use the default
851         assembly load error message. Fixes bug #79426.
852         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
853
854 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
855
856         * threadpool.c: (start_thread_or_queue) use the root domain when
857         creating the thread instead of the async object one.
858
859 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
860
861         * class.c, object.c, class-internals.h, reflection.c:
862         for arrays, store element_size inside MonoClass (speedup
863         for array object creation).
864
865 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
866
867         * icall.c: fixed CodeBase to use the file name and not the module
868         name (bug #79365).
869
870 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
871
872         * mono-debug.c, mono-debug.h: export find_method as
873         mono_debug_find_method ().
874
875 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
876
877         * debug-helpers.c, class-internals.h: added a few functions useful
878         when debugging under gdb.
879
880 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
881
882         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
883         characters that need special handling.
884
885 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
886
887         * mono-config.c: make the os/cpu specification more flexible,
888         allowing lists and negation.
889
890 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
891
892         * marshal.c: COM Interop fixes. Handle case where method->klass.
893         is interface. Handle BSTR/MonoString when null. Use CDECL as 
894         calling convention on non-windows platforms. This is for
895         compatibility with XPCOM and MainWin COM.
896         
897         Code is contributed under MIT/X11 license.
898         
899
900 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
901
902         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
903         correctly. Fixes #79217.
904
905         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
906
907 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
908
909         * mono-config.c: allow both an os and cpu attribute for dllmap
910         and dllentry elemnets to enable a single config file to be used
911         for multiple architectures.
912
913 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
914
915         * loader.c: MonoLoaderError was cleared too soon on load failure.
916         Fixes bug #79424.
917
918 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
919
920         * icall.c: use the defining class vtable when accessing a
921         static field, not a pobblibly derived class.
922
923 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
924
925         * icall.c string-icalls.c: Remove references to unicode.h.
926
927         * unicode.h unicode.c Makefile.am: Remove these unused source files.
928
929         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
930
931         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
932         indicating the image where custom marshaller types should be looked up.
933         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
934         custom marshallers, instead of corlib. Fixes #79425.
935
936 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
937
938         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
939
940 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
941
942         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
943         Implement Environment.ProcessorCount.
944         
945         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
946         Implement Environment.ProcessorCount.
947         
948         * icall.c: 
949         Add Environment.ProcessorCount icall.
950         
951         Patch by Jason McFall.
952
953 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
954
955         * assembly.c: don't append .exe/.dll when the filename already contains
956         one of those extensions.
957
958 2006-09-12  Martin Baulig  <martin@ximian.com>
959
960         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
961         to array interfaces.
962
963 2006-09-11  Martin Baulig  <martin@ximian.com>
964
965         * reflection.c (mono_image_build_metadata): Create the
966         MethodImpl's after emitting all types and methods, so we don't
967         need another fixup pass for them.
968
969 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
970
971         * class.c (mono_class_from_name_case): Fix regression introduced by the last
972         change.
973
974 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
975
976         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
977         unload.
978
979 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
980
981         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
982         args is not set. Fixes #78926.
983
984 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
985
986         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
987
988         * image.c (load_class_names): Move this to class.c, and rename it to 
989         'mono_image_init_name_cache'.
990         (load_modules): Fix a warning.
991
992         * class.c icall.c image.c: Initialize image->name_cache lazily.
993
994         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
995         on its name using information in the AOT file.
996
997         * class.c (mono_class_from_name): Use the new hook function.
998
999 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1000
1001         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1002         correctly.
1003
1004         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1005         Fixes #79289.
1006         
1007 2006-09-06  Martin Baulig  <martin@ximian.com>
1008
1009         * icall.c (mono_lookup_internal_call): Small fix.
1010
1011 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1012
1013         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1014         double g_free.
1015
1016 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1017
1018         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1019         when --debug is specified.
1020
1021 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1022
1023         * class.c (setup_generic_array_ifaces): Fix a warning.
1024
1025 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1026
1027         * Temporarily remove the patch to assemly.c that checks the
1028         assembly versions as it breaks our gacutil.
1029
1030 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1031
1032         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1033
1034         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1035         a net 1.0 runtime.
1036
1037         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1038         created using the default ctor. Fixes #79152.
1039         (mono_string_builder_to_utf16): Ditto.
1040
1041 2006-09-01  Martin Baulig  <martin@ximian.com>
1042
1043         Fix handling of the generic array interfaces.
1044
1045         * class-internals.h
1046         (MonoDefaults): Removed `generic_array_class' and added
1047         `generic_ilist' class.
1048
1049         * class.c
1050         (mono_bounded_array_class_get): Add the new generic array interfaces.
1051         (setup_generic_array_ifaces): New static method; create vtable
1052         entries for each method in the generic array interfaces.
1053
1054         * metadata.c
1055         (select_container): Allow "parent-less" generic methods.
1056
1057         * marshal.c
1058         (mono_marshal_get_generic_array_helper): New public method.
1059
1060         * icall.c
1061         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1062         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1063         moved the interncall into System.Array.
1064
1065 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1066
1067         A few more cases of avoiding work on types with ->byref set.
1068         Has the real fix for #79238
1069         * icall.c (is_generic_parameter): New helper.
1070         (ves_icall_Type_GetGenericParameterPosition): Use it.
1071         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1072         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1073         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1074         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1075         reference types.
1076         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1077         reference types.
1078         (ves_icall_Type_get_IsGenericInstance): Likewise.
1079         (ves_icall_Type_get_IsGenericType): Likewise.
1080
1081 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1082
1083         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1084         class if possible.
1085
1086         * mempool.h (mono_mempool_get_allocated): New helper function.
1087
1088         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1089         change.
1090
1091         * mempool.c: Fix warnings and the calculation of stats.
1092
1093         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1094
1095         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1096
1097         * loader.c (mono_get_method_from_token): Update method_count stat.
1098
1099         * class-internals.h (MonoStats): Add some stats.
1100
1101 2006-08-31 Robert Jordan  <robertj@gmx.net>
1102
1103         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1104         with managed variants.
1105         All code is contributed under the MIT/X11 license.
1106         
1107 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1108
1109         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1110         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1111
1112         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1113
1114         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1115         with cycles in classes.
1116
1117         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1118
1119         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1120         missing a [MarshalAs] directive. Fixes #79203.
1121
1122         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1123         klass->marshal_info. Fixes #79217.
1124
1125 2006-08-30  Martin Baulig  <martin@ximian.com>
1126
1127         Committing a patch from Joachim Ante <joe@otee.dk>:
1128         Add support for binary data symbol stores.
1129
1130         * debug-mono-symfile.c
1131         (mono_debug_open_mono_symbol_file): Renamed into
1132         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1133         arguments.
1134
1135         * mono-debug.c
1136         (mono_debug_open_image): Added `raw_contents' and `size' args.
1137         (mono_debug_init_2_memory): New public function.
1138
1139 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1140
1141         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1142
1143 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1144
1145         * appdomain.c: implement support for ShadowCopyFiles.
1146
1147 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1148
1149         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1150         when value is NULL (and should remove CID #51).
1151
1152 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1153
1154         * image.c: moved 2 functions to ../utils.
1155
1156 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1157
1158         * gc.c: cope with the target object of a GC handle being NULL
1159         (bug #78877).
1160
1161 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1162
1163         * class.c: recursively check parent's explicit implementations
1164         of interface methods (fixes bug #79125).
1165
1166 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1167
1168         * filewatcher.c: Avoid warnings when building, do not redefine
1169         constants that are defined.
1170
1171         Remove warnings.
1172
1173 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1174
1175         * image.c: don't fail when the link points to an absolute path.
1176
1177 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1178
1179         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1180         Fix CID #3.
1181
1182 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1183
1184         * image.c (full_path): A new method used to obtain the actual path
1185         of an assembly even in the presence of symbolic links.  
1186
1187         This is necessary for the case where we are running a binary that
1188         has been GACed, but we are using the "published" path name
1189         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1190         file in the GAC.
1191
1192         This was the source of the failure for the `xsp' command with the
1193         recent AppDomain changes, as far as the runtime was concerned,
1194         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1195         $prefix/mono/gac/blah/version/blah.exe.
1196
1197         (do_mono_image_open): use full path
1198
1199 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1200
1201         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1202
1203 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1204
1205         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1206         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1207
1208 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1209
1210         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1211         small structures. Fixes #78990.
1212
1213 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1214
1215         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1216
1217         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1218
1219 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1220
1221         * appdomain.c:
1222         * marshal.c: don't load all the assemblies from a domain into newly
1223         created ones. The new domains might have different rules and load
1224         assemblies from different locations. Fixes bug #76757.
1225
1226         Patch by Lluis. Conflicts resolved by Brian Crowell.
1227
1228 2006-08-16  Alp Toker  <alp@atoker.com>
1229
1230         * socket-io.c: First half of the fix for #79084.
1231         Set sa_size to the length of the content, not that of the struct.
1232         Don't add NULL suffix to the content, this should be done in
1233         managed code if needed.
1234
1235 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1236
1237         Fix part of #79012
1238         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1239         mono_metadata_parse_type returns NULL.
1240
1241 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1242
1243         * normalization-tables.h : new file for string normalization data.
1244         * locales.c, locales.h, icall.c :
1245           added load_normalization_resource() for string normalization,
1246           and icall as well.
1247         * Makefile.am : added normalization-tables.h to the sources.
1248
1249 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1250
1251         * marshal.c: Add more helper functions to reduce code duplication and use them
1252         everywhere.
1253
1254 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1255
1256         * marshal.c: Fix non-x86 stdcall warnings.
1257         
1258         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1259         them everywhere.
1260
1261 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1262
1263         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1264         type check on multi-dimensional arrays. Fixes #79000.
1265
1266 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1267
1268         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1269         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1270         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1271         * class-internals.h: add is_com_object to class structure.
1272         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1273         null checks to COM object marshalling. Fix .ctor call on RCW.
1274         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1275         
1276         All code is contributed under the MIT/X11 license.
1277
1278 2006-08-09  Dick Porter  <dick@ximian.com>
1279
1280         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1281         racing mono_monitor_allocator_lock() somewhere, so don't delete
1282         the critical section for now.  Found by running and exiting
1283         monodevelop.
1284
1285 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1288         (ves_icall_System_ComObject_FindInterface): Ditto.
1289         (ves_icall_System_ComObject_CacheInterface): Ditto.
1290
1291         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1292         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1293
1294 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1295
1296         * threadpool.c: treat pipes from process asynchronous reads as sockets
1297         when reading from them, so we get select/poll or epoll to wait for
1298         data.
1299
1300 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1301
1302         * loader.c: Fix a typo (CID #233) in the null check.
1303
1304 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1305
1306         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1307         Hopefully fixes #78949.
1308         
1309         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1310         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1311         bytes. Fixes #78972.
1312
1313 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1314
1315         * filewatcher.c: we need to set errno here.
1316
1317 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1318
1319         * filewatcher.c: let Win32Exception get the error value.
1320
1321 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1322
1323         * filewatcher.c: translate errno into win32 errors for Win32Exception
1324         to know what happened.
1325
1326 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1327
1328         * threadpool.c: Fix more warnings.
1329
1330         * assembly.c (search_loaded): Fix warnings.
1331
1332         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1333         (mono_async_invoke): Ditto.
1334
1335 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1336
1337         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1338         entries for __ComObject type in addition to ComImport types.
1339         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1340         about hash table.
1341         
1342         All code is contributed under the MIT/X11 license.
1343
1344 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1345
1346         * image.c: avoid tentative loading of modulerefs that contain
1347         no metadata (P/Invoke library names).
1348
1349 2006-07-28  Dick Porter  <dick@ximian.com>
1350
1351         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1352         mono_loader_lock() somewhere, so don't delete the critical section
1353         for now.  Found by running and exiting monodevelop.
1354
1355 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1356
1357         * filewatcher.c: define the inotify syscalls when we're building on
1358         linux and have sys/syscall.h. The build system might not have support
1359         for inotify but the target system might have it.
1360
1361 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1362
1363         * domain.c: Documentation updates.
1364
1365         * loader.c (mono_free_method): Do not release the method
1366         information if we are being profiled, as profilers will use this
1367         information at shut down to present some data to the user.
1368
1369         This is needed so that the profiler does not crash, as the
1370         profiler tends to keep MonoMethods around, and they might become
1371         invalid if we free these.
1372
1373         (mono_get_method_constrained): Return the original CIL stream
1374         method as well, so verification can be performed against it.
1375
1376 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1377
1378         * filewatcher.[ch]: support for inotify file system watcher.
1379         * icall.c: add new internal calls for the inotify file system watcher.
1380
1381 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1382
1383         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1384         #78888.
1385
1386 2006-07-20  Dick Porter  <dick@ximian.com>
1387
1388         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1389         warning.
1390
1391 2006-07-20  Dick Porter  <dick@ximian.com>
1392
1393         * threads.c (start_wrapper): Do the thread cleanup while we still
1394         hold a reference to its object.  Fixes bug 78123.
1395
1396 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1397
1398         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1399         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1400           "managed-to-managed".
1401         * icall.c: Redirect string constructors that take sbyte* to
1402           ves_icall_System_String_ctor_RedirectToCreateString.
1403         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1404           to CreateString () methods with matching signature.
1405         * reflection.c: Use original security informations for
1406           MONO_WRAPPER_MANAGED_TO_MANAGED.
1407         * security-manager.c: Use original security informations for
1408           MONO_WRAPPER_MANAGED_TO_MANAGED.
1409         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1410           that is a placeholder and only its address should be used.
1411         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1412           that is a placeholder and only its address should be used.
1413
1414 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1415
1416         Begin implementing COM Interop.
1417         * appdomain.c: Increment corlib version.
1418         * class.c: Set ComImport classes' parent to __ComObject.
1419         * loader.c: Mark cominterop methods as such.
1420         * domain.c: Add __ComObject class to MonoDefaults structure.
1421         * image.c: Add 2 hashtables to the image for COM Interop related methods
1422         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1423         using the mempool allocator
1424         
1425         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1426         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1427         declaration for mono_metadata_type_dup_mp.
1428         
1429         * debug-helpers.c: Added strings for two additional wrapper types
1430         * object.c: Create proxy objects for ComImport classes
1431         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1432         and added __ComObject class to MonoDefaults structure.
1433         
1434         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1435         MonoComInteropProxy and MonoComObject.
1436         
1437         * marshal.c: Added support for COM Interop
1438         (signature_cominterop): Converts managed signature to corresponding
1439         unmanaged COM signature.
1440         (cominterop_get_function_pointer): gets unmanaged function pointer via
1441         COM object vtable
1442         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1443         (cominterop_get_method_interface): returns interface type that method is defined on
1444         (mono_mb_emit_cominterop_call): emits native call to function pointer
1445         gotten from vtable
1446         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1447         that matches signature of unmanaged function.
1448         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1449         (cominterop_get_invoke): forwards call from proxy to __ComObject
1450         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1451         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1452         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1453         
1454         * marshal.h: Added Marshal icall declarations.
1455         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1456         so we can access them in finalizer
1457         
1458 2006-07-14  Dick Porter  <dick@ximian.com>
1459
1460         * object.c (mono_type_initialization_cleanup): Fix a race
1461         condition by temporarily commenting out the critical section
1462         deletion.
1463
1464 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1465
1466         * reflection.c (create_custom_attr): Fix some warnings.
1467         (create_custom_attr_data): Ditto.
1468         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1469         types. Fixes #78855.
1470
1471 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1472
1473         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1474
1475         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1476
1477 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1478
1479         * reflection.c (resolve_object): Add support for DynamicMethod.
1480
1481         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1482         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1483
1484 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1485
1486         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1487         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1488
1489 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1492         Fixes #77888.
1493
1494 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1495
1496         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1497         slightly: remove a shadow local variable.
1498
1499 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1500
1501         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1502         definition that introduces the virtual function slot.
1503         Also fix Coverity #105.
1504
1505 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1506
1507         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1508         for dynamic assemblies. Fixes #78724.
1509
1510 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1511
1512         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1513         Fixes #78722.
1514
1515 2006-06-21  Martin Baulig  <martin@ximian.com>
1516
1517         * reflection.c
1518         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1519         fixes #76484.
1520
1521 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1522
1523         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1524
1525 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1526
1527         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1528         nor TYPEREFs.
1529         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1530         Inflate result if necessary.
1531         (mono_class_get_full): Remove old version.  Rename from
1532         'mono_class_get' and add 'context' argument.  Pass it to
1533         ..._create_from_typespec.
1534         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1535         (mono_ldtoken): Revert change below.
1536
1537 2006-06-20  Martin Baulig  <martin@ximian.com>
1538
1539         * class.c (mono_ldtoken): Don't pass the generic context to
1540         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1541
1542 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1543
1544         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1545         and later freeing it. Fixes #78638.
1546
1547 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1548
1549         * icall.c (mono_class_get_throw): Revert over-zealous error
1550         throwing, the caller for mono_class_get_throw will cope with
1551         errors when classes are not properly initialized already.
1552
1553         The code still copes with loader exceptions though.
1554
1555         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1556         
1557 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1558
1559         Fixes the `make run1' version of RuntimeAbort (to be commited,
1560         source is in Bugzilla).
1561         
1562         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1563         FALSE on class loading failure instead of returning true.
1564
1565         * class.c (mono_class_create_from_typedef): It is possible for
1566         mono_metadata_interfaces_from_typedef_full to fail if a class is
1567         not found, cope with this.
1568         
1569
1570 2006-06-14  Dick Porter  <dick@ximian.com>
1571
1572         * socket-io.c: 
1573         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1574         4.1.1
1575
1576 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1577
1578         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1579
1580 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1581
1582         * icall.c: Another fix for building mono in Visual Studio.
1583
1584 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1585
1586         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1587         
1588 2006-06-09  Martin Baulig  <martin@ximian.com>
1589
1590         * debug-mono-symfile.c: Put this back and really fix it this
1591         time. Sorry for all the trouble.
1592
1593 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * icall.c (mono_class_get_throw): Fix a warning.
1596         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1597         ReflectionTypeLoadException if needed. Fixes #78606.
1598
1599         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1600         (mono_class_init): Ditto.
1601
1602         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1603         ref_only exceptions.
1604         (mono_loader_clear_error): Make this work even if there is no error.
1605
1606 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1607
1608         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1609         Marshal.GetComSlotForMethodInfo using internal call.
1610
1611 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1612
1613         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1614         a function for signalling it.
1615
1616         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1617         a referenced assembly is not found.
1618
1619         * loader.c (mono_loader_error_prepare_exception): Add support for 
1620         LOADER_ERROR_ASSEMBLY. Fix formatting.
1621
1622 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1623
1624         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1625         for VARIANT marshalling on windows and increment corlib version
1626         since Variant struct was added.
1627
1628 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1629
1630         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1631         stack trace line information:
1632
1633         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1634         (Martin) when looking up B which is between A and C, return A not C.
1635
1636         Bug is #78573.
1637
1638         Thanks to Alexander Olk for tracking this down.
1639
1640 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1641
1642         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1643         
1644         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1645         avoid clobbering its value.
1646         (mono_string_to_lpstr): Fix a warning on windows.
1647
1648 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1649
1650         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1651
1652         * reflection.c loader.c: Removed references to 'dummy' flag.
1653
1654         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1655
1656         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1657         it gets GC tracking.
1658
1659         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1660         GC tracking.
1661         
1662         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1663
1664         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1665
1666         * appdomain.c: Bump corlib version.
1667
1668 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1671         CEE_STIND_REF when working with object references.
1672
1673 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1674
1675         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1676         Fixes #78539.
1677
1678 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1679
1680         * loader.c (method_from_memberref): Fix argument value for
1681         mono_loader_set_error_method_load (I was passing the MonoClass
1682         instead of the class name char *).
1683
1684 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1685
1686         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1687         CEE_STIND_REF when working with object references.
1688
1689 2006-05-30  Martin Baulig  <martin@ximian.com>
1690
1691         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1692         mono_method_full_name() change and replace the ':' with a '.'
1693         here.
1694
1695 2006-05-30  Martin Baulig  <martin@ximian.com>
1696
1697         * debug-mono-symfile.c
1698         (mono_debug_symfile_lookup_location): Fix the algorithm:
1699         when looking up B which is between A and C, return A not C.
1700
1701 2006-05-29  Martin Baulig  <martin@ximian.com>
1702
1703         * mono-debug.h
1704         (MonoDebugMethodInfo): Make the typedef public.
1705         (MonoDebugSourceLocation): New public struct.
1706
1707         * mono-debug.c
1708         (mono_debug_source_location_from_address): Removed.
1709         (mono_debug_source_location_from_il_offset): Removed.
1710         (mono_debug_il_offset_from_address): Removed.
1711         (mono_debug_address_from_il_offset): Removed.
1712         (mono_debug_lookup_method): New public function.
1713         (mono_debug_lookup_source_location): New public function; replaces
1714         the old mono_debug_source_location_from_*() functions; see the
1715         inline documentation.
1716         (mono_debug_free_source_location): New public function.
1717         (mono_debug_print_stack_frame): New public function; see the
1718         inline documentation.
1719
1720         * debug-mono-symfile.c
1721         (mono_debug_find_source_location): Renamed into
1722         mono_debug_symfile_lookup_location(); only take a
1723         `MonoDebugMethodInfo *' and an `offset' argument; added inline
1724         documentation.
1725         (mono_debug_find_method): Renamed into
1726         mono_debug_symfile_lookup_method().
1727
1728 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
1729
1730         * assembly.c (mono_assembly_open_full): Dont overwrite the status
1731         returned by mono_image_open_full ().
1732
1733         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1734         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1735         #78517.
1736
1737         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1738         #78518.
1739
1740 2006-05-27  Miguel de Icaza  <miguel@novell.com>
1741
1742         * class.c (mono_class_from_typeref): handle missing images
1743         earlier, deals with bug #78418.   Refactor code; 
1744
1745         Fix a warning introduced in my previous commit (some stale code
1746         from before I revisited my patch).
1747
1748         * class.c (mono_class_create_from_typedef): On failure, remove the
1749         class from the MonoImage->class_cache as the class is not
1750         initialized;   Fixes the leak pointed out by Paolo.
1751
1752 2006-05-25  Dick Porter  <dick@ximian.com>
1753
1754         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
1755         DeleteCriticalSections until I figure out which one may still be
1756         sometimes locked when mono_thread_cleanup is called.
1757
1758 2006-05-24  Dick Porter  <dick@ximian.com>
1759
1760         * threads.c (mono_thread_cleanup): Move the threading cleanup out
1761         of mono_thread_manage and back into its own function, so it can be
1762         called after the finalizer thread has finished.
1763
1764         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1765
1766 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
1767
1768         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1769         Fixes #78495.
1770
1771         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1772         with non-blittable elements.
1773         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1774
1775 2006-05-24  Martin Baulig  <martin@ximian.com>
1776
1777         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1778         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
1779
1780         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1781         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1782         `mono_debugger_event_handler' to NULL.
1783
1784 2006-05-24  Martin Baulig  <martin@ximian.com>
1785
1786         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1787
1788 2006-05-24  Martin Baulig  <martin@ximian.com>
1789
1790         * mono-debug-debugger.h
1791         (mono_debugger_create_notification_function): Added
1792         `MonoCodeManager *' argument.
1793
1794 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1795
1796         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1797
1798 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1799
1800         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1801         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1802         implementation.
1803
1804 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1805
1806         * icall.c: precise GC support: objects can't be stored in unmanaged
1807         memory anymore, even if they are kept alive by other references: since
1808         they can move the GC needs to be able to always find them.
1809
1810 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1811
1812         * object.c: precise GC support for static fields. Support
1813         for moving GCs: write barriers and pinned allocation for interned
1814         strings.
1815
1816 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1817
1818         * domain.c, domain-internals.h: precise GC support for the MonoDomain
1819         structure.
1820
1821 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1822
1823         * class.c, gc.c: sgen and precise GC updates.
1824
1825 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1826
1827         * marshal.h, marshal.c: added write barrier wrapper and precise type
1828         fixes.
1829
1830 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1831
1832         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1833         support.
1834
1835 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1836
1837         * reflection.c: precise and sgen GC updates.
1838
1839 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1840
1841         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1842
1843 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
1844
1845         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1846
1847 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
1848
1849         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1850         MONO_TYPE_OBJECT. Fixes #78462.
1851
1852 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
1853
1854         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
1855         and blittable types.
1856
1857 2006-05-17  Miguel de Icaza  <miguel@novell.com>
1858
1859         * class.c (mono_class_get_exception_for_failure): Implement parts
1860         of a TODO: if the loader error is set (instead of the class
1861         error), we return a Loader exception that can be properly thrown
1862         elsewhere.
1863
1864         This was exposed by some Winforms 2.0 code that I tried to run
1865         (Atsushi pointed me to it).
1866
1867 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1870         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1871         
1872         * marshal.c (emit_marshal_vtype): Add limited support for 
1873         UnmanagedType.LPStruct. Fixes #78427.
1874
1875         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
1876         Applied a patch from kangaroo to fix #77523.
1877
1878 2006-05-17  Martin Baulig  <martin@ximian.com>
1879
1880         * threads.c
1881         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
1882         (debugger_thread_created): Removed.
1883         (debugger_thread_exited): Removed.
1884
1885 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
1886
1887         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1888
1889         * object-internals.h (MonoReflectionResource): Sync with managed version.
1890
1891 2006-05-12  Wade Berrier <wberrier@novell.com>
1892
1893         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
1894
1895 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
1896
1897         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
1898         functions try to allocate from the image mempool.
1899
1900 2006-05-12  Dick Porter  <dick@ximian.com>
1901
1902         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
1903
1904 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
1905
1906         * object.c: The FieldGetter and FieldSetter methods require the full
1907         name of the class, not only the name. Fixes bug #78277.
1908
1909 2006-05-11  Miguel de Icaza  <miguel@novell.com>
1910
1911         * loader.c (method_from_memberref): Do not pass the NULL klass to
1912         mono_loader_set_error_() methods.  Pass the non-NULL value
1913         (class). 
1914
1915 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
1916
1917         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
1918         (mono_assembly_close): Null out assembly->image->references after freeing it.
1919
1920         * image.c (mono_image_close): Free image->references.
1921         
1922         * reflection.c (mono_image_basic_init): Fix a small memory leak.
1923
1924 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1925
1926         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
1927         before checking if it's NULL (g_assert).
1928
1929 2006-05-10  Martin Baulig  <martin@ximian.com>
1930
1931         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
1932         I thought I already killed that two months ago, but now it somehow reappeared.
1933
1934 2006-05-10  Martin Baulig  <martin@ximian.com>
1935
1936         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
1937
1938 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
1939
1940         * reflection.c: Allocate memory for dynamically created methods in the image
1941         mempools.
1942
1943 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1944
1945         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
1946         don't use the ad pointer before checking if it's NULL (g_assert).
1947
1948 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
1949
1950         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
1951         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
1952
1953         * marshal.c: Allocate all signatures from mempools.
1954
1955         * marshal.c: Allocate some more signatures from mempools.
1956
1957 2006-05-09  Miguel de Icaza  <miguel@novell.com>
1958
1959         * object.c (mono_load_remote_field): The code used to provide a
1960         temporary variable for returning results if the user did not
1961         provide a result pointer.  But our temporary variable was allocted
1962         on the satck.
1963
1964         Fix calling code to always pass a result area.   Coverity ID 103.
1965
1966 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
1967
1968         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
1969         value, not the old. Fixes #78312.
1970         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
1971
1972         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
1973         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
1974         per-image cache.
1975
1976         * assembly.c (mono_assembly_close): Free image->references.
1977
1978         * assembly.c (mono_assembly_names_equal): Fix a warning.
1979         (mono_assemblies_cleanup): Cleanup more global data.
1980
1981         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
1982
1983         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
1984         ptr_cache and image->modules.
1985
1986         * image.c (mono_image_init): Allocate array_cache lazily.
1987         
1988 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1989
1990         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
1991         behavior was changed recently and has bad side effects.
1992
1993 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
1994
1995         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
1996         
1997         * assembly.c (mono_assembly_close): Remove a debug printf.
1998
1999         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2000
2001         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2002         to also allow for temporary references between mono_image_open ()/close ().
2003
2004         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2005
2006 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2007
2008         * marshal.c: Fix support for dynamic methods.
2009
2010         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2011
2012         * marshal.c (mono_marshal_cleanup): New cleanup function.
2013
2014         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2015         image mempools.
2016
2017         * class.c (mono_class_init): Fix leaking class->nested_classes.
2018
2019         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2020
2021         * image.c (mono_image_init): Initialize the new cashes.
2022
2023         * image.c (mono_image_close): Destroy the new cashes.
2024
2025         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2026
2027         * mempool.c (mono_mempool_strdup): New helper function.
2028
2029         * class-internals.h: Add prototype for mono_loader_unlock ().
2030
2031         * domain.c (mono_jit_info_table_find): Fix a warning.
2032         (mono_debugger_check_runtime_version): Ditto.
2033
2034         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2035         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2036         functions to these modules.
2037
2038         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2039         metadata modules.
2040         
2041         * marshal.c (mono_free_bstr): Fix a warning.
2042
2043         * assembly.c (mono_assembly_open_full): Fix another small leak.
2044
2045         * object.c: Fix some unload leaks in the remoting code.
2046
2047         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2048         function.
2049
2050         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2051
2052         * reflection.c: Fix some unload leaks in dynamic assemblies.
2053
2054 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2055
2056         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2057         * marshal.h: Add BSTR support on Win32
2058         * icall.c: Add BSTR icalls
2059         * metadata.h: Add BSTR enums
2060
2061 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2062
2063         Work to catch the crash from #76795 and turn it into an
2064         exception.   As I stubbed out pieces of the VisualBasic support,
2065         I found a number of places where the code was failing and I added
2066         checks to those places. 
2067         
2068         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2069         function return a status code.  If we fail to parse the signature
2070         from mono_metadata_parse_generic_inst, return FALSE.
2071
2072         * loader.c (mono_get_method_from_token): If we fail to load the
2073         method (mono_class_get) return NULL.   
2074
2075         * (method_from_memberref): Return NULL if we are unable to parse
2076         the method signature
2077
2078         (mono_loader_error_prepare_exception): Since we now use the
2079         loader_error flag internally to stop processing, and obtaining
2080         exceptions that might be thrown will walk this code path the
2081         proper way of going from a MonoLoaderError into a
2082         MonoException was convoluted.   This new routine encapsulates the
2083         process of turning the error into an exception and *clearing* the
2084         error afterwards.
2085         
2086 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2087
2088         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2089         with missing assemblies), and to cope with:
2090
2091                 * Missing fieldref from a non-existing assembly.
2092                 * Missing methodref from a non-existing assembly.
2093
2094         The first batch of work to address *some* of the issues from 76661.
2095         
2096         * object.c (mono_class_create_runtime_vtable): If we fail to
2097         initialize the class raise the exception here. 
2098
2099         * metadata.c (mono_class_get_overrides_full): If any methods fail
2100         to load return the failure to the caller.
2101
2102         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2103         flagging assemblies that failed to load.   
2104
2105         Do not crash if we are unable to load the assembly.
2106
2107         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2108         assemblies. 
2109
2110         * loader.c (mono_loader_set_error_type_load): Change the
2111         convention to always pass unallocated strings, so we make our own
2112         copies (I know our own code had duplicated strings before, but
2113         this keeps the normal conventions).
2114         (method_from_memberref): Call mono_loader_set_error_method_load
2115         for all possible failures of loading the class. 
2116         Remove assert, turn into a loader error.
2117
2118         (mono_loader_error_to_exception): Move this routine from mini
2119         (mini_loader_error_to_exception) there was no need to have that in
2120         mini. 
2121
2122         * class.c (mono_class_from_typeref): If we were not able to load
2123         the assembly with mono_assembly_load_reference, call the
2124         mono_loader_set_error_type_load to register the problem.
2125
2126         (mono_class_setup_fields): If we fail to load the type from
2127         mono_metadata_parse_type_full, call mono_class_set_failure and
2128         break from the loop.
2129
2130         If class->exception_type is set, we do not layout the fields as
2131         that might crash the runtime, and instead return (from breaking
2132         from the previous loop).
2133
2134         (mono_class_setup_vtable): This now returns a boolean indicating
2135         whether the table was properly setup.   The decision is driven by
2136         mono_class_get_overrides_full which might run into non-existing
2137         methods. 
2138         
2139         (mono_class_init): Returns TRUE on success or FALSE if there was a
2140         problem in loading the type (incorrect assemblies, missing
2141         assemblies, methods, etc).
2142
2143         When we call mono_class_setup_fields we also check for a potential
2144         error inside this call (either a class exception or a general
2145         loader exception).
2146
2147         (mono_class_create_from_typedef): If the parent fails to load
2148         (calling mono_class_get_full) return NULL.
2149         
2150         ** Important **
2151
2152         calls to mono_metadata_parse_type_full should be checked
2153         everywhere and set the mono_class_set_failure
2154         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2155
2156         The current patch checks the places where my manually constructed
2157         tests show the errors are showing up, but we should do it
2158         everywhere. 
2159
2160         ** Important2 **
2161
2162         mono_class_init return values should be tested everywhere, like
2163         the previous case this is something that we should audit
2164         everywhere and not only on the cases exposed by the tests I
2165         created. 
2166
2167 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2168
2169         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2170         boolean parameter and instead pass the information on `options'
2171         parameter (FileOptions).
2172
2173         * icall.c: Register the new signature for MonoIO.Open.
2174
2175         * debug-helpers.c (dis_one): Trying to understand how coverity
2176         works.  Fix Run 5, item 78.
2177
2178 2006-04-26  Dick Porter  <dick@ximian.com>
2179
2180         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2181         dereference.
2182
2183 2006-04-25  Martin Baulig  <martin@ximian.com>
2184
2185         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2186
2187         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2188         debugger_thread_created().
2189         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2190         special way.
2191         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2192         (mono_debugger_finalize_threads): New function; undo the effects
2193         of mono_debugger_init_threads().
2194         (mono_debugger_create_all_threads): Removed.
2195
2196 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2197
2198         * image.c (mono_image_close): Tidy up trace messages.
2199
2200         * assembly.c (mono_assembly_close): Ditto.
2201
2202         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2203         no longer references an already freed assembly. Fixes #78168.
2204
2205 2006-04-21  Dick Porter  <dick@ximian.com>
2206
2207         * threads.c (mono_thread_detach): Fix reference counting when
2208         detaching threads.
2209
2210 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2211
2212         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2213         #78155.
2214
2215 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2216
2217         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2218         (mono_type_to_stind): Ditto.
2219
2220         * marshal.c: Use the new helper functions to simplify code.
2221
2222         * image.c (mono_image_close): Add some code for help debug assembly unloading
2223         problems.
2224
2225         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2226         image mempool.
2227
2228         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2229         assembly was already loaded in another appdomain. Fixes #78083.
2230
2231 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2232
2233         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2234         referenced assemblies.
2235         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2236
2237         * domain.c (mono_domain_free): Add a trace message.
2238
2239         * appdomain.c (add_assemblies_to_domain): Ditto.        
2240
2241         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2242         field.  
2243
2244 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2245
2246         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2247
2248 2006-04-12  Martin Baulig  <martin@ximian.com>
2249
2250         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2251         `USE_INCLUDED_LIBGC'.   
2252
2253 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2254
2255         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2256         the patch contains ../ and a small directory name later. Hopefully fixes
2257         #78035.
2258
2259 2006-04-10  Martin Baulig  <martin@ximian.com>
2260
2261         Clean up the debugger's thread-handling code.
2262
2263         The debugger's thread-handling code has been moved from
2264         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2265         over the `threads' hash, keep track of exiting threads and also
2266         use proper locking.
2267
2268         We can now debug XSP and XSP based applications with the debugger.
2269
2270         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2271
2272         * threads.h
2273         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2274         (mono_install_thread_callbacks): Likewise.      
2275
2276         * threads.c (mono_thread_callbacks): Removed.
2277         (debugger_thread_created, debugger_thread_exited): New static functions.
2278         (start_wrapper): Call debugger_thread_created().
2279         (thread_cleanup): Call debugger_thread_exited().
2280         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2281         (mono_debugger_init_threads): New public function.
2282         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2283         iterate directly over the `threads' hash and also use proper locking.
2284
2285         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2286
2287         * mono-debug-debugger.h
2288         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2289
2290 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2291
2292         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2293         argument type=array. Fixes #78057.
2294
2295 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2296
2297         * culture-info-table.h : regenerated. Fixed bug #69652.
2298
2299 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2300
2301         * loader.c metadata.c: Reapply a variant r59116.
2302         
2303         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2304
2305         * class.c (mono_class_setup_interface_offsets): New internal function.
2306
2307         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2308         interfaces too. Fixes #77398.
2309
2310         * reflection.c (encode_cattr_value): Add support for 
2311         parameter type=object, argument type=array.
2312         (load_cattr_value): Ditto. Fixes #77916.
2313
2314         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2315         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2316
2317         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2318         a byval char array and CharSet is Ansi.
2319
2320         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2321
2322 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2323
2324         * metadata.c: Add some locking comments.
2325         
2326         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2327         mempool.
2328         (mono_metadata_free_method_signature): Don't free the signature itself.
2329
2330         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2331
2332         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2333         reference the same MonoImage.
2334         (mono_assembly_load_from_full): Add an assert.
2335
2336 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2337
2338         * image.c (mono_image_close): Don't put the image we are about to free into the
2339         loaded_images_guid_hash.
2340
2341         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2342         to reduce code duplication.
2343
2344         * marshal.c: Register the native functions called by this module as icalls, to
2345         somewhat centralize the creation of MonoMethodSignature's.
2346
2347         * loader.c (mono_method_signature): Add a cache for method signatures.
2348
2349         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2350         the parameter attributes of a method.
2351         (mono_metadata_parse_method_signature_full): Refactored the computation of
2352         parameter attributes into a separate function. Also avoid one allocation in
2353         most cases.
2354
2355         * assembly.c (mono_assembly_close): Ditto.
2356
2357         * image.c (mono_image_close): Log trace messages with INFO level.
2358
2359         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2360
2361         * image.c reflection.c: Correct reference counting of image modules.
2362         
2363         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2364         of this function from the image mempool.
2365         
2366         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2367         to allow more cached types to be used.
2368
2369         * mono-debug.c (mono_debug_add_method): Appled patch from
2370         David S. Miller  <davem@sunset.davemloft.net>: Access 
2371         minfo->lexical_blocks[] entry elements using read32().
2372
2373 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2374
2375         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2376         methods as it is allocated from the mempool.
2377
2378         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2379         image mempool.
2380
2381         * metadata-internals.h: Add comments describing the reference counting scheme
2382         used for MonoImage and MonoAssembly.
2383
2384         * image.c assembly.c reflection.c: Rework reference counting of images and 
2385         assemblies so they are freed when the runtime is shut down. Free some 
2386         additional memory structures when an image is unloaded.
2387         
2388 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2389
2390         * class.c loader.c reflection.c: Allocate more data structures in
2391         the image mempool.
2392
2393 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2394
2395         * icall.c
2396         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2397         build on pre glib 2.4 systems.
2398
2399 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2400
2401         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2402
2403         * icall.c: Fix some warnings.
2404
2405 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2406
2407         * culture-info-table.h : regenerated.
2408
2409 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2410
2411         * threads.c, object-internals.h, verify.c: changed the culture caching
2412         code to use a normal MonoArray for storage so the GC can keep track of
2413         them easily. Fixed bits of the cache logic, too and simplified the
2414         code.
2415
2416 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2417
2418         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2419         thread for non-Boehm GCs.
2420
2421 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2422
2423         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2424         needed to keep track of the data for static fields.
2425
2426 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2427
2428         Fix #75172
2429         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2430         for interface classes.  Use 'num_methods' instead.
2431         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2432         before using '->vtable_size' field.
2433
2434 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2435
2436         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2437         doesn't contain managed pointers, so use a normal hashtable.
2438
2439 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2440
2441         * reflection.c, class-internals.h, domain.c: fixed handling of types
2442         used as values for objects in custom attributes (bug #77915):
2443
2444 2006-03-24  Martin Baulig  <martin@ximian.com>
2445
2446         * class.c (mono_class_setup_fields): Added support for generic
2447         instances; fixes #77580.
2448
2449 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2450
2451         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2452
2453 2006-03-24  Dick Porter  <dick@ximian.com>
2454
2455         * file-io.c (get_file_attributes): More stat macro breakage.
2456         Fixes bug 77759.
2457
2458 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2459
2460         * profiler.c: added the file=filename option in the default profiler
2461         to output the profile data to filename.
2462
2463 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2464
2465         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2466         bug #77877.
2467
2468 2006-03-22  Martin Baulig  <martin@ximian.com>
2469
2470         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2471         allocated `MonoClassField *' in `fb->handle'.
2472
2473 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2474
2475         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2476         allocate interface ID to save memory and allow better ID reuse on
2477         appdomain unload. setup_generic_vtable () removal from Martin.
2478
2479 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2480
2481         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2482         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2483         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2484         write barriers for reference stores with managed objects accessed with
2485         C structures in the runtime and in embedding programs.
2486
2487 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2488
2489         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2490         'interface_id' and 'max_interface_id' fields of MonoClasses
2491         representing open generic types.
2492
2493 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2494
2495         * object.h, object.c, icall.c: added functions to deal with
2496         storing valuetypes that contain references in managed objects.
2497         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2498         fixes and comments around uses of mono_array_addr ().
2499
2500 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2501
2502         * object.h, icall.c, monitor.c: object.GetHashCode ()
2503         implementation that supports the moving garbage collector.
2504
2505 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2506
2507         * icall.c, threads-types.h, threads.c: implemented finalizer for
2508         LocalDataStoreSlot.
2509
2510 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2511
2512         * metadata.c (mono_type_size): Add a fixme.
2513         (mono_type_stack_size): Ditto.
2514
2515         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2516         'type_forwarders' field.
2517
2518         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2519         attribute from net 2.0.
2520
2521         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2522         from class.c.
2523
2524         * class.c (mono_class_setup_fields): Fix a warning.
2525         
2526         * class.c (mono_class_from_name): Add support for assemblyref entries
2527         in the EXPORTEDTYPE table.
2528
2529         * reflection.c: Add support for handling type forwarders under net 2.0.
2530
2531         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2532         
2533 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2534
2535         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2536         overwriting entries in ModuleBuild->types, also clean up the code
2537         a little. Fixes #77774.
2538
2539 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2540
2541         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2542         load friend assembly info when present.
2543
2544 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2545
2546         Fix crasher on gtest-158.cs.
2547         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2548         the return value if the MonoClass we want is yet in an
2549         inconsistent state.
2550         * class.c (mono_class_create_from_typedef): Add an comment
2551         explaining an order dependency between mono_class_setup_parent and
2552         mono_class_setup_mono_type.
2553
2554 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2555
2556         * class.c: documentation updates and events bug fix.
2557
2558 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2559
2560         * class.c: some cleanup, locking fixes.
2561
2562 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2563
2564         * class.c: fix the generics code to setup nested
2565         type info to the instantiated type (bug #77770).
2566
2567 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2568
2569         * marshal.c: fixed a few type correctness issues.
2570
2571 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2572
2573         * loader.c: the Set/Get/Addrtess array methods should be public.
2574
2575 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2576
2577         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2578         
2579         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2580         info->wrapper.
2581
2582 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2583
2584         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2585
2586         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2587
2588         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2589         (mono_mempool_alloc0): Ditto.
2590
2591 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2592
2593         * socket-io.c:
2594         (create_object_from_sockaddr): it was allocating 4 extra bytes
2595         for the AF_UNIX data. Fixes bug #77747.
2596
2597 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2600
2601 2006-03-09  Dick Porter  <dick@ximian.com>
2602
2603         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2604         Fixes bug 76966 again.
2605
2606 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2607
2608         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2609         names from r57532
2610         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2611
2612 2006-03-07  Martin Baulig  <martin@ximian.com>
2613
2614         * object.c
2615         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2616
2617 2006-03-07  Martin Baulig  <martin@ximian.com>
2618
2619         * class.c
2620         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2621         regression introduced in r56970; see gtest-252.cs.
2622
2623         * loader.c (mono_get_method_constrained): Correctly handle generic
2624         methods; see gtest-253.cs.
2625
2626 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2627
2628         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2629
2630 2006-03-04  Martin Baulig  <martin@ximian.com>
2631
2632         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2633         compute the parent type at runtime, just like we're already doing
2634         it for interfaces.
2635
2636         * reflection.c
2637         (mono_reflection_bind_generic_parameters): Don't compute the
2638         parent type anymore.
2639
2640         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2641
2642 2006-03-04  Martin Baulig  <martin@ximian.com>
2643
2644         * mono-debug-debugger.h
2645         (mono_debugger_create_notification_function): Allocate memory at
2646         runtime and return a pointer to it.
2647
2648 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2649
2650         * assembly.c: Fix windows build.
2651         
2652         * assembly.c: Fix build.
2653
2654         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2655
2656         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2657         
2658 2006-03-03  Dick Porter  <dick@ximian.com>
2659
2660         * process.c
2661         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2662         Check parameters before dereferencing them.  Fixes Aaron's part of
2663         bug 77393.
2664
2665 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2666
2667         Fix performance regression.
2668         * loader.c (find_method_in_class): Add 'from_class' argument.
2669         Rename 'klass' argument to 'in_class'.  The signature is compared
2670         against the method in 'in_class', and the corresponding method is
2671         returned from 'from_class'.
2672         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2673         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2674         type definition and generic instantiation in parallel.
2675         (mono_get_method_constrained): Update to changes.
2676
2677 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2678
2679         * threads.c: make sure the domain is correct, too when doing
2680         mono_thread_attach ().
2681
2682 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2683
2684         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2685         windows. Fixes #77683.
2686
2687 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2688
2689         * object.h, *: introduced specific way to set elements of an array
2690         of references to be used as write barrier. Still need to audit the
2691         uses of mono_array_addr.
2692
2693 2006-03-01  Miguel de Icaza  <miguel@novell.com>
2694
2695         * object-internals.h: New field to cache the assmebly name, patch
2696         from Tambet Ingo (tambet@ximian.com)
2697
2698 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2699
2700         * decimal.h, class-internals.h, metadata-internals.h,
2701         file-io.h: mark a few function declarations as internal, to
2702         reduce the number of PLT entries.
2703
2704 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2705
2706         * file-io.c: fix typo in warning message.
2707
2708 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2709
2710         * loader.c: on unix, lookup the "*A" version of a function
2711         if charset is auto as a second option before failing.
2712
2713 2006-02-28  Raja R Harinath  <rharinath@novell.com>
2714
2715         * class.h (mono_class_inflate_generic_method): Revert to two
2716         argument version.
2717         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2718         (mono_class_inflate_generic_method_full): Add.
2719         * class.c (mono_class_inflate_generic_method_full): Rename from
2720         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
2721         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
2722         * loader.c, reflection.c: Update to changes.
2723
2724 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2725
2726         * icall.c: const fixes and small improvements.
2727
2728 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2729
2730         * threadpool.c: for asynchronous connect(), enable the same workaround
2731         for BSD 6 as for the Mac. Fixes bug #77637.
2732
2733 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
2734
2735         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2736         formatted classes. Fixes #77524.
2737
2738 2006-02-24  Raja R Harinath  <rharinath@novell.com>
2739
2740         * class.c (inflate_generic_type): Add a couple more
2741         micro-optimizations.
2742         (inflate_generic_context): Don't use the 'gmethod' from
2743         'inflate_with'.
2744         (mono_class_inflate_generic_method): If the method has generic
2745         parameters, but the passed-in context doesn't have a 'gmethod',
2746         create one.  Use the possibly simplified generic instantiation
2747         from the declaring class instead of the one passed in.
2748
2749 2006-02-24  Raja R Harinath  <harinath@gmail.com>
2750
2751         Make generic method signature and method header handling lazy.
2752         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2753         (inflate_generic_header): Likewise.
2754         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
2755         parameter to avoid inflating types.
2756         (mono_get_inflated_method): Empty out.
2757         * class.h (mono_class_inflate_generic_method): Update to changes.
2758         * loader.c (mono_get_method_from_token): Don't parse signature for
2759         generic methods, nor methods of generic classes.
2760         (mono_method_signature): Rename from 'mono_method_signature'.
2761         Inflate signature on demand.
2762         (mono_method_get_header): Inflate method header on demand.
2763         * reflection.c: Update to changes.
2764
2765 2006-02-23  Raja R Harinath  <rharinath@novell.com>
2766
2767         * metadata.c (mono_metadata_inflate_generic_inst): If the
2768         instantiation is closed, don't bother expanding it in the new
2769         context.
2770         * class.c (inflate_generic_class): If the generic instantiation
2771         doesn't change after inflation, return the argument itself.
2772         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2773         Add bounds checks.
2774         (inflate_generic_context): If neither the generic class nor the
2775         generic method instantiations change, return the original context.
2776         * reflection.c (mono_method_get_object): Do
2777         'mono_get_inflated_method' before accessing the ->klass field.
2778         (inflate_mono_method): Don't create a MonoGenericMethod unless
2779         necessary.
2780         (inflate_method): Don't pass a constructed type as the declaring
2781         type of a methodbuilder.
2782
2783 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2784
2785         * object.c: fix memory overwrite.
2786
2787 2006-02-22  Dick Porter  <dick@ximian.com>
2788
2789         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2790         it doesn't work any more.
2791         (mono_threads_request_thread_dump): Fix unused variable warnings.
2792
2793 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2794
2795         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2796         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2797         the public header file.
2798
2799 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
2800
2801         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2802
2803 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2804
2805         * class-internals.h, object.c: reduce the size of MonoVTable
2806         and store the interface_offsets array at negative offsets.
2807
2808 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2809
2810         * metadata.c: tweak table descriptors data structures to reduce
2811         size and runtime relocations.
2812
2813 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2814
2815         * marshal.c: fix some types and opcodes to be type-safe
2816         in marshaling wrappers.
2817
2818 2006-02-21  Ankit Jain  <jankit@novell.com>
2819
2820         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2821
2822 2006-02-21  Raja R Harinath  <rharinath@novell.com>
2823
2824         * metadata.c (get_constraints): Relax debugging checks for monodis.
2825
2826 2006-02-21  Ankit Jain  <jankit@novell.com>
2827
2828         * metadata.c (mono_metadata_load_generic_params): Move the code
2829         checking for ambiguous generic params from here to mono/dis/get.c
2830         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2831
2832 2006-02-21  Raja R Harinath  <harinath@gmail.com>
2833
2834         Fix assertion triggered when compiling nemerle.
2835         * class.c (mono_get_shared_generic_inst): Rename from
2836         get_shared_inst and make non-static.
2837         * loader.c (mono_get_shared_generic_method): New.  Used to create
2838         the MonoGenericContext-equivalent of a MonoGenericContainer.
2839         (mono_get_method_from_token): Initialize the 'context' field of
2840         the created MonoGenericContainer.
2841         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2842         * metadata.c (get_constraints): Add sanity check.
2843         * class-internals.h: Add new internal methods.
2844
2845         * reflection.c (verify_safe_for_managed_space): New sanity check.
2846         Currently checks that owner-less generic parameters aren't allowed
2847         in managed space.
2848         (mono_type_get_object): Use it.
2849         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2850         that are now in mono_type_get_object.
2851         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2852
2853 2006-02-19  Raja R Harinath  <harinath@gmail.com>
2854
2855         * metadata.c (mono_type_create_from_typespec): Rename from
2856         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
2857         argument and caching of types in the generic container.
2858         (unwrap_arrays, find_generic_param): Remove.
2859         * metadata-internals.h: Update.
2860         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2861
2862 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
2863
2864         * class.c (mono_class_get_exception_for_failure): Fix a warning.
2865
2866         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2867         return values. Fixes #77581.
2868
2869         * class.c (mono_fnptr_class_get): Switch name and name_space.
2870
2871         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2872         classes and add support for [In, Out] attributes.
2873         (mono_marshal_free_asany): Ditto. Fixes #77524.
2874
2875 2006-02-18  Raja R Harinath  <harinath@gmail.com>
2876
2877         * class.c (mono_class_from_generic_parameter): Make more robust to
2878         incomplete MonoGenericContainers from monodis.
2879
2880 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2881
2882         * class-internals.h: added some more exception types.
2883         * class.c, metadata.c: added a few checks to handle missing
2884         types.
2885
2886 2006-02-17  Raja R Harinath  <rharinath@novell.com>
2887
2888         Use owner-less generic-params some more.
2889         * class.c (my_mono_class_from_generic_parameter): Remove.
2890         (mono_class_from_generic_parameter): Handle null image,
2891         param->name and param->owner.
2892         (mono_class_from_mono_type): Update.
2893         (mono_class_create_from_typespec): Remove 'container' parameter.
2894         If that parameter is non-null, the result is always inflated by
2895         'mono_class_get_full' anyway.
2896         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
2897         parameter.
2898         (mono_class_get_full): Update.
2899
2900         * class.c (inflate_generic_type) [GENERICINST]: If the generic
2901         instance is not open, don't bother inflating.
2902         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
2903         parse metadata for inflated classes.
2904         (_mono_class_get): Change GenericContext* parameter to
2905         GenericContainer*.
2906         (mono_class_create_from_typespec): Likewise.  Simplify, and
2907         implement trivially.  All the cases are handled in
2908         mono_class_from_mono_type.  Don't inflate returned class.
2909         (mono_class_get_full): Delegate GENERICINST optimization to
2910         inflate_generic_type.
2911         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
2912
2913 2006-02-16  Dick Porter  <dick@ximian.com>
2914
2915         * socket-io.c (create_object_from_sockaddr): Fix typo.
2916         (create_sockaddr_from_object): Check array lengths before
2917         potentially accessing items off the end.
2918         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
2919         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
2920         (ves_icall_System_Net_Sockets_Socket_Send_internal)
2921         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
2922         length checks to avoid wraparound overflows.
2923         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
2924         contents of the array of sockets
2925         (hostent_to_IPHostEntry2)
2926         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
2927         Check return value of inet_ntop ().
2928         (addrinfo_to_IPHostEntry): Fix typo
2929
2930 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2931
2932         Type metadata parsing doesn't use generic-instantiation information.
2933         * metadata.c (mono_metadata_parse_array_full): Change
2934         MonoGenericContext* parameter to MonoGenericContainer*.
2935         (mono_metadata_parse_type_full): Likewise.
2936         (mono_type_create_from_typespec_full): Likewise.
2937         (mono_metadata_parse_mh_full): Likewise.
2938         (mono_metadata_parse_generic_inst): Likewise.
2939         (do_mono_metadata_parse_generic_class): Likewise.
2940         (do_mono_metadata_parse_type): Likewise.
2941         * metadata-internals.h: Update to changes.
2942         * class.c (mono_class_find_enum_basetype): Likewise.
2943         (mono_class_setup_fields): Likewise.
2944         (mono_class_create_from_typespec): Likewise.
2945         * loader.c (method_from_methodspec): Likewise.
2946         (mono_get_method_from_token): Likewise.
2947         (mono_method_get_header): Likewise.
2948
2949 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2950
2951         * marshal.c: handle additional GENERICINST case (patch from
2952         Thong Nguyen <tum@veridicus.com>).
2953         Fix a few cases where LDIND_I/STIND_I was used for references.
2954
2955 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2956
2957         * reflection.c (mono_reflection_get_token): Remove unused variable.
2958
2959 2006-02-16  Martin Baulig  <martin@ximian.com>
2960
2961         * reflection.c (mono_reflection_get_token): Add support for fields
2962         in instantiated generic types.
2963
2964         * icall.c
2965         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
2966
2967 2006-02-15  Martin Baulig  <martin@ximian.com>
2968
2969         * icall.c
2970         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
2971         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
2972         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
2973         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
2974
2975 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2976
2977         * class.c, metadata.c, metadata.h, object.c, icall.c,
2978         marshal.c: changed mono_type_get_underlying_type () to do
2979         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
2980         Fixed handling of instantiated generic valuetypes (bug #75479).
2981
2982 2006-02-15  Raja R Harinath  <rharinath@novell.com>
2983
2984         * metadata.c (mono_metadata_decode_signed_value): Simplify.
2985         Delegate to mono_metadata_decode_value, and work on the returned value.
2986
2987         * icall.c (ves_icall_MonoType_GetGenericArguments):
2988         Add consistency check here too.
2989         
2990 2006-02-15  Ankit Jain  <jankit@novell.com>
2991
2992         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
2993         char/short etc.
2994
2995 2006-02-15  Ankit Jain  <jankit@novell.com>
2996
2997         * metadata.c (mono_metadata_decode_signed_value): New function to decode
2998         signed values, used only for representing lower bounds of arrays.
2999         (mono_metadata_parse_array_full): Use new
3000         mono_metadata_decode_signed_value to decode lower bounds.
3001
3002 2006-02-14  Martin Baulig  <martin@ximian.com>
3003
3004         * reflection.c
3005         (mono_reflection_get_token): Support "MonoGenericMethod" and
3006         "MonoGenericCMethod" and allow generic instances / methods.
3007
3008 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3009
3010         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3011         to obtain the terminal size using an ioctl.
3012
3013         * object.c (mono_nullable_init): Revert this as nullable reference
3014         types are not valid.
3015         (mono_nullable_box): Ditto.
3016
3017 2006-02-09  Dick Porter  <dick@ximian.com>
3018
3019         * threads.c (mono_thread_detach): Drop a reference to the thread
3020         we're detaching.
3021
3022 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3023
3024         * object.c (mono_nullable_init): Handle nullable reference types.
3025         (mono_nullable_box): Ditto. Fixes #77446.
3026
3027 2006-02-07  Martin Baulig  <martin@ximian.com>
3028
3029         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3030
3031 2006-02-07  Ankit Jain  <jankit@novell.com>
3032
3033         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3034         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3035         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3036         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3037         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3038         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3039
3040 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3041
3042         * class.c (mono_class_create_generic): Set type_token as well.
3043
3044         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3045         compatible with MS.
3046
3047 2006-02-02  Martin Baulig  <martin@ximian.com>
3048
3049         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3050         has never been used so far.
3051
3052 2006-02-02  Martin Baulig  <martin@ximian.com>
3053
3054         * mono-debug-debugger.h: Changed comment at the top of this file;
3055         the header is not installed, but it's safe to #include it from
3056         within the JIT.
3057
3058         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3059         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3060
3061 2006-02-02  Martin Baulig  <martin@ximian.com>
3062
3063         * mono-debug.h
3064         (MonoSymbolTable): Removed the `metadata_info' field.
3065
3066         * mono-debug.c
3067         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3068
3069         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3070         (mono_debugger_add_builtin_types): Removed.
3071         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3072         (mono_debugger_create_notification_function): We now operate on a
3073         pre-allocated area; take a `gpointer' and return `void'.
3074
3075         * mono-debug-debugger.c
3076         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3077         (mono_debugger_add_builtin_types): Removed.
3078
3079 2006-02-02  Martin Baulig  <martin@ximian.com>
3080
3081         * threads.c (mono_debugger_create_all_threads): New public method.
3082
3083 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3084
3085         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3086         breaks on several platforms.
3087
3088 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3089
3090         * assembly.c: the VS.NET build doesn't supply default values for
3091         MONO_ASSEMBLIES and MONO_CFG_DIR.
3092
3093 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3094
3095         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3096         helper function.
3097
3098         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3099
3100         * loader.c (method_from_memberref): Fix a warning.
3101
3102         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3103
3104         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3105         with explicit layout. Fixes #77433.
3106
3107 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3108
3109         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3110         max_interface_id is initialized before using it. Fixes #77398.
3111         (ves_icall_Type_GetInterfaces): Ditto.
3112
3113 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3114
3115         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3116         allocate memory for parameter attributes when parsing memberref
3117         signatures.
3118         * loader.c (mono_loader_set_error_method_load): Don't warn.
3119         (method_from_memberref): Ensure MissingMethodException gets thrown
3120         if method is not found.  Make warning more informative.
3121
3122 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3123
3124         Fix #77397
3125         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3126         return true if is byref.
3127         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3128         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3129         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3130
3131 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3132
3133         Fix tests/find-method.2.il
3134         * loader.c (find_method, find_method_in_class): Remove is_inflated
3135         argument.  Revert 2006-01-18 change.
3136         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3137         is generic, search for method in its generic definition.
3138         * class.c (mono_class_setup_vtable_general): Print generic
3139         arguments of generic types in debugging printf.
3140
3141 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3142
3143         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3144
3145         * threads.c (mono_threads_request_thread_dump): New helper function.
3146
3147 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3148
3149         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3150
3151 2006-01-25  Ankit Jain  <jankit@novell.com>
3152
3153         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3154         move definition to ..
3155         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3156         
3157 2006-01-25  Ankit Jain  <jankit@novell.com>
3158             Raja R Harinath  <rharinath@novell.com>
3159
3160         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3161         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3162         as necessary.
3163
3164 2006-01-25  Martin Baulig  <martin@ximian.com>
3165
3166         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3167         `MonoDebuggerThread' into debug-debugger.c.
3168
3169 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3170
3171         * profiler.c: fix printing of data.
3172
3173 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3174
3175         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3176           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3177
3178 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3179
3180         * object.c: fix deadlock related to string interning.
3181
3182 2006-01-23  Martin Baulig  <martin@ximian.com>
3183
3184         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3185
3186         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3187
3188 2006-01-23  Martin Baulig  <martin@ximian.com>
3189
3190         * mono-debug.h: Moved the prototypes of some functions which are
3191         used by the JIT here from mono-debug-debugger.h.
3192
3193 2006-01-21  Martin Baulig  <martin@ximian.com>
3194
3195         * Makefile.am: Don't install mono-debug-debugger.h.
3196
3197 2006-01-21  Martin Baulig  <martin@ximian.com>
3198
3199         * mono-debug-debugger.h: Enforce the private status of this header
3200         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3201         Moved some stuff from mono-debugger-jit-wrapper.h here.
3202
3203 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3204
3205         * class.c (mono_class_from_typeref): Add a sanity test to help
3206         catch lack of assembly load/search hooks.
3207
3208 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3209
3210         * marshal.c (emit_struct_conv): Relax the fields with same offset
3211         check even more. Fixes #77230.
3212
3213 2006-01-18  Martin Baulig  <martin@ximian.com>
3214
3215         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3216         argument; if false, we compare the uninstantiated signatures.
3217         (method_from_memberref): Compare the uninstantiated signatures;
3218         fixes #76417.
3219
3220 2006-01-18  Robert Jordan  <robertj@gmx.net>
3221
3222         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3223         Clear the weak link. Fixes bug #77170.
3224
3225         * gc.c (mono_gchandle_free):
3226         Reflect *-gc.c changes (tiny optimization).
3227
3228 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3229
3230         * metadata.c (mono_metadata_signature_dup): Applied patch from
3231         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3232         Fixes #77288.
3233
3234 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3235
3236         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3237         marshalling from native to managed code. Fixes #77230.
3238
3239 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3240
3241         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3242         connect. Fixes bug #77020.
3243
3244 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3245
3246         * class.c: fixed id assignement for nested interfaces (bug #77275).
3247         Added also better info for --print-vtable debugging.
3248
3249 2006-01-12  Martin Baulig  <martin@ximian.com>
3250
3251         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3252         interfaces on-the-fly; fixes #76625.
3253
3254         * class-internals.h
3255         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3256         don't need that anymore.
3257
3258 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3259
3260         * socket-io.c
3261         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3262         To avoid initing the nested_classes when not needed I turned the
3263         PeerCredData as a toplevel internal class, as it has to be shared
3264         anyways. 
3265
3266         Fixes the CASA issue.
3267
3268 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3269
3270         * domain.c: Accessors for MonoJitInfo
3271
3272         * profiler-private.h: Add jitinfo to the end jit hook
3273
3274         * profiler.[ch]: Define new hooks, called after jitting which give
3275         the MonoJitInfo that was compiled
3276
3277 2006-01-10  Martin Baulig  <martin@ximian.com>
3278
3279         * class.c (mono_class_setup_events): Add support for generic
3280         classes; fixes #76440.
3281
3282 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3283
3284         Fix #77160.
3285         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3286         on passed-in method.
3287
3288 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3289
3290         * object.c (mono_runtime_invoke_array): Add Nullable support.
3291
3292         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3293
3294 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3295
3296         * file-io.c: Don't consider sockets as directory and avoid an endless
3297         loop. Fix bug #76966.
3298
3299 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3300
3301         * object.c (mono_nullable_init): New helper function.
3302         (mono_nullable_box): Ditto.
3303
3304         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3305
3306         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3307
3308         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3309         
3310 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3311
3312         * class.c (mono_class_is_assignable_from): Make T assignable to 
3313         Nullable<T>.
3314
3315 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3316
3317         * appdomain.c: Bump corlib version to 46.
3318         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3319         serialization purpose) and changed ves_icall_System_Reflection_
3320         Assembly_get_code_base signature to accept a boolean (to escape, or 
3321         not, the assembly code base).
3322
3323 2005-12-23  Dick Porter  <dick@ximian.com>
3324
3325         * icall.c: 
3326         * threads-types.h: 
3327         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3328         CreateEvent icall now returns "created" boolean parameter.
3329
3330 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3331
3332         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3333         #76967.
3334
3335         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3336         when attr_klass is an interface. Fixes #77045.
3337
3338 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3339
3340         * marshal.c (emit_struct_conv): Fix previous patch.
3341         
3342         * marshal.c (emit_struct_conv): Add a check for fields with the same
3343         offset.
3344
3345 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3346
3347         Fix regression in Mono.C5.
3348         * class.c (mono_class_create_generic): If 'klass' is an interface
3349         set up the interface offsets.
3350         (mono_class_is_assignable_from): Don't throw away generic arguments.
3351
3352 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3353
3354         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3355         type parameters.
3356
3357 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3358
3359         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3360         dead store.
3361         (do_mono_metadata_parse_generic_class): Don't pass the current
3362         generic context when parsing the type being instantiated: it
3363         cannot use it, anyway.
3364
3365         * loader.c (method_from_memberref): Don't inflate a signature if
3366         it doesn't contain any type parameters.
3367
3368 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3369
3370         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3371
3372 2005-12-14  Martin Baulig  <martin@ximian.com>
3373
3374         * class.c
3375         (mono_type_get_name_recurse): Don't return null for type
3376         parameters and open generic classes.
3377         (mono_class_setup_methods): Don't exclude generic instances.
3378         (mono_get_unique_iid): Use different IDs for different
3379         instantiations of the same generic type.
3380         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3381         open generic instances; create a normal vtable for closed generic
3382         instances.
3383         (mono_class_setup_vtable_general): We're now also called for
3384         closed generic instances.
3385
3386         * reflection.c
3387         (mono_reflection_bind_generic_parameters): Correctly use
3388         mono_metadata_lookup_generic_inst() everywhere.
3389
3390 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3391
3392         * object.c (mono_class_create_runtime_vtable): Call 
3393         mono_class_setup_vtable ().
3394
3395         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3396         function.
3397         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3398         #76959.
3399
3400         * loader.c (mono_loader_set_error_type_load): Print the type load
3401         warnings to the console so they are more visible to the user.
3402         (mono_loader_set_error_method_load): Ditto.
3403
3404         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3405         is still broken.
3406         
3407         * reflection.c (ensure_runtime_vtable): Fix build.
3408
3409         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3410         doesn't work in all cases.
3411
3412 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3413
3414         * object.c (mono_array_new_full): Treat a single dimensional array
3415         with 0 lower bounds as an szarray. Fixes #76973.
3416
3417         * reflection.c (custom_attr_visible): Really fix this.
3418
3419 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3420
3421         * reflection.c (custom_attr_visible): Allow nested public attributes
3422         as well.
3423
3424         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3425         interface check.
3426
3427 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3428
3429         * class.c (set_generic_param_owner): Delete.
3430         (mono_class_create_from_typedef): Don't set ->owner field of
3431         generic parameters to "param containers" of enclosing classes.
3432         * reflection.c (mono_reflection_initialize_generic_parameter):
3433         Likewise.
3434
3435 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3436
3437         * reflection.c (custom_attr_visible): Fix build.
3438
3439 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3440
3441         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3442         private attributes.
3443         
3444         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3445         handling of null parameter defaults.
3446
3447 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3448
3449         * class.c (mono_class_from_generic_parameter): Don't set
3450         klass->generic_container.
3451         (my_mono_class_from_generic_parameter): Likewise.
3452
3453 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * reflection.c (load_public_key): Fix a warning.
3456         (method_encode_code): Fix unaligned accesses.
3457
3458 2005-12-07  Martin Baulig  <martin@ximian.com>
3459
3460         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3461
3462         * reflection.c
3463         (write_generic_param_entry): Encode our custom attrs.
3464
3465         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3466
3467 2005-12-07  Martin Baulig  <martin@ximian.com>
3468
3469         * reflection.c (encode_new_constraint): Removed; we don't use the
3470         `NewConstraintAttribute' anymore.
3471
3472 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3475         not fire a TypeResolve event when Assembly.GetType () is called.
3476
3477 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3478
3479         Beginning of support for nullable types in the runtime. Parts of
3480         this patch are from Martin.
3481
3482         * appdomain.c (MONO_CORLIB_VERSION): Bump
3483
3484         * domain.c (mono_init_internal): get the nullable type
3485
3486         * class.c (mono_class_is_nullable): New method
3487         (mono_class_get_nullable_param): New mehod
3488         (mono_class_create_generic): In types T? set cast_class to T
3489
3490         * class-internals.h (MonoDefaults): new nullable default class
3491         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3492         new methods.
3493
3494 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3495
3496         * metadata.c (select_container): New.  Refactor code to select the
3497         appropriate GenericContainer given the type of generic parameter
3498         we are looking for.
3499         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3500         not a MonoGenericContext.  Use select_container.  Update parameters.
3501         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3502         and MONO_TYPE_MVAR.
3503         (unwrap_arrays): Remove duplicate tests.
3504         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3505         generic instantiated class to find any arguments that are generic
3506         parameters.
3507         (mono_type_create_from_typespec_full): Use find_generic_param to
3508         avoid evicting some generic instantiations from the typespec
3509         cache.
3510
3511 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3512
3513         * reflection.c: fixed writing of doubles on ARM FPA.
3514
3515 2005-12-02  Robert Jordan  <robertj@gmx.net>
3516
3517         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3518
3519 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3520
3521         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3522         least on SUSE 10 they are not the same (on debian, they are just the
3523         same thing).
3524
3525 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3526
3527         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3528         DeclaringType for VARs and MVARs.
3529         * class.c (set_generic_param_owner): Fix initialization of owner
3530         fields.
3531
3532 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3533
3534         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3535
3536 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3537
3538         * threadpool.c: workaround for a bug that shows up on the Mac:
3539         select()+connect() on a blocking socket is not like it should
3540         be, so we proceed to connect() in that case, wasting the I/O
3541         threadpool thread until connect succeedes. Fixes bug #75436.
3542
3543 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3544
3545         * threadpool.c: fix typo when setting file descriptor states.
3546
3547 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3548
3549         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3550         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3551         create a temporary signature container.
3552         (mono_metadata_parse_generic_param): Update to changes.
3553         (mono_type_create_from_typespec_full): Update to changes.
3554         * loader.c (method_from_memberref): Don't use a
3555         MonoGenericContainer while parsing a memberref signature.
3556         (method_from_methodspec): Remove dead-store of the 'container'
3557         variable.  It's overwritten before use.
3558
3559         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3560         checks tighter.
3561         (mono_metadata_parse_generic_param): Likewise.
3562         * loader.c (find_method_in_class): Does not need a
3563         MonoGenericContainer.  Use 'mono_method_signature' rather than
3564         'mono_method_signature_full'.
3565         (find_method, mono_get_method_constrained, method_from_memberref):
3566         Update to changes.
3567
3568         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3569         owner-less generic-parameters are never evicted from the typespec
3570         cache.
3571
3572         * loader.c (method_from_memberref): Don't use the current context
3573         when parsing signatures.
3574         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3575
3576         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3577         side-effects in g_assert.
3578         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3579         that we don't potentially lose information.
3580
3581 2005-11-26  Dick Porter  <dick@ximian.com>
3582
3583         * icall.c:
3584         * threads.c: icalls to implement basic (ie, not named)
3585         System.Threading.Semaphore.
3586
3587 2005-11-24  Dick Porter  <dick@ximian.com>
3588
3589         * process.c
3590         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3591         Use GetProcessId() if it's available.
3592
3593 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3594
3595         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3596
3597 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3598             Ankit Jain  <jankit@novell.com>
3599
3600         * loader.c (mono_get_method_from_token): Initialize 'method' field
3601         of all generic parameters before parsing the signature.  Remove
3602         code that "fixed"-up MVAR references.
3603
3604 2005-11-23  Ankit Jain  <jankit@novell.com>
3605
3606         * metadata.c (mono_metadata_has_generic_params):
3607         (mono_metadata_load_generic_param_constraints):
3608         (mono_metadata_load_generic_params): Move duplicate code ...
3609         (mono_metadata_get_generic_param_row): ... here. Returns the
3610         first row-id in GenericParam table for a given owner (token).
3611         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3612         prototype.
3613
3614 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3615             Ankit Jain  <jankit@novell.com>
3616
3617         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3618         comparing VARs too.
3619         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3620         type->data.generic_param only if the type is an MVAR.
3621         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3622         leak owner-less VARs and MVARs into managed space.
3623
3624 2005-11-21  Martin Baulig  <martin@ximian.com>
3625
3626         * class-internals.h
3627         (MonoMethod): Moved the `generic_container' here from
3628         `MonoMethodNormal' since we now also need it for
3629         `MonoMethodPInvoke';
3630         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3631         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3632         an union containing both `MonoMethodNormal' and
3633         `MonoMethodPInvoke'.
3634
3635         * loader.c
3636         (mono_get_method_from_token): Allow implementing generic methods
3637         as interncalls.
3638
3639         * threads.c
3640         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3641         icall.
3642
3643 2005-11-17  Dick Porter  <dick@ximian.com>
3644
3645         * icall.c: 
3646         * process.h: 
3647         * process.c: Split the Process Start_internal icall into
3648         ShellExecuteEx_internal and CreateProcess_internal, which are
3649         called depending on whether UseShellExecute is true.  Fixes bug
3650         76670.
3651
3652         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3653
3654 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3655
3656         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3657         'msize' parameters, use the information in 'mspec' instead.
3658         (emit_object_to_ptr_conv): Ditto.
3659
3660         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3661         fields out of order. Fixes #76733.
3662
3663 2005-11-17  Ankit Jain  <jankit@novell.com>
3664
3665         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3666
3667 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3668
3669         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3670           bug #76575.
3671
3672 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3673
3674         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3675         for types with non-auto layout. Fixes #76717.
3676
3677 2005-11-16  Ankit Jain  <jankit@novell.com>
3678
3679         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3680         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3681         if generic_context is null.
3682           (mono_metadata_generic_param_equal): param->owner can be null.
3683           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3684         null.
3685
3686 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3687
3688         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3689         the correct value.
3690
3691 2005-11-15  Martin Baulig  <martin@ximian.com>
3692
3693         * object.c (set_value): Use mono_class_from_mono_type() instead of
3694         the hack for generic instances; fixes #76136.
3695
3696 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
3697
3698         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3699         fields.
3700
3701         * image.c (load_metadata_ptrs): Initialize the new fields.
3702
3703         * reflection.c (create_dynamic_mono_image): Ditto.
3704
3705         * reflection.c (build_compressed_metadata): Use the new fields.
3706
3707         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3708         icall.
3709
3710         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3711         icall.
3712         
3713 2005-11-15  Ankit Jain  <jankit@novell.com>
3714             Raja R Harinath  <harinath@gmail.com>
3715
3716         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3717         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3718         new per-generic_container cache if the cached MonoType's context matches
3719         the current context.
3720           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3721         to the expected context.
3722           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3723
3724 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3725
3726         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3727         we changed the signature of an icall.
3728         * icall.c: Modify to mono_double_ParseImpl return true/false 
3729         depending on the success, instead of throwing the exception. This will
3730         help us in Double.TryParse methods.
3731         
3732 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
3733
3734         * marshal.c (emit_marshal_object): Throw an exception when
3735         marshalling 'object' instead of crashing. Fixes #76696.
3736
3737 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3738
3739         * class-internals.h: Add prototype for mono_type_get_full_name ().
3740
3741 2005-11-11  Dick Porter  <dick@ximian.com>
3742
3743         * threads.c (mono_thread_manage): Make sure the main thread has
3744         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
3745
3746 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3747
3748         * loader.c (mono_loader_set_error_type_load): Log a warning to the
3749         console about the missing type.
3750         (mono_loader_set_error_method_load): Ditto.
3751
3752 2005-11-09  Miguel de Icaza  <miguel@novell.com>
3753
3754         * mono-config.c (mono_get_config_dir): Set the system defaults if
3755         none is specified.
3756
3757         * assembly.c (mono_set_dirs): New API entry point to set the
3758         assembly and the config directory in one call
3759
3760 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
3761
3762         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3763         the ftnptr was created from a delegate in a domain other than the
3764         current domain. Fixes #75377.
3765
3766         * exception.h exception.c: Add mono_get_exception_not_supported ().
3767
3768 2005-11-08  Martin Baulig  <martin@ximian.com>
3769
3770         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3771
3772 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
3773
3774         * security-manager.h: Added definitions to deal with strongname key 
3775         pairs bigger (and smaller) than 1024 bits.
3776         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
3777         adjust wrt the public key length being used.
3778
3779 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3780
3781         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3782           Windows build (r51396-51397).
3783
3784 2005-11-03  Martin Baulig  <martin@ximian.com>
3785
3786         * class.c (mono_class_setup_vtable_general): Also add generic
3787         methods to the vtable; fixes #76581.
3788
3789 2005-11-01  Miguel de Icaza  <miguel@novell.com>
3790
3791         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3792         sure that we lookup GetString method from the System.Text.Encoding
3793         class, not the derived class or we get an empty method.
3794
3795         Fixed class #76612.
3796
3797 2005-10-25  Miguel de Icaza  <miguel@novell.com>
3798
3799         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3800         if it has been previously set (embedders). 
3801
3802         Make mono_set_rootdir available also on Unix.
3803
3804 005-10-24  Robert Jordan  <robertj@gmx.net>
3805
3806         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3807
3808 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
3809
3810         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3811         only calls which are made to native code use this flag.
3812
3813         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3814
3815 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
3816
3817         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3818         Add support for FieldBuilders.
3819
3820 2005-10-29  Martin Baulig  <martin@ximian.com>
3821
3822         * mono-debug.c
3823         (mono_debug_using_mono_debugger): New public method; returns
3824         whether we're running inside the debugger.
3825
3826 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
3827
3828         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3829         for Method/Constructor/FieldBuilders.
3830
3831 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
3832
3833         * reflection.c (module_add_cattrs): Save custom attributes for global methods
3834         and fields as well.
3835
3836 2005-10-26  Martin Baulig  <martin@ximian.com>
3837
3838         * mono-debug-debugger.c
3839         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3840
3841 2005-10-24  Raja R Harinath  <harinath@gmail.com>
3842
3843         * icall.c (base64_to_byte_array): Don't pass an out-of-range
3844         integer to isspace.
3845
3846 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
3847
3848         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3849         when passing valuetypes byref. Fixes #76502.
3850
3851 2005-10-19  Jackson Harper  <jackson@ximian.com>
3852
3853         * profiler.c: Don't put a . in front of types that are not in a
3854         namespace.
3855
3856 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
3857
3858         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3859
3860 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
3861
3862         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3863         #76436.
3864         (mono_marshal_get_ldflda_wrapper): Fix a warning.
3865
3866 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3867
3868         * assembly.c metadata-internals.h icall.c: Define an additional
3869         parameter for mono_assembly_name_parse_full, so we can avoid creating
3870         S.R.AssemblyName.Version when no version info wasn't passed.
3871         
3872 2005-10-09  Miguel de Icaza  <miguel@novell.com>
3873
3874         * class.c (mono_type_get_full_name): Reimplement method that was
3875         removed. 
3876
3877         * image.c: Some docs
3878
3879 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
3880
3881         * profiler.c (output_newobj_profile): Fix printing of Total memory
3882         on x86.
3883
3884 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3885
3886         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
3887
3888 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
3889
3890         * threads.c: remove debug output.
3891
3892 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3893
3894         * threads.c (mono_thread_manage): Fix crashes if more than 64
3895         threads need to be aborted. Hopefully fixes #75899.
3896
3897         * assembly.c (mono_stringify_assembly_name): New helper function.
3898
3899         * class.c: Use mono_stringify_assembly_name instead of the similar
3900         static function.
3901
3902         * assembly.h assembly.c: Add support for calling a postload search 
3903         hook if an assembly cannot be loaded.
3904
3905         * appdomain.c: Register new search hooks which call the AssemblyResolve
3906         events in AppDomain. Fixes #75231
3907
3908 2005-10-07  Martin Baulig  <martin@ximian.com>
3909
3910         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
3911         methods without debug info.
3912
3913 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
3914
3915         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
3916         wrappers.
3917
3918 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3919
3920         * file-io.c: now that we return symlinks, use lstat and, when the file
3921         is a symbolic link, stat, to get the file attributes. Also avoid the
3922         conversion to/from utf16/external.
3923
3924 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
3925
3926         * class.c (mono_class_layout_fields): Compute klass->has_references
3927         correctly if an embedded valuetype is not yet initialized. Fixes
3928         #76331.
3929
3930 2005-10-04  Martin Baulig  <martin@ximian.com>
3931
3932         * metadata.c
3933         (mono_metadata_load_generic_param_constraints): New public
3934         function; splitted the constraints loading out from
3935         mono_metadata_load_generic_params().
3936
3937         * class.c (mono_class_create_from_typedef): Call
3938         mono_metadata_load_generic_param_constraints() after setting up
3939         the type and creating our parent; fixes #75329.
3940
3941 2005-10-04  Martin Baulig  <martin@ximian.com>
3942
3943         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
3944         non-dynamic parent classes.
3945
3946 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
3947
3948         * file-io.c : win32 build fix (ETXTBSY seems not found).
3949
3950 2005-10-04  Martin Baulig  <martin@ximian.com>
3951
3952         * reflection.c
3953         (mono_image_get_methodspec_token): Make the cache actually work;
3954         fixes #75974.
3955
3956 2005-10-04  Martin Baulig  <martin@ximian.com>
3957
3958         * class.c (mono_class_name_from_token): Removed the unneccessary
3959         `MonoGenericContext *' argument.
3960
3961 2005-10-04  Martin Baulig  <martin@ximian.com>
3962
3963         * loader.c
3964         (method_from_methodspec): Make the caching work again; fixes the
3965         performance regression from #76262.
3966
3967 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3968
3969         * file-io.c:
3970         * file-io.h:
3971         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
3972         GetFileSystemEntries that performs the same work but without going
3973         into io-layer, locking, etc.
3974
3975 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
3976
3977         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
3978         ThreadState_Stopped as well. Fixes #76047.
3979
3980 2005-09-29  Martin Baulig  <martin@ximian.com>
3981
3982         * class.c
3983         (inflate_generic_context): If the new context has a `gmethod', set
3984         its `container' that that gmethod's `container'.
3985
3986         * metadata.c
3987         (mono_metadata_parse_generic_param): Simplify things;
3988         `generic_container = generic_context->container;' is just fine.
3989
3990         * loader.c (method_from_methodspec): Code cleanups.
3991
3992 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
3993
3994         * decimal.c: fix warning (and let gcc generate correct
3995         code on ARM with optimizations).
3996
3997 2005-09-28  Martin Baulig  <martin@ximian.com>
3998
3999         * loader.c
4000         (method_from_memberref): Added `MonoGenericContext *class_context'
4001         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4002         (method_from_methodspec): If we're a memberref, use the enclosing
4003         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4004
4005 2005-09-28  Martin Baulig  <martin@ximian.com>
4006
4007         * object.c (mono_runtime_invoke_array): Added support for
4008         MONO_TYPE_GENERICINST; fixes #75917.
4009
4010 2005-09-27  Martin Baulig  <martin@ximian.com>
4011
4012         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4013         `k->byval_arg.type' to determine the actual type.
4014
4015         * loader.c (method_from_methodspec): Removed some hacks.
4016
4017 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4018
4019         * class-internals.h (mono_field_is_deleted): Do the test for
4020         rtspecialname before we check the actual name of the field. This
4021         prevents us from dereferencing a pointer into the string table,
4022         saving us from accessing a few pages
4023
4024         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4025         macros. This will allow a deadlock debugger to easily be plugged
4026         in.
4027
4028 2005-09-27  Martin Baulig  <martin@ximian.com>
4029
4030         * loader.c (method_from_methodspec): Create a "signature"
4031         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4032
4033 2005-09-27  Martin Baulig  <martin@ximian.com>
4034
4035         * class.c
4036         (inflate_generic_class): Correctly set the new context's
4037         container.
4038
4039         * loader.c
4040         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4041         instead of a `MonoGenericContext *'.
4042         (mono_method_signature_full): Take a `MonoGenericContainer *'
4043         instead of a `MonoGenericContext *'.
4044
4045         * metadata.c
4046         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4047         instead of a `MonoGenericContext *'.
4048         (mono_metadata_parse_method_signature_full): Likewise.
4049
4050 2005-09-26  Martin Baulig  <martin@ximian.com>
4051
4052         * class.c
4053         (mono_class_from_generic_parameter): Set `klass->generic_container'
4054         (mono_class_from_generic_parameter): Likewise.
4055         (mono_bounded_array_class_get): We inherit the generic container
4056         from the element class.
4057
4058         * loader.c
4059         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4060         argument rather than computing it here.
4061         (method_from_memberref): Correctly set the generic context before
4062         parsing the signature.  Fixes #75681.
4063
4064 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4065
4066         * object.c (mono_class_has_special_static_fields): Fix warnings.
4067
4068 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4069
4070         * assembly.c: Add parse_public_key function, to
4071         par the public keys. Also added mono_assembly_name_parse_full,
4072         to define it the parsed key should be freed or not.
4073         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4074         to parse a long format assembly name.
4075         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4076         private, since calling it to preserve the key requires
4077         freeing it manually.
4078         
4079 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4080
4081         * locales.c : removed HAVE_ICU part.
4082
4083 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4084
4085         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4086         field_is_special_static if the klass has no special static fields.
4087
4088         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4089         (MonoCachedClassInfo): Likewise.
4090
4091         * object.c (mono_class_has_special_static_fields): New helper function.
4092
4093 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4094
4095         * class.c (mono_class_create_from_typedef): Don't call 
4096         interfaces_from_typedef_full for enums.
4097         (mono_class_create_from_typedef): Compute the base types of enums directly
4098         without calling mono_class_setup_fields ().
4099         (mono_class_find_enum_basetype): New helper function.
4100
4101         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4102         one place inside the string heap.
4103         
4104 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4105
4106         * class.c: locking fixes, code cleanups, some docs added.
4107         Allocate some data structures in the image mempool.
4108
4109 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4110
4111         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4112         the example code.
4113         
4114 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4115
4116         * class-internals.h, class.c, reflection.c: reduce memory taken by
4117         MonoClass.
4118
4119 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4120
4121         * metadata.c, metadata.h, loader.h: documentation updates, code and
4122         API cleanups.
4123
4124 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4125
4126         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4127         the example code.
4128
4129         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4130         page faults caused by the runtime while reading metadata.
4131
4132 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4133
4134         * socket-io.c: the field names were changed 3 months ago and no one
4135         realized until bug #76077 got filed!
4136
4137 2005-09-20  Martin Baulig  <martin@ximian.com>
4138
4139         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4140
4141 2005-09-20  Martin Baulig  <martin@ximian.com>
4142
4143         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4144         write the rank into the class entry.
4145
4146 2005-09-20  Martin Baulig  <martin@ximian.com>
4147
4148         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4149
4150 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4151
4152         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4153
4154         * icall.c (custom_attrs_defined_internal): New icall.
4155
4156         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4157         function.
4158         (mono_custom_attrs_construct_by_type): New helper function.
4159
4160 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4161
4162         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4163         terminate the resulting string. Fixes #76123.
4164
4165 2005-09-16  Martin Baulig  <martin@ximian.com>
4166
4167         * mono-debug.c
4168         (mono_debug_add_method): Ignore inflated methods for the moment.
4169
4170 2005-09-14  Martin Baulig  <martin@ximian.com>
4171
4172         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4173
4174 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4175
4176         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4177         return a success/failure indication.
4178         (mono_metadata_interfaces_from_typedef_full): Ditto.
4179         (get_constraints): Ditto.
4180
4181 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4182
4183         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4184         
4185         * marshal.c (emit_marshal_array): Add support for returning string
4186         arrays from delegates. Fixes #76063.
4187
4188         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4189
4190 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4191
4192         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4193         icall.
4194
4195 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4196
4197         * reflection.c icall.c: Fix after mono_get_exception_type_load
4198         signature change.
4199
4200         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4201         (mono_assembly_load_reference): Use the new helper.
4202
4203         * class-internals.h (MonoLoaderError): New structure containing 
4204         information about type loading errors.
4205
4206         * class-internals.h loader.c: Add APIs to store per-thread loader
4207         error information.
4208
4209         * loader.c class.c: Set the loader error if needed.
4210
4211         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4212
4213 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4214
4215         * decimal.c: fixed to handle the broken ARM fp format.
4216
4217 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4218
4219         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4220         broken.
4221
4222 2005-09-06  Martin Baulig  <martin@ximian.com>
4223
4224         * domain.c (supported_runtimes): Added v2.0.50727.
4225
4226 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4227
4228         * culture-info.h: reduce the size of some structures.
4229
4230 2005-09-05  Martin Baulig  <martin@ximian.com>
4231
4232         Reflect latest API changes in the August CTP.
4233
4234         * icall.c
4235         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4236         ("MonoType.HasGenericArguments"): Removed.
4237         ("MonoMethod.BindGenericParameters"): Renamed to
4238         "MakeGenericMethod".
4239         ("MethodBuilder.BindGenericParameters"): Renamed to
4240         "MakeGenericMethod".    
4241
4242 2005-09-05  Martin Baulig  <martin@ximian.com>
4243
4244         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4245
4246 2005-09-05  Martin Baulig  <martin@ximian.com>
4247
4248         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4249
4250         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4251         generic_container is non-NULL.
4252
4253 2005-09-05  Martin Baulig  <martin@ximian.com>
4254
4255         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4256
4257         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4258
4259 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4260
4261         * reflection.c (encode_locals,
4262         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4263         for large generic types.
4264
4265 2005-09-05  Martin Baulig  <martin@ximian.com>
4266
4267         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4268
4269         * class.c (mono_dup_array_type): New public method.
4270         (mono_metadata_signature_deep_dup): New public method.
4271         (dup_type): Correctly duplicate array and function types.
4272
4273 2005-09-05  Martin Baulig  <martin@ximian.com>
4274
4275         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4276
4277         * reflection.c (get_default_param_value_blobs): Handle generic types
4278         and generic methods.
4279
4280 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4281
4282         * class.c: Fixed error reporting (method/class were inversed) for 
4283         inheritance demands.
4284         * security-manager.c|h: Added the AppDomain when calling the managed
4285         System.Security.SecurityManager.InheritanceDemand method.
4286
4287 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4288
4289         * reflection.c (encode_marshal_blob): 'marshaltype' and
4290         'marshaltyperef' are alternate sources for the custom marshaler
4291         name.
4292
4293 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4294
4295         * class.c: fix creation of array classes with rank == 1
4296         (patch by Ankit Jain <jankit@novell.com>).
4297
4298 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4299
4300         * object.c: fix check for creating the bound data for arrays vs
4301         szarrays.
4302
4303 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4304
4305         * object.c: configuration file name is now based on the executable name,
4306         not the image name. Fixes bug #75931.
4307
4308 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4309
4310         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4311         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4312
4313 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4314
4315         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4316
4317 2005-08-24  Ankit Jain  <jankit@novell.com>
4318             Raja R Harinath  <rharinath@novell.com>
4319
4320         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4321           called by it recursively.
4322           (mono_class_init): Remove special case in pending_init handling, since it's
4323           superseded by the fix to mono_class_from_typeref.
4324
4325 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4326
4327         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4328         BROKEN_THREAD_START stuff.
4329
4330 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4331
4332         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4333         trampoline.
4334
4335         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4336         
4337         * object.c (mono_delegate_ctor): Replace the original function address with
4338         a delegate trampoline.
4339
4340 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4341
4342         * icall.c: add boolean argument to base64_to_byte_array and 
4343         InternalFromBase64String to control whether a whitespace-only string
4344         is allowed (or should casue a FormatException to be thrown). We need
4345         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4346         to match the MS behaviour in both profiles.
4347         * appdomain.c: Bump corlib version.
4348
4349 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4350
4351         This patch implements a big portion of publisher policy
4352         support, used to bind assembly versions and redirect
4353         one assembly from version A to version B.
4354
4355         * assembly.c:
4356         New GSList loaded_assembly_bindings, for storing the cached
4357         assembly bindings.
4358         (assembly_binding_maps_name): New static function for checking if a 
4359         assembly binding information maps an assembly name.
4360         (mono_assembly_binding_info_free): New function for freeing
4361         assembly binding information resources.
4362         (get_publisher_policy_info): New static function for retrieving 
4363         assembly binding information from a MonoImage.
4364         (compare_versions): New static function for comparing an assembly
4365         binding information data and the version of an assembly name.
4366         (check_policy_versions): New static function for checking if an
4367         assembly binding info mapping an assembly name is valid for it.
4368         (mono_assembly_load_publisher_policy): New static function for
4369         loading the 'policy.major.minor.MyAssembly' image for an assembly
4370         with an assembly name 'aname'.
4371         (mono_assembly_bind_version): New static function for updating
4372         assembly redirection.
4373         (mono_assembly_apply_binding): New static function for applying
4374         assembly binding.
4375         (search_binding_loaded): New static function for searching 
4376         loaded assembly binding infos in the cache domain.
4377         (mono_assembly_load_full): Don't apply assembly binding for
4378         reflection only assemblies.
4379
4380         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4381         which contains information about assembly binding. Also
4382         declare signature for mono_config_parse_publisher_policy ()
4383         function, used to retrieve pub policy info.
4384         
4385         * mono-config.c:
4386         (publisher_policy_start): New static function used to parse publisher 
4387         policy config files.
4388         (publisher_policy_parser): New static MonoParseHandler containing 
4389         the functions used when parsing config files.
4390         (mono_config_parse_publisher_policy): New function for parsing
4391         publisher policy files.
4392         
4393 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4394
4395         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4396
4397         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4398
4399         * object.c (mono_get_addr_from_ftnptr): New helper function.
4400
4401         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4402
4403         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4404
4405 2005-08-19  Dick Porter  <dick@ximian.com>
4406
4407         * threads.c, threads.h, appdomain.c, appdomain.h,
4408         profiler-private.h, monitor.c, object.c, object-internals.h,
4409         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4410         store the thread ID, so it can hold a 64 bit value if needed.
4411
4412 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4413
4414         * reflection.c (mono_reflection_create_dynamic_method): Store the
4415         handle class into the method references as well so ldtoken works in
4416         dynamic methods.
4417
4418         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4419         types.
4420
4421 2005-08-19  Ankit Jain <jankit@novell.com>
4422
4423         Fix #75847.
4424         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4425           here rather than using the method signature of a arbitrary function
4426           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4427           two arguments.
4428           Hack done with Harinath.
4429
4430 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4431
4432         * threadpool.c: disable printing stack traces when we get a exception
4433         in a threadpool thread. I need to do more testing to figure out which
4434         cases actually print this. Fixes bug #75828.
4435
4436 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4437
4438         * icall.c: there might be ignored whitespace after the last '='. This
4439         fixes length computation and bug #75840.
4440
4441 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4442
4443         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4444         well. Fixes #75809.
4445
4446         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4447         #75784.
4448         
4449         * reflection.c (create_custom_attr_data): Ditto.
4450
4451 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4452
4453         * locales.c, culture-info.h : removed RegionLCIDMap.
4454         * culture-info-tables.h : regenerated.
4455
4456 2005-08-16  Martin Baulig  <martin@ximian.com>
4457
4458         * class.c (mono_type_get_name_recurse): Small fix.
4459
4460 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4461
4462         * locales.c : indentation fixie.
4463
4464 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4465
4466         * object-internals.h,
4467           locales.h,
4468           locales.c,
4469           culture-info.h,
4470           icall.c : added RegionInfo table support.
4471         * culture-info-table.h : regenerated for region support.
4472
4473 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4474
4475         * reflection.c (resolve_object): handle all kinds of MonoMethod
4476         including generic ones
4477
4478 2005-08-12  Ankit Jain <jankit@novell.com>
4479
4480         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4481           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4482
4483 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4484
4485         * process.c: Don't close a thread handle when it's NULL. This is a
4486         workaround for bug #75733.
4487
4488 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4489
4490         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4491
4492 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4493
4494         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4495
4496 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4497
4498         * threadpool.c: if a work item in the thread pool has a callback that
4499         catches a exception, don't propagate it after invoking the callback.
4500         Fixes bug #75336.
4501
4502 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4503
4504         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4505
4506         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4507
4508         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4509
4510         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4511
4512 2005-08-03  Ankit Jain  <jankit@novell.com>
4513
4514         Fix #75683.
4515         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4516           PInvoke calling convention is 0.
4517
4518 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4519
4520         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4521         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4522
4523 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4524
4525         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4526         to handle threads not started by the GC (patch by Michael Meeks
4527         <michael.meeks@novell.com>).
4528
4529 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4530
4531         * reflection.c: Make buffer used in emitting types larger for some
4532         big generic types (patch by Michal Moskal).
4533
4534 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4535
4536         * mono-debug.c: Fix some (not all) alignment problems.
4537
4538 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4539
4540         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4541         Invoke mono_image_load_from_data_full passing the refonly
4542         parameter.
4543
4544         * assembly.c
4545         (mono_assembly_open_from_bundle): Add the refonly argument, 
4546         in order to pass it to other methods it calls to.
4547         (do_mono_assembly_open): Add the refonly argument, in order 
4548         to pass it to other methods it calls to.
4549         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4550         the refonly parameter to it.
4551
4552         * image.c: Add loaded_images_refonly_hash and
4553         loaded_images_refonly_guid_hash to cache the reflection
4554         only loaded images.
4555         (mono_images_init): Initialize the hash tables used for
4556         caching the reflection only images.
4557         (load_modules): Invoke mono_image_open_full passing the refonly
4558         parameter to load the modules the correct way.
4559         (build_guid_table): Add the refonly argument, to re-build the 
4560         correct hash table.
4561         (do_mono_image_open): Added the refonly argument, in order to
4562         define it for the loaded image.
4563         (mono_image_loaded_full): New function, which receives an
4564         additional parameter to look for the image in the refonly or
4565         non-refonly section.
4566         (mono_image_loaded): Updated, using mono_image_loaded_full.
4567         (mono_image_loaded_by_guid_full): The same case that happens
4568         with mono_image_loaded_full.
4569         (mono_image_loaded_by_guid): Likewise.
4570         (register_image): Use the ref_only variable inside MonoImage
4571         to decide in which hash table store the current image.
4572         (mono_image_open_from_data_full): Rename
4573         mono_image_open_from_data to mono_image_open_from_data_full,
4574         adding the refonly argument, to define the ref_only variable 
4575         inside MonoImage.
4576         (mono_image_open_from_data): Return 
4577         mono_image_open_from_data_full.
4578         (mono_image_open_full): Rename mono_image_open to
4579         mono_image_open_full, receiving the new refonly argument,
4580         to pass it to inner methods.
4581         (mono_pe_file_open): Update this function, to open
4582         a MonoImage as a non-refonly image.
4583         (mono_image_close): Use the refonly variable inside
4584         MonoImage to remove the image from the correct caches.
4585
4586         * image.h: Add the signatures of mono_image_open_full,
4587         mono_image_open_from_data_full, mono_image_loaded_full,
4588         mono_image_loaded_by_guid_full.
4589
4590         * metadata-internals.h: Add the ref_only field to 
4591         MonoImage.
4592         
4593 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4594
4595         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4596         Fix the last behavior, which used to load the assemblies and
4597         extract MonoReflectionAssemblyName information, instead of
4598         extract it from the metadata tables. Needed for Reflection
4599         Only assemblies.
4600         
4601 2005-07-29  Martin Baulig  <martin@ximian.com>
4602
4603         * mono-debug-debugger.c
4604         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4605         not initialized.
4606
4607         * mono-debug.c
4608         (mono_debug_address_from_il_offset): Check whether we have
4609         debugging support before attempting to take the lock.
4610         (mono_debug_source_location_from_address): Likewise.
4611         (mono_debug_source_location_from_il_offset): Likewise.
4612         (mono_debug_il_offset_from_address): Likewise.
4613         (mono_debug_address_from_il_offset): Likewise.
4614
4615 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4616
4617         * class.c (mono_class_from_name_case): Add support for dynamic images.
4618         Fixes #75650.
4619
4620         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4621         for #75479.
4622
4623 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4624         
4625         * reflection.c (mono_method_get_object): Fix warning.
4626
4627 2005-07-28  Martin Baulig  <martin@ximian.com>
4628
4629         * mono-debug.c
4630         (mono_debug_add_wrapper): Also write the wrapper type.
4631
4632 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4633
4634         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4635         
4636         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4637         data indicates the class has none.
4638
4639 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4640
4641         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4642         loader lock with the debugger lock. Prevents deadlocks for beagle.
4643
4644         Beagle can now run on an smp box for a weekend without any
4645         issues. Woohoo!
4646
4647 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4648
4649         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4650         in a module. Fixes #75629.
4651
4652 2005-07-26  Martin Baulig  <martin@ximian.com>
4653
4654         * mono-debug.c (mono_debug_add_wrapper): New static method.
4655         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4656         interncall or a wrapper.
4657
4658         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4659         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4660         (MONO_DEBUGGER_VERSION): Bump to 51.
4661
4662         * mono-debug-debugger.c
4663         (mono_debugger_add_type): Removed this empty function.
4664         (mono_debugger_add_method): Likewise.
4665
4666 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4667
4668         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4669         before accessing method->slot.
4670
4671 2005-07-21  Jb Evain  <jbevain@gmail.com>
4672
4673         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4674         Fixes #75010.
4675
4676 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4677
4678         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4679         #75587.
4680
4681 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4682
4683         * image.h image.c: Add mono_image_get_guid () API function.
4684
4685 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4686
4687         There were issues when multiple threads tried to load
4688         assemblies. A deadlock was created between assemblies_mutex and
4689         mono_domain_assemblies_lock. This fixes the issue by making the
4690         assembly ref counting be lock free. See bug 75586.
4691         
4692         * image.c (mono_image_close): The add ref function here was using
4693         Interlocked operations while the unref was using a mutex and a
4694         --. I don't think this was ever a bug that would be exposed in a
4695         non-pendantic way (ie, by an embedder doing a ref on one thread
4696         and an unref on another), but for the sake of correctness, this is
4697         now Interlocked.
4698
4699         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4700         (mono_assembly_load_reference): Call mono_assembly_addref rather
4701         than touching the refcount ourselves.
4702         (mono_assembly_close): Use InterlockedDecrement to unref the
4703         assembly. Don't acquire the lock unless it is actually needed.
4704
4705 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4706
4707         * class.c (mono_class_layout_fields): Fix calculation of has_references
4708         for generic types.
4709
4710 2005-07-12  Martin Baulig  <martin@ximian.com>
4711
4712         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4713
4714         * metadata.c
4715         (mono_type_hash): Provide better hashing for generic instances.
4716         (mono_generic_inst_hash): Improve hashing.
4717         (mono_generic_class_hash): Likewise.
4718
4719         * reflection.c (mymono_metadata_type_hash): Improve hashing for
4720         generic instances.
4721
4722 2005-07-12  Martin Baulig  <martin@ximian.com>
4723
4724         * reflection.c (mono_reflection_create_runtime_class): Remove the
4725         hack for generic type definitions and non-`Run' assemblies.
4726         (mono_reflection_bind_generic_parameters): Also use
4727         `klass->wastypebuilder' to check for TypeBuilders.
4728
4729 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4730
4731         * class.c (mono_class_layout_fields): Fix calculation of has_references
4732         for generic types.
4733
4734         * class.c (inflate_generic_class): Fix a leak.
4735         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4736         for generic types.
4737
4738 2005-07-11  Martin Baulig  <martin@ximian.com>
4739
4740         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4741         on error.
4742
4743 2005-07-11  Martin Baulig  <martin@ximian.com>
4744
4745         * loader.c (find_method): Also lookup in
4746         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4747
4748 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4749
4750         * appdomain.c (mono_domain_unload): Don't free the error message
4751         before passing it to mono_get_exception_...
4752
4753         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4754         
4755 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4756
4757         * threads.c: try to better guess an available RT signal (bug #75387).
4758
4759 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4760
4761         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4762         and CACHE_OBJECT.
4763
4764 2005-07-07  Martin Baulig  <martin@ximian.com>
4765
4766         * class.c (mono_type_get_name_full): Return NULL for
4767         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4768         fixes #75408.
4769
4770 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4771
4772         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4773         exit the appdomain as well being aborted.
4774
4775         * threadpool.c: Create all threadpool threads inside the root appdomain, and
4776         change back to the root domain after calling managed code. This enables
4777         appdomains using threadpools to be unloaded.
4778
4779 2005-07-07  Martin Baulig  <martin@ximian.com>
4780
4781         * class-internals.h
4782         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4783         into `MonoDynamicGenericClass' since we only need it for dynamic
4784         types.
4785
4786         * reflection.c (mono_class_bind_generic_parameters): We don't need
4787         to compute the `parent' here.
4788
4789 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
4790
4791         * culture-info-table.h : regenerated.
4792
4793 2005-07-06  Martin Baulig  <martin@ximian.com>
4794
4795         * icall.c
4796         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4797
4798         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4799
4800 2005-07-06  Martin Baulig  <martin@ximian.com>
4801
4802         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4803         we're doing a signature-only comparision; fixes #74945.
4804
4805 2005-07-06  Martin Baulig  <martin@ximian.com>
4806
4807         * class-internals.h (MonoGenericClass): Moved some things out into
4808         a new `MonoInflatedGenericClass' type.  
4809         (MonoInflatedGenericClass): New type; the `klass' of a
4810         `MonoGenericClass' is now computed lazyly in
4811         mono_get_inflated_generic_class().      
4812
4813         * class.c (mono_get_inflated_generic_class): New public function.
4814         (mono_class_inflate_generic_method): Removed the unused
4815         `MonoClass *' argument.
4816         (setup_generic_vtable): Don't call mono_get_inflated_method() on
4817         all the methods.
4818         (mono_class_create_generic): Make this static and merge it with
4819         mono_class_create_generic_2(); we're now called automatically from
4820         mono_get_inflated_generic_class().
4821
4822         * loader.c (mono_method_signature): Call
4823         mono_get_inflated_method() here.
4824
4825 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
4826
4827         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4828         type of fields with RVA.
4829
4830         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4831         for this pseudo class.
4832         (my_mono_class_from_generic_parameter): Likewise.
4833         (mono_class_init): Allow interfaces to have cctors.
4834
4835 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4836
4837         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4838         lazily for AOT methods.
4839
4840 2005-07-05  Martin Baulig  <martin@ximian.com>
4841
4842         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4843         returns FALSE for a successful match, not TRUE.
4844
4845 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4846
4847         * loader.c (mono_method_get_index): Optimize this a bit.
4848
4849 2005-07-04  Martin Baulig  <martin@ximian.com>
4850
4851         * class.c
4852         (class_compute_field_layout): Move the check for generic type
4853         definitions into mono_class_layout_fields().  Fixes #74684.
4854         (mono_class_from_generic_parameter): Correctly compute
4855         `klass->parent'; fixes #75457.
4856
4857         * reflection.c (register_assembly, register_module): Make sure
4858         `domain->rejobject_hash' is already created.
4859
4860 2005-07-02  Martin Baulig  <martin@ximian.com>
4861
4862         * class-internals.h
4863         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4864         `MonoDynamicGenericClass'.      
4865
4866 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
4867
4868         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4869         returned by a field getter is null, since null is a valid value.
4870
4871 2005-07-01  Martin Baulig  <martin@ximian.com>
4872
4873         * reflection.c (mono_reflection_generic_class_initialize): Update
4874         the `dgclass->fields [i].parent' to the correct class.
4875         (mono_image_get_fieldref_token): Use the declaring type, not the
4876         reflected type.
4877
4878 2005-07-01  Martin Baulig  <martin@ximian.com>
4879
4880         * loader.c (find_method): Also look in the interfaces; fixes #75429.
4881
4882 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
4883
4884         * threads.c (thread_cleanup): assert that thread != NULL
4885         (wait_for_tids_or_state_change): We were using the wrong variable
4886         when accessing wait->threads. `i' was always out of the bounds of
4887         the array.
4888
4889 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4890
4891         * loader.c: map user32 and kernel32 to libMonoSupportW
4892
4893 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
4894
4895         * appdomain.c (unload_thread_main): Mark this as WINAPI.
4896
4897 2005-06-28  Martin Baulig  <martin@ximian.com>
4898
4899         * loader.c (method_from_methodspec): Fix #75334.
4900
4901 2005-06-28  Martin Baulig  <martin@ximian.com>
4902
4903         Fix #74953 - Arrays now implement the generic IList<T> interface
4904         on the 2.0 platform.
4905
4906         * class-internals.h (MonoDefaults): Added `generic_array_class'.
4907
4908         * reflection.c (mono_class_bind_generic_parameters): New public
4909         function; similar to mono_reflection_bind_generic_parameters(),
4910         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
4911
4912         * domain.c (mono_init_internal): Try to initialize.
4913         `mono_defaults.generic_array_class' here; this'll only succeed if
4914         we're using the 2.0 corlib.
4915
4916         * icall.c
4917         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
4918         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
4919         (mono_lookup_internal_call): Added support for nested classes.
4920
4921         * loader.c
4922         (mono_get_method_from_token): Set `result->signature->pinvoke' if
4923         we're an interncall and have generic arguments.
4924
4925         * class.c
4926         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
4927         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
4928         instance of System.Array.InternalArray<T> for arrays, so they
4929         implement the generic IList<T> interface.
4930
4931 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
4932
4933         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
4934         (chastamar@yahoo.com). Fixes #75374.    
4935
4936 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
4937
4938         * culture-info-table.h: regenerated.
4939
4940 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4941
4942         * icall.c: handle spaces correctly for base64 strings.
4943
4944 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
4945
4946         * *.c: Kill some warnings.
4947
4948 2005-06-23  Duncan Mak  <duncan@novell.com>
4949
4950         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
4951         that this builds on Solaris 10 (x86).
4952
4953 2005-06-23  Martin Baulig  <martin@ximian.com>
4954
4955         * class.c
4956         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
4957         generic type definitions.
4958
4959 2005-06-23  Martin Baulig  <martin@ximian.com>
4960
4961         Fix #75331.
4962
4963         * metadata.c (mono_class_get_overrides): Renamed to
4964         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
4965         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
4966         pass it to mono_get_method_full().
4967
4968 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
4969
4970         * reflection.c (mono_reflection_create_runtime_class): take the
4971         mono_domain_lock in this method. Prevents deadlocks
4972
4973 2005-06-22  Martin Baulig  <martin@ximian.com>
4974
4975         * loader.c (method_from_methodspec): Fix #75330.
4976
4977 2005-06-22  Martin Baulig  <martin@ximian.com>
4978
4979         * reflection.c (type_get_qualified_name): Use
4980         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
4981         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
4982         argument; use it if we don't have an assembly name.
4983
4984 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
4985
4986         * object.c: In mono_message_init, set "copy out" flag for in
4987         parameters with the [Out] flag.
4988
4989 2005-06-21  Martin Baulig  <martin@ximian.com>
4990
4991         * class.c
4992         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
4993         and MONO_TYPE_PTR.
4994
4995 2005-06-21  Martin Baulig  <martin@ximian.com>
4996
4997         * class.c (mono_class_init): Don't initialize `class->fields' for
4998         generic instances since they're initialized again in
4999         compute_field_layout(). 
5000         (compute_field_layout): Set the field's `generic_info' here; fix
5001         #75320. 
5002
5003 2005-06-21  Martin Baulig  <martin@ximian.com>
5004
5005         * class-internals.h
5006         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5007
5008         * metadata.c (mono_metadata_generic_method_equal): Also
5009         distinguish the `generic_class'; fixes #75334.
5010
5011 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5012
5013         * domain.c:
5014         * appdomain.c:
5015         * domain-internals.h:
5016         * reflection.c: 'domain_assemblies' field is now protected by its own
5017         lock. Don't call into managed code to run the AssemblyLoad event if we
5018         now there are no registered delegates for it.
5019
5020 2005-06-20  Martin Baulig  <martin@ximian.com>
5021
5022         * class.c (mono_class_is_assignable_from): Use a custom version of
5023         mono_class_has_parent() to make things work for generic instances;
5024         fix #75300.
5025
5026 2005-06-20  Martin Baulig  <martin@ximian.com>
5027
5028         * loader.c (method_from_methodspec): Apply a patch from
5029         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5030
5031 2005-06-20  Martin Baulig  <martin@ximian.com>
5032
5033         * class.c (mono_class_init): Reverted Zoltan's last change; it
5034         breaks generics.
5035
5036 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5037
5038         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5039
5040 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5041
5042         * socket-io.c: fix the index in the socket array for writable/error
5043         sockets. Fixes bug #75306.
5044
5045 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5046
5047         * class.c (mono_class_init): Allow interfaces to have static ctors.
5048
5049 2005-06-17  Martin Baulig  <martin@ximian.com>
5050
5051         * loader.c (method_from_methodspec): Use `context->container' when
5052         parsing the `gmethod->inst'.
5053
5054 2005-06-17  Martin Baulig  <martin@ximian.com>
5055
5056         * class.c (mono_type_get_name_recurse): Don't add the assembly
5057         name for type arguments.
5058
5059 2005-06-15  Martin Baulig  <martin@ximian.com>
5060
5061         * reflection.c (mono_image_get_inflated_method_token): Encode
5062         correct klass; fixes #75260.
5063
5064 2005-06-13 Michal Moskal <malekith@nemerle.org>
5065
5066         * icall.c: Make GetCorrespondingMethod/Constructor take
5067         MonoReflectionMethod method not MonoMethod. Removed
5068         MonoType.GetCorrespondingField, and make
5069         MonoGenericType.GetCorrespondingField take name not
5070         MonoClassField.
5071
5072 2005-06-13  Michal Moskal <malekith@nemerle.org>
5073
5074         * reflection.c (field_encode_signature, encode_locals):
5075          Make sizes of buffers for types larger (for big generic types).
5076          (create_generic_typespec,
5077          mono_reflection_sighelper_get_signature_local,
5078          mono_reflection_sighelper_get_signature_field):
5079          Add asserts for too small buffers.
5080
5081 2005-06-15  Martin Baulig  <martin@ximian.com>
5082
5083         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5084         if our parent is not a dynamic type.
5085
5086 2005-06-15  Martin Baulig  <martin@ximian.com>
5087
5088         * class-internals.h (MonoTypeNameFormat): New enum.
5089
5090         * class.c
5091         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5092         (mono_type_get_full_name): Removed.
5093         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5094         argument instead of the boolean's.
5095
5096         * icall.c (ves_icall_System_MonoType_getFullName):
5097         Added `gboolean assembly_qualified'.    
5098
5099         * reflection.h
5100         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5101
5102         * reflection.c (mono_reflection_parse_type): Parse the new type
5103         name format.
5104
5105 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5106
5107         * icall.c: no need to convert from utf16 to utf8 and then back again
5108         after the call to GetLogicalDrives.
5109
5110 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5111
5112         * icall.c: frombase64. Fix problems exposed by new tests.
5113
5114 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5115
5116         * icall.c: added internal calls for converting char [] and strings in
5117         base64 into byte [].
5118
5119 2005-06-10  Martin Baulig  <martin@ximian.com>
5120
5121         * class.c (mono_class_create_generic_2): Read the nested classes
5122         from the metadata rather than from `gklass->nested_classes' since
5123         `gklass' might not be initialized yet.
5124
5125 2005-06-09  Duncan Mak  <duncan@novell.com>
5126
5127         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5128         all public headers. Fixes #74919.
5129
5130 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5131
5132         * domain.c: The key for proxy_vtable_hash is now a pointer
5133         array. Added new GHashFunc and GCompareFunc functions for this.
5134
5135         * class.h: The list of interfaces in MonoRemoteClass is known in
5136         advance and can't grow (we create a new MonoRemoteClass if needed),
5137         so now the interface array can be allocated together with
5138         MonoRemoteClass.
5139         
5140         * object.c: Added a new method create_remote_class_key.
5141         Fixed mono_remote_class so it does not depend on
5142         mono_upgrade_remote_class.
5143         Removed extend_interface_array.
5144         Added new method clone_remote_class(), which makes a copy of a remote
5145         class and adds a new interface or class to it.
5146         mono_upgrade_remote_class() now creates a new remote class (or gets
5147         it from the cache) if an vtable upgrade is needed. In this way
5148         we make sure that other objects sharing the same remote class
5149         don't get the new vtable with unwanted interfaces.
5150         
5151         * object-internals.h:
5152         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5153         
5154         * marshal.c: Track changes in mono_upgrade_remote_class().
5155
5156 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5157         * icall.c: Add runtime methods for obtaining members of inflated
5158         class, which were created from supplied non-inflated members. It
5159         is used in internal Get{Method,Constructor,Field} methods in
5160         System.Type
5161
5162 2005-06-09  Martin Baulig  <martin@ximian.com>
5163
5164         * reflection.c
5165         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5166
5167 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5168         * reflection.c (mono_image_basic_init): Define
5169         Version in MonoDynamicAssembly. 
5170         
5171 2005-06-08  Martin Baulig  <martin@ximian.com>
5172
5173         Fix #75136.
5174
5175         * loader.c
5176         (mono_method_signature_full): New public method; takes a
5177         `MonoGenericContext *'.
5178         (find_method): Use mono_method_signature_full() and pass the
5179         klass'es context to it.
5180
5181         * class.c (mono_class_is_inflated_method): Use
5182         mono_method_signature_full() and pass the context to it.
5183
5184 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5185
5186         * object.c: add proper locking in mono_remote_class_vtable(),
5187         fixes possible memory corruption.
5188
5189 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5190
5191         * marshal.c (mono_remoting_marshal_init): set
5192         initialized after initialization.
5193
5194 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5195
5196         * locales.c : hush.
5197
5198 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5199
5200         * object.c (extend_interface_array): fix really silly
5201         memory corrupting / comparison bug.
5202
5203 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5204
5205         * reflection.c: Functions added to support the creation
5206         of CustomAttributeData, which includes Attribute data
5207         used by ReflectionOnly methods.
5208
5209         * reflection.h:  mono_reflection_get_custom_attrs_data and
5210          mono_custom_attrs_data_construct added (functions exposed).
5211
5212          * icall.c: Added mono_reflection_get_custom_attrs_data
5213          as icall.
5214         
5215 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5216
5217         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5218         lupus's request.
5219
5220 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5221
5222         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5223
5224         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5225         dynamic DllImportAttribute.
5226
5227         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5228         dynamic DllImportAttribute.
5229
5230         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5231         Fixes #75162.
5232
5233 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5234
5235         * threads.c: avoid segfault when an unstarted thread is aborted.
5236
5237 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5238
5239         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5240         Returns the name and version of the runtime for reporting.
5241
5242 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5243
5244         * appdomain.c: bump corlib version.
5245         * object-internals.h: new field in MonoReflectionAssembly.
5246
5247 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5248
5249         * object-internals.h: Carlos forgot to add this field.
5250
5251 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5252
5253         * icall.c: Added create_version to create instances
5254         of Version of MonoReflectionAssemblyName. This change helps
5255         the AssemblyName tests to keep running fine.
5256         
5257 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5258   
5259         * object.c (mono_method_return_message_restore): A somehow less
5260         intrusive fix for #75138.
5261
5262 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5263
5264         * object.c (mono_method_return_message_restore): Fix computation
5265         of expected number of out args.
5266
5267 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5268
5269         * reflection.c (mono_image_get_method_info): Fix the case when the
5270         charset is empty.
5271
5272 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5273
5274         * object.c: Added missing null check in
5275           mono_method_return_message_restore.
5276
5277 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5278
5279         * reflection.c (mono_image_get_method_info): Handle the case when
5280         dllentry is empty.
5281
5282 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5283
5284         * object.c: When creating the vtable for a proxy, take into account
5285         all inherited interfaces, not only the ones registered in
5286         iclass->interfaces. This fixs bug #74996.
5287         Also, in mono_method_return_message_restore, verify that the array
5288         of out args has the expected lengh.
5289
5290 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5291
5292         * socket-io.c: update the timeout in Poll when the call is interrupte.
5293
5294 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5295
5296         * socket-io.c: support abort/suspend in Select_internal after last
5297         change.
5298
5299 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5300
5301         * threadpool.c: remove warning.
5302
5303 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5304
5305         * icall.c:
5306         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5307         removing the 1024 limit from select(). Runtime part of the fix for
5308         bug #71203.
5309
5310 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5311
5312         * socket-io.c: when resolving the addresses for the same
5313         host returned by gethostname(), get the local IPs from the interface
5314         list. Loopback addresses are discarded if the are interfaces up with
5315         non-loopback ones. Fixes bug #63265.
5316
5317 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5318
5319         * appdomain.c, verify.c, object-internals.h, reflection.c:
5320         bumped corlib number to 36, and added new extra_flags field
5321         to ReflectionMethodBuilder and friends.  Fixes #75060.
5322
5323 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5324
5325         * gc.c: register a new weak link only if the object is non-null
5326         (fixes bug#75047).
5327
5328 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5329
5330         * culture-info.h : short time pattern too.
5331
5332 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5333
5334         * culture-info.h : expand long time pattern string length.
5335
5336 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5337
5338         * culture-info-table.h : update (more French date format; #72788).
5339
5340 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5341
5342         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5343         the method is static. Fixes #75029.
5344
5345 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5346
5347         * reflection.c: Update the table_idx field of method builders after
5348         saving the module, since it can change. This is a workaround for
5349         bug #74914. 
5350
5351 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5352
5353         * culture-info-table.h : update (additional French date format).
5354
5355 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5356
5357         * icall.c (ves_icall_type_Equals): Revert last change.
5358         
5359         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5360
5361         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5362
5363 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5364
5365         * class-internals.h: Added executioncontext_class field to 
5366         MonoDefaults structure.
5367         * domain.c: Cache System.Threading.ExecutionContext class in 
5368         mono_defaults.
5369         * object.c: Capture the ExecutionContext for asynchroneous calls in
5370          mono_async_result_new.
5371         * object-internals.h: Added execution_context and original_context 
5372         fields to MonoAsyncResult. Added execution_context to MonoThread.
5373         * security-manager.c|.h: Added mono_get_context_capture_method to 
5374         return the capture method (if required by the security manager or by
5375         the framework version used).
5376         * threadpool.c: Apply capture (if present) ExecutionContext in 
5377         mono_async_invoke and revert to original context after it completes.
5378
5379 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5380
5381         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5382
5383 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5384
5385         * culture-info-table.h : zh-CHT related workaround.
5386
5387 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5388
5389         * marshal.c (emit_marshal_custom): Add some error checking and call the
5390         methods in the ICustomMarshaler interface. Fixes #74875.
5391         
5392         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5393         native->managed wrappers.
5394
5395 2005-05-12  Martin Baulig  <martin@ximian.com>
5396
5397         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5398         here and use the loader lock.
5399
5400         * mono-debug.c: Properly lock when the debugger is not attached.
5401         (mono_debug_init): Release the initial lock if we're not running
5402         in the debugger.
5403
5404 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5405
5406         * marshal.c (emit_marshal_custom): Pass through NULL values without
5407         calling the custom marshalling routines.
5408
5409         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5410         conversion in structures. Fixes #74882.
5411
5412 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5413
5414         * culture-info-table.h : zh-* cultures were missing.
5415
5416 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5417
5418         * threads.c: Added a new event background_change_event which is signaled
5419         when a thread changes its background mode.
5420         Moved here several checks previously done in managed code. The checks
5421         require the thread lock, and using the thread lock in managed code
5422         can result in deadlocks.
5423         Merged Start_internal and Thread_internal into a single method. Now 
5424         Thread_internal does all work of creating and starting a thread.
5425         Added icalls for setting and getting the state of the object. Moved from
5426         managed code to avoid locking there.
5427         Added wait_for_tids_or_state_change() which is called instad of
5428         wait_for_tids when waiting for non-backround threads to end. This method
5429         will return if one of the threads ends or the background_change_event
5430         is signaled.
5431         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5432         the background mode. This method signals the background_change_event
5433         event.
5434         * icall.c:
5435         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5436         removed Start_internal.
5437         
5438 2005-05-11  Martin Baulig  <martin@ximian.com>
5439
5440         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5441         to order of some fields to get proper alignment on 64-bit machines.
5442
5443 2005-05-11  Martin Baulig  <martin@ximian.com>
5444
5445         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5446         changes as they're broken and completely fuck up the debugger.
5447
5448         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5449
5450 2005-05-10  Martin Baulig  <martin@ximian.com>
5451
5452         * reflection.c (mono_reflection_generic_class_initialize): Don't
5453         call mono_class_setup_parent() here.
5454
5455 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5456
5457         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5458         send/receive timeout use an integer in milliseconds. We were using a
5459         struct timeval.
5460
5461 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5462
5463         * locales.c:
5464         (internal_get_cultures): reserve the first slot of the array for the
5465         InvariantCulture, which will be filled in managed code.
5466
5467 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5468
5469         * reflection.c (mono_image_fill_module_table): Initialize the
5470         GENERATION field as well.
5471
5472 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5473
5474         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5475         Monitor.Enter on the object.
5476
5477 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5478
5479         * threads.c: Enable the wait for running threads when exiting.
5480         * icall.c: Suspend all threads before exiting.
5481
5482 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5483
5484         * assembly.c (mono_assembly_load_reference): Fix warning.
5485
5486 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5487
5488         * threadpool.c: changed the default number of threads per cpu. From now
5489         on, the default will be 20 + (5 * number of cpus) instead of 50.
5490
5491 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5492
5493         * loader.c (mono_method_get_signature_full): Add locking here.
5494
5495 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5496
5497         * appdomain.c: Moved methods for parsing and freeing assembly
5498         names to assembly.c.
5499         * assembly.c, domain-internals.h: Created public methods for parsing
5500         assembly names. Fixed mono_assembly_load_with_partial_name:
5501         it now finds the best match, taking into account the version,
5502         token and culture specified in the partial name. Also return
5503         the latest version if no version information is specified.
5504
5505 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5506
5507         * threadpool.c: replace check for SocketAsyncCall class.
5508
5509 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5510
5511         * threadpool-internals.h:
5512         * Makefile.am: added threadpool-internals.h
5513
5514         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5515         that happen in threadpool threads (tested on MS).
5516         (mono_thread_pool_remove_socket): new function that dispatch any pending
5517         AIO call on a socket that is closing. By now only epoll really needs it,
5518         as select/poll wake up when the socket closes.
5519
5520
5521         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5522
5523 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5524
5525         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5526
5527 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5528
5529         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5530
5531 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5532
5533         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5534         has an abort request, convert it into a suspend request.
5535
5536 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5537
5538         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5539         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5540         is not supported yet.
5541
5542 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5543
5544         * image.c: register assemblies loaded from data (bundles) in the loaded
5545         assemblies hash. Fixes bug #74772.
5546
5547 2005-04-29  Martin Baulig  <martin@ximian.com>
5548
5549         * class.c (mono_type_get_name_recurse): Update to the new naming
5550         schema from the latest .NET 2.x beta2.
5551         (mono_class_setup_vtable_general): If we're a generic instance,
5552         copy the vtable from our generic type definition and inflate all
5553         the methods in it.
5554
5555         * loader.c (find_method): Update to the new naming schema from the
5556         latest .NET 2.x beta2.
5557
5558 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5559
5560         * class.c (mono_class_init): Add a mono_loader_unlock to the
5561         #74734 fix.
5562
5563 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5564
5565         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5566         suspend_all_other_threads () call for the time being, since it can hang.
5567
5568         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5569         the background threads to exit, since it can also hang.
5570
5571         * class.c (mono_class_init): Applied patch from Ankit Jain 
5572         (radical@gmail.com). Avoid pending init errors when a field refers
5573         to a nested class using a typeref. Fixes #74734.
5574
5575         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5576         this for dynamic modules.
5577
5578 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5579
5580         * threads.c: don't wait for threads that are in the process of aborting
5581         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5582         and waiting for background threads to finish. This makes xsp and
5583         mod-mono-server exit without random length delays and/or hangs.
5584
5585 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5586
5587         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5588
5589 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5590
5591         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5592         dynamic types to prevent infinite loops. Fixes #74727.
5593
5594         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5595         ..._is_assignable_to.
5596
5597 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5598
5599         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5600
5601 2005-04-25  Martin Baulig  <martin@ximian.com>
5602
5603         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5604
5605         * domain.c
5606         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5607
5608         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5609
5610         * reflection.c (build_compressed_metadata): Set metadata header
5611         version to 2.0.
5612
5613 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5614
5615         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5616         number into an integral and a decimal part. Fixes #70473.
5617
5618         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5619
5620 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5621
5622         * culture-info-table.h : reflected the latest locale-builder output.
5623
5624 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5625
5626         * threadpool.c: check for SuspendRequested too when deciding if
5627         mono_thread_interruption_checkpoint should be called.
5628
5629 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5630
5631         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5632         * threads.c: remove interruption_mutex and use Interlocked instead. When
5633         suspending all the threads, wait for all the suspended events at once.
5634         If we're shutting down and get an APC that is going to be queued,
5635         call mono_thread_execute_interruption immediately, as the thread might
5636         be sleeping on a pthread condition or mutex.
5637
5638         * icall.c: call mono_runtime_set_shutting_down before suspending the
5639         threads.
5640
5641         Fixes bug #74693. And now xsp is happier when exiting.
5642
5643 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5644
5645         * loader.c (mono_stack_walk): Fix #74690.
5646
5647 2005-04-22  Martin Baulig  <martin@ximian.com>
5648
5649         * mono-debug.h (MonoDebugMethodJitInfo): Added
5650         `MonoDebugMethodJitInfo *jit'.
5651
5652         * mono-debug.c (mono_debug_read_method): Cache the
5653         MonoDebugMethodJitInfo in `address->jit'.
5654         (mono_debug_free_method_jit_info): New public method.
5655
5656 2005-04-22  Martin Baulig  <martin@ximian.com>
5657
5658         * class.c (mono_class_is_assignable_from): Disallow
5659         type parameter -> interface.
5660
5661 2005-04-21  Dick Porter  <dick@ximian.com>
5662
5663         * threads.c (mono_thread_create): Turn an assertion into an error.
5664
5665 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5666
5667         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5668         
5669         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5670         Fix some gcc 4.0 warnings.
5671
5672 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5673
5674         * file-io.c: fix alt dir separator char on unix systems
5675         and cleanup (fixes bug #71214).
5676
5677 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5678
5679         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5680         a call to a remote domain, since the method may be an
5681         interface method in the client domain. This fixes bug #74192.
5682
5683 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5684
5685         * threadpool.c: recv/send are now performed before going back to managed
5686         code to save one transition.
5687
5688 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5689
5690         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5691
5692         * metadata/threadpool.c: removed hack to workaround the bug above.
5693
5694         Fixes bug #74618.
5695
5696 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5697
5698         * reflection.c reflection.h: Fix handling of parameter defaults in
5699         dynamic methods. Also fixes handling of parameter attributes.
5700         Fixes #74609.
5701
5702         * mono-debug.c (mono_debug_close_image): Fix warning.
5703
5704 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5705
5706         * socket-io.h: replaced old unused field with new 'blocking'.
5707         * threadpool.c: restore socket blocking state on windows(tm).
5708
5709 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5710
5711         * icall.c: don't return the codebase in the AssemblyName[] returned by
5712         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5713         * object-internals.h: Removed FIXME (fields were presents) and fixed
5714         versioncompat declaration.
5715
5716 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5717
5718         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5719         not closed, so don't cleanup when it happens.
5720
5721 2005-04-13  Chris Toshok  <toshok@ximian.com>
5722
5723         * mono-debug-debugger.h: change prototype for
5724         mono_debugger_lookup_type.
5725
5726         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5727         this function, although it should probably be named
5728         mono_debugger_init_type.
5729
5730 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5731
5732         * threadpool.c: fix non-AIO case.
5733
5734 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5735
5736         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5737         the built-in profiler to measure just JIT compilation times.
5738
5739 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5740
5741         * threadpool.c: the epollfd might be closed by another thread at
5742         any time, so ignore EBADF at treat it as a "we're closing" sign.
5743
5744 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5745
5746         * threadpool.c: release the semaphores with a count equals to the number
5747         of working threads in both IO and regular pools. Fixed typo that messed
5748         up the count of IO pool threads. Don't initialize the pipe handles if
5749         we're using epoll.
5750
5751 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5752
5753         * threadpool.c: some systems don't like a NULL when deleting the socket
5754         from epoll.
5755
5756 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5757
5758         * threadpool.c: fix semaphore allocation.
5759
5760 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5761
5762         * threadpool.c: added epoll() based implementation for asynchronous IO
5763         that is used instead of the default poll() when available.
5764         It can be disabled by setting MONO_DISABLE_AIO.
5765
5766 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5767
5768         * threadpool.c: windows needs 'closesocket' and instead of returning
5769         0 when the stream is closed while in select, it returns -1. Fixes bug
5770         #74573.
5771
5772 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
5773
5774         * class.c (class_compute_field_layout): Fix the regression caused by
5775         the previous try.
5776
5777 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5778
5779         * threadpool.c: separate pool for socket async. IO.
5780         * threadpool.h: mono_max_worker_threads is not a global any more.
5781
5782 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5783
5784         * class.c (class_compute_field_layout): Fix #74549.
5785
5786 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5787
5788         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5789         use 2 connected sockets instead.
5790
5791 2005-04-08  Miguel de Icaza  <miguel@novell.com>
5792
5793         * mono-config.c: Add new entry point for mkbundle
5794         mono_config_parse_memory. 
5795
5796 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5797
5798         * threadpool.c: removed another unused function.
5799
5800 2005-04-08  Ankit Jain  <radical@corewars.org>
5801
5802         * reflection.c (get_default_param_value_blobs): Add 'types'
5803         parameter to get the types encoded in the constant table.
5804         (mono_param_get_objects): Use the type from the constant table,
5805         not the type of the parameter, when creating default values.
5806         Handle null default values correctly.
5807
5808 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5809
5810         * file-io.c:
5811         * file-io.h:
5812         * threadpool.c:
5813         * threadpool.h:
5814         * icall.c:
5815         * socket-io.c: removed dead code for async IO.
5816
5817 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5818
5819         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5820
5821         * threadpool.c: intercept socket async. calls and pass them to a thread
5822         that is polling and dispatching the job items to the threadpool as
5823         socket become ready. Fixes bugs #71217, #71933.
5824
5825         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5826         between char and short/ushort arrays.
5827
5828         * socket-io.c: remove dead code.
5829
5830 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5831
5832         * locales.c,
5833           icall.c : removed InternalToUpper_Comp() and
5834           InternalToLower_Comp().
5835
5836 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5837
5838         * char-conversions.h : The tables were incorrectly generated. Should
5839           be generated against invariant culture.
5840
5841 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5842
5843         * object.c (mono_runtime_invoke_array): Fix return value when 
5844         passing pre-created valuetype objects to ctors.
5845
5846         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
5847         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5848         Fixes #74338.
5849
5850 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
5851
5852         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
5853         only used with --security and hides the wrong corlib version error.
5854
5855 2005-03-30  Joshua Tauberer  <tauberer@for.net>
5856
5857         * class.c: Changed mono_class_name_from_token so that types
5858         outside of a namespace don't have an initial period.  Improved
5859         the g_warning message used in _mono_class_get when loading
5860         fails.
5861         * assembly.c: In mono_assembly_load_reference, when an assembly
5862         can't be found, "No such file or directory" is misleading and
5863         unhelpful because a few paths were checked for the presence of
5864         the assembly.  When that happens (ENOENT), display a nicer
5865         message indicating the directories that were searched.  In all
5866         cases, the warning is made easier to read for non-hackers.
5867
5868 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5869
5870         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5871         project/solution.
5872         * appdomain.h|domain.c: Removed inline from functions.
5873         * appdomain.c: Reduced warnings when compiling on windows.
5874         * icall.c: Fixed output_debug declaration to gunichar2*.
5875         * mono-config.c: Reduced warnings when compiling on windows.
5876         * rand.c: Added missing "windows.h". Added missing return value.
5877         * rawbuffer.c: Added missing winsock2.h for windows.
5878         * sysmath.h: Added mono-compiler.h header to allow/ease 
5879         compilation with non-GCC compilers.
5880         * threads.c: Fixed declarations to compile with VS.NET C compiler.
5881         Removed cast warnings.
5882
5883         Adapted from the work of J Lothian (for VC6).
5884
5885 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5886
5887         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
5888         from default_path.
5889
5890 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5891
5892         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
5893         the 2.0 profile.
5894
5895 2005-03-27  Raja R Harinath  <harinath@gmail.com>
5896
5897         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
5898         has to be in $(exec_prefix).  $(prefix) is for arch-independent
5899         stuff, and it would probably use $(prefix)/share rather than
5900         $(prefix)/lib.
5901
5902 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5903
5904         * console-io.c: added 2 includes that might be missing.
5905
5906 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5907
5908         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
5909         profile.
5910
5911         * reflection.c (create_custom_attr): Allocate the params array using
5912         alloca so it gets GC tracking.
5913
5914 2005-03-23  Chris Toshok  <toshok@ximian.com>
5915
5916         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
5917         out some spew.
5918
5919 2005-03-24  Raja R Harinath  <rharinath@novell.com>
5920
5921         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
5922         changes to pick up any changes in prefix, etc.
5923
5924 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5925
5926         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
5927         
5928         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
5929         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
5930
5931 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5932
5933         * class-internals.h object-internals.h class.c reflection.c: Extend the
5934         mono_lookup_dynamic_token () function to return the class of the
5935         token as well. 
5936
5937         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
5938         well. Fixes #73848.
5939
5940 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5941
5942         * security-manager.c: Skip inheritance checks for intra-corlib
5943         class inheritance and method overrides. This skips a lot of checks
5944         and (anyway) permissions cannot work until corlib is loaded.
5945
5946 2005-03-23  Martin Baulig  <martin@ximian.com>
5947
5948         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
5949         MONO_TYPE_GENERICINST.  
5950
5951 2005-03-23  Martin Baulig  <martin@ximian.com>
5952
5953         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
5954
5955 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5956
5957         * class.c: added locking comments to some functions.
5958         Cache the interface offsets arrays (saves about 20 KB
5959         of runtime memory in a typical app).
5960         Reduce the time overhead in mono_class_setup_supertypes ().
5961
5962 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
5963
5964         * icall.c: speedup and fix leaks in GetMethodsByName and
5965         GetPropertiesByName.
5966
5967 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5968
5969         * reflection.c: some locking fixes.
5970
5971 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5972
5973         * metadata.c: added missing break in case statement.
5974
5975 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
5976
5977         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
5978         typedbyref return values. Fixes #73941.
5979
5980 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5981
5982         * security-manager.c|h: Added demandunmanaged method and 
5983         suppressunmanagedcodesecurity class to MonoSecurityManager.
5984         Renamed aptc class to allowpartiallytrustedcallers.
5985
5986 2005-03-17  Martin Baulig  <martin@ximian.com>
5987
5988         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
5989
5990 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5991
5992         * file-io.c: disabled file async. IO using aio_*. It uses the
5993         threadpool now. Workaround for bug #73718.
5994
5995 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5996
5997         * assembly.h, mono-config.c: added code to deal with bundled configs
5998         for bundled assemblies.
5999
6000 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6001
6002         * *.c, private.h: cleanup, removing old private.h header file.
6003
6004 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6005
6006         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6007         and throw_on_unmappable_char attributes.
6008
6009 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6010
6011         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6012         _ProcessName_internal.
6013
6014 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6015
6016         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6017         #73631.
6018
6019         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6020         are no longer used.
6021
6022 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6023
6024         * object.c (compute_class_bitmap): Add support for generics. Fixes
6025         #73527.
6026
6027 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6028
6029         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6030
6031 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6032
6033         * filewatcher.c: commented out the code for windows watcher, as we don't
6034         use it (we use the managed implementation instead).
6035
6036 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6037
6038         * object-internals.h (MonoThread): Remove 'unused1' field.
6039
6040         * appdomain.c: Bump corlib version.
6041
6042         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6043
6044         * reflection.c (mono_reflection_create_runtime_class): Remove the
6045         AssemblyBuilder.Save optimization since it causes too many problems.
6046
6047 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6048
6049         * exception.c|h: Added mono_get_exception_reflection_type_load to
6050         create a ReflectionTypeLoadException object.
6051         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6052         to return NULL is a InheritanceDemand fails during reflection. Updated
6053         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6054         ReflectionTypeLoadException if an InheritanceDemand fails during 
6055         reflection. Added icall mapping for GetLinkDemandSecurity.
6056         * security-manager.c|h: Added ves_icall_System_Security_
6057         SecurityManager_GetLinkDemandSecurity internal call to return the
6058         class and methods permissions set for a LinkDemand. Removed unused
6059         fields in MonoSecurityManager.
6060
6061 2005-03-10  Martin Baulig  <martin@ximian.com>
6062
6063         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6064         it's a generic instance.
6065
6066 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6067
6068         * reflection.c (mono_get_object_from_blob): Applied patch from
6069         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6070
6071         * class.c (mono_class_is_assignable_from): Another try at fixing 
6072         #73469 without breaking anything.
6073
6074 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6075
6076         * class.c: (mono_class_is_assignable_from): Revert the last changes
6077         since they don't work with generics.
6078         
6079         * class.c (mono_class_is_assignable_from): Fix build bustage.
6080
6081         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6082         the managed IsAssignableFrom method. Fixes #73469.
6083
6084         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6085         function.
6086
6087 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6088
6089         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6090         memory when the remoting callback does not sets the out arguments.
6091         Fixes #73007.
6092
6093         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6094         by mistake.
6095
6096         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6097
6098         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6099
6100         * appdomain.c: Bump corlib version.
6101
6102 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6103
6104         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6105         function.
6106
6107         * threads.c (mono_thread_attach): Detect threads which are not started
6108         by the GC pthread wrappers.
6109
6110 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6111
6112         * icall.c: Added new icall for RNG.
6113         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6114         single handle on Linux to access /dev/urandom and fix #73183.
6115
6116 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6117
6118         * object.c: setting the new vtable in a transparent proxy object must
6119         not change the GC descriptor.
6120
6121 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6122
6123         * object.c: fixed compilation without GCJ support.
6124         * reflection.c: for runtime-created types ensure klass->has_references
6125         is correct (bug #73215).
6126
6127 2005-03-02  Martin Baulig  <martin@ximian.com>
6128
6129         * class.c (mono_class_is_assignable_from): Make this work if
6130         `oklass' is a generic instance; fixes #72831.
6131
6132 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6133
6134         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6135         with hasthis set.
6136         
6137         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6138
6139         * marshal.c: Reorganize native->managed marshalling code to also use
6140         the emit_marshal_... functions.
6141
6142 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6143
6144         * object.c: typed allocs have issues with bitmap sizes > 30,
6145         so check for max_set >= 30.
6146
6147 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6148
6149         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6150         managed code. Fixes #73012.
6151
6152         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6153
6154         * metadata.c reflection.c: Load/Emit elem_mult as well.
6155         
6156         * metadata.h (MonoMarshalSpec): Add comment.
6157
6158         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6159
6160         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6161         num_elem to -1 if not given.
6162
6163         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6164
6165         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6166         given values.
6167
6168 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6169
6170         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6171
6172 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6173
6174         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6175
6176         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6177
6178 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6179
6180         * object.c: generalized the reference bitmap creation
6181         and added hooks for the new GC.
6182         * class-internals.c: removed the gc_bitmap field from MonoClass.
6183
6184 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6185
6186         * domain.c: help the compiler to produce better code
6187         in mono_jit_info_table_find ().
6188
6189 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6190
6191         * object.c: make all allocations look typed.
6192
6193 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6194
6195         * socket-io.c: load Mono.Posix if it's not loaded already
6196         (fixes bug#73033).
6197
6198 2005-02-24  Martin Baulig  <martin@ximian.com>
6199
6200         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6201         * reflection.c (dup_type): Likewise.
6202
6203 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6204
6205         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6206         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6207
6208 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6209
6210         * domain.c, threads.c, object-internals.h: make the critical thread
6211         local vars use the fast access mode (even when we're compiled in
6212         a lib). Provide accessors to be used by the jit during codegen.
6213
6214 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6215
6216         * appdomain.c: Changed hook functios behavior to include
6217         support for the reflection only assemblies. Some icalls were changed
6218         to support the mentioned assemblies too. Signatures of static methods
6219         try_assembly_resolve and real_load now have an additional parameter:
6220         refonly.
6221
6222         * assembly.c: General changes to mono_assembly_ methods to support
6223         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6224         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6225         suffix, to support an additional gbool parameter to specify whether
6226         the assembli is reflection only or not. Created some new hook functions 
6227         to add support for reflection only assemblies. Signatures of static 
6228         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6229         have now an additional parameter: refonly.
6230
6231         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6232         indicating whether the assembly is reflection only or not.
6233
6234         * exception.c: Add mono_get_exception_invalid_operation.
6235
6236         * icall.c: Throw an InvalidOperationException when trying to invoke
6237         a property/method/event, or trying to set/get the value of a field.
6238         Also add an icall to retrieve the ref_only flag to the
6239         MonoReflectionAssembly.
6240
6241 2005-02-23  Chris Toshok  <toshok@ximian.com>
6242
6243         Part of fix for #72827.
6244         * mono-debug.c (mono_debug_add_method): add lexical block data to
6245         the info we write.  Kind of a hack at the moment - we copy the
6246         lexical block info from the MonoDebugMethodInfo to the
6247         MonoDebugMethodJitInfo here, before writing it.
6248         (mono_debug_read_method): read the lexical block info.
6249
6250         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6251
6252         * debug-mono-symfile.h: add lexical block support.
6253
6254         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6255         support.
6256
6257 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6258
6259         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6260
6261         * object.c (mono_runtime_free_method): Call mono_free_method () and
6262         put the TODOs there.
6263
6264         * loader.c (mono_free_method): Free up most memory allocated for 
6265         dynamic methods.
6266
6267 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6268
6269         * reflection.c: properly flag a Type argument to a
6270         named custom attr value (bug #72248).
6271
6272 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6273
6274         * reflection.c: reduce code duplication in named custom
6275         attribute encoding.
6276
6277 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6278
6279         * reflection.c: properly encode custom attrs of type object
6280         (bug #72649).
6281
6282 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6283
6284         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6285
6286 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6287
6288         * socket-io.c: load System.dll if it's not loaded already
6289         (bug #72850 and #70477).
6290
6291 2005-02-21  Martin Baulig  <martin@ximian.com>
6292
6293         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6294         generic instances.
6295
6296 2005-02-21  Martin Baulig  <martin@ximian.com>
6297
6298         * reflection.c (mono_image_build_metadata): We also need to
6299         "fixup" the MethodImpl table after we computed the final method
6300         indices.  Call fixup_methodimpl() to do that.
6301         (fixup_methodimpl): New private method.
6302
6303 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6304
6305         * assembly.c: special case mscorlib.dll (bug#72536),
6306         patch from Carlos Alberto Cortez.
6307
6308 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6309
6310         * threads-types.h threads.c: Fix build bustage.
6311
6312         * threads.c: Use a union for long<->double conversions.
6313
6314         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6315         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6316
6317         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6318         containing the checkpoint call with NOT_TAKEN.
6319         
6320         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6321         checkpoint before pushing the arguments, so they won't have to be
6322         spilled to stack.
6323
6324 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6325
6326         * domain.c, assembly.c, domain-internals.h: make some data
6327         const and relocation-free.
6328
6329 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6330
6331         * object.c, appdomain.c, class-internals.h: introduce the
6332         MonoClassRuntimeInfo structure to hold the info needed to
6333         use a class at runtime. Made mono_class_vtable() lock-free
6334         for all the appdomains.
6335
6336 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6337
6338         * metadata-internals.h, image.c: introduce a per-image mempool to
6339         be used for memory that has the same lifetime as the image.
6340
6341 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6342
6343         * domain.c: In mono_init_internal(), instead of selecting the first
6344         runtime version supported by an executable, get a list of all
6345         supported versions and select the one for which an mscorlib exists
6346         (since even if the runtime supports a given version, it doesn't mean
6347         that the framework for that version is installed).
6348         Modified get_runtimes_from_exe to support this behavior.
6349         In supported_runtimes, added information about additional system
6350         assembly versions.
6351         
6352         * assembly.c: Added support for more than one system assembly version
6353         per runtime version. Updated the assembly list.
6354         In mono_assembly_remap_version, removed the initial version check,
6355         since we don't know to which version we need to compare until we
6356         get the version set on which the assembly is based.
6357         Moved the code for loading corlib into the new method
6358         mono_assembly_load_corlib(), so it can be used by the initialization
6359         code.
6360         
6361         * domain-internals.h: Updated data structures and added declaration
6362         for mono_assembly_load_corlib.
6363
6364 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6365
6366         * reflection.c (resolve_object): Fix the creation of the signature in 
6367         the SignatureHelper case.
6368
6369         * assembly.c (mono_assembly_remap_version): Fix binary search.
6370         
6371 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6372  
6373         * class.c: Added inheritance check when a method is overloaded (from a
6374         virtual method or when implementing an interface) and when a class is
6375         inherited. Added functions to set a failure for a class and to 
6376         retreive the exception from a failure.
6377         * class-internals.h: Added fields to MonoClass to keep the exception
6378         information status for inheritance (or other exceptions) to be thrown
6379         later (i.e. not at load time).
6380         * object.c: Throw the inheritance SecurityException when a type is to 
6381         be created with either class or method inheritance violations.
6382         * reflection.c|h: Fix when getting declsec from a class. Removed 
6383         unrequired code for class. Improved sanity in parameter naming.
6384         * security-manager.c|h: Added functions to check for class and method
6385         inheritance.
6386
6387 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6388
6389         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6390         and has_finalize in dynamic types as well.
6391
6392 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6393
6394         * culture-info-table.h : fixed currency format for en-GB (and so on).
6395
6396 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6397
6398         * gc.c: ensure the GC handles never have 0 as a value.
6399
6400 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6401
6402         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6403         a pointer to a struct to unmanaged code. Fixes #72625.
6404
6405 2005-02-16  Martin Baulig  <martin@ximian.com>
6406
6407         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6408
6409 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6410
6411         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6412
6413 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6414
6415         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6416
6417         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6418         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6419         etc. Fixes #71471.
6420
6421         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6422
6423         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6424
6425 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6426
6427         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6428         changes to make the current context a field in MonoThread.
6429
6430 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6431
6432         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6433         the last change.
6434         
6435         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6436         extracted from mono_marshal_get_native_wrapper.
6437
6438         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6439         to create wrappers around native functions.
6440
6441         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6442         delegates for arbitrary function pointers. Fixes #71472.
6443
6444 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6445
6446         * threads.c: cleaned up the code a little.
6447
6448 2005-02-15  Martin Baulig  <martin@ximian.com>
6449
6450         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6451         the data table.
6452
6453         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6454         allocate larger chunks if needed.
6455
6456 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6457
6458         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6459         in by mistake.
6460
6461 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6462
6463         * domain.c: keep the domains in an array and ensure the domain ids
6464         are kept small, so they can be used as indexes to domain-specific data
6465         with a small memory overhead.
6466
6467 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6468
6469         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6470
6471 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6472
6473         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6474
6475 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6476
6477         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6478
6479         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6480         values.
6481
6482         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6483         
6484 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6485
6486         * domain-internals.h: add the hashtable here.
6487
6488         * class-internals.h: Remove `info' from MonoMethod
6489
6490         * domain.c: Add a new hashtable, jit_trampoline_hash
6491
6492 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6493
6494         * object.c: don't set the value of static fields
6495         (fixes bug#72494).
6496
6497 2005-02-11  Martin Baulig  <martin@ximian.com>
6498
6499         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6500         (mono_debug_add_method): Silently ignore the method if it's too big.
6501         (mono_debug_add_type): Likewise.
6502
6503 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6504
6505         * threads.c, appdomain.c: remove #ifdefs from the code.
6506
6507 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6508
6509         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6510         common security informations. This allows us to stay in unmanaged code
6511         when doing LinkDemand and it's special cases (except for the first 
6512         time for initialization). The flags a very much used with --security.
6513         * reflection.c|h: Added code to get declarative security attributes 
6514         for LinkDemand and InheritanceDemand. This required to refactor the
6515         existing code for Demand.
6516         * security-manager.c|h: Added new method fields for the special cases
6517         of LinkDemand.
6518
6519 2005-02-10  Martin Baulig  <martin@ximian.com>
6520
6521         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6522         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6523
6524 2005-02-10  Martin Baulig  <martin@ximian.com>
6525
6526         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6527         debugging code; this is almost a complete rewrite.
6528
6529         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6530
6531 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6532
6533         * domain.c, object.h: expose mono_string_equal () and 
6534         mono_string_hash ().
6535         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6536         it's implemented in managed code.
6537
6538 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6539
6540         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6541         lo leak objects between appdomains.
6542
6543 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6544
6545         * assembly.c: old compilers compilation fix from 
6546         robertj@gmx.net (Robert Jordan).
6547
6548 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6549
6550         * class-internals.h: Little reminder for the future.
6551
6552         * debug-helpers.c: Fix up wrapper_type_names
6553
6554 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6555
6556         * image.c, metadata-internals.h: when loading an image from a file,
6557         mmap all of it and use the same codepaths as when using a
6558         in-memory image: the code is simpler and we use less memory
6559         (both writable and readonly).
6560
6561 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6562
6563         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6564         API to alloc runtime data structures that need to be tracked by the
6565         GC and contain pointers.
6566         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6567         make the code more readable and eventually use a different GC.
6568
6569 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6570
6571         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6572         for out arguments.
6573         
6574 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6575
6576         * object.c: In release_type_locks(), don't release the cctor lock
6577         if it has already been released. This fixes a crash in the
6578         thread5 test.
6579
6580 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6581
6582         * gc.c, marshal.c, icall.c: register a delegate for finalization
6583         only when the native function pointer has been allocated for it.
6584
6585 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6586
6587         * object.c: cleaned up some code, allocate objects that are
6588         pointer free with the atomic malloc variant. Allocate memory
6589         for static data from the mempool if it's pointer-free.
6590         Allocate the bounds array at the end of the array data, when needed.
6591         * object-internals.h, object.h: move a private function in a private
6592         header.
6593         * class.c: handle missing case in tracking references in fields.
6594
6595 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6596
6597         * class.c, class-internals.h: keep track if a type has
6598         reference fields in either the instance or static fields.
6599
6600 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6601
6602         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6603         and renamed to MonoRuntimeInfo. Added fields to store the expected
6604         framework assembly version. Changed mono_get_framework_version and
6605         mono_get_runtime_version for a single mono_get_runtime_info method.
6606         
6607         * assembly.c: Added method to remap system assembly versions to the
6608         current executing runtime version. Removed old mapping code.
6609         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6610         
6611         * icall.c, reflection.c: Track api changes.
6612
6613 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6614
6615         * loader.c (method_from_memberref): Improve error reporting,
6616         produce the class name instead of the typeref/typedef index. 
6617
6618 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6619
6620         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6621
6622 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6623
6624         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6625         stdcall and charset name mangling.  Reorganize the code and add
6626         some tracing stuff.
6627
6628 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6629
6630         * monodiet.c: More iters!
6631
6632         * marshal.c: Iter usage.
6633
6634         * icall.c: Iter usage.
6635
6636         * object.c: Use iters.
6637
6638         * debug-helpers.c: More iters
6639
6640 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6641
6642         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6643         under win32.
6644
6645 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6646
6647         * mono-debug-debugger.c: use iters
6648
6649         * class.c, class-internals.h: mono_class_setup_events is static
6650         now
6651
6652         * All callers: use iters
6653
6654 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6655
6656         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6657         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6658
6659 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6660
6661         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6662
6663         * marshal.h: Add prototypes for ldfld/stfld_remote.
6664
6665         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6666         this is called during startup.
6667         
6668 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6669
6670         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6671         MonoThreadsSync struct private in monitor.c. Changed the way
6672         MonoThreadsSync is allocated so it's faster and there is no
6673         need to keep track of it with a finalizer and it uses less memory.
6674         This also finally allows us to allocate mono objects as ptrfree when
6675         there are no reference fields.
6676
6677 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6678
6679         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6680         disappearing link to the GC interface and use them to simplify
6681         the gchandles code.
6682
6683 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6684
6685         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6686         stfld_remote which call mono_load/store_field_new. This allows methods
6687         calling ldfld/stfld wrappers to be AOTed.
6688
6689         * console-io.c: Include sys/filio.h under solaris.
6690         
6691         * console-io.c: Include curses.h if needed correctly.
6692
6693 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6694         
6695         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6696         method->klass as well.
6697
6698         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6699
6700         * class.c (mono_class_init): Switch on lazy initialization of 
6701         methods.
6702
6703         * class.c (mono_class_get_finalizer): Handle the case when the 
6704         finalizer is inherited.
6705
6706 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6707
6708         * console-io.c: <curses.h> is needed by term.h on solaris.
6709
6710 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
6711
6712         * icall.c, class-internals.h, monodiet.c, class.c: Remove
6713         mono_class_setup_properties where possible. Remove this ftn from
6714         the header file, and make it static.
6715
6716 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6717
6718         * loader.c: Add missing setup_... call.
6719
6720         * class.c: Add missing setup_... calls.
6721
6722         * class.c (mono_class_init): Switch on lazy initialization of 
6723         the generic vtable.
6724         
6725         * class.c (mono_class_init): Fix generics broken by the recent changes.
6726
6727         * monodiet.c (handle_type): Add missing setup_... calls.
6728
6729         * class.c: Back out garbage in previous patch.
6730         
6731         * class.c: Add missing setup_... calls.
6732
6733         * class.c (mono_class_get_method_from_name_flags): Avoid calling
6734         mono_class_setup_methods () if possible.
6735
6736         * class-internals.h (MonoClass): Add 'has_cctor' flag.
6737
6738         * class-internals.h (MonoCachedClassInfo): New structure.
6739
6740         * class.c: Initialize properties and events fields of MonoClass lazily.
6741
6742         * class.c: Add infrastructure for lazily initializing the methods and
6743         vtable fields of MonoClass. Not yet used.
6744
6745         * class.c (mono_class_get_finalizer): New helper function.
6746
6747         * class.c: Add infrastructure for loading some class related data from
6748         an AOT file.
6749
6750         * object.c: Add infrastructure for initializing the vtable from data
6751         in the AOT file.
6752
6753         * gc.c (run_finalize): Use mono_class_get_finalizer ().
6754
6755         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6756         appropriate initialization function before accessing parts of the
6757         MonoClass structure.
6758
6759         * marshal.c: Fix warnings.
6760         
6761         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6762
6763         * mono-debug-debugger.c (get_exception_message): Use 
6764         mono_class_get_method_from_name_flags ().
6765
6766 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
6767
6768         * reflection.c, appdomain.c: Replace a few manual searches that
6769         Zoltan missed. (Paolo approved this part of my initial patch).
6770
6771 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6772
6773         * profiler.c: disable recording statistical events at report time.
6774
6775 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6776
6777         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6778         to byteswap arrays of enum values, too (bug #72080).
6779
6780 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6781
6782         * appdomain.c (set_domain_search_path): Allow this to be called if
6783         domain->setup is not yet set.
6784
6785         * loader.c (mono_method_get_index): New helper function.
6786
6787         * loader.c reflection.c: Use mono_method_get_index ().
6788
6789         * class.c (mono_class_get_method_from_name_flags): New helper method.
6790
6791         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6792         this.
6793
6794         * class.c (mono_class_get_cctor): New helper method.
6795
6796         * string-icalls.c object.c class.c marshal.c reflection.c: Use
6797         mono_class_get_method () to look up methods.
6798
6799 2005-02-01  Miguel de Icaza  <miguel@novell.com>
6800
6801         * console-io.c: Fix the build, this should work on Windows.
6802
6803 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
6804
6805         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6806         be set to null to keep things valid
6807
6808 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6809
6810         * icall.c: added Console 2.0 icalls.
6811         * Makefile.am: added console-io.[ch]
6812         * console-io.[ch]: internal calls for Console 2.0 API.
6813
6814 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6815
6816         * class.c: make sure we consider all the interfaces
6817         when calculating max_interface_id (bug found by
6818         Jeroen Frijters running ikvm).
6819
6820 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6821
6822         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6823         valuetype fields to null.
6824
6825         * object.c (set_value): Ditto. Fixes #71669.    
6826
6827 2005-01-31  Martin Baulig  <martin@ximian.com>
6828
6829         * metadata.c (mono_metadata_has_generic_params): New public
6830         function; checks whether something is a generic method.
6831
6832 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6833
6834         * appdomain.c: fix infinite recursion when adding assemblies.
6835
6836 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
6837
6838         * object.c: Fix small typo to return all items for Environment.
6839         GetCommandLineArgs.
6840
6841 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6842
6843         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6844         reflection.c: more domain and assembly-unload related fixes
6845         and memory leaks plugs.
6846
6847 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6848
6849         * 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.
6850
6851 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6852
6853         * loader.c (mono_method_signature): Make this method lazy
6854         (mono_get_method_from_token): Don't computate the signature here.
6855
6856         Doing this saves quite a bit of memory. I got 90 kb on starting up
6857         monodoc. It should also save some disk reads on startup.
6858
6859         * *: MonoMethod->signature might be NULL now. You *MUST* use
6860         mono_method_signature.
6861
6862 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
6863
6864         * object.c (mono_runtime_get_main_args): Return an array from the
6865         current domain here. Fixes #71938.
6866
6867 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6868
6869         * monitor.c: formatting changes to comply with the
6870         mono coding style and remove #ifdefs from the code.
6871
6872 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6873
6874         * metadata.c, private.h: remove some unneeded data
6875         and use a more compact representation for table schemas.
6876
6877 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6878
6879         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
6880         to get a better distribution in hash tables.
6881         * *.c: use mono_aligned_addr_hash() where appropriate.
6882         * assembly.c: make var static.
6883
6884 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6885
6886         * domain-internals.h: Put MonoJitInfo on a diet.
6887
6888         * domain.c: Fix a warning.
6889
6890 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6891
6892         * gc.c: rework the gc handles code to reuse handles
6893         when freed.
6894
6895 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6896
6897         * domain.c: fixed long standing bug in mono_string_equal() which
6898         was brought to light with the ldstr changes.
6899
6900 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6901
6902         * reflection.c: Remove warning by adding missing include for marshal.h
6903
6904 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6905
6906         * domain.c, object.c: change the ldstr_table to hold
6907         MonoString* as keys: makes the runtime isinterned lookup
6908         faster and simplifies memory management.
6909
6910 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
6911  
6912         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
6913         possible to add imperative security checks before calling the icall.
6914         * reflection.c: Return security attributes on the original MonoMethod
6915         (and not the wrapped one). This fix permissions on icalls.
6916
6917 2005-01-25  Dick Porter  <dick@ximian.com>
6918
6919         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
6920         the check for mktime() support actually test the mktime() return
6921         value.  "Fixes" bug 71682, though the output is still different to
6922         MS.
6923
6924 2005-01-25  Martin Baulig  <martin@ximian.com>
6925
6926         * class.c (mono_class_is_assignable_from): Make this work for
6927         generic instances.
6928
6929 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
6930
6931         * marshal.c (mono_string_utf8_to_builder)
6932         (mono_string_builder_to_utf16): We might not have ownership of the
6933         string. In thise case, we need to create a new buffer.
6934
6935         * object-internals.h (mono_stringbuilder_capacity): sb->str might
6936         be null, in which case, use the default capacity.
6937
6938 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6939
6940         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
6941         GC events to the profiler.
6942
6943 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6944
6945         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
6946         if you don't want the GC to run.
6947
6948 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
6949
6950         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
6951         start providing a GC API and keeping different implementations in
6952         their own file.
6953         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
6954
6955 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6956
6957         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
6958         mmap rather than allocating a huge buffer.
6959         (mono_debug_close_mono_symbol_file): Free the buffer allocated
6960         above.
6961
6962 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6963
6964         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
6965         and CheckExecutionRights.
6966         * reflection.c|h: Keep the index of the declarative security to be 
6967         used, instead of the pointer, when AOT compiler is used. Also add 
6968         class initialization when requesting demands.
6969         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
6970         CheckExecutionRights. Both properties are now FALSE by default, and
6971         unmodifiable, unless the --security option is used.
6972
6973 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6974
6975         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
6976         reflection.c: properly refcount images and assemblies, many leaks fixed.
6977
6978 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6979
6980         * threadpool.c: increase the timeout for threads in the thread pool to
6981         10s.  Fixes bug #67159.
6982
6983 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
6984
6985         * class-internals.h: Sun's compiler insists on explicit
6986         signed on bit fields to handle then correctly.
6987
6988 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
6989
6990         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
6991         Make the size of the array fit only the number of invalid path
6992         chars that we have.
6993
6994         * class.c (_mono_class_get): Improve the error reporting when a
6995         class referenced is not found, to assist debugging. 
6996
6997 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
6998
6999         * threads.c: fix off-by-one error.
7000         * domain.c: free data allocated in the domain.
7001
7002 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7003
7004         * reflection.c (mono_method_body_get_object): Fill out exception info
7005         as well.
7006
7007         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7008         structure.
7009         
7010 2005-01-19  Martin Baulig  <martin@ximian.com>
7011
7012         * loader.c (mono_get_method_constrained): Make this work again.
7013
7014 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7015
7016         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7017         guint16 to match the managed side.
7018
7019         * reflection.c (mono_reflection_body_get_object): Fill out local
7020         variables array.
7021
7022         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7023         as well.
7024
7025         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7026         'local_var_sig_token'.
7027
7028 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7029
7030         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7031         System.Drawing.
7032
7033         * reflection.c (mono_method_body_get_object): Handle abstract and
7034         runtime methods.
7035
7036 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7037
7038         * marshal.c, loader.c, class-internals.h, reflection.c:
7039         store the emthod data for a wrapper in an array instead of a list.
7040
7041 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7042
7043         * marshal.c: change the code to allocate memory more
7044         conservatively for method wrappers.
7045
7046 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7047
7048         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7049         fields from MonoClass to the marshal info structure where they belong.
7050
7051 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7052
7053         * class.c, object.c, class-internals.h, marshal.c: rearrange
7054         some fields and tweak some types to lower memory usage.
7055
7056 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7057
7058         * threads.c (signal_thread_state_change): Handle the case when the
7059         target thread is the current thread.
7060
7061         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7062
7063         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7064         emit_ptr_to_object_conv. 
7065
7066         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7067         marshalling. Fixes #71352.
7068
7069 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7070
7071         * metadata.h, blob.h: move table enum to blob.h so it can be included
7072         in any header.
7073         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7074         cut the size of MonoImage/MonoDynamicImage.
7075
7076 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7077
7078         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7079
7080 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7081
7082         * reflection.c, reflection.h, icall.c: add a function to check
7083         if an attribute type is defined for a metadata object.
7084
7085 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7086
7087         * object-internals.h: Added some needed fields from StringBuilder class.
7088         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7089
7090 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7091
7092         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7093         threads before shutting down the runtime.
7094
7095         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7096
7097 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7098
7099         * object-internal.h, threads.c: implement stacksize and 
7100         parameterized thread start functionality (requires
7101         matching corlib). Marked broken code for later removal.
7102
7103 2005-01-12  Martin Baulig  <martin@ximian.com>
7104
7105         * class-internals.h (MonoGenericClass): Moved the `initialized'
7106         flag to MonoDynamicGenericClass, removed `init_pending'.
7107         (MonoGenericInst): Added `is_reference' flag.
7108
7109 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7110
7111         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7112         inside the MSDOS header. Fixes #71201.
7113
7114         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7115         gc thread.
7116         (mono_domain_finalize): Ditto.
7117
7118 2005-01-12  Martin Baulig  <martin@ximian.com>
7119
7120         * class.c (mono_get_shared_generic_class): Use the cache for
7121         non-dynamic generic classes.
7122
7123         * class-internals.h (mono_class_create_generic_2): Removed
7124         function prototype, this function is now static inside class.c.
7125
7126         * class.c (mono_class_create_generic_2): Made this static, only
7127         call it from mono_class_init() and mono_class_setup_parent().
7128         (collect_implemented_interfaces_aux): Call mono_class_init() on
7129         the interfaces we collect.
7130         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7131
7132 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7133
7134         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7135         it a real thread handle.
7136
7137         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7138         MonoJitExceptionInfo, since each catch clause needs its own variable.
7139         
7140 2005-01-11  Dick Porter  <dick@ximian.com>
7141
7142         * image.c (mono_pe_file_open): New variant on mono_image_open()
7143         that does not set up the CLI metadata; used for FileVersionInfo so
7144         it can get the data for windows binaries too.
7145         
7146         * process.c (process_read_string_block): Don't read off the end of
7147         the StringTable block.
7148
7149         These both fix bug 70766.
7150
7151 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7152
7153         * gc.c: set some fields to NULL at GC cleanup time.
7154         * threads.c: if we quit the main thread, call exit ().
7155
7156 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7157
7158         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7159
7160 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7161
7162         * threads.h, threads.c, object.c: added accessor and settor for
7163         main_thread. Handle it specially when exiting from it: wait
7164         for other foreground threads to exit.
7165
7166 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7167
7168         * process.c, verify.c: remove some bloat.
7169
7170 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7171
7172         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7173         the calling convention to cdecl under win32.
7174
7175 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7176
7177         * object.c (mono_object_get_size): New function to get the size of
7178         an object instance.
7179
7180         * profiler.c (simple_allocation): Use above.
7181
7182 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7183
7184         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7185         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7186         get an appdomain by it's id and we can't assume the root's id is 0).
7187         * domain-internals.h: Change the function prototype to match.
7188         * icall.c: Change the icall table for AppDomain.
7189
7190 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7191
7192         * locales.c (string_invariant_compare_char): Only compute
7193         GUnicodeTypes in the case where we need them.  Test for ordinality
7194         first and return if so.
7195
7196         From the commit:
7197
7198                 /*
7199                  * FIXME: here we must use the information from c1type and c2type
7200                  * to find out the proper collation, even on the InvariantCulture, the
7201                  * sorting is not done by computing the unicode values, but their
7202                  * actual sort order.
7203                  */
7204
7205 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7206
7207         * loader.c: for P/Invoke methods, allow the "Internal" shared
7208         library name to refer to the calling process symbol namespace.
7209
7210 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7211
7212         * Makefile.am: Add the security manager to the build.
7213         * security-manager.c|h: New. Initialization of the security manager.
7214
7215 2005-01-07  Dick Porter  <dick@ximian.com>
7216
7217         * threads.c: 
7218         * monitor.c: Update thread state during Monitor and WaitHandle
7219         waits.  Fixes bug 71031.
7220
7221 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7222
7223         * reflection.c (property_encode_signature): Correctly handle when the
7224         property has no methods.
7225
7226 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7227
7228         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7229         
7230         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7231         fields from mb, not rmb. Fixes #71017.
7232
7233         * marshal.c (emit_ptr_to_str_conv): Add support for 
7234         ByValTStr -> string conversion. Fixes #71015.
7235
7236         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7237
7238         * mempool.c (mono_mempool_contains_addr): New helper function.
7239
7240 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7241
7242         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7243         HasSematics encoded fields.
7244         
7245         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7246         invalid string marshalling.
7247
7248         * metadata.c: Fix warnings.
7249         
7250 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7251
7252         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7253         profiler support.
7254
7255 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7256
7257         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7258         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7259         tests.
7260
7261 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7262
7263         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7264         so methods containing these can be AOTed.
7265
7266 2005-01-03  Martin Baulig  <martin@ximian.com>
7267
7268         * loader.c (find_method): Removed the hack for generic instances.
7269         (method_from_memberref): If our parent is a generic instance, pass
7270         its generic type definition to find_method() and then inflate the
7271         method.
7272         (mono_get_method_constrained): Pass the generic type definition to
7273         find_method() and inflate the method later.
7274
7275         * class-internals.h (MonoStats): Added `generic_class_count'.
7276
7277         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7278         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7279
7280         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7281         generic type definitions.
7282
7283 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7284
7285         * loader.c icall.c: Fix warnings.
7286
7287 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7288
7289         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7290         blittable types. Fixes #70864.
7291
7292 2004-12-29  Martin Baulig  <martin@ximian.com>
7293
7294         * icall.c
7295         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7296
7297         * reflection.c (mono_method_get_object): Create a
7298         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7299         call mono_get_inflated_method().
7300
7301         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7302
7303 2004-12-27  Martin Baulig  <martin@ximian.com>
7304
7305         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7306         (MonoMethodInflated): Added `inflated' field.
7307
7308         * class.c (mono_class_inflate_generic_method): Don't really
7309         inflate the method here; just set the `is_inflated' flag in the
7310         MonoMethod.
7311         (mono_class_get_inflated_method): Actually inflate the method here
7312         if it's not already inflated; we use the MonoMethodInflated's new
7313         `inflated' field as a cache.
7314
7315 2004-12-26  Martin Baulig  <martin@ximian.com>
7316
7317         * class.c
7318         (inflate_generic_class): Moved some code out of inflate_generic_type().
7319         (mono_class_inflate_generic_method): If we're already inflated,
7320         inflate the context and use the declaring method; ie. make sure
7321         the declaring method of an inflated method is always the generic
7322         method definition.
7323         (mono_class_create_from_typedef): Create
7324         `class->generic_container->context->gclass'.
7325
7326 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7327
7328         * metadata-internals.h, marshal.c, reflection.c: More
7329         MonoGHashTable->GHashTable.
7330
7331         * domain-internals.h, class.c: Change MonoGHashTable's into
7332         GHashTables for some cases where no gc stuff is used
7333
7334         All users: update apis
7335
7336 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7337
7338         * metadata.c (builtin_types): Make this `const'. Makes this get
7339         put into the shareable section.
7340         (mono_metadata_init): Casts to make gcc happy.
7341
7342 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7343
7344         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7345
7346 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7347
7348         * icall.c: Added an internal call to retrieve the position and length
7349         of assembly-level declarative security attributes (RequestMinimum, 
7350         RequestOptional and RequestRefuse). This is used by the Assembly class
7351         to re-create the corresponding permission sets.
7352
7353 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7354
7355         * marshal.c: fix the stelemref wrapper to be type correct
7356         (and faster).
7357
7358 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7359
7360         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7361         to do key & 0x7fffffff. Hashtable already does this. It just
7362         results in longer code.
7363
7364 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7365
7366         * appdomain.c: Bump corlib version.
7367         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7368         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7369         * reflection.c|h: Add functions to get declarative security infos
7370         (blob position and length) for assemblies, classes and methods.
7371
7372 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7373
7374         * reflection.c: sort the constant table (bug #70693).
7375
7376 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7377
7378         * object-internals.h, threads.c, domain.c: add accessors for
7379         the MonoThread and MonoDomain tls keys.
7380
7381 2004-12-18  Martin Baulig  <martin@ximian.com>
7382
7383         * class.c (inflate_generic_type): If we're inflating a generic
7384         instance, set `ngclass->context->container = context->container';
7385         ie. the container we inflated into.
7386
7387         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7388         inflate_generic_type() changes.
7389
7390 2004-12-17  Martin Baulig  <martin@ximian.com>
7391
7392         * class-internals.h
7393         (MonoGenericClass): Replaced `MonoType *generic_type' with
7394         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7395         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7396         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7397
7398 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7399
7400         * exception.c (mono_exception_from_token): New helper function.
7401
7402 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7403
7404         * assembly.c (mono_assembly_load_with_partial_name): Call 
7405         mono_assembly_loaded before invoking the preload hooks. Fixes
7406         #70564.
7407
7408         * object-internals.h (MonoThread): Change culture_info and 
7409         ui_culture_info into an array.
7410
7411         * threads.c: Cache culture info objects from more than one appdomain.
7412
7413         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7414         current UI culture.
7415
7416 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7417
7418         * threads.h threads.c appdomain.c: Clear the culture_info field of
7419         all threads during unloading if they point to an object in the dying
7420         appdomain.
7421
7422 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7423
7424         * culture-info.h (TextInfoEntry): New struct
7425         * object-internals.h: sync with managed
7426         * locales.c: fill the `text_info_data' field
7427         * culture-info-tables.h: update
7428
7429 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7430
7431         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7432         collector.
7433
7434 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7435
7436         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7437         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7438
7439 2004-12-12  Martin Baulig  <martin@ximian.com>
7440
7441         * mono-debug-debugger.c (write_type): If we're an enum and the
7442         builtin types have already been initialized, call mono_class_init().
7443
7444 2004-12-11  Martin Baulig  <martin@ximian.com>
7445
7446         * metadata.c (mono_metadata_load_generic_params): Added
7447         `MonoGenericContainer *parent_container' argument; automatically
7448         compute `container->is_method'; pass the correct owner to
7449         get_constraints().      
7450
7451         * reflection.c (compare_genericparam): Sort the GenericParam table
7452         according to increasing owners. 
7453
7454 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7455
7456         * profiler.c: allow disabling the default profiler.
7457
7458 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7459
7460         * decimal.c, icall.c: allow disabling System.Decimal support.
7461
7462 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7463
7464         * reflection.c: Add support for null attribute arguments.
7465
7466 2004-12-09  Martin Baulig  <martin@ximian.com>
7467
7468         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7469         names to get rid of compiler warnings.
7470
7471 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7472
7473         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7474         mono_marshal_load_type_info (). Fixes #69625.
7475         (mono_marshal_get_ptr_to_struct): Likewise.
7476
7477 2004-12-08  Martin Baulig  <martin@ximian.com>
7478
7479         * mono-debug.h: Bumped version number to 47.
7480
7481         * mono-debug-debugger.c
7482         (mono_debugger_event_handler, mono_debugger_event): Take two
7483         guint64 arguments insteed of a gpointer and a guint32.  
7484
7485 2004-12-08  Martin Baulig  <martin@ximian.com>
7486
7487         * debug-mono-symfile.h
7488         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7489         `address' to `native_offset'.
7490
7491 2004-12-08  Martin Baulig  <martin@ximian.com>
7492
7493         * class.c (mono_class_create_from_typespec): Only inflate if we
7494         either have `context->gclass' or `context->gmethod'.
7495
7496 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7497
7498         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7499
7500         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7501
7502         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7503
7504         * reflection.c (mono_assembly_get_object): Remove the workaround put
7505         in for the release.
7506         
7507         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7508
7509         * appdomain.c: Bump corlib version.
7510
7511         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7512         be visible in other appdomains.
7513
7514 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7515
7516         * threads.c: Interlocked inc and dec for longs were messed up,
7517         use a KISS based impl for this. Fixes 70234
7518
7519 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7520
7521         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7522
7523 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7524
7525         * icall.c: fix to follow policy not to allow struct
7526         arguments in icalls.
7527
7528 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7529
7530         * process.c: make the patch that handles spaces in file paths work
7531         on mono/windows too.
7532
7533 2004-12-06  Martin Baulig  <martin@ximian.com>
7534
7535         * class.c (mono_class_create_generic): Call
7536         mono_class_setup_supertypes() if we're dynamic.
7537         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7538
7539 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7540
7541         * object-internals.h: Add new fields to MonoThread.
7542
7543         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7544
7545         * icall.c threads-types.h threads.c: Add new icalls.
7546
7547         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7548
7549         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7550         managed side.
7551
7552         * appdomain.c: Bump corlib version.
7553
7554         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7555         internal assemblies. Fixes #69181.
7556
7557 2004-12-05  Martin Baulig  <martin@ximian.com>
7558
7559         * class.c (mono_class_inflate_generic_signature): Make this a
7560         no-op if `context' is NULL or we don't have any type parameters;
7561         also copy `sentinelpos'.        
7562
7563 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7564
7565         * image.c: Add unbox_wrapper_cache.
7566
7567         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7568
7569         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7570         function generator.
7571         
7572         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7573         Fixes #70173.
7574
7575         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7576         
7577 2004-12-04  Martin Baulig  <martin@ximian.com>
7578
7579         * loader.c (mono_method_get_signature_full): New public function;
7580         like mono_method_get_signature(), but with an additional
7581         `MonoGenericContext *' argument.
7582
7583         * class.c (mono_class_inflate_generic_signature): Formerly known
7584         as inflate_generic_signature(); make this public.
7585
7586 2004-12-04  Martin Baulig  <martin@ximian.com>
7587
7588         * metadata.c
7589         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7590         instead of a `MonoGenericContainer *'.  
7591         (mono_metadata_parse_array_full): Likewise.
7592         (mono_metadata_parse_signature_full): Likewise.
7593         (mono_metadata_parse_method_signature_full): Likewise.
7594         (mono_metadata_parse_generic_inst): Likewise.
7595         (mono_metadata_parse_generic_param): Likewise.
7596         (mono_metadata_parse_mh_full): Likewise.
7597         (mono_type_create_from_typespec_full): Likewise.
7598
7599 2004-12-03  Martin Baulig  <martin@ximian.com>
7600
7601         * class-internals.h (MonoGenericContainer): Replaced the
7602         `MonoGenericContext * pointer with a `MonoGenericContext'
7603         structure and made it the first element.
7604
7605 2004-12-03  Martin Baulig  <martin@ximian.com>
7606
7607         * class.c
7608         (inflate_generic_type): Set the `context->container' when creating
7609         a new MonoGenericContext.
7610         (mono_class_inflate_generic_method): Likewise.
7611         (mono_class_create_from_typespec): Just use `context->container'
7612         to get the container.
7613
7614         * loader.c (method_from_methodspec): Set `context->parent' from
7615         `context->container' - and if that's a method container, use its
7616         parent.  Also set the `context->container' when creating a new
7617         MonoGenericContext.
7618         (mono_get_method_from_token): Use just `context->container' to get
7619         the container.
7620
7621         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7622         `gclass->context->container'.
7623
7624         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7625         the `context->container' when creating a new MonoGenericContext.
7626
7627 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7628
7629         * reflection.c (compare_genericparam): Sort params with identical
7630         owner by their number. Fixes gen-111 on sparc.
7631
7632 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7633
7634         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7635         around the domain changes.
7636
7637         * appdomain.c (mono_domain_unload): Handle the case when the thread
7638         calling Unload is itself being aborted during unloading. Fixes #70022.
7639
7640         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7641
7642         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7643         checkpoint_func as an icall so it gets a wrapper.
7644         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7645         in the cross-appdomain wrappers too.
7646
7647         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7648
7649         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7650
7651         * reflection.c: Fix some memory leaks.
7652         
7653 2004-12-02  Martin Baulig  <martin@ximian.com>
7654
7655         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7656
7657         * metadata.c (generic_class_cache): New static hashtable.
7658         (mono_metadata_lookup_generic_class): New public method.
7659
7660 2004-12-02  Martin Baulig  <martin@ximian.com>
7661
7662         * class.c (mono_class_create_from_typedef): Call
7663         mono_class_setup_parent() and mono_class_create_mono_type() before
7664         parsing the interfaces.
7665
7666 2004-12-02  Martin Baulig  <martin@ximian.com>
7667
7668         * metadata.c (generic_inst_cache): New static hashtable.
7669         (mono_metadata_lookup_generic_inst): New public function.
7670         (mono_metadata_inflate_generic_inst): New public function.
7671         (mono_metadata_parse_generic_inst): New public function.
7672         (do_mono_metadata_parse_generic_class): Use the new
7673         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7674         since this'll also use the cache.
7675
7676         * reflection.c (mono_reflection_bind_generic_method_parameters):
7677         Use mono_metadata_lookup_generic_inst() to use the new cache.
7678
7679         * class.c (inflate_mono_type): Use
7680         mono_metadata_inflate_generic_inst() to inflate a generic
7681         instance; this'll also use the new cache.
7682
7683         * loader.c (method_from_methodspec): Use
7684         mono_metadata_parse_generic_inst() and
7685         mono_metadata_inflate_generic_inst() rather than parsing it
7686         manually, so we can use the new cache.
7687
7688 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7689
7690         * threads.c (wait_for_tids): Do not incorrectly free threads when 
7691         the wait times out.
7692
7693 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7694
7695         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7696         iter->args based on whether parameters are passed in registers (i.e.
7697         MONO_ARCH_REGPARMS is defined)
7698
7699 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
7700
7701         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7702         the exception message. Fixes #70070.
7703         (method_from_methodspec): Fix warnings.
7704
7705 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7706
7707         * process.c: (complete_path) return the path quoted
7708
7709 2004-12-01  Martin Baulig  <martin@ximian.com>
7710
7711         * class-internals.h (MonoGenericInst): New structure.
7712         (MonoGenericClass): Replaced `type_argc', `type_argv' and
7713         `is_open' with `MonoGenericInst *inst'.
7714         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7715         `is_open' with `MonoGenericInst *inst'.
7716
7717 2004-11-30  Martin Baulig  <martin@ximian.com>
7718
7719         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7720
7721         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7722         to `generic_class_cache'.
7723
7724         * metadata.c
7725         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7726         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7727         (mono_generic_inst_is_valuetype): Renamed to
7728         mono_generic_class_is_valuetype().
7729
7730         * class-internals.h
7731         (MonoGenericInst): Renamed to MonoGenericClass.
7732         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7733         (MonoClass): Renamed `generic_inst' to `generic_class'.
7734         (MonoGenericContext): Renamed `ginst' to `gclass'.
7735
7736         * object-internals.h
7737         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7738
7739         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7740         mono_reflection_generic_class_initialize().
7741
7742         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7743         now known as "System.Reflection.MonoGenericClass".
7744         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7745
7746 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
7747
7748         * class-internals.h: Added a flag field to MonoClass to cache the
7749         declarative security attributes actions associated with the class.
7750         * domain-internals.h: Added booleans to MonoJitInfo to cache the
7751         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7752         applicable to the JITted method.
7753         * reflection.c|h: Added functions to extract (as flags) which security
7754         actions are available (declaratively) for a method, class or assembly.
7755         * metadata.c|h: Added functions to search the declarative security
7756         table in the metadata.
7757         
7758 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
7759
7760         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7761         EXPORTEDTYPES are already in the class name cache, so there is no
7762         need to add extra code here to look at them. Just removes a bit of
7763         cruft.
7764
7765         (ves_icall_System_Environment_get_TickCount): No need for #if
7766         WINDOWS. We already have the code in io-layer.
7767
7768 2004-11-28  Martin Baulig  <martin@ximian.com>
7769
7770         * loader.c
7771         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7772         Fixes gen-112.cs.
7773
7774 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
7775
7776         * assembly.c (do_mono_assembly_open): Instead of having a
7777         conditional WITH_BUNDLE, incorporate support for bundles here, by
7778         having a global `bundles' variable holding a pointer to the actual
7779         bundles. 
7780
7781         (mono_register_bundled_assemblies): New API call used by the
7782         bundle code. 
7783
7784         See mkbundle.1 for details.
7785         
7786 2004-11-27  Martin Baulig  <martin@ximian.com>
7787
7788         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7789         the vtable for generic methods.
7790
7791 2004-11-26  Martin Baulig  <martin@ximian.com>
7792
7793         * metadata.c
7794         (mono_metadata_generic_method_hash): New public function.
7795         (mono_metadata_generic_method_equal): Likewise.
7796
7797         * class-internals.h
7798         (MonoGenericContainer): Added `GHashTable *method_hash'.
7799
7800         * reflection.c (ReflectionMethodBuilder): Added
7801         `MonoGenericContainer *generic_container'.
7802         (reflection_methodbuilder_to_mono_method): Don't create a new
7803         MonoGenericContainer each time we're called.
7804         (mono_reflection_bind_generic_method_parameters): Use
7805         `container->method_hash' to cache the results so we don't create a
7806         different method if we're called several times with the same
7807         arguments.
7808
7809         * loader.c (method_from_methodspec): Use the new
7810         `container->method_hash' here, too.
7811
7812 2004-11-26  Martin Baulig  <martin@ximian.com>
7813
7814         * class.c (inflate_generic_signature): Correctly compute
7815         `res->has_type_parameters'.
7816         (mono_class_vtable): Use the `has_type_parameters' flag to
7817         determine whether we're a generic method.
7818
7819         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7820
7821 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7822
7823         * object.c (mono_runtime_run_main): Fix a small memory leak.
7824
7825 2004-11-25  Martin Baulig  <martin@ximian.com>
7826
7827         * class.c (set_generic_param_owner): Fixed the loop.
7828
7829 2004-11-25  Martin Baulig  <martin@ximian.com>
7830
7831         * object.c (mono_class_vtable): Don't create any JIT wrappers for
7832         generic methods.
7833
7834 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7835
7836         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7837         names. Fixes #69787.
7838
7839 2004-11-24  Martin Baulig  <martin@ximian.com>
7840
7841         * class.c (mono_class_create_generic_2): If we don't have a
7842         `ginst->parent', inflate `gklass->parent' to get our parent.
7843
7844 2004-11-24  Martin Baulig  <martin@ximian.com>
7845
7846         * reflection.c (compare_genericparam): Correctly sort the
7847         GenericParam table; fixes #69779.
7848
7849 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
7850
7851         * reflection.c: When writing a PE file, don't create a huge
7852         buffer in memory. Just write the arrays we have to the file.
7853         This reduces memory usage.
7854
7855         * metadata-internals.h: MonoDynamicStream pefile is no longer used
7856         globally.
7857
7858 2004-11-17  Martin Baulig  <martin@ximian.com>
7859
7860         * class.c (mono_class_init): Don't setup `class->parent' for
7861         dynamic instances; moved this to mono_class_generic_2().
7862         (mono_class_create_generic): Also set `klass->inited' for dynamic
7863         generic instances.
7864         (mono_class_create_generic_2): Don't do anything for dynamic
7865         generic instances.  Set `klass->parent' here and also call
7866         mono_class_setup_parent() here. 
7867
7868         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7869         `MonoType *parent' argument; set `ginst->parent' before calling
7870         mono_class_create_generic_2(), so we set the correct parent.
7871
7872 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7873
7874         * reflection.c: allow getting attributes from ModuleBuilder
7875         (used by ikvm).
7876
7877 2004-11-17  Martin Baulig  <martin@ximian.com>
7878
7879         * class.c (mono_class_create_from_typedef): If a type parameter is
7880         inherited from an outer class, set its owner to that class.
7881
7882 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
7883
7884         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
7885           for (int*) written size. This fixes bug #69592.
7886
7887 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7888
7889         * icall.c: Added IsAuthenticodePresnet internal call.
7890         * image.c|h: New function that check a MonoImage for an Authenticode
7891         signature in the certificate PE data directory.
7892         * security.c|h: New internal call to ask the runtime if an 
7893         Authenticode signature seems referenced in the PE header.
7894
7895 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
7896
7897         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
7898
7899         * reflection.c (mono_image_create_pefile): Free the assembly streams
7900         after writing out the assembly file.
7901
7902         * object.c (mono_runtime_run_main): Fix small memory leak.
7903
7904         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
7905         property access modifiers. Fixes #69389.
7906
7907 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7908
7909         * domain.c, object.c, object-internals.h, domain-internals.h,
7910         object.h, marshal.c: keep dynamic code info per domain.
7911
7912 2004-11-15  Martin Baulig  <martin@ximian.com>
7913
7914         * class.c (mono_type_get_name_recurse): Put type arguments in
7915         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
7916         see bug #68387.
7917
7918 2004-11-15  Martin Baulig  <martin@ximian.com>
7919
7920         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
7921         (mono_class_setup_vtable): When computing `the_cname' for a
7922         generic instance, don't include the namespace since we'd otherwise
7923         add it twice.
7924
7925 2004-11-15  Martin Baulig  <martin@ximian.com>
7926
7927         * class.c (mono_class_create_generic): Changed return type to void.
7928         (mono_class_create_generic_2): New public function; setup
7929         `class->method', `class->field' and `class->interfaces' here
7930         instead of in mono_class_init().
7931
7932         * class.h (mono_class_create_generic): Moved to class-internals.h.
7933
7934 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
7935
7936         * reflection.c (mono_image_create_pefile): take a file HANDLE.
7937         rather than writing to memory, write to this file. Right now,
7938         we are just writting into a buffer, and copying that. However
7939         we can avoid the buffer later.
7940
7941         (mono_dynamic_stream_reset): new function
7942
7943         * icall.c, object-internals.h: update for the above.
7944
7945 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
7946
7947         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
7948         have been using gc'd memory. First it is slower, unlikely
7949         the comment in the source code said, secondly, it increases
7950         our footprint to do it in the gc.
7951
7952         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
7953         the method so that it does not have to copy to managed code.
7954
7955 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7956
7957         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
7958
7959 2004-11-12  Martin Baulig  <martin@localhost>
7960
7961         * reflection.c (mono_image_create_token): Allow generic method
7962         definitions here, since they may appear in an `.override'; see
7963         gen-98/gen-99 for an example.
7964
7965 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
7966
7967         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
7968         #69365.
7969
7970         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
7971         descriptive.
7972
7973 2004-11-11  Martin Baulig  <martin@ximian.com>
7974
7975         * class.c (mono_class_setup_vtable): In an explicit interface
7976         implementation, the method name now includes the arity.
7977
7978 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
7979
7980         * object.c (mono_array_full_copy): Fix warning.
7981
7982 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
7983
7984         * appdomain.c: Removed look_for_method_by_name(). Use the new method
7985         mono_class_get_method_from_name() instead.
7986         
7987         * class-internals.h: Added two new types of wrappers. 
7988         Added MonoRemotingTarget enum. Added new trampoline function type, which
7989         takes an additional MonoRemotingTarget value as parameter, so it is
7990         possible to request a trampoline for a specific target.
7991         
7992         * class.c: Added new mono_class_get_method_from_name() method.
7993         
7994         * class.h: In MonoRemoteClass, we can have now to vtables, one for
7995         general remoting sinks and one specific for cross domain calls.
7996         
7997         * debug-helpers.c: Added new wrapper names.
7998         
7999         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8000         of a remote class.
8001         
8002         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8003         
8004         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8005         with several other methods (mono_marshal_get_xappdomain_dispatch,
8006         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8007         and others) can generate a fast remoting wrapper for cross domain calls.
8008         More information can be found in docs/remoting.
8009         Other changes: Removed mono_find_method_by_name, and used
8010         mono_class_get_method_from_name instead.
8011         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8012         is stored in the remoting invoke hashtable.
8013         
8014         * marshal.h: published the new method for getting the xdomain wrapper,
8015         and also added a method for getting the adequate wrapper for a given
8016         method and target.
8017         
8018         * object-internals.h, object.c: Added a couple of methods for capying and
8019         cloning arrays.
8020         Modified mono_install_remoting_trampoline, which takes the new remoting
8021         trampoline that has a remoting target as parameter.
8022         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8023         will return the most suitable vtable for the target.
8024         Added mono_remote_class_vtable, which returns the vtable of a remote class
8025         (which can be the normal remoting vtable or the xdomain vtable).
8026         
8027         * threads.c: the xdomain invoke and dispatch wrappers must also be
8028         protected against interruptions.
8029
8030 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8031
8032         * icall.c: use memmove in BlockCopyInternal when the source and
8033         destination arrays are the same.
8034
8035 2004-11-09  Martin Baulig  <martin@ximian.com>
8036
8037         * class-internals.h (MonoGenericContainer): Removed `method' and
8038         `signature', replaced them with `is_method' and `is_signature'
8039         flags.  Added `context'.
8040
8041         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8042         instead of a `MonoGenericContainer *'.
8043
8044         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8045         for dynamic type parameters.
8046         (mono_metadata_load_generic_params): Setup `container->context'.
8047
8048         * reflection.c (mono_reflection_setup_generic_class): Setup
8049         `tb->generic_container->context'.
8050         (do_mono_reflection_bind_generic_parameters): Use
8051         mono_class_inflate_generic_type() to correctly inflate types,
8052         rather than using our own hack just for MONO_TYPE_VAR.
8053
8054 2004-11-09  Martin Baulig  <martin@ximian.com>
8055
8056         * class.c (mono_class_inflate_generic_method): Small fix; don't
8057         crash here.
8058
8059         * icall.c
8060         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8061         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8062         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8063         (ves_icall_Type_BindGenericParameters): Likewise.
8064         (ves_icall_Type_get_IsGenericInstance): Likewise.
8065         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8066         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8067         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8068         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8069
8070 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8071
8072         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8073         assembly versions and public key tokens. Fixes #69113.
8074
8075 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8076
8077         * metadata.c: fix bug introduced with the type cache changes
8078         on 2004-11-06.
8079
8080 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8081
8082         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8083         the MonoClass pointer instead of the token in exception clauses.
8084         * reflection.c: updates for the above and make the code not depend
8085         on the structure of MonoExceptionClause.
8086
8087 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8088
8089         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8090         Add support for dynamic assemblies. Fixes #69114.
8091
8092         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8093
8094 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8095
8096         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8097         since most only those methods use it. the code member of
8098         MonoMethodPInvoke was dead, so that can be removed too. Also,
8099         remove inline_count (again, not used), and move slot so that it
8100         can share bits with some other flags. This saves 8 bytes in the
8101         structure and gives us about 50 kb back for mcs helloworld.cs
8102
8103         * *.[ch]: Do naming changes for the above.
8104
8105         * loader.c (mono_method_get_header): Lazily init the header
8106         on first access.
8107         (mono_get_method_from_token): don't init the header here
8108         (mono_free_method): the header may never be allocated
8109
8110         Overall, this saves 150 kb of unmanaged allocations
8111         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8112         memory at runtime.
8113         
8114         * loader.c, loader.h (mono_method_get_header): new accessor.
8115
8116         * *.[ch]: use the above method. Prepares us to lazily load
8117         the header.
8118
8119         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8120         three warnings, which are actual bugs (see 69206).
8121
8122         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8123         unused. Saves a cool 4 bytes / method.
8124
8125 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8126
8127         * metadata.c (builtin_types): Add types for System.Object here.
8128         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8129         for a class or valuetype from klass->this_arg or klass->byval_arg.
8130
8131         On mcs for a hello world, this gets us down from 21836 MonoType's
8132         to 14560.
8133
8134         (mono_metadata_free_type): Account for the above change.
8135
8136 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8137
8138         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8139         exception instead of asserting if name is null.
8140         (ves_icall_System_AppDomain_GetData): Ditto.
8141
8142 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8143
8144         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8145         EnumBuilder.
8146
8147         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8148         Return NULL when the domain does not have entry_assembly set.
8149
8150         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8151         Add a 'resource_modules' argument.
8152         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8153
8154         * reflection.c (mono_reflection_create_runtime_class): Move setting
8155         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8156         for enums too.
8157
8158         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8159         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8160         Throw an ArgumentNullException if 'ptr' is null.
8161
8162         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8163         assemblies here. Fixes #69020.
8164
8165 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8166
8167         * reflection.c (build_compressed_metadata): Fix the previous patch for
8168         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8169         the stack.
8170
8171 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8172
8173         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8174         the cultures is false. Fixes #69090.
8175
8176         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8177         detected by valgrind.
8178         
8179         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8180         TypeResolve multiple times for the same type. Fixes #65577.
8181
8182 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8183
8184         * marshal.c: Avoid using ldftn to call managed functions. It is
8185         much slower than just a call.
8186
8187         * reflection.c (mono_module_get_object): free the basename we
8188         allocate here from glib.
8189         
8190         * reflection.c (ensure_runtime_vtable): make sure to free
8191         overrides.  Also, we were allocating an array of MonoMethod not an
8192         array of MonoMethod*.
8193
8194         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8195
8196         * image.c (mono_image_close): free image->guid here.
8197
8198 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8199
8200         * reflection.c: Fix some spec conformance issues with the PE file
8201         structures so mcs compiled apps run on the Net 2.0 beta.
8202
8203 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8204
8205         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8206         Implement this. Fixes #67264.
8207
8208         * debug-helpers.h debug-helpers.c marshal.c: Move 
8209         mono_find_method_by_name to debug-helpers.c.
8210
8211 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8212
8213         * object.c (mono_release_type_locks): type_initialization_hash is
8214         a GHashTable.
8215
8216         * reflection.c object.c object-internals.h: Fix warnings.
8217
8218         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8219         without accessors. Fixes #61561.
8220
8221         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8222         application base from the root domain if not set. Fixes #65641.
8223         (mono_runtime_init): Fix warning.
8224
8225 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8226
8227         * appdomain.c: call mono_thread_pool_init.
8228         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8229         of worker threads based on the number of CPUs and the environment
8230         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8231         for non-windows (windows) systems.
8232
8233 2004-10-27  Chris Toshok  <toshok@ximian.com>
8234
8235         * mono-debug-debugger.c (write_class): don't call mono_class_init
8236         here, as even with the check for (!klass->init_pending), we get
8237         into a situation where we're hitting cycles in class
8238         initialization.  Fixes #68816.
8239
8240 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8241
8242         * image.c: Avoid overwriting values in the loaded_images_hash when an
8243         assembly is loaded multiple times. Fixes #61152.
8244
8245         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8246         so multiple satellite assemblies for the same name can be loaded.
8247         Fixes #68259.
8248
8249         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8250         not NULL.
8251
8252         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8253         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8254
8255         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8256         pending finalizers are not invoked after the appdomain has been 
8257         unloaded. Fixes #67862.
8258
8259 2004-10-22  Martin Baulig  <martin@ximian.com>
8260
8261         * mono-debug-debugger.c
8262         (mono_debugger_runtime_invoke): Don't box valuetypes.
8263
8264 2004-10-22  Chris Toshok  <toshok@ximian.com>
8265
8266         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8267         don't hide private methods.
8268
8269 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8270
8271         * icall.c: Allows the runtime to "share" (when known) the public key
8272         token of an assembly. This avoid the need to recalculate the token 
8273         (from the public key) in managed code.
8274
8275 2004-10-21  Chris Toshok  <toshok@ximian.com>
8276
8277         * debug-helpers.c (append_class_name): argh, revert last patch.
8278         
8279 2004-10-21  Chris Toshok  <toshok@ximian.com>
8280
8281         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8282         not '/', so that it matches what the debugger uses to look up
8283         methods.
8284
8285 2004-10-21  Martin Baulig  <martin@ximian.com>
8286
8287         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8288         public method; this is called each time an exception is thrown and
8289         allows the debugger to use exception catch points.
8290
8291 2004-10-21  Martin Baulig  <martin@ximian.com>
8292
8293         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8294         the stack pointer and the exception object in some struct and pass
8295         that to the debugger.
8296
8297 2004-10-21  Chris Toshok  <toshok@ximian.com>
8298
8299         * mono-debug-debugger.c (do_write_class): add instance/static
8300         event support.  We don't expose "raise" or "other" yet.
8301         (event_is_static): new method.
8302
8303 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8304
8305         * mono-debug-debugger.c
8306         (mono_debugger_handle_exception): Remove
8307         bogus return value for fussy compilers.
8308
8309 2004-10-20  Martin Baulig  <martin@ximian.com>
8310
8311         * mono-debug-debugger.c
8312         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8313         (mono_debugger_handled_exception): Likewise.
8314
8315 2004-10-20  Martin Baulig  <martin@ximian.com>
8316
8317         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8318         MONO_DEBUGGER_EVENT_EXCEPTION.
8319
8320         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8321         public function to send the debugger a notification for an
8322         exception and inform it about a catch/finally clause.
8323
8324 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8325
8326         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8327         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8328         fix 2.95 build. 
8329
8330         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8331
8332 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8333
8334         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8335         marshalled as [In,Out]. Fixes #58325.
8336
8337 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8338
8339         * reflection.c (mono_method_body_get_object): Implement some fields.
8340
8341 2004-10-12  Martin Baulig  <martin@ximian.com>
8342
8343         * reflection.c (mono_reflection_bind_generic_parameters): Small
8344         fix, correctly retrieve our parent from a generic instance.
8345
8346 2004-10-12  Martin Baulig  <martin@ximian.com>
8347
8348         * metadata.c (mono_metadata_generic_param_equal): We always have
8349         an owner.
8350
8351         * class.c
8352         (mono_class_from_generic_parameter): We need to have an owner.
8353         (my_mono_class_from_generic_parameter): Likewise.
8354
8355         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8356         mono_reflection_create_generic_class() and added a new
8357         mono_reflection_setup_generic_class().  
8358         (mono_reflection_initialize_generic_param): If we're a nested
8359         generic type and inherited from the containing class, set our
8360         owner to the outer class.
8361
8362 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8363
8364         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8365
8366         * reflection.c (mono_method_body_get_object): New function to create
8367         a MethodBody object.
8368
8369         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8370
8371 2004-10-11  Martin Baulig  <martin@ximian.com>
8372
8373         * metadata.c (_mono_metadata_type_equal): Renamed to
8374         do_mono_metadata_type_equal() and made static.
8375
8376 2004-10-11  Martin Baulig  <martin@ximian.com>
8377
8378         * appdomain.c: Bump corlib version number to 28.
8379
8380 2004-10-10  Martin Baulig  <martin@ximian.com>
8381
8382         * class-internals.h
8383         (MonoGenericInst): Added `MonoGenericContainer *container'.
8384         (MonoGenericMethod): Likewise.
8385         (MonoGenericContext): Likewise.
8386         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8387
8388         * metadata.c
8389         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8390         (do_mono_metadata_parse_generic_inst): Likewise.
8391         (mono_metadata_parse_type_full): New public method.  This is the actual
8392         mono_metadata_parse_type() implementation - with an additional
8393         `MonoGenericContainer *' argument.
8394         (mono_metadata_parse_array_full): Likewise.
8395         (mono_metadata_parse_signature_full): Likewise.
8396         (mono_metadata_parse_method_signature_full): Likewise.
8397         (mono_metadata_parse_mh_full): Likewise.
8398         (mono_type_create_from_typespec): Likewise.
8399         (mono_metadata_interfaces_from_typedef_full): New public method;
8400         this is similar to the other _full() methods, but we take a
8401         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8402         (mono_metadata_parse_generic_param): Take an additional
8403         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8404         from that container.
8405         (mono_metadata_generic_param_equal): New static method to compare
8406         two type parameters.
8407         (_mono_metadata_type_equal): New static method; takes an
8408         additional `gboolean signature_only' argument - if true, we don't
8409         compare the owners of generic parameters.
8410         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8411         with a TRUE argument - do a signature-only comparision.
8412
8413         * loader.c: Use the new _full() methods and pass the
8414         MonoGenericContainer to them.
8415
8416         * object-internals.h (MonoReflectionTypeBuilder): Added
8417         `MonoGenericContainer *generic_container' field.
8418         (MonoReflectionMethodBuilder): Likewise.
8419
8420 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8421
8422         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8423         case initial images of dynamic assemblies.
8424
8425         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8426
8427         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8428
8429         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8430         length of event->other array.
8431         (typebuilder_setup_events): Ditto.
8432
8433         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8434         'assembly_by_name' and add an 'assemblies' list.
8435
8436         * assembly.h assembly.c: Add a new search hook for determining whenever
8437         an assembly is already loaded. Use this instead of searching in the
8438         loaded_assemblies list.
8439
8440         * domain.c appdomain.c: Implement the new search hook so loaded 
8441         assemblies are now scoped by appdomain. Fixes #67727.
8442
8443 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8444
8445         * threads.c (mono_thread_attach): Initialize synch_lock field so
8446         mono_thread_detach works again.
8447
8448         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8449         'lib' too. Fixes #63130.
8450
8451 2004-10-06  Jackson Harper  <jackson@ximian.com>
8452
8453         * culture-info-tables.h: regenerated.
8454
8455 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8456
8457         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8458         implemented by other interfaces in the result. Fixes #65764.
8459         
8460         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8461         Handle unloadable modules without crashing.
8462
8463         * image.c (load_modules): Revert the previous patch since modules must
8464         have a fixed index inside the array.
8465         
8466         * image.c (load_modules): Don't include native modules in the modules
8467         array.
8468
8469 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8470
8471         * reflection.h: Add param_defaults field.
8472
8473         * reflection.c: Add support for parameter defaults in dynamic methods.
8474         Fixes #64595.
8475
8476         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8477         an empty string when a type has no namespace. Fixes #64230.
8478
8479 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8480
8481         * tabledefs.h: Added "internal" security actions to support non-CAS
8482         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8483         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8484
8485 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8486
8487         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8488         constructor of abstract class. Fixes #61689.
8489
8490 2004-10-04  Martin Baulig  <martin@ximian.com>
8491
8492         * class-internals.h (MonoGenericContainer): New type.
8493         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8494         `MonoGenericContainer *generic_container'.
8495         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8496         `MonoGenericContainer *generic_container'.
8497
8498         * metadata.c (mono_metadata_load_generic_params): Return a
8499         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8500         removed the `num' argument.
8501
8502 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8503
8504         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8505         for dynamic images.
8506
8507         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8508         machine fields.
8509
8510         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8511
8512         * reflection.c: Save pe_kind and machine values into the generated
8513         image file.
8514
8515         * appdomain.c: Bump corlib version number.
8516
8517         * object-internals.h: Reorganize layout of LocalBuilder.
8518
8519         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8520         New helper function.
8521
8522         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8523         created MonoType for dynamic types. Fixes #66180.
8524
8525 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8526
8527         * threadpool.c: the ares hashtable needs a critical section around it.
8528         this prevents some nasty segfaults
8529
8530 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8531
8532         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8533         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8534         bug 67324).
8535         
8536 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8537
8538         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8539         
8540 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8541
8542         * image.c: Always canonicalize image file names, to avoid loading
8543         the same assembly twice when referenced using a relative path.
8544
8545 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8546
8547         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8548
8549         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8550
8551         * marshal.c: Fix warnings.
8552
8553 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8554
8555         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8556         attempting to marshal the delegate_trampoline as the method_addr.
8557         This patch has a static hashtable of marshalled delegates so that 
8558         we can map delegate_trampoline addresses back to delegates.  This
8559         allows a delegate passed to managed code to be passed back into native
8560         code.  Fixes #67039
8561
8562 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8563
8564         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8565
8566         * reflection.c (method_encode_code): Align method headers properly.
8567         Fixes #66025.
8568
8569 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8570
8571         * marshal.c: In the runtime invoke wrapper, reset the abort
8572         exception if it is cached. This avoids the automatic rethrowal of 
8573         the exception after the catch of the wrapper. Also check for pending
8574         interruptions before calling the managed method. This is done using
8575         the new method emit_thread_force_interrupt_checkpoint, since the
8576         normal checkpoint method is ignored when running the invoke wrapper.
8577         * object.c: If the abort exception is rethrown, set the abort_exc
8578         field of the thread, so it will be rethrown aftere every catch.
8579         * threadpool.c: Only run an interruption checkpoint if what has been
8580         requested is a stop of the thread (aborts will be ignored).
8581         * threads.c: By default, a thread will now never be interrumped while
8582         running the runtime invoke wrapper (this ensures that runtime_invoke
8583         will always return to the caller if an exception pointer is provided).
8584         There is a new special method mono_thread_force_interruption_checkpoint()
8585         to force an interruption checkpoint even if running a protected
8586         wrapper, which is used by the same runtime invoke wrapper to do a check
8587         at a safe point.
8588
8589 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8590
8591         * object.c, object-internals.h: Implemented mono_release_type_locks,
8592         which releases the cctor locks held by a thread.
8593         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8594         by a thread. Added mono_thread_exit() method to be used to safely stop
8595         a thread.
8596
8597 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8598
8599         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8600         Move null check before dereference.  Avoid indexing beyond the end
8601         of the 'modules' array.
8602
8603 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8604
8605         * metadata-internals.h (MonoImage): Add module_count field.
8606         * image.c (load_modules): Set image->module_count.
8607         (mono_image_load_file_for_image): Use image->module_count.
8608         * reflection.c (mono_image_load_module): Append to image->modules array 
8609         of dynamic assembly.
8610         (mono_module_get_object): Fix loop to actually increment index.
8611         Use image->module_count.
8612         * assembly.c (mono_assembly_load_references): Use image->module_count.
8613         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8614         Likewise.
8615
8616 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8617
8618         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8619         Avoid assert on generic types.
8620
8621 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8622
8623         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8624
8625         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8626
8627         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8628         function to convert a MarshalSpec structure to its managed counterpart.
8629
8630         * reflection.c: Fix warnings.
8631         
8632         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8633         field.
8634
8635         * icall.c (mono_create_icall_signature): Fix build.
8636
8637 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8638
8639         * icall.c: Add MakePointType icall.
8640
8641         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8642         warnings.
8643
8644 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8645
8646         * threadpool.c: reuse allocated slots in the queue.
8647
8648 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8649
8650         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8651
8652         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8653
8654         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8655         previous change.
8656
8657         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8658         ThrowOnUnmappableChar.
8659
8660         * icall.c (ves_icall_Type_GetPacking): New icall.
8661
8662 2004-09-24  Martin Baulig  <martin@ximian.com>
8663
8664         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8665
8666 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8667
8668         * appdomain.c:
8669         (mono_domain_set): allow setting a domain that is being unloaded.
8670         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8671         being unloaded.
8672
8673 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8674
8675         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8676         the GetCustomAttributes icall.
8677
8678 2004-09-23  Martin Baulig  <martin@ximian.com>
8679
8680         * object-internals.h (MonoReflectionGenericParam): Replaced
8681         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8682         with `guint32 attrs'.
8683
8684 2004-09-23  Martin Baulig  <martin@ximian.com>
8685
8686         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8687
8688 2004-09-23  Martin Baulig  <martin@ximian.com>
8689
8690         * object-internals.h (GenericParameterAttributes): New enum.
8691
8692 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8693
8694         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8695         
8696         * class.c (init_events): Fill out event->other field.
8697
8698         * class.c: Fix warnings.
8699
8700         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8701
8702 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8703
8704         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8705         walk which doesn't supply the IL offset.
8706
8707 2004-09-22  Martin Baulig  <martin@ximian.com>
8708
8709         * reflection.c (mono_reflection_setup_internal_class): If we're
8710         System.ValueType, System.Object or System.Enum, set
8711         `klass->instance_size' and create the vtable.
8712         (mono_reflection_create_internal_class): If we're an enum type,
8713         get the base class from our current corlib.
8714
8715 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
8716
8717         * reflection.h (MonoResolveTokenError): New type.
8718
8719         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8720         icall.
8721
8722         * icall.c: Add an 'error' argument to the ResolveToken icalls.
8723
8724 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
8725
8726         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8727         Support also calling constructors, but only for already allocated objects.
8728
8729 2004-09-17  Geoff Norton <gnorton@customerdna.com>
8730
8731         * reflection.c (type_get_qualified_name): If the klass is null
8732         return the typename to avoid a NullRefEx.
8733         (encode_cattr_value): Get the qualified name of the boxed type,
8734         not the underlying enumtype.  Fixes #62984.
8735
8736 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
8737
8738         * marshal.c: Fix problems with previous checkin.
8739
8740 2004-09-21    <vargaz@freemail.hu>
8741
8742         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8743         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8744
8745         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8746
8747 2004-09-21  Geoff Norton <gnorton@customerdna.com>
8748
8749         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8750         should only return a type for pointers, arrays, and passbyref types.
8751         Fixes bug #63841.
8752
8753 2004-09-21  Martin Baulig  <martin@ximian.com>
8754
8755         * domain.c (mono_debugger_check_runtime_version): New public
8756         function.
8757
8758         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
8759
8760 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
8761
8762         * reflection.c: Added missing sort to the declarative security 
8763         attributes table. MS implementation stops seeing the attributes if the
8764         token number regress in the table (as shown by ildasm and permview).
8765
8766 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
8767
8768         * object-internals.h (MonoReflectionModule): Add 'token' field.
8769         
8770         * reflection.c (mono_reflection_get_token): Add support for Module
8771         and Assembly.
8772         (mono_module_get_object): Set 'token' field.
8773         (mono_module_file_get_object): Set 'token' field.
8774
8775         * icall.c: Add new Assembly and Module icalls.
8776
8777         * appdomain.c: Bump corlib version.
8778
8779 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
8780
8781         * loader.h loader.c class.h class.c: Add helper functions for obtaining
8782         tokens of metadata objects.
8783
8784         * reflection.h reflection.c (mono_reflection_get_token): New function
8785         to obtain the token of a metadata object.
8786
8787         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8788
8789 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
8790
8791         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8792         
8793         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8794
8795 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
8796
8797         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8798         * object-internals.h: Added 3 MonoArray* members to MonoReflection
8799         AssemblyBuilder to access the permissions set in the class lib.
8800         * reflection.c: Added security attributes encoding step in 
8801         mono_image_build_metadata.
8802         * tabledefs.h: Added new security actions defined in 2.0:
8803         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8804
8805 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8806
8807         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8808         macro parameter.
8809
8810 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8811  
8812         * locales.c: nullify the ICU_collator member of CompareInfo when it is
8813           finalized. There where random SIGSEVs at program termination, when
8814           an object being finalized was trying to do a string comparison and
8815           the current culture was already finalized.
8816  
8817 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8818
8819         * threads.c: call thread_cleanup before finishing the thread if we get
8820         there.
8821
8822 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
8823
8824         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8825         assemblies from the parent. Fixes #65665.
8826
8827 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
8828
8829         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8830         modifiers.
8831
8832 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
8833
8834         * reflection.h: add prototype for mono_get_dbnull_object
8835         * reflection.c: add prototypes for get_default_param_value_blobs 
8836         and mono_get_object_from_blob for fussier compilers
8837
8838 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
8839  
8840         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8841         false deadlock checks in class initialization.
8842  
8843 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
8844
8845         * image.c (mono_image_addref): Fix comment.
8846
8847         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8848         possible.
8849
8850 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
8851
8852         * reflection.c (mono_param_get_objects): Modified to return
8853         ParameterInfo.DefaultValue object.
8854
8855         (get_default_param_value_blobs):
8856         (mono_get_object_from_blob):
8857         (mono_get_dbnull_object): New helper routines. 
8858
8859         * object.c (mono_get_constant_value_from_blob): New helper routine
8860         carved out from get_default_field_value ()
8861
8862         * object-internals.h (mono_get_constant_value_from_blob): Added
8863         function declaration.
8864
8865 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
8866
8867         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
8868         referenced assemblies. Fixes #62135.
8869
8870         * exception.h exception.c (mono_get_exception_file_not_found2): New
8871         helper function.
8872
8873 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
8874
8875         * class.h class.c: Add mono_type_get_underlying_type ().
8876
8877 2004-09-09  Geoff Norton <gnorton@customerndna.com>
8878
8879         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
8880         Fix GetTypes() to support dynamically created assemblies.
8881
8882 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
8883
8884         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
8885         
8886         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
8887         previous patch.
8888
8889         * reflection.h reflection.c loader.c: Allow dynamic construction of
8890         pinvoke methods. Fixes #65571.
8891         
8892         * reflection.c (mono_reflection_get_type): Revert previous change since
8893         it causes regressions.
8894
8895 2004-09-08  Martin Baulig  <martin@ximian.com>
8896
8897         * class.c (class_compute_field_layout): Don't call
8898         mono_class_layout_fields() for open generic instances.
8899
8900 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
8901         * threads.c appdomain.c: fix typo in GC macro
8902
8903 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8904
8905         * threads.c: don't call mono_thread_detach() in start_wrapper(),
8906         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
8907
8908 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
8909
8910         * image.c (mono_image_close): Applied patch from 
8911         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
8912         assembly is loaded multiple times from data.
8913         
8914         * image.c (mono_image_open): Fix warning.
8915
8916 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8917
8918         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
8919         once. Fixes #58334.
8920         
8921         * reflection.c (mono_reflection_create_runtime_class): Initialize
8922         klass->nested_classes. Fixes #61224.
8923
8924 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8925
8926         * threads.c: sched_yield() on exit, to allow threads to quit.
8927
8928 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8929
8930         * object.c (mono_unhandled_exception): Remove leftover debug code.
8931
8932 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
8933
8934         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
8935
8936 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8937
8938         * marshal.c (emit_marshal_array): Really null terminate string arrays.
8939         
8940         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
8941
8942 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8943
8944         * marshal.c (emit_marshal_array): Null terminate string arrays.
8945         
8946         * marshal.c (raise_auto_layout_exception): Fix warning.
8947
8948         * reflection.c (mono_param_get_objects): Initialize the default value
8949         with DBNull.Value, not null. Fixes #62123.
8950
8951 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
8952
8953         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
8954         throw an exception with a cute explanation.
8955
8956 2004-09-06  Dick Porter  <dick@ximian.com>
8957
8958         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
8959         Close the new process's thread handle, as we don't use it.  The
8960         handle stays around forever otherwise.
8961
8962 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8963
8964         * object.c (arith_overflow): Fix warning.
8965
8966         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
8967         calling conventions in method refs. Fixes #65352.
8968
8969         * reflection.c: Fix warnings.
8970
8971 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8972
8973         * icall.c: Add a new icall for Array.Clear
8974
8975 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8976
8977         * object.c: When allocating an array, we have to throw
8978         an overflow exception if any of the lengths are < 0.
8979
8980 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8981
8982         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
8983         properly. Also move implementation of string array marshalling to 
8984         managed code. Fixes #42316.
8985
8986 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8987
8988         * assembly.c: provide more information when loading an assembly fails.
8989
8990 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8991
8992         * filewatcher.c: don't expect the development fam package to be
8993         installed.
8994
8995 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
8996
8997         * marshal.c: Make a copy of the signature cookie since it will be
8998         freed by the caller.
8999         
9000         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9001
9002         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9003
9004         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9005         marshal specs.
9006
9007         * marshal.c: More refactoring.
9008         
9009         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9010         smaller functions.
9011
9012 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9013
9014         * object.c: In mono_message_invoke, fill the output parameter array after
9015           calling the managed method (it was done before the call). This fixes
9016           bug #59299.
9017
9018 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9019
9020         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9021         as well.
9022
9023 2004-09-02  Martin Baulig  <martin@ximian.com>
9024
9025         * class.c (mono_class_instance_size): Don't allow generic type
9026         definitions or open generic instances.
9027         (mono_class_array_element_size): If we're a value type, call
9028         mono_class_instance_size() on the original class.
9029
9030         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9031         handle generic instances.
9032
9033         * mono-debug-debugger.c (write_type): Handle generic instances
9034         like classes.
9035
9036 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9037
9038         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9039         the allocation request fails. Fixes #65089.
9040
9041         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9042         
9043         * object.c (mono_runtime_free_method): New function to free a dynamic
9044         method.
9045
9046         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9047         delegate trampoline.
9048
9049         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9050         with hasthis as dynamic,
9051
9052         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9053
9054         * domain.c (mono_jit_info_table_remove): New function to remove an
9055         entry from the jit info table.
9056
9057         * class-internals.h (MonoMethod): Add 'dynamic' field.
9058
9059         * loader.c: Fix warnings.
9060
9061 2004-09-01  Martin Baulig  <martin@ximian.com>
9062
9063         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9064         instead of mono_debugger_lock() because the latter one is a no-op
9065         unless running in the debugger.
9066
9067 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9068
9069         * class.c (class_compute_field_layout): Classes with auto-layout or
9070         reference fields are not blittable.
9071         
9072 2004-09-01  Dick Porter  <dick@ximian.com>
9073
9074         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9075         mono_image_get_filename() to get the assembly location.
9076
9077         * icall.c:
9078         * metadata.h: Fix compile warnings
9079
9080 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9081
9082         * class.c (class_compute_field_layout): System.Object is blittable.
9083
9084         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9085         as in/out. Fixes #59909.
9086
9087 2004-09-01  Martin Baulig  <martin@ximian.com>
9088
9089         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9090         mono_metadata_generic_inst_is_valuetype() if we're a generic
9091         instance to check whether our underlying type is a reference type.
9092
9093 2004-09-01  Martin Baulig  <martin@ximian.com>
9094
9095         * metadata.c (mono_type_size): If we're a generic instance, call
9096         mono_class_value_size() for value types.
9097
9098 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9099
9100         * marshal.c: Implement more custom marshalling functionality. Fixes
9101         #64915.
9102
9103 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9104
9105         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9106
9107 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9108
9109         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9110
9111         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9112
9113         * icall.c: Fix some warnings.
9114
9115         * threads.c (abort_appdomain_thread): Fix unref errors.
9116         (mono_thread_current): Fix THREAD_DEBUG define.
9117
9118 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9119
9120         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9121
9122         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9123
9124 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9125
9126         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9127         string arrays.
9128
9129 2004-08-28  Martin Baulig  <martin@ximian.com>
9130
9131         * metadata.c
9132         (mono_metadata_generic_inst_is_valuetype): New public function.
9133
9134         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9135         mono_metadata_generic_inst_is_valuetype() if we're a generic
9136         instance to check whether our underlying type is a valuetype.
9137
9138 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9139
9140         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9141         #63768.
9142
9143 2004-08-25  Martin Baulig  <martin@ximian.com>
9144
9145         * loader.c (mono_get_method_from_token): Abstract methods can also
9146         be generic and thus have type parameters.
9147
9148         * metadata-internals.h
9149         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9150
9151         * reflection.c (mono_image_get_generic_param_info): Don't create a
9152         metadata row, just add an entry to the `gen_params' array.
9153         (build_compressed_metadata): Sort the `gen_params' array and then
9154         actually create the metadata.
9155
9156 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9157
9158         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9159
9160 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9161
9162         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9163
9164 2004-08-24  Martin Baulig  <martin@ximian.com>
9165
9166         * class.cs (mono_class_is_subclass_of): Like an interface, a
9167         generic instance also derives from System.Object.
9168
9169 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9170
9171         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9172         custom modifiers to be in any order. Fixes #61990.
9173
9174 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9175
9176         * object.c: Register mono_object_new_fast icall.
9177         
9178         * object.c (mono_class_get_allocation_ftn): Return to calling
9179         mono_object_new_fast, since it seems faster to compute the object 
9180         size in unmanaged code than passing it as a parameter.
9181
9182         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9183
9184         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9185         this function with Boehm as the oom handler, so we don't have to check
9186         the result of GC_malloc.
9187
9188         * object.c: Remove checks for oom.
9189
9190         * object.h object.c (mono_class_get_allocation_ftn): New function to
9191         return the icall which can be used to allocate an instance of a given
9192         class. 
9193
9194         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9195
9196         * class-internals.h: Add 'enabled' field.
9197
9198 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9199
9200         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9201
9202 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9203         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9204         value 0x0010.
9205
9206 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9207
9208         * appdomain.c: use the Tls function for appdomain too,
9209         at Zoltan's request. Actually return in mono_context_get
9210
9211         * appdomain.c, profiler.c, threads.c: use __thread
9212
9213 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9214
9215         * appdomain.c threads.c: Call GC_CreateThread on windows.
9216
9217         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9218         multiple libraries since this don't work on windows.
9219
9220 2004-08-18  Martin Baulig  <martin@ximian.com>
9221
9222         * class-internals.h
9223         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9224         MonoMethodHeader.
9225
9226         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9227         MonoMethodNormal since we also need it for abstract and interface
9228         methods.
9229
9230         * reflection.c
9231         (build_compressed_metadata): Sort the GenericParam table.
9232         (mono_image_create_token): Added `gboolean create_methodspec'
9233         argument; this is false when generating a MethodImpl token.
9234         (reflection_methodbuilder_to_mono_method): Abstract and interface
9235         methods may also have generic parameters.
9236
9237 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9238
9239         * appdomain.c: thread local alloc
9240
9241 2004-08-17  Martin Baulig  <martin@ximian.com>
9242
9243         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9244
9245         * icall.c
9246         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9247         argument.
9248
9249         * class.c (mono_type_get_full_name): New public function.
9250         (mono_type_get_name): Don't include the type arguments.
9251
9252 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9253
9254         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9255         for inclusion into the mono executable.
9256
9257 2004-08-16  Martin Baulig  <martin@ximian.com>
9258
9259         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9260         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9261
9262 2004-08-14  Martin Baulig  <martin@ximian.com>
9263
9264         * class.c (dup_type): Also copy the `byref' field.
9265
9266 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9267
9268         * reflection.c (create_dynamic_mono_image): Revert the last change 
9269         since it breaks bootstrap.
9270
9271 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9272
9273         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9274
9275         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9276         not free them with g_free.
9277
9278 2004-08-11  Martin Baulig  <martin@ximian.com>
9279
9280         * reflection.c (mono_reflection_setup_internal_class): Also call
9281         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9282
9283 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9284
9285         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9286         called during default (first) AppDomain creation. Keep track of
9287         Evidence when loading assemblies.
9288
9289 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9290
9291         * opcodes.c, opcodes.h: reduce runtime relocations.
9292
9293 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9294
9295         * culture-info.h, locales.c: fixes and chages to sue the new
9296         optimized format of the locale data.
9297         * culture-info-tables.h: regenerated.
9298
9299 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9300         
9301         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9302
9303 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9304
9305         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9306         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9307         * domain-internals.h: icall declaration.
9308         * icall.c: icall registration.
9309         * object-internals.h: New fields in MonoAssembly for CAS.
9310
9311 2004-08-05  Duncan Mak  <duncan@ximian.com>
9312
9313         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9314         CEE_LDELEM_ANY.
9315
9316 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9317
9318         * reflection.c: fix to deal with object[] arrays in custom ctors
9319         (bug #62550).
9320
9321 2004-08-05  Martin Baulig  <martin@ximian.com>
9322
9323         * class.c (mono_class_array_element_size): Added support for
9324         generic instances and correctly handle "recursive" types.
9325
9326 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9327
9328         * assembly.c: Fix warnings.
9329
9330 2004-08-04  Martin Baulig  <martin@ximian.com>
9331
9332         * class.c
9333         (mono_type_get_name_recurse): Added `gboolean include_arity'
9334         argument specifying whether or not we should include the generic
9335         arity in the type name.
9336         (_mono_type_get_name): New static function.
9337         (mono_class_setup_vtable): If we're a generic instance, don't
9338         include the generic arity in the names of explicit method
9339         implementations.        
9340
9341 2004-08-03  Martin Baulig  <martin@ximian.com>
9342
9343         * class.c (mono_type_get_name_recurse): Enclose the generic type
9344         arguments in `<', '>'.
9345
9346 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9347
9348         * gc.c: make GC warning messages use the trace API, they are just
9349         noise to most of the users.
9350
9351 2004-08-03  Martin Baulig  <martin@ximian.com>
9352
9353         * debug-mono-symfile.c (read_string): Correctly read the string.
9354
9355 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9356
9357         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9358         
9359         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9360         icalls.
9361         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9362
9363 2004-07-30  Martin Baulig  <martin@ximian.com>
9364
9365         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9366         Reflect latest symbol writer changes.   
9367
9368 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9369
9370         * object.c: always create an object if null is passed
9371         to Invoke() where a valuetype is expected.
9372
9373 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9374
9375         * marshal.c (mono_marshal_init): make managed
9376         signatures match native ones better for 64bits.
9377
9378 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9379
9380         * appdomain.c: hack to build correctly the private bin path on windows.
9381         Fixes bug #61991.
9382
9383 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9384
9385         * assembly.c: Load mscorlib from the correct framework directory
9386           (mono/<version>/mscorlib.dll).
9387         * appdomain.h: Added prototypes for new functions.
9388         * internals.h: Added some prototypes.
9389         * domain.c: When initializing the runtime, get from the executable and
9390           the configuration files the runtime version that the app supports.
9391           Added support methods for reading app.exe.config. Added list of versions
9392           supported by the JIT. Added two new methods: mono_init_from_assembly,
9393           which initializes the runtime and determines the required version from
9394           the provided exe file, and mono_init_version, which initializes
9395           the runtime using the provided version.
9396         * icall.c: Get machine.config from version-specific directory.
9397         * reflection.c: When generating an image, embed the version number
9398           of the current runtime.
9399
9400 2004-07-28  Dick Porter  <dick@ximian.com>
9401
9402         * socket-io.c
9403         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9404         returned sockaddr size before creating the remote address object.
9405         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9406         61608.
9407
9408 2004-07-28  Dick Porter  <dick@ximian.com>
9409
9410         * locales.c (string_invariant_compare_char): Fix invariant char
9411         compares between upper and lower cases.  Fixes bug 61458.
9412
9413 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9414         
9415         * marshal.c: actually cache stelem.ref wrappers.
9416         
9417 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9418
9419         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9420         sections and remove the mono_cli_rva_map () function.
9421
9422 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9423
9424         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9425         by Geoff Norton (<gnorton@customerdna.com>).
9426
9427 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9428
9429         * class.c: fix class loads for pointer types (typeof(int) !=
9430         typeof(int*)).
9431
9432 2004-07-27  Martin Baulig  <martin@ximian.com>
9433
9434         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9435         reading the debugging information from an external ".mdb" file.
9436
9437 2004-07-24  Martin Baulig  <martin@ximian.com>
9438
9439         * reflection.c (mono_image_get_type_info): Only write a class
9440         layout entry if we actually have a size or a packing size.
9441
9442 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9443
9444         * reflection.c (type_get_fully_qualified_name): 
9445         insert cast to get type checking of ?: with non-gcc compilers
9446
9447 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9448
9449         * rand.c: use g_getenv for both lookups of
9450         MONO_EGD_SOCKET
9451
9452 2004-07-17  Martin Baulig  <martin@ximian.com>
9453
9454         * reflection.c (mono_reflection_bind_generic_method_parameters):
9455         Set `gmethod->reflection_info'.
9456
9457 2004-07-17  Martin Baulig  <martin@ximian.com>
9458
9459         * class.c (mono_class_create_from_typedef): Insert the newly
9460         created class into the hash table before computing the interfaces
9461         since we could be called recursively.
9462
9463 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9464
9465         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9466         function to implement stelem.ref in managed code
9467         * class-internals.h, debug-helpers.c: a new wrapper type
9468         for the above.
9469
9470 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9471
9472         * gc.c: allow GC handles to work even when no GC is compiled in.
9473         Fix part of bug #61134 (GetAddrOfPinnedObject).
9474
9475 2004-07-13  Peter Williams  <peter@newton.cx>
9476  
9477         * process.c (complete_path): Make sure we don't attempt to execute
9478         directories.
9479  
9480 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9481
9482         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9483           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9484           and will add/subtract the hour if needed
9485
9486 2004-07-12  Martin Baulig  <martin@ximian.com>
9487
9488         * reflection.c (mono_field_get_object): If we have
9489         `field->generic_info', take the attributes from
9490         `field->generic_info->generic_type'.    
9491
9492 2004-07-12  Martin Baulig  <martin@ximian.com>
9493
9494         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9495         This function must be called before initializing the runtime.
9496         (mono_debug_init_1): New function; call this after initializing
9497         the runtime, but before loading the assembly.  It tells the
9498         debugger to load corlib and the builtin types.
9499
9500         * mono-debug-debugger.c: Did some larger changes in the debugging
9501         code; support recursive class declarations, make sure we actually
9502         add all classes.
9503
9504 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9505
9506         * debug-helpers.c: undo my previous patch and fixed the real issue in
9507         ../mini/exceptions-x86.c
9508
9509 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9510
9511         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9512         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9513         called from other .cctors.
9514
9515 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9516
9517         * loader.c: Removed the mono_loader_wine_init hack now that we are
9518         doing a managed version of Windows.Forms.
9519
9520 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9521
9522         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9523         threadpool.c, threads.c: remove static data from rootset.
9524
9525 2004-07-09  Dick Porter  <dick@ximian.com>
9526
9527         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9528         Don't do any more processing if the matched length was 0.  It was
9529         increasing the size of the string before.  Fixes bug 61167.
9530
9531 2004-07-09  Dick Porter  <dick@ximian.com>
9532
9533         * socket-io.h:
9534         * socket-io.c
9535         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9536         Add support for SO_PEERCRED if its available.
9537
9538 2004-07-09  Peter Bartok <pbartok@novell.com>
9539         * loader.c: winelib.exe.so error message is now only displayed if
9540         MONO_DEBUG is set. To help us avoid questions when people are trying
9541         out the new Managed.Windows.Forms.
9542
9543 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9544
9545         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9546         for isinst and castclass wrappers.
9547
9548         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9549         to libmetadata from the JIT, so they could be used by the marshalling
9550         code and the interpreter.
9551
9552         * marshal.c: Register marshalling related JIT icalls here instead of
9553         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9554         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9555
9556         * metadata.h: Remove unneeded marshalling conversions.
9557
9558         * opcodes.c: Update for new opcodes.
9559         
9560 2004-07-08  Martin Baulig  <martin@ximian.com>
9561
9562         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9563         (mono_debug_get_domain_data): Make this function static.
9564
9565 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9566
9567         * gc.c, object.h: add nice GC handle API for embedders.
9568
9569 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9570
9571         * reflection.c: more changes for the new api
9572
9573         * object.c: When we reflect on a field w/ a constant value, it
9574         will not have a memory location, so we must access metadata. Also,
9575         allow easier reading of strings so that we can read them from
9576         the constant data.
9577
9578         * class.c (mono_class_layout_fields): no need for literal fields here.
9579
9580         * class-internals.h: api changes for const fields
9581
9582         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9583
9584 2004-07-06  Martin Baulig  <martin@ximian.com>
9585
9586         * mono-debug.h: Increment version number to 44.
9587
9588         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9589         now a gpointer, rewrote this whole method.
9590
9591         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9592         function.  Add information about the wrapper in a new "misc table".
9593
9594         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9595         for the new misc table.
9596
9597 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9598
9599         * metadata-internals.h image.c: Add a cache for helper signatures.
9600
9601         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9602
9603 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9604
9605         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9606         delegates from a delegate. Fixes #61033.
9607         
9608         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9609         marshalling of stringbuilder arrays. Fixes #59900.
9610
9611 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9612
9613         * icall.c: Add EnumBuilder:setup_enum_type icall.
9614
9615 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9616
9617         * icall.c: Added a new icall for the property version of
9618         OffsetOfStringData.
9619
9620 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9621
9622         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9623         it has a constant size across platforms.
9624
9625         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9626         stack trace.
9627
9628 2004-06-29  Martin Baulig  <martin@ximian.com>
9629
9630         * mono-debug.c (mono_debug_add_method): Protect the whole function
9631         in mono_debugger_lock(), not just parts of it.
9632
9633 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9634
9635         * reflection.c: make sure padding bytes in heaps are zeroed.
9636
9637 2004-06-24  David Waite  <mass@akuma.org>
9638
9639         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9640         image.c, loader.c, locales.c, marshal.c, metadata.c,
9641         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9642         string-icalls.c, threads.c: change to C90-style comments from C99 /
9643         C++ -style
9644
9645 2004-06-24  Dick Porter  <dick@ximian.com>
9646
9647         * threads.c
9648         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9649         return createdNew.  Fixes bug 60412.
9650
9651         * threads-types.h: 
9652         * icall.c: Add createdNew parameter to CreateMutex icall
9653
9654 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9655
9656         * reflection.c, object-internals.h: save default value in params.
9657
9658 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9659
9660         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9661         no need to build a new path combining that with the application base.
9662         Fixes bug #60442.
9663
9664 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9665
9666         * reflection.c: fixed minor standard compliance issues.
9667
9668 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9669
9670         * reflection.c: fixed issue with encoding some custom attributes
9671         (arrays in properties and fields, bug #60411).
9672
9673 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9674
9675         * reflection.c: fix start address when copying the public key token.
9676
9677 2004-06-23  Martin Baulig  <martin@ximian.com>
9678
9679         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9680         the `exc' object in a static object to put it into the GC's root set.
9681
9682 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9683
9684         * reflection.c: make mono_reflection_setup_internal_class ()
9685         callable a second time to setup a new parent class.
9686
9687 2004-06-23  Dick Porter  <dick@ximian.com>
9688
9689         * threads.c: Check for WAIT_IO_COMPLETION return values.
9690
9691 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
9692
9693         * appdomain.c: Removed the g_free on the public key token. Now copy 
9694         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9695         * assembly.c: Added public key token string value when loading 
9696         assemblies. Fix bug #60439.
9697         * icall.c: Added missing informations (like public key) in 
9698         GetReferencedAssemblies. Fix #60519.
9699         * image.h: Changed definition for public key token from const char*
9700         public_tok_value to guchar public_key_token [17];
9701         * reflection.c: Updated for changes to public key token.
9702
9703 2004-06-22  Lluis Sanchez Gual
9704
9705         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
9706         for the field in base classes.
9707
9708 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9709
9710         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9711         mark headers as not supported, they are installed only for use by the
9712         debugger.
9713
9714 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9715
9716         * *.c, *.h: avoid namespace pollution in public headers.
9717
9718 2004-06-21  Martin Baulig  <martin@ximian.com>
9719
9720         * exception.c (mono_get_exception_security): It's in
9721         "System.Security", not in "System".
9722
9723         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9724         the exception classes.
9725
9726 2004-06-21  Martin Baulig  <martin@ximian.com>
9727
9728         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9729         Protect the exception object from being finalized.
9730
9731 2004-06-21  Martin Baulig  <martin@ximian.com>
9732
9733         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9734         public function.
9735
9736 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
9737
9738         * reflection.c: Load the assembly in mono_reflection_type_from_name,
9739         if it was not loaded before. Fix parts of #60439.
9740
9741 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9742
9743         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9744         code that was broken since Ben's change: wrappers are now
9745         dependent on the method signature only again.
9746
9747 2004-06-21  Martin Baulig  <martin@ximian.com>
9748
9749         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9750         added interface support.
9751
9752 2004-06-21  Martin Baulig  <martin@ximian.com>
9753
9754         * class.c (mono_vtable_get_static_field_data): New public method.
9755
9756 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
9757
9758         * filewatcher.c : Windows build fix to be compliant with API changes.
9759
9760 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9761
9762         * class.h, class.c: more accessors.
9763         * metadata.h, metadata.c: prepare for hiding MonoType and
9764         MonoMethodSignature: people should use the accessors from now on
9765         outside of the tree.
9766
9767 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9768
9769         * *.c, *.h: more API cleanups.
9770
9771 2004-06-18  Jackson Harper  <jackson@ximian.com>
9772
9773         * assembly.c: Trace loading assemblies.
9774         * loader.c: Trace loading native libraries.
9775         * mono-config.c: Trace loading config files.
9776         
9777 2004-06-18  Dick Porter  <dick@ximian.com>
9778
9779         * locales.c: Tell ICU the lengths of strings, it can cope with
9780         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
9781
9782 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9783
9784         * image.c: swapped name/filename;
9785
9786 2004-06-18  Martin Baulig  <martin@ximian.com>
9787
9788         * mono-debug-debugger.c (write_class): Write the parent class at
9789         the end of the header.
9790
9791 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9792
9793         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9794
9795 2004-06-17  Raja R Harinath  <rharinath@novell.com>
9796
9797         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
9798         (bundle_obj): New conditional define.
9799         (BUILT_SOURCES): Remove.
9800         ($(bundle_srcs)): Make parallel-make safe.
9801         (libmonoruntime_la_LIBADD): Make unconditional.
9802         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
9803         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9804
9805 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
9806
9807         * culture-info-tables.h: It was inconsistent with the latest
9808           supp info files.
9809
9810 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
9811
9812         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9813         be loaded.
9814
9815         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9816         with gcc 2.95.
9817
9818 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9819
9820         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9821         cleaned up public header threads.h.
9822
9823 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9824
9825         * Makefile.am, *.c, *.h: more API cleanups.
9826
9827 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9828
9829         * Makefile.am: removed monosn from compilation.
9830         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9831         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9832         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9833         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9834         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9835         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9836
9837 2004-06-15  Jackson Harper  <jackson@ximian.com>
9838
9839         * assembly.c: Make locales lower case when searching the GAC for
9840         assemblies. gacutil will always make locales lowercase when
9841         installing so this effectively makes them case insensitive.
9842         
9843 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
9844
9845         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9846         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9847           parameter which allows to choose whether the wait can be interrupted or 
9848           not. Also added the method mono_monitor_enter(), which locks the monitor
9849           using an infinite wait and without allowing interruption.
9850           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9851           interrupted.
9852         * object.h: Added new fields in MonoThread. suspend_event holds the event
9853           used to susped/resume the thread. synch_lock is the lock object to use for
9854           modifying the thread state.
9855         * threads.c: Use the new synch_lock object for locking, instead of "this",
9856           which can generate deadlocks.
9857           Moved thread state change in Thread.Sleep and Thread.Join from managed
9858           to unmanaged code. This avoids a deadlock when the thread was suspended
9859           just after acquiring the thread lock.
9860           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9861           Implemented Thread.Suspend using an event instead of ThreadSuspend,
9862           which is not fully implemented in the io-layer.
9863         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9864
9865 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9866
9867         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9868         threads-types.h: more API cleanups.
9869
9870 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9871
9872         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9873         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9874         threadpool.c, threads.c: first pass at the exported API cleanup.
9875
9876 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9877
9878         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
9879
9880 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9881
9882         * icall.c: added internalGetHome.
9883
9884 2004-06-14  Dick Porter  <dick@ximian.com>
9885
9886         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
9887         possible to return successfully when '.' or '..' were the only
9888         entries in a directory, but were skipped.  The MonoIOStat was not
9889         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
9890         Fixes bug 59574.
9891
9892 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9893
9894         * reflection.c: make binaries run on .Net 1.1 by default.
9895
9896 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9897
9898         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
9899
9900 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
9901
9902         * marshal.c: keep track of struct size with explicit layout
9903         (bug #59979).
9904
9905 2004-06-12  Martin Baulig  <martin@ximian.com>
9906
9907         * mono-debug-debugger.c: Comment out a debugging g_message().
9908
9909 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9910
9911         * reflection.c, reflection.h: do not free custom attrs that are cached.
9912         * icall.c: use braces to make code clearer.
9913
9914 2004-06-11  Martin Baulig  <martin@ximian.com>
9915
9916         * class.h (MonoInflatedField): New type.
9917         (MonoClassField): Replaced `MonoType *generic_type' with
9918         `MonoInflatedField *generic_info'.
9919
9920         * icall.c
9921         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
9922
9923 2004-06-11  Martin Baulig  <martin@ximian.com>
9924
9925         * reflection.c (mono_image_create_method_token): Correctly encode
9926         varargs methods.
9927
9928 2004-06-11  Martin Baulig  <martin@ximian.com>
9929
9930         * metadata.c (mono_metadata_parse_method_signature): When parsing
9931         a MethodDef which has VarArgs, also set sentinelpos if we don't
9932         have any parameters.
9933
9934 2004-06-11  Martin Baulig  <martin@ximian.com>
9935
9936         * verify.c (mono_method_verify): In CEE_CALL, use
9937         mono_method_get_signature() to get the method's signature, unless
9938         we're a PInvoke method.
9939
9940 2004-06-10  Jackson Harper  <jackson@ximian.com>
9941
9942         * assembly.c: Use <path>/lib/mono/gac for the extra paths
9943         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
9944         logical name as the supplied path is just a prefix to the gac not
9945         the direct path to it.
9946         
9947 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
9948
9949         * reflection.c: make the token for a created method match
9950         the token of the MethodBuilder it was created from
9951         (IKVM requires this behaviour now).
9952
9953 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
9954
9955         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
9956         reflection.c, socket-io.c: leak fixes.
9957
9958 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9959
9960         * icall.c: handle sentinel pos in vararg methods in position different
9961         from 0.
9962
9963 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9964
9965         * culture-info-tables.h: freshly generated.
9966
9967 2004-06-09  Martin Baulig  <martin@ximian.com>
9968
9969         * loader.c (mono_get_method_constrained): Call `mono_class_init
9970         (constrained_class)'.   
9971
9972 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
9973
9974         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
9975         any methods. Fixes #59629.
9976
9977 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9978
9979         * culture-info-tables.h: reflecting locale-builder updates.
9980
9981 2004-06-08  Dick Porter  <dick@ximian.com>
9982
9983         * object.h:
9984         * locales.c: Fixed compile warnings, including a real bug in
9985         CompareInfo_internal_compare.
9986         
9987 2004-06-08  Dick Porter  <dick@ximian.com>
9988
9989         * locales.c
9990         (ves_icall_System_Globalization_CompareInfo_internal_index):
9991         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9992         Double-check the resuls of usearches, because ICU currently
9993         ignores most of the collator settings here.  Fixes bug 59720.
9994         
9995 2004-06-08  Dick Porter  <dick@ximian.com>
9996
9997         * locales.c
9998         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9999         Fix memory leak and segfault-causing typo.  No idea how this one
10000         lasted so long without being noticed.
10001
10002 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10003
10004         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10005         any methods. Fixes #59629.
10006
10007 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10008
10009         * assembly.c:
10010         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10011         own the critical section before). Removed dead code (that's done
10012         in the preload hook).
10013
10014         (mono_assembly_load_with_partial_name): call the preload hook.
10015
10016 2004-06-08  Martin Baulig  <martin@ximian.com>
10017
10018         * metadata.c (mono_metadata_signature_alloc): Default
10019         `sentinelpos' to -1.
10020
10021         * reflection.c (mono_image_get_array_token): Likewise.
10022
10023 2004-06-08  Martin Baulig  <martin@ximian.com>
10024
10025         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10026
10027         * metadata.c (mono_metadata_parse_method_signature): When parsing
10028         a MethodDef which has VarArgs, set sentinelpos.
10029
10030         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10031         `gint16' since we're using -1 for non-varargs methods.
10032
10033         * reflection.c
10034         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10035         (method_encode_signature): Added varargs support.
10036         (method_builder_encode_signature): Likewise.
10037         (mono_image_get_varargs_method_token): New static method.
10038         (mono_image_create_method_token): New public method; this is
10039         called via an icall instead of mono_image_create_token() when
10040         calling a varargs method.       
10041
10042 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10043
10044         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10045
10046 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10047
10048         * culture-info-tables.h : Reflecting the latest locale-builder that
10049           fixed empty array representation ({} to {0}).
10050
10051 2004-06-07  Jackson Harper  <jackson@ximian.com>
10052
10053         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10054         looking up extra gac paths. This allows MONO_GAC_PATH to act
10055         exactly like a prefix.
10056         
10057 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10058
10059         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10060         type name before modifying it. Fixes #59405.
10061
10062 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10063
10064         * culture-info.h: added fields for "all datetime patterns".
10065         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10066           _construct_datetime_format ()): fill xxx_patterns fields.
10067         * object.h: added fields for "all datetime patterns" to
10068           MonoDateTimeFormatInfo.
10069         * culture-info-tables.h: reflecting locale-builder updates.
10070
10071 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10072
10073         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10074         the event has no add and remove methods. Fixes #59629.
10075
10076 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10077
10078         * object.c: Fixed possible integer overflow when allocating large
10079         strings.
10080
10081 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10082
10083         * culture-info-tables.h: reflecting locale-builder updates.
10084
10085 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10086
10087         * culture-info-tables.h: reflecting locale-builder updates.
10088
10089 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10090
10091         * culture-info-tables.h: reflecting locale-builder updates.
10092
10093 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10094
10095         * threads.c: Made Thread.Sleep abortable.
10096
10097 2004-06-02  Martin Baulig  <martin@ximian.com>
10098
10099         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10100
10101         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10102
10103 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10104
10105         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10106
10107 2004-05-30  Jackson Harper  <jackson@ximian.com>
10108
10109         * reflection.c: Do not hardcode assembly versions or public key
10110         tokens anymore. All of this except the corlib section was dead
10111         code anyways.
10112         
10113 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10114
10115         * object.c (mono_runtime_invoke_array): Automatically create boxed
10116         objects for byref valuetypes if needed. Fixes #59300.
10117         
10118         * object.c (mono_method_return_message_restore): Handle 
10119         MONO_TYPE_OBJECT as well.
10120
10121 2004-05-28  Jackson Harper  <jackson@ximian.com>
10122
10123         * reflection.c: The modified type encoding was causing build
10124         problems. Reverted for now.
10125         
10126 2004-05-28  Jackson Harper  <jackson@ximian.com>
10127
10128         * reflection.c/h: Take an assembly ref so that we dont create
10129         fully qualified names when encoding types in the same assembly as
10130         the custom attribute being emitted.
10131         * appdomain.c: Increment version number.
10132         
10133 2004-05-26  Duncan Mak  <duncan@ximian.com>
10134
10135         * icall.c
10136         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10137         Set the full version number (major, minor, build, revision).
10138
10139 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10140
10141         * marshal.c (emit_struct_conv): increment src/dst after blit
10142         (mono_marshal_get_managed_wrapper,
10143         mono_marshal_get_native_wrapper): make sure we have marshalling
10144         info before marshalling params (info computation affects
10145         blittable)
10146
10147         * class.c (class_compute_field_layout): correctly deal with
10148         blittable
10149         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10150         value types (as per what windows dows by default)
10151         (mono_class_setup_mono_type): System.ValueType is blittable
10152         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10153         blittable
10154
10155         * marshal.c (mono_marshal_load_type_info): flag types  as
10156         non-blittable if the native layout doesn't match the managed
10157         layout
10158
10159 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10160
10161         * appdomain.c: don't add stuff in the private search path that is
10162         above the application base. If application base is not set, there's
10163         no private search path.
10164
10165 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10166
10167         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10168         byref struct arguments in native->managed marshalling.
10169
10170 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10171
10172         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10173         cache methods using signature (special case for methods
10174         that are value type or string class)
10175         
10176         * image.c (mono_image_close): clean up allocated GSList's
10177         in runtime_invoke_cache.
10178
10179 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10180
10181         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10182         there's no MONO_CFG_DIR environment variable defined.
10183
10184 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10185
10186         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10187
10188 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10189
10190         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10191           is interrumped.
10192         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10193           before waiting for it, and call CloseHandle after the wait to unref it.
10194           This will make sure that handles are not disposed too early.
10195
10196 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10197
10198         * appdomain.c:
10199         * appdomain.h:
10200         * icall.c: removed
10201         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10202         needed now.
10203
10204         * object.c: se the application_base only for the domain that runs
10205         Main. Fixes bug #59216,
10206
10207 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10208
10209         * appdomain.c:
10210         * object.c: only the domain in which Main is run have
10211         SetupInformation.ConfigurationFile set, so moved a few lines from
10212         appdomain.c to object.c.
10213
10214 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10215
10216         * appdomain.c: we tried to load [name].(dll|exe), but according
10217         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10218         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10219         There's a test case attached to bug #58922.
10220
10221 2004-05-27  Dick Porter  <dick@ximian.com>
10222
10223         * icall.c:
10224         * file-io.c: Implemented icalls for locking and unlocking regions
10225         in a file.
10226         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10227         FALSE on error (fixes both compiler warning and real bug.)
10228
10229 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10230
10231         * culture-info-tables.h: reflecting locale-builder updates.
10232
10233           (Added missing ChangeLog entry for 05/26)
10234
10235 2004-05-27  Jackson Harper  <jackson@ximian.com>
10236
10237         * locales.c: Fix some cut and paste errors.
10238         
10239 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10240
10241         * mono-config.c: set the correct path for config. directory on windows.
10242
10243 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10244
10245         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10246           on win32.
10247
10248 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10249
10250         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10251         from pinvoke functions.
10252         
10253         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10254
10255 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10256
10257         * culture-info-tables.h: reflecting locale-builder updates.
10258
10259 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10260
10261         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10262         #59086.
10263
10264 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10265
10266         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10267         * icall.c: Modified icalls for RNG.
10268         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10269         Windows (CryptoAPI).
10270
10271 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10272
10273         * locales.c: Fix build.
10274
10275 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10276
10277         * culture-info-tables.h: reflecting locale-builder updates.
10278
10279 2004-05-25  Jackson Harper  <jackson@ximian.com>
10280
10281         * locales.c: When creating the current culture use the $LANGs
10282         specific culture. So DateTimeFormat and NumberFormat entries are created.
10283         
10284 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10285
10286         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10287         a char array as parameter.
10288
10289 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10290
10291         * image.c: In mono_image_open(), always use an absolute path name to
10292           look for already loaded images.
10293
10294 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10295
10296         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10297         missing in the windows build (like older cygwin include files).
10298
10299 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10300
10301         * icall.c: Fixed check for possible integer overflow in Buffer_
10302         BlockCopy icall. Replaced comments style // by /* */.
10303
10304 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10305
10306         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10307         
10308         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10309         check after MONO_VTADDR. Fixes pinvoke2.exe.
10310
10311         * marshal.h marshal.c metadata.h: Add beginnings of support for
10312         ftnptr -> delegate marshalling.
10313
10314 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10315
10316         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10317         * threads.c: Fix warnings.
10318
10319 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10320
10321         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10322         * icall.c: Registered icalls for Suspend and Resume.
10323         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10324           Thread.Abort.
10325         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10326         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10327         * process.c: Use WaitForSingleObjectEx.
10328         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10329           checkpoints.
10330         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10331           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10332           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10333           background threads. Added basic support for Abort in Windows.
10334           Start new threads using a managed delegate invoke wrapper. This wrapper
10335           has an interruption checkpoint that is needed since an interruption
10336           can be requested before the thread leaves the unmanaged code that starts 
10337           the thread.
10338         * marshal.c: Added interruption checkpoint after every native call, and
10339           also before managed calls for wrappers called from unmanaged code to
10340           go into managed code.
10341         * object.h: Added new field in MonoThread to keep track of interruption
10342           requests.
10343
10344 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10345
10346         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10347         calls.
10348
10349 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10350
10351         * appdomain.c:
10352         * assembly.c:
10353         * gc.c:
10354         * locales.c:
10355         * mono-config.c:
10356         * rand.c: getenv -> g_getenv (windows!)
10357
10358         * process.c: complete_path is also used on non-windows platforms.
10359
10360 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * icall.c: new signature for Process_Start.
10363
10364         * process.[ch]: new signature for Process_Start. If we're on windows
10365         and UseShellExecute is false, we have to search for the program by
10366         ourselves if we don't get a full path.
10367
10368 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10369
10370         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10371         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10372
10373 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10374
10375         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10376         Fixes bug #58373.
10377
10378 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10379
10380         * process.c: use double quotes to quote program name and arguments on
10381         windows. Fixes bug #58575.
10382
10383 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10384
10385         * file-io.c: don't return "." and ".." when using windows Find*File.
10386
10387 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10388
10389         * marshal.c: Don't pass wrappers to message init because method 
10390         addressed used to lookup metadata. part of remoting[2|3] fix.
10391
10392 2004-05-15  Jackson Harper  <jackson@ximian.com>
10393
10394         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10395         path is essentially the same as MONO_PATH except that it points to
10396         GACs instead of lib directories.
10397         * loader.h: The user gac is gone so we dont need function to
10398         enable/disable it.
10399         * mono-config.c: user gac option is now gone.
10400         
10401 2004-05-15  Jackson Harper  <jackson@ximian.com>
10402
10403         * culture-info.h: Make defines more consistent, add calendar data
10404         to the culture info table.
10405         * culture-info-tables.h: Add basic calendar data. Basically
10406         everyone gets default gregorian until all the data is
10407         updated.
10408         * locales.c: Use the new consistent defines. Set calendar data for
10409         culture info objects.
10410         * object.h: add a field for calendar data to CultureInfo
10411         
10412 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10413
10414         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10415         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10416         a signature.
10417         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10418         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10419         an extra param that is the pointer of the method to invoke. The IL for
10420         the invoke method is no longer specific to the method, but to the
10421         signature of the method. Thus, we can share the same code for multiple
10422         methods. This reduces the number of methods that have to be compiled.
10423
10424 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10425
10426         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10427
10428         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10429
10430         * icall.c: Optimize Buffer.BlockCopy.
10431
10432 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10433
10434         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10435         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10436         quote). Changed them to "MMMM yyyy".
10437
10438 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10439
10440         * rand.c
10441         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10442
10443 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10444
10445         * reflection.h: Updated after changes to managed structures.
10446
10447         * appdomain.c: Bump corlib version.
10448
10449 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10450
10451         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10452         windows.
10453
10454 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10455
10456         * Makefile.am: link to ../os/libmonoos.la on windows.
10457
10458         * assembly.c:
10459                 -If MONO_DEBUG, warn about non-existing directories in
10460                 MONO_PATH.
10461                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10462                 compile time variable.
10463                 -Removed init_default_path and call mono_set_rootdir from
10464                 libmonoos.a instead (windows only).
10465
10466         * assembly.h: declare mono_assembly_getrootdir().
10467
10468         * domain.c:
10469         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10470
10471         * loader.c: s/getenv/g_getenv/
10472
10473 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10474
10475         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10476
10477         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10478
10479         * metadata.h: Add new marshalling conversions.
10480
10481         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10482         function.
10483
10484         * reflection.c (mono_reflection_get_type): Lookup the type in all
10485         modules of a multi-module assembly. Fixes #58291.
10486
10487 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10488
10489         * threads.c: Before aborting a background, set the StopRequested
10490         state.  This avoids throwing the Abort exception.
10491         In mono_thread_manage, don't continue with the shutdown until all
10492         aborted threads have actually stopped.
10493
10494 2004-05-10  Jackson Harper  <jackson@ximian.com>
10495
10496         * locales.c: Remove the modifier from culture names.
10497         
10498 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10499
10500         * Makefile.am: monosn is not installed any more. It has been deprecated
10501         in favor of sn.
10502
10503 2004-05-07  Jackson Harper  <jackson@ximian.com>
10504
10505         * locales.c
10506         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10507         Fix array construction, add bailout if the length is 0.
10508
10509 2004-05-07  Dick Porter  <dick@ximian.com>
10510
10511         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10512         machine doesn't have a DNS entry.  Patch by Urs Muff
10513         (umuff@quark.com), fixes bug 57928.
10514
10515 2004-05-06  Jackson Harper  <jackson@ximian.com>
10516
10517         * reflection.c: Handle null PublicTokens properly. alloc mem for
10518         assembly names culture so we dont crash when freeing it.
10519         
10520 2004-05-06  Jackson Harper  <jackson@ximian.com>
10521
10522         * assembly.c: Check the usergac when loading with partial names.
10523         
10524 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10525
10526         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10527         does nothing for now (not required for Linux/Windows) but the class
10528         library can call it (and a newer or modified runtime could need it).
10529         * icall.c: Registred icall.
10530
10531 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10532
10533         * loader.c: prints a message on module loading error we set MONO_DEBUG
10534         environment variable.
10535
10536 2004-05-05  Jackson Harper  <jackson@ximian.com>
10537
10538         * appdomain.c: Handle PublicKeyToken=null properly.
10539         
10540 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10541
10542         * environment.c|h: Added icall ves_icall_System_Environment_
10543         GetOSVersionString to get the current OS version as a string.
10544         * icall.c: Registred icall.
10545
10546 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10547
10548         * object.c: in mono_object_get_virtual_method(), take into account that
10549         non-virtual methods don't have a slot in the vtable. Check needed when
10550         the object is a proxy.
10551
10552 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10553
10554         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10555         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10556
10557         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10558
10559         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10560         passed when a valuetype is expected.
10561
10562         * object.c (mono_unhandled_exception): Only set the exit code if the
10563         exception happens in the main thread. Fixes thread5.exe.
10564
10565         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10566         invalid names. Fixes #58047.
10567
10568 2004-05-03  Jackson Harper  <jackson@ximian.com>
10569
10570         * assembly.c: This line was committed accidently and is unneeded.
10571         
10572 2004-05-03  Jackson Harper  <jackson@ximian.com>
10573
10574         * icall.c: Add new icall for Assembly::LoadWithPartialName
10575         * assembly.c/.h: new function that probes the GAC to load partial
10576         assembly names by Paolo Molaro.
10577         
10578 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10579
10580         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10581         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10582         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10583         full type name.
10584
10585 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10586
10587         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10588         * reflection.c: fix bug when parsing a full type name and Version is not
10589         the last thing in the string.
10590
10591 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10592
10593         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10594         crashes when it is freed.
10595
10596 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10597
10598         * assembly.c: print the compat warning to stderr.
10599
10600 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10601
10602         * assembly.c (mono_assembly_load_references): Add a compatibility
10603         hack to run old applications that might be still referencing the
10604         3300-based assemblies, only do this for System.xxx.
10605
10606 2004-05-01  Jackson Harper  <jackson@ximian.com>
10607
10608         * appdomain.c: If the culture is neutral we set it to "".
10609         
10610 2004-04-29  Jackson Harper  <jackson@ximian.com>
10611
10612         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10613
10614 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10615  
10616         * string-icalls.c: added low overhead function for copying chars
10617         * icall.c: added needed icall for the above function
10618  
10619 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10620
10621         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10622         Environment.GetLogicalDrives.
10623
10624 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10625
10626         * rand.c: try and talk to egd or prngd
10627         for random bytes if opening devices fail.
10628
10629 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10630
10631         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10632         alignment for the type using the native alignment of its members 
10633         instead of using klass->min_align.
10634
10635         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10636
10637 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10638
10639         * file-io.c:
10640         * socket-io.c: added check for sys/aio.h.
10641
10642 2004-04-28  Dick Porter  <dick@ximian.com>
10643
10644         * threads.c: Don't abort a thread thats already aborting, when
10645         terminating everything.
10646
10647 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10648
10649         * icall.c: added 2 new async calls for Socket.
10650
10651         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10652         IO on *nix systems.
10653
10654         * threadpool.c: removed unused variable.
10655
10656 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10657
10658         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10659
10660 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10661
10662         * locales.c: put back string_invariant_tolower () and
10663         string_invariant_toupper ().
10664
10665 2004-04-26 David Waite <mass@akuma.org>
10666
10667         * file-io.h:
10668         * socket-io.h:
10669         * threads.h:
10670         * unicode.h: remove comma from end of enumeration declarations
10671
10672 2004-04-26 David Waite <mass@akuma.org>
10673
10674         * debug-mono-symfile.h:
10675         * decimal.c:
10676         * mono_debug.h:
10677         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10678
10679
10680 2004-04-26  Jackson Harper  <jackson@ximian.com>
10681
10682         * appdomain.c: Increment version number.
10683         
10684 2004-04-26  Jackson Harper  <jackson@ximian.com>
10685
10686         * appdomain.c: Set assembly references public token value when
10687         PublicKeyToken is specified, not the hash_value. Free public token
10688         values when free assembly name data. Previously the public key
10689         token was hex decoded, however we are using hex encoded public key
10690         tokens, so this is not neccasary.
10691         * assembly.c: Lookup assemblies in the gac if their public token
10692         value is set. Add function to allow enabling user gac
10693         lookups. Specify whether or not the assembly was loaded from the
10694         GAC. Compare full assembly names when checking the cache for
10695         assemblies (Temporarily disabled see comment in code). Remove
10696         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10697         specifies trace-loader they get extra info to stdout on the
10698         loading of assemblies.
10699         * image.h: Add a field for an assembly references public token
10700         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10701         whether an assembly has been loaded from the GAC.
10702         * image.c: Remove a corlib -> mscorlib name mapping.
10703         * loader.h: Add function to enable/disable the user gac.
10704         * mono-config.c: Check if the usergac is enabled in the config
10705         file.
10706         * icall.c: New icall to determine whether or not an assembly has
10707         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10708         * tabldefs.h: Add constant for assemblyref flag that specifies a
10709         full public key is used instead of a public token.
10710         * reflection.c: Remove mscorlib -> corlib mappings. Set
10711         PublicTokenValue instead of hash value. This value is a hex
10712         string so it does not need to be expanded.
10713
10714 2004-04-26  Martin Baulig  <martin@ximian.com>
10715
10716         * mono-debug-debugger.c (mono_debugger_initialize): Set
10717         `mono_debugger_initialized' before calling mono_debug_lock().
10718
10719 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
10720
10721         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10722           InternalToUpper/InternalToLower.
10723         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10724           removed invariant culture shortcut.  This is now done in managed code.
10725         * locales.c: (string_invariant_toupper/tolower) removed.
10726
10727 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10728
10729         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10730         Added Poll internal call.
10731
10732         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10733         call for Poll. Select was too heavy for polling a single socket.
10734
10735         * threadpool.[ch]: added mono_threadpool_cleanup.
10736         * threads.c: use it. Don't use Thread_Abort on windows.
10737
10738 2004-04-23  Martin Baulig  <martin@ximian.com>
10739
10740         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10741
10742 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
10743
10744         * icall.c: Registred new icalls for key pair protection and added an
10745         icall for Environment.GetFolderPath on Windows.
10746         * security.c|h: Added new icalls for key pair protection.
10747
10748 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10749
10750         * socket-io.c: don't display the non-supported family warning for known
10751         families. Now this is not displayed on windows when checking support
10752         for IPv4/IPv6.
10753
10754 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10755
10756         * class.c: don't display the layout warning for static fields.
10757
10758 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
10759
10760         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10761         * locales.c, locales.h: Added new icalls for culture-specific
10762         Char.ToLower and Char.ToUpper.
10763
10764 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10765
10766         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10767         by David Waite.
10768
10769 2004-04-20  Martin Baulig  <martin@ximian.com>
10770
10771         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10772         of the type name before passing it to mono_reflection_type_from_name().
10773
10774 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
10775
10776         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10777         encodings here. Fixes #56965.
10778
10779 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
10780
10781         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10782         fix test on strstr result not that I can see anything that
10783         relies on the result.
10784
10785 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
10786
10787         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10788         Fixes #57081.
10789
10790         * marshal.c (mono_marshal_get_string_encoding): New helper function.
10791
10792         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10793         function to determine which marshalling to use for strings. Fixes
10794         #56965.
10795
10796         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10797
10798         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10799
10800 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
10801
10802         * icall.c: #include mono-config.h
10803
10804 2004-04-15  Jackson Harper  <jackson@ximian.com>
10805
10806         * culture-info-tables.h: Fix date formats for en-US culture.
10807         
10808 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
10809
10810         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
10811         ThreadPool.SetMinThreads.
10812         * threadpool.c: Implemented ThreadPool.GetMinThreads and
10813         ThreadPool.SetMinThreads.
10814
10815 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10816
10817         * mono-config.c: also load the .config file in the directory
10818         where the assembly was found.
10819
10820 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10821
10822         * assembly.c: load per-assembly config files.
10823         * icall.c: decrapified code to get the config dir and moved to
10824         mono-config.c.
10825         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10826         per-assembly config files. When doing a dll map lookup give precedence
10827         to the per-assembly data.
10828
10829 2004-04-14  Martin Baulig  <martin@ximian.com>
10830
10831         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10832         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10833         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10834
10835         * mono-debugger-debugger.c: While the debugger is locked, remember
10836         whether the symbol tables have changes and send one single
10837         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10838
10839 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
10840
10841         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10842
10843         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
10844         function.
10845
10846         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10847         account when marshalling string arrays. Fixes #56965.
10848
10849 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
10850
10851         * icall.c: Add new icalls mapping for security.
10852         * security.c|h: Add internal calls for WindowsIdentity,
10853         WindowsImpersonationContext and WindowsPrincipal.
10854
10855 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
10856
10857         * class.c: Added comment to ensure the System.MonoDummy class
10858         is removed when no longer necessary
10859
10860 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
10861
10862         * appdomain.c: Pass arguments to the bootstraping exceptions to
10863         minimize JITed methods at boot
10864
10865         * metadata.c (mono_exception_from_name_two_strings): Allow for the
10866         second string to be null.
10867
10868         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10869         Change the protocol to minimize the JIT methods at startup.  Now
10870         it Returns the internal codepage, if the value of "int_code_page"
10871         is 1 at entry, and we can not compute a suitable code page
10872         number, returns the code page as a string.
10873
10874 2004-04-13  Jackson Harper  <jackson@ximian.com>
10875
10876         * culture-info-tables.h: Fix number of decimal digits for all
10877         english locales.
10878
10879 2004-04-13  Jackson Harper  <jackson@ximian.com>
10880
10881         * icall.c: Clairfy out of sync error message. It is not always
10882         your corlib that is out of sync.
10883
10884 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
10885
10886         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
10887         properties when only the set accessor is overriden. Fixes #55874.
10888
10889 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
10890
10891         * assembly.c (mono_assembly_load_references): Make this thread safe.
10892         Fixes #56327.
10893
10894 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
10895
10896         * monosn.c: Add missing initialization calls.
10897
10898 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
10899
10900         * locales.c:
10901         ves_icall_System_Globalization_CultureInfo_construct_number_format
10902         Fix g_assert so it compiles on fussier compilers re int/ptr
10903         mismatch
10904
10905 2004-04-08  Dick Porter  <dick@ximian.com>
10906
10907         * socket-io.h:
10908         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
10909         53992.  Also rearrange the code so that the internal calls return
10910         an error value and exceptions are thrown from managed code.
10911
10912         * icall.c: Add type info to the socket icalls.
10913
10914 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10915
10916         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
10917         owes me a beer.
10918
10919 2004-04-07  Martin Baulig  <martin@ximian.com>
10920
10921         * class.c (mono_class_from_generic_parameter): Don't default
10922         `klass->parent' to `mono_defaults.object_type'.
10923
10924 2004-04-07  Martin Baulig  <martin@ximian.com>
10925
10926         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10927         `param->pklass->reflection_info'.       
10928
10929 2004-04-07  Jackson Harper  <jackson@ximian.com>
10930
10931         * culture-info-tables.h: Fix date separator symbol.
10932         
10933 2004-04-07  Martin Baulig  <martin@ximian.com>
10934
10935         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
10936         from System.Type to System.MonoType.
10937
10938 2004-04-07  Martin Baulig  <martin@ximian.com>
10939
10940         * reflection.h
10941         (MonoReflectionGenericParam): Added `has_reference_type' and
10942         `has_value_type' fields.
10943
10944         * reflection.c (mono_image_get_generic_param_info): Encode the
10945         correct flags if we have the `class' or `struct' constraint.
10946
10947 2004-04-07  Martin Baulig  <martin@ximian.com>
10948
10949         * reflection.h
10950         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
10951
10952 2004-04-07  Jackson Harper  <jackson@ximian.com>
10953
10954         * appdomain.c: Revert extra patches, just wanted to bump the
10955         version number.
10956         
10957 2004-04-07  Jackson Harper  <jackson@ximian.com>
10958
10959         * Makefile.am: Add culture-info private headers.
10960         * icall.c: Add new icalls for contructing locales.
10961         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
10962         * locales.h: Declare new culture info construction methods.
10963         * object.h: Add new fields used to avoid the CultureMap to
10964         MonoCultureInfo.
10965         * culture-info.h: Definition of structs used in the culture info
10966         tables.
10967         * culture-info-tables.h: Autogenerated tables that contain culture
10968         info data. This file was generated with the locale-builder tool.
10969         * appdomain.c: Incement corlib version number.
10970         
10971 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
10972
10973         * appdomain.c: (mono_runtime_init) move mono_thread_init
10974         to before mono_object_new calls so critical sections
10975         are initialized before use.
10976
10977 2004-04-07  Martin Baulig  <martin@ximian.com>
10978
10979         * icall.c
10980         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
10981         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
10982         (ves_icall_MonoGenericParam_initialize): Removed.
10983         (monogenericparam_icalls): Removed.
10984         (generictypeparambuilder_icalls): Added new table for
10985         System.Reflection.Emit.GenericTypeParameterBuilder.
10986
10987         * reflection.c
10988         (mono_reflection_define_generic_parameter): Removed.
10989         (mono_reflection_initialize_generic_parameter): This is now called
10990         from GenericTypeParameterBuilder's .ctor.
10991
10992 2004-04-06  Martin Baulig  <martin@ximian.com>
10993
10994         * class.c (mono_class_init): Don't inflate nested classes in a
10995         generic instance.
10996         (mono_type_get_name_recurse): Include the generic arguments for
10997         generic instances and generic type declarations.
10998         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
10999         (_mono_class_get_instantiation_name): Removed.
11000         (mono_class_create_generic): Always use `gklass->name' as our name.
11001
11002         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11003
11004         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11005         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11006         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11007         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11008         closed generic methods here.
11009
11010         * reflection.c
11011         (mono_reflection_generic_inst_get_nested_types): Removed.
11012         (inflate_mono_method): Copy the generic parameters from the
11013         MonoMethodHeader into out MonoGenericMethod.
11014
11015 2004-04-06  Martin Baulig  <martin@ximian.com>
11016
11017         * row-indexes.h
11018         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11019
11020         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11021
11022         * reflection.c (build_compressed_metadata): If we have any entries
11023         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11024         set the header version to 1.1.
11025
11026 2004-04-06  Martin Baulig  <martin@ximian.com>
11027
11028         * class.c (mono_class_init): If we're a generic instance,
11029         initialize our nested classes, too.
11030         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11031         suffix. 
11032
11033 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11034
11035         * process.c: quote the argument passed to the shell on windows.
11036
11037 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11038
11039         * threads.c (mono_alloc_special_static_data): Allow this to be
11040         called during startup.
11041
11042 2004-04-02  Martin Baulig  <martin@ximian.com>
11043
11044         * icall.c
11045         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11046
11047 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11048
11049         * icall.c: Fix build.
11050
11051 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11052
11053         * Makefile.am: Added security.c|h.
11054         * icall.c: Added icall for get_UserName;
11055         * security.c: New file for security related icalls. Added function
11056         get_UserName for System.Environment (fix #56144).
11057         * security.h: New. Header file for security.c
11058
11059 2004-04-02  Dick Porter  <dick@ximian.com>
11060
11061         * icall.c: Deleted the icalls that were obsoleted some time ago
11062         by the ICU string code, and which were mixed into the icall
11063         rearranging.  Fixes bug 55969.
11064
11065         * string-icalls.h: 
11066         * string-icalls.c: Deleted the code that those icalls reference.
11067
11068 2004-04-01  Martin Baulig  <martin@ximian.com>
11069
11070         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11071
11072         * class.c (mono_class_from_generic_parameter): Don't set 
11073         TYPE_ATTRIBUTE_INTERFACE.
11074         (my_mono_class_from_generic_parameter): Likewise.
11075
11076 2004-04-01  Martin Baulig  <martin@ximian.com>
11077
11078         * loader.c (find_method): Added an optional `MonoClass *ic'
11079         argument to search in a specific interface.
11080         (mono_get_method_constrained): New public function.
11081
11082 2004-04-01  Martin Baulig  <martin@ximian.com>
11083
11084         * reflection.c (mono_image_get_generic_field_token): Use the
11085         `handleref' cache here.
11086
11087 2004-04-01  Martin Baulig  <martin@ximian.com>
11088
11089         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11090
11091         * reflection.c (create_generic_typespec): Use the `typespec' hash
11092         here, not the `typeref' one.    
11093
11094 2004-04-01  Martin Baulig  <martin@ximian.com>
11095
11096         * class.c (mono_class_inflate_generic_type): Moved the
11097         functionality into a new static inflate_generic_type() which
11098         returns NULL if it didn't do anything.  Only increment the
11099         `mono_stats.inflated_type_count' if we actually inflated
11100         something.
11101         (mono_class_get_full): Check the classes type to see whether we
11102         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11103
11104 2004-04-01  Jackson Harper  <jackson@ximian.com>
11105
11106         * reflection.c: Set culture for assembly references.
11107         
11108 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11109
11110         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11111
11112 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11113
11114         * assembly.c:
11115         (do_mono_assembly_open): the critical section also covers
11116         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11117
11118 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11119
11120         * threads.c:
11121         (mono_manage_threads): abort the background threads when finishing.
11122         Fixes bug #47232.
11123
11124 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11125
11126         * gc.c: only close the done_event handle if there was no timeout.
11127         C-ified comments.
11128
11129 2004-03-30  Martin Baulig  <martin@ximian.com>
11130
11131         * icall.c (icall_entries): It's called "System.Activator", not
11132         "System.Activation".    
11133
11134 2004-03-30  Martin Baulig  <martin@ximian.com>
11135
11136         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11137         (mono_class_create_from_typespec): Likewise.
11138
11139 2004-03-30  Martin Baulig  <martin@ximian.com>
11140
11141         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11142         `has_ctor_constraint' and `initialized'.
11143
11144 2004-03-30  Martin Baulig  <martin@ximian.com>
11145
11146         * reflection.c (encode_new_constraint): New static function to add
11147         the constructor constraint attribute to a type parameter.
11148         (encode_constraints): Call encode_new_constraint() if necessary.
11149
11150         * reflection.h
11151         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11152
11153         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11154         
11155 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11156
11157         * reflection.c, icall.c: add support for pinning variables. 
11158
11159 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11160
11161         * marshal.c (mono_marshal_get_managed_wrapper):
11162         init bool local with zero rather than null.
11163
11164 2004-03-29  Martin Baulig  <martin@ximian.com>
11165
11166         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11167         the "official" behavior here.
11168         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11169
11170 2004-03-29  Martin Baulig  <martin@ximian.com>
11171
11172         * icall.c: Reflect latest API changes.
11173
11174 2004-03-29  Martin Baulig  <martin@ximian.com>
11175
11176         * loader.c (mono_get_method_from_token): Also call
11177         mono_metadata_load_generic_params () for abstract and interface
11178         methods; replace the type arguments in the method signature with
11179         the ones which are loaded from the metadata.
11180
11181 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11182
11183         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11184         of the lock is not the current thread. MS.NET don't do it, in spite of
11185         what the documentation says. See bug #56157.
11186
11187 2004-03-28  Martin Baulig  <martin@ximian.com>
11188
11189         * class.c (mono_class_init): Don't call init_properties() and
11190         init_events() for generic instances; set `prop->parent' when
11191         inflating properties.
11192
11193         * reflection.c (mono_generic_inst_get_object): Call
11194         `mono_class_init (ginst->klass)'.
11195         (mono_type_get_object): Only create a MonoGenericInst if your
11196         generic type is a TypeBuilder.
11197         (do_mono_reflection_bind_generic_parameters): Only set
11198         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11199
11200 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11201
11202         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11203         Fixes #56091.
11204
11205 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11206
11207         * icall.c: added Kill_internal icall.
11208         * process.[ch]: added Kill_internal icall.
11209
11210 2004-03-25  Martin Baulig  <martin@ximian.com>
11211
11212         * class.h (MonoStats): Added `generic_instance_count',
11213         `inflated_method_count', `inflated_type_count' and
11214         `generics_metadata_size'.       
11215
11216 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11217
11218         * reflection.c: no warnings now.
11219
11220 2004-03-25  Martin Baulig  <martin@ximian.com>
11221
11222         * class.c (mono_class_get_full): New public function; does a
11223         mono_class_get(), but also takes a `MonoGenericContext *'.
11224
11225         * loader.c (mono_field_from_memberref): Renamed to
11226         `field_from_memberref', made static and added `MonoGenericContext *'
11227         argument.
11228         (mono_field_from_token): Added `MonoGenericInst *' argument.
11229         (method_from_memberef): Likewise.
11230         (mono_get_method_from_token): Likewise.
11231         (mono_get_method_full): New public function; does a
11232         mono_get_method(), but also takes a `MonoGenericContext *'.
11233
11234         * verify.c (mono_method_verify): Get the method's generic context
11235         and pass it to mono_field_from_token(), mono_get_method_full() and
11236         mono_class_get_full().
11237
11238 2004-03-25  Martin Baulig  <martin@ximian.com>
11239
11240         * class.c (mono_class_inflate_generic_type): Take a
11241         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11242         `MonoGenericMethod *'.
11243
11244 2004-03-25  Martin Baulig  <martin@ximian.com>
11245
11246         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11247         instead of the MonoGenericMethod here.
11248
11249 2004-03-25  Martin Baulig  <martin@ximian.com>
11250
11251         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11252         each time we create a new MonoGenericInst, we also create a new
11253         context which points back to us.
11254
11255         * class.c (inflate_method): Use `ginst->context' instead of
11256         creating a new context.
11257
11258         * loader.c (method_from_memberref): Use
11259         `klass->generic_inst->context' instead of creating a new context.
11260
11261 2004-03-25  Martin Baulig  <martin@ximian.com>
11262
11263         * class.h (MonoGenericContext): New struct.
11264         (MonoGenericMethod): Removed `generic_inst'.
11265
11266         * class.c (mono_class_inflate_generic_method): Take a
11267         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11268
11269 2004-03-25  Martin Baulig  <martin@ximian.com>
11270
11271         * loader.h (MonoMethodInflated): New typedef.
11272
11273         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11274         `generic_param_count' consume just 30 bits, added `is_inflated'
11275         and `has_type_parameters' flags (one bit each).
11276
11277         * class.c (mono_class_inflate_generic_method): Create a
11278         MonoMethodInflated instead of a MonoMethodNormal and set
11279         `is_inflated' in the method signature.
11280
11281         * class.h (MonoGenericMethod): Removed `generic_method'.
11282
11283 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11284
11285         * image.c: Make sure the name of a MonoImage is always an absolute path.
11286           This fixes bug #54415.
11287
11288 2004-03-24  Martin Baulig  <martin@ximian.com>
11289
11290         * class.c (mono_class_setup_vtable): If we're a generic instance,
11291         use our generic type's vtable size.
11292
11293 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11294
11295         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11296         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11297         problems.
11298
11299 2004-03-23  Martin Baulig  <martin@ximian.com>
11300
11301         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11302         `MonoEvent *events'.
11303
11304         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11305         (typebuilder_icalls): Added "get_event_info"; calls
11306         mono_reflection_event_builder_get_event_info(). 
11307
11308         * reflection.c (mono_reflection_generic_inst_initialize): Added
11309         `MonoArray *events'.
11310         (mono_reflection_event_builder_get_event_info): New function.
11311
11312 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11313
11314         * object.h: add mono_type_initialization_init
11315
11316         * object.c (mono_runtime_class_init): 
11317         implement class constructor synchronization rules
11318         to cope with threading issues.  
11319         add mono_type_initialization_init
11320
11321         * appdomain.c (mono_runtime_init): call 
11322         mono_type_initialization_init
11323
11324         * class.h: removing initializing field from MonoVTable
11325
11326 2004-03-23  Martin Baulig  <martin@ximian.com>
11327
11328         * class.c (my_mono_class_from_generic_parameter): Use
11329         `param->name' if it's not NULL. 
11330
11331 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11332
11333         * class.c: do not insert non-virtual methods in the vtable.
11334         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11335         that means the method is non-virtual. This never would have
11336         happened before.
11337
11338 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11339
11340         * profiler.c: Added lock for accessing coverage_hash.
11341
11342 2004-03-22  Martin Baulig  <martin@ximian.com>
11343
11344         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11345         `method->method->signature->generic_param_count != 0' to make it
11346         work for interface methods.
11347
11348 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11349
11350         * process.c: quote the string passed to the shell using g_shell_quote.
11351
11352 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11353
11354         * threads.c:
11355         (mono_threads_manage): don't remove the finalizer thread and self
11356         from the threads hash table so that mono_thread_manage can be called
11357         more than once.
11358
11359 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11360
11361         * process.c: quote the arguments when UseShellExecute is true. Fixes
11362         bug #55790.
11363
11364 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11365
11366         * threads.c: set mono_thread_detach as a cleanup routine for every
11367         thread. This way it's always executed upon thread termination, either
11368         aborted or finished normally. No more xsp hangs!
11369
11370 2004-03-17  Martin Baulig  <martin@ximian.com>
11371
11372         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11373         `int count_nested' and a `MonoType **nested'.
11374
11375         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11376         most of the functionality into a new static
11377         do_mono_reflection_bind_generic_parameters() and don't take a
11378         `MonoType *nested_in' argument any more.  Don't compute nested
11379         types here.
11380         (mono_reflection_generic_inst_get_nested_types): New public method
11381         to get nested types.
11382
11383         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11384         we're a nested class.
11385
11386         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11387         mono_reflection_generic_inst_get_nested_types() to compute the
11388         nested types.
11389
11390 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11391
11392         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11393         descriptive error message under windows.
11394         
11395 2004-03-17  Martin Baulig  <martin@ximian.com>
11396
11397         * class.c (dup_type): Added `const MonoType *original' argument;
11398         copy the attrs from the original type.
11399
11400 2004-03-17  Martin Baulig  <martin@ximian.com>
11401
11402         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11403         `m->generic_inst_cache' here.
11404
11405 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11406
11407         * exception.h exception.c: Add stack_overflow_exception.
11408
11409 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11410
11411         * threadpool.c:
11412         (overlapped_callback): call SetEvent *after* invoking the callback.
11413         No need to call CloseHandle.
11414
11415 2004-03-16  Martin Baulig  <martin@ximian.com>
11416
11417         * reflection.c (mono_image_get_fieldref_token): Take a
11418         `MonoReflectionField *' instead of a `MonoClassField *' and a
11419         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11420
11421 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11422
11423         * appdomain.c: don't add the culture to the filename we're looking for
11424         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11425
11426 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11427
11428         * locales.c: don't ignore symbols when doing case insensitive compares.
11429         Thanks Dick! Fixes bug #54046.
11430
11431         * threads.c: surround 'threads' usage with enter/leave in
11432         mono_thread_manage.
11433
11434 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11435
11436         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11437         implicitly marshalled as [Out]. Fixes #55450.
11438
11439         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11440         an exception.
11441
11442 2004-03-16  Martin Baulig  <martin@ximian.com>
11443
11444         * class.c (mono_class_from_generic_parameter): Use the actual
11445         parameter name. 
11446
11447 2004-03-16  Martin Baulig  <martin@ximian.com>
11448
11449         * reflection.c (type_get_signature_size): New static function.
11450         Compues the size of the type in a method signature.
11451         (method_get_signature_size): New static function; calls
11452         type_get_signature_size() to compute the actual size of the
11453         method's signature.
11454         (method_encode_signature): Use method_get_signature_size() to get
11455         the signature's size rather than using `nparams * 10'.
11456
11457 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11458
11459         * file-io.h: define here WapiOverlapped on windows. I don't want the
11460         regular OVERLAPPED one.
11461
11462         * file-io.c:
11463         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11464         Disabling AIO on windows.
11465
11466 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11467
11468         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11469         bug #55385.
11470
11471 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11472
11473         * appdomain.c: upgraded corlib version.
11474
11475         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11476         and BeginWrite. Allow opening files for asynchrnous operations.
11477
11478         * file-io.h: new struct that maps FileStreamAsyncResult.
11479         * icall.c: added new icalls.
11480         * process.[ch]: support setting child process environment variables
11481         and use the SHELL or COMSPEC when UseShellExecute is true.
11482
11483         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11484         callback for async. IO is here and also BindHandle.
11485
11486         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11487         from here.
11488
11489 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11490
11491         * reflection.c (create_custom_attr): Allow len == 0.
11492
11493         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11494         computation on big-endian machines.
11495
11496 2004-03-13  Martin Baulig  <martin@ximian.com>
11497
11498         * class.h (MonoGenericInst): Added `int count_ifaces'.
11499
11500         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11501         `ginst->count_ifaces' instead `klass->interface_count' since we
11502         may get called before the vtable is created.
11503
11504         * loader.c (mono_method_get_param_names): If we're a generic
11505         instance, return and don't initialize the class.
11506
11507         * reflection.c (mono_reflection_setup_generic_class): Don't call
11508         ensure_runtime_vtable().
11509         (mono_reflection_bind_generic_parameters): Set
11510         `ginst->count_ifaces'.
11511
11512 2004-03-11  Jackson Harper <jackson@ximian.com>
11513
11514         * icall.c:
11515         * unicode.c:
11516         * unicode.h: Remove unused System.Char icalls.
11517         
11518 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11519
11520         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11521         code when we P/Invoke the first library in Windows.Forms, instead
11522         of when we first open the assembly.
11523
11524         * assembly.c: Drop the lookup from here.
11525
11526 2004-03-10  Martin Baulig  <martin@ximian.com>
11527
11528         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11529         class for properties, fields and events.  Finally fixes #54945.
11530
11531 2004-03-10  Martin Baulig  <martin@ximian.com>
11532
11533         * metadata.c (mono_metadata_class_equal): New static function;
11534         checks whether two generic instances or two generic parameters are
11535         equal.
11536         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11537         compare classes.        
11538
11539 2004-03-10  Martin Baulig  <martin@ximian.com>
11540
11541         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11542
11543         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11544         argument and write it into the `reflection_info' field.
11545
11546         * icall.c
11547         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11548         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11549
11550 2004-03-09  Jackson Harper  <jackson@ximian.com>
11551
11552         * char-conversions.h: use 8 bits for numeric data its all we need
11553         * icall.c: numeric data is only 8 bits now.
11554
11555 2004-03-09  Martin Baulig  <martin@ximian.com>
11556
11557         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11558
11559         * class.c (init_properties, init_events): Initialize the new
11560         `parent' field.
11561
11562         * reflection.c (typebuilder_setup_properties): Likewise.
11563         (typebuilder_setup_events): Likewise.
11564
11565         * reflection.h (MonoEventInfo): Replaced `parent with
11566         `declaring_type' and `reflected_type'.
11567
11568         * icall.c (ves_icall_get_property_info): Distinguish between
11569         declaring and reflected type.
11570         (ves_icall_get_event_info): Likewise.
11571
11572 2004-03-09  Martin Baulig  <martin@ximian.com>
11573
11574         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11575         (ves_icall_Type_GetField): Correctly set field->klass.
11576
11577 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11578
11579         * loader.h: Fix warning.
11580
11581 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11582
11583         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11584         library routine if present.  Notice that it will still continue
11585         executing even if its missing, for those working on the Gtk#
11586         edition of Windows.Forms.
11587
11588         * assembly.c (do_mono_assembly_open): If loading the
11589         System.Windows.Forms call mono_loader_wini_init.
11590
11591 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11592
11593         * class.h: Added MonoRemoteClass struct.
11594         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11595         function for MonoStrings.
11596         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11597         Added internal call for getting the proxy type.
11598         * marshal.c: Get the type of transparent proxies from its remote_class.
11599         Added methods that generate the IL for type checks and casts:
11600         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11601         mono_marshal_get_proxy_cancast.
11602         * marshal.h: Declaration of the previous new methods.
11603         * object.c: Added new moethods for creating and updating MonoRemoteClass
11604         instances: mono_remote_class, mono_upgrade_remote_class, 
11605         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11606         * verify.c: FIx transparent_proxy_fields layout.
11607         * appdomain.c: Bump corlib version.
11608
11609 2004-03-04  Jackson Harper  <jackson@ximian.com>
11610
11611         * icall.c: Add icall to access char conversion tables.
11612         * char-conversions.h: Character conversion tables.
11613         * Makefile.am: Add char-conversions.h private header file.
11614         
11615 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11616
11617         * appdomain.c (unload_thread_main): Increase unloading timeout to
11618         10 sec as a temporary workaround for Nant problems.
11619
11620 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11621
11622         * gc.c: Add checks for GC_enable and GC_disable.
11623
11624         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11625         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11626         (bug #54988).
11627         
11628 2004-02-27  Martin Baulig  <martin@ximian.com>
11629
11630         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11631         `MonoReflectionType *' instead of a `MonoType *'.
11632
11633 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11634
11635         * gc.c (run_finalize): Avoid finalizing the object representing the
11636         finalizer thread.
11637         (finalizer_thread): Fix warning.
11638
11639 2004-02-25  Martin Baulig  <martin@ximian.com>
11640
11641         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11642         argument for nested types.
11643         (mono_class_create_generic): Added support for nested generictypes.
11644
11645         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11646         `GList *nested'.
11647
11648         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11649
11650         * reflection.c (method_encode_signature): Increase the minimum
11651         value of `size' from 10 to 11.
11652         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11653         and `MonoType **types' arguments instead of the `MonoArray
11654         *types'; added `MonoType *nested_in'.  Recursively instantiate
11655         nested classes. 
11656
11657 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11658
11659         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11660         stack_overflow_ex members which are used by exception handling.
11661
11662         * appdomain.c (mono_runtime_init): Initialize the new members.
11663
11664         * gc.c (mono_gc_enable): New helper function.
11665         * gc.c (mono_gc_disable): New helper function.
11666
11667 2004-02-23  Martin Baulig  <martin@ximian.com>
11668
11669         * icall.c: I must have been really stupid - make it actually work
11670         this time ;-)
11671
11672 2004-02-23  Martin Baulig  <martin@ximian.com>
11673
11674         * loader.c (method_from_memberref): Only inflate the method if
11675         it's in another klass.
11676
11677 2004-02-23  Martin Baulig  <martin@ximian.com>
11678
11679         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11680         (mono_class_init): If we're a generic instance and an interface,
11681         compute `class->interface_id'; also create `class->interfaces'
11682         here and inflate them.
11683
11684         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11685         `ginst->is_open'.
11686         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11687
11688         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11689
11690 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
11691
11692         * reflection.c (method_encode_code): Improved the error message
11693         generated by the exception.
11694
11695 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11696
11697         * icall.c: Martin did not do what he said in the ChangeLog for
11698         2004-02-18, but put back the changes for properties and events.
11699         Commenting those changes out again and adding comment to bug #54518.
11700         
11701         * process.c: removed warning.
11702
11703 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
11704
11705         * marshal.c (emit_struct_conv): Print an error message instead of
11706         asserting when a type does not have the StructLayout attribute.
11707
11708 2004-02-20  Martin Baulig  <martin@ximian.com>
11709
11710         * reflection.c (mono_type_get_object): Also use the cache for
11711         generic instances.
11712         (mono_reflection_bind_generic_parameters): Always compute
11713         `ginst->ifaces'.        
11714
11715 2004-02-20  Martin Baulig  <martin@ximian.com>
11716
11717         * class.h (MonoGenericMethod): Removed `klass'.
11718
11719         * class.c (mono_class_inflate_generic_method): Added `MonoClass
11720         *klass' argument.
11721
11722 2004-02-20  Martin Baulig  <martin@ximian.com>
11723
11724         * reflection.c (method_encode_methodspec): Actually use the
11725         uninflated signature for the memberref.
11726
11727 2004-02-20  Martin Baulig  <martin@ximian.com>
11728
11729         * class.h (MonoGenericMethod): Removed `declaring'.
11730
11731         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11732         is NULL, compute it here.
11733
11734 2004-02-20  Martin Baulig  <martin@ximian.com>
11735
11736         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11737
11738         * metadata.c (mono_metadata_generic_inst_hash): New method.
11739         (mono_metadata_generic_inst_equal): New method.
11740
11741         * reflection.c (mono_reflection_bind_generic_parameters): Use the
11742         `klass->image->generic_inst_cache' cache to avoid creating
11743         duplicate MonoGenericInst's.
11744
11745         * class.c (mono_class_inflate_generic_type): Use the cache.
11746
11747 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11748
11749         * object.c: fixed gc descriptor calculation for embedded valuetypes.
11750
11751 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11752
11753         * icall.c: added Socket.WSAIoctl icall.
11754
11755         * socket-io.[ch]: implemented
11756         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11757
11758 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
11759
11760         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11761
11762 2004-02-18  Urs C Muff  <umuff@quark.com>
11763
11764         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11765         this work on PPC and other big-endian architectures.
11766
11767         * debug-mono-symfile.h: Prepended the names of all the `guint32'
11768         fields with an underscore to make sure they're only accessed by
11769         the read32() macro.
11770
11771 2004-02-18  Martin Baulig  <martin@ximian.com>
11772
11773         * icall.c: Put the klass->refclass changes back for methods and
11774         fields, but not for properties and events.  We're currently not
11775         distinguishing between DeclaringType and ReflectedType for
11776         properties and events, that's what caused the regressions.
11777
11778 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11779
11780         * object.c:
11781         (mono_async_result_new): the handle can be NULL.
11782
11783         * threadpool.c: Use an event instead of a semaphore, don't initialize
11784         it until needed. This saves quite a few semaphores from being created
11785         when using the threadpool.
11786
11787 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
11788
11789         * object.c (mono_string_is_interned_lookup): Fix interning of long
11790         strings. Fixes #54473.
11791
11792         * domain.c (ldstr_equal): Optimize if the two strings are equal.
11793
11794         * icall.c: Revert the klass->refclass changes since they introduce
11795         regressions (bug #54518).
11796
11797 2004-02-18  Martin Baulig  <martin@ximian.com>
11798
11799         * class.c (mono_class_init): If we're a generic instance and don't
11800         come from a TypeBuilder, inflate our members here.
11801         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11802         (mono_class_create_generic): New public method.
11803         (mono_class_initialize_generic): Removed.
11804         (get_instantiation_name): Renamed to
11805         _mono_class_get_instantiation_name() and made it public.
11806
11807 2004-02-18  Martin Baulig  <martin@ximian.com>
11808
11809         * class.c (mono_class_inflate_generic_type): Clear the new
11810         instance's `nginst->klass' when inflating a generic instance.
11811         (mono_class_is_subclass_of): Added (basic) support for generic
11812         instances.
11813
11814 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11815
11816         * appdomain.h, domain.c: use a MonoCodeManager instead of a
11817         MonoMempool to hold compiled native code.
11818
11819 2004-02-17  Martin Baulig  <martin@ximian.com>
11820
11821         * class.h (MonoDynamicGenericInst): Added `count_properties' and
11822         `properties'.
11823
11824         * reflection.c (mono_reflection_generic_inst_initialize): Added
11825         `MonoArray *properties' argument.
11826
11827         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
11828
11829 2004-02-17  Martin Baulig  <martin@ximian.com>
11830
11831         * icall.c (ves_icall_Type_GetFields): Renamed to
11832         ves_icall_Type_GetFields_internal() and added a
11833         `MonoReflectionType *rtype' argument; pass it to
11834         mono_field_get_object() to set the field's "reflected" type.
11835         (ves_icall_Type_GetConstructors): Likewise.
11836         (ves_icall_Type_GetEvents): Likewise.
11837         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11838         argument; pass it to mono_method_get_object() to set the method's
11839         "reflected" type.       
11840
11841 2004-02-17  Martin Baulig  <martin@ximian.com>
11842
11843         * class.h (MonoDynamicGenericInst): New type.
11844         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11845
11846         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11847         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11848         (ves_icall_MonoGenericInst_GetFields): New interncall.
11849
11850         * class.c (mono_class_from_generic): Don't call
11851         mono_class_initialize_generic() if this is a dynamic instance;
11852         ie. it's being created from a TypeBuilder.
11853         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11854         `class->byval_arg.type'.
11855
11856         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11857         to `inflate_method' and made static.
11858         (mono_reflection_inflate_field): Removed.
11859         (mono_reflection_generic_inst_initialize): New public method.
11860
11861         * reflection.h (MonoReflectionGenericInst): Removed `methods',
11862         `ctors' and `fields'; added `initialized'.
11863
11864 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
11865
11866         * debug-helpers.c (mono_method_full_name): Fix output for empty
11867         namespaces.
11868
11869 2004-02-12  Martin Baulig  <martin@ximian.com>
11870
11871         * class.h (MonoClassField): Added `MonoType *generic_type'.
11872
11873         * reflection.c (mono_image_get_fieldref_token): Added support for
11874         instantiated generic types.
11875         (field_encode_inflated_field): Removed.
11876         (mono_image_get_inflated_field_token): Removed.
11877         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
11878
11879         * reflection.h (MonoReflectionInflatedField): Removed.
11880
11881 2004-02-12  Martin Baulig  <martin@ximian.com>
11882
11883         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
11884         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
11885
11886         * reflection.c (mono_image_get_methodspec_token): Take a
11887         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
11888         (mono_image_create_token): Check whether we have a
11889         `method->signature->gen_method' and call
11890         mono_image_get_methodspec_token() if appropriate.
11891         (inflated_method_get_object): Removed.
11892         (mono_reflection_bind_generic_method_parameters): Return a
11893         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
11894         (mono_reflection_inflate_method_or_ctor): Likewise.
11895
11896         * reflection.h (MonoReflectionInflatedMethod): Removed.
11897
11898 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
11899
11900         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
11901         for custom valuetype marshalling.
11902
11903         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
11904
11905 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11906
11907         * icall.c: fixed WSAGetLastError_internal name.
11908
11909 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
11910
11911         * threads.c (mono_thread_attach): Allow this to be called multiple
11912         times for a thread.
11913         
11914         * threads.c (build_wait_tids): Do not wait for ourselves.
11915
11916         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
11917         appdomain list is empty.
11918
11919         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
11920         memory returned by mono_string_builder_to_utf16, since it points into
11921         managed memory. Thanks to Bernie Solomon for noticing this.
11922
11923         * icall.c: Add AppDomainSetup icalls.
11924
11925         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
11926
11927         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
11928         types.
11929
11930         * reflection.c (reflection_methodbuilder_to_mono_method): Save
11931         custom attributes to the method_aux struct. Also fix array indexes etc.
11932
11933         * loader.c (mono_method_get_param_names): Make dynamic case work again.
11934         
11935 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
11936
11937         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
11938         (both static and runtime) and reduce startup time.
11939
11940 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
11941
11942         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
11943         AsAny marshalling conversion instead of crashing.
11944
11945         * marshal.c: Fix warnings.
11946
11947 2004-02-09  Martin Baulig  <martin@ximian.com>
11948
11949         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
11950
11951         * reflection.h (MonoReflectionInflatedMethod): Removed the
11952         `declaring' field, it's now in the unmanaged MonoGenericMethod.
11953
11954         * reflection.c (method_encode_methodspec): Removed the `method'
11955         argument; we get it from `gmethod->declaring'.
11956         (inflated_method_get_object): Removed the `declaring' argument.
11957
11958 2004-02-09  Martin Baulig  <martin@ximian.com>
11959
11960         * class.h (MonoGenericMethod): New type.
11961         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
11962         `generic_method'.
11963
11964         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
11965         a `MonoGenericMethod *gen_method' one.
11966
11967         * class.c (mono_class_inflate_generic_type): Take an additional
11968         `MonoGenericMethod * argument.  This is only non-NULL if we're
11969         inflating types for a generic method.   
11970         (mono_class_inflate_generic_signature): Renamed to
11971         inflate_generic_signature() and made static; take a
11972         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11973         (inflate_generic_header): Take a `MonoGenericMethod *' argument
11974         instead of a `MonoGenericInst *' one.
11975         (mono_class_inflate_generic_method): Likewise.
11976
11977         * reflection.c (encode_generic_method_sig): Take a
11978         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11979         (method_encode_methodspec): Likewise.
11980         (inflated_method_get_object): Likewise. 
11981
11982         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
11983         field with a `MonoGenericMethod *gmethod' one.  
11984
11985 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
11986
11987         * class.h (mono_class_has_parent): add parens to expansion
11988         so you can ! this.
11989
11990 2004-02-08  Martin Baulig  <martin@ximian.com>
11991
11992         * image.h (MonoImage): Removed `generics_cache'.
11993
11994         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
11995         instead of a `MonoType *' argument; removed the `inflate_methods'
11996         argument.  Don't inflate methods here.
11997
11998         * loader.c (find_method): If it's a generic instance, call
11999         mono_class_init() on the `sclass->generic_inst->generic_type'.
12000
12001         * metadata.c (mono_type_size): Make this work on uninitialized
12002         generic instances; call it on the `ginst->generic_type's class.
12003
12004         * reflection.c (mono_reflection_bind_generic_parameters): Call
12005         mono_class_from_generic() to create the `ginst->klass'.
12006
12007 2004-02-08  Martin Baulig  <martin@ximian.com>
12008
12009         * class.h (MonoClass): Changed type of `generic_inst' from
12010         `MonoType *' to `MonoGenericInst *'.
12011
12012 2004-02-08  Martin Baulig  <martin@ximian.com>
12013
12014         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12015         mono_type_get_object(), this is now creating a `MonoGenericInst'
12016         for MONO_TYPE_GENERICINST.
12017         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12018         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12019
12020         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12021         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12022         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12023         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12024         and reflected type.
12025
12026         * reflection.h (MonoReflectionInflatedMethod): Removed
12027         `declaring_type' and `reflected_type'.
12028
12029 2004-02-08  Martin Baulig  <martin@ximian.com>
12030
12031         * class.h (MonoGenericInst): Added `MonoType *parent' and
12032         `MonoType **ifaces'.
12033
12034         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12035         `parent' and `interfaces'.
12036
12037         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12038         `MonoType *' argument and return a `MonoType *'.
12039
12040         * icall.c
12041         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12042         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12043
12044 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12045
12046         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12047         valuetype marshalling.
12048
12049 2004-02-06  Martin Baulig  <martin@ximian.com>
12050
12051         * class.c
12052         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12053         (my_mono_class_from_generic_parameter): Likewise.
12054
12055 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12056
12057         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12058         contents of the symbol files lazily.
12059
12060         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12061
12062         * threads.h threads.c icall.c: New icalls for getting and setting the
12063         threads name.
12064
12065 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12066
12067         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12068         Raise an exception when the domain is not found.
12069
12070 2004-02-03  Martin Baulig  <martin@ximian.com>
12071
12072         * reflection.c (mono_image_get_methodspec_token): Use the
12073         uninflated signature; fixes gen-33.
12074
12075 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12076
12077         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12078         the finalizer code can use thread functionality.
12079
12080         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12081         the finalizer thread.
12082
12083         * threads.c: Make some functions more robust.
12084
12085         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12086
12087         * metadata.h: Add new marshalling conventions.
12088
12089         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12090         stringbuilder marshalling. Fixes #53700.
12091
12092         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12093
12094         * reflection.c (mono_image_get_type_info): Save declarative security
12095         info.
12096
12097         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12098         unmanaged fields as well.
12099
12100         * appdomain.c: Bump corlib version.
12101
12102 2004-02-01  Martin Baulig  <martin@ximian.com>
12103
12104         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12105         method type arguments.  
12106
12107 2004-01-30  Duncan Mak  <duncan@ximian.com>
12108
12109         * marshal.h: Add prototype for
12110         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12111         and
12112         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12113         fix the build.
12114
12115 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12116
12117         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12118         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12119
12120 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12121
12122         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12123         custom marshalling of valuetypes.
12124
12125         * marshal.c: Fix some warnings.
12126
12127 2004-01-29  Martin Baulig  <martin@ximian.com>
12128
12129         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12130         for generic method parameters.
12131
12132         * reflection.c (method_encode_methodspec): Write the uninflated
12133         signature into the methodspec table.
12134         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12135         is always the uninflated method.
12136         (reflection_methodbuilder_to_mono_method): Copy the generic
12137         parameters from the MethodBuilder into `header->gen_params'.
12138
12139 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12140
12141         * class.c (mono_class_from_generic_parameter): Fix warning.
12142
12143 2004-01-27  Martin Baulig  <martin@ximian.com>
12144
12145         * class.c (mono_class_from_generic_parameter): Don't create
12146         `klass->methods' here.  
12147
12148 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12149
12150         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12151         extension since it does not work with libraries named lib<FOO>.dll.so.
12152
12153 2004-01-25  Martin Baulig  <martin@ximian.com>
12154
12155         * class.c (mono_class_inflate_generic_type): Added support for
12156         MONO_TYPE_GENERICINST.
12157
12158         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12159         inflate methods on open constructed types.      
12160
12161 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12162
12163         * object.c: fire ProcessExit event in the root AppDomain after running
12164         Main. Fixes bug #53299.
12165
12166 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12167
12168         * socket-io.c: include the new socket-wrappers.h header.
12169         Use the wrappers instead of the unix socket functions to make the code
12170         more clear.
12171
12172 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12173
12174         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12175
12176         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12177         Fixes #22532.
12178
12179 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12180
12181         * reflection.c (mono_image_create_pefile): Handle the case when the
12182         entry point is not a MethodBuilder.
12183
12184         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12185         field to ReflectionMethod since it is not allways a builder.
12186
12187         * reflection.c (type_get_fully_qualified_name): New helper function to
12188         return the fully qualified name of a type.
12189
12190         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12191         type name for custom marshallers.
12192
12193         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12194
12195         * class.c (mono_class_setup_vtable): If a parent class already 
12196         implements an interface, use the implementing methods from that class.
12197         Fixes #53148.
12198
12199 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12200
12201         * threadpool.c: just return instead of ExitThread to allow for thread
12202         clean up earlier.
12203
12204 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12205
12206         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12207         when closing resource modules.
12208
12209         * reflection.c (mono_image_create_pefile): Handle the case when the
12210         entry point is not a MethodBuilder.
12211
12212         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12213         field to ReflectionMethod since it is not allways a builder.
12214
12215 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12216
12217         * marshal.c (mono_marshal_get_managed_wrapper): 
12218         mono_marshal_alloc takes native int so CONV_I
12219         the arg for 64bits.
12220
12221 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12222
12223         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12224         tokens in the cattr table. Fixes #53108.
12225
12226 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12227
12228         * loader.c: don't trim ".dll" before looking up in the config file.
12229         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12230
12231 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12232
12233         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12234         Return the module which contains the resource as well.
12235         (ves_icall_System_Reflection_Module_Close): New icall.
12236
12237         * appdomain.c: Bump corlib version number.
12238
12239         * image.c (mono_image_addref): New public function.
12240
12241         * assembly.c: Call mono_image_addref.
12242
12243         * reflection.c (mono_module_get_object): Increase reference count of 
12244         the image.
12245
12246         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12247         Fixes #22532.
12248
12249         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12250         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12251         proper exceptions on DllImport problems.
12252
12253 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12254
12255         * class.c, metadata.c: eliminate CSIZE macro.
12256
12257 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12258
12259         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12260         * object.h: Added async_callback field in MonoAsyncResult.
12261         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12262         * verify.c: Added async_callback in MonoAsyncResult layout.
12263
12264 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12265
12266         * reflection.c (mono_reflection_get_custom_attrs): Add support
12267         for Modules.
12268
12269 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12270
12271         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12272         marshalling.
12273         (mono_marshal_method_from_wrapper): Add null pointer check.
12274
12275 2004-01-16  Martin Baulig  <martin@ximian.com>
12276
12277         * debug-mono-symfile.h: Set version number to 36 and reflect
12278         latest symbol writer changes.
12279
12280 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12281
12282         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12283         multi-dimensional arrays.
12284         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12285         (mono_class_from_mono_type): Use bounded_array_class_get.
12286         
12287         * class.c (mono_bounded_array_class_get): New function which takes
12288         a 'bounded' bool argument to distinguish vectors from one dimensional
12289         arrays.
12290
12291         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12292         bounded_array_class_get if the array has bounds.
12293
12294         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12295         Search modules loaded using AssemblyBuilder:AddModule as well.
12296
12297 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12298
12299         * appdomain.c: increased corlib version.
12300         * filewatcher.c: removed g_print.
12301         * icall.c:
12302         (get_property_info): only allocate what is actually requested.
12303         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12304
12305 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12306
12307         * Makefile.am: added filewatcher.[ch]
12308         * filewatcher.[ch]: FileSystemWatcher runtime support.
12309         * icall.c: added new FSW icalls.
12310
12311 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12312
12313         * string-icalls.c: fix stringbuilder regression as suggested by
12314         Iain McCoy <iain@mccoy.id.au>.
12315
12316 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12317
12318         * process.c (process_read_stringtable_block): Recognize '007f' as
12319         a language neutral stringtable block.
12320
12321 2004-01-12  Patrik Torstensson
12322
12323         * object.h (MonoStringBuilder) : Changed layout to support our
12324         new stringbuilder class.
12325         * marshal.c: Change marshalling to support the new layout of 
12326         string builder.
12327         * appdomain.c: increased version number because new layout of
12328         string builder.
12329
12330 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12331
12332         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12333         assembly name as an string instead of an AssemblyName, since it is
12334         easier to extract info from it.
12335
12336         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12337         the culture subdirectories too. Fixes #52231.
12338
12339 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12340
12341         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12342         It takes 2 new parameters with an optional name for the method to look
12343         for and case ignoring info.
12344
12345         * threadpool.c: removed unused variable.
12346
12347 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12348
12349         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12350         It takes 2 new parameters with an optional name for the property to look
12351         for and case ignoring info.
12352         Fixes bug #52753.
12353
12354 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12355
12356         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12357         Fix #52451.
12358
12359 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12360
12361         * appdomain.c:
12362         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12363         Fixes bug #52630.
12364
12365 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12366
12367         * reflection.c: Add support for more than one unmanaged resource.
12368
12369         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12370         in field->def_value, as done in all other cases.
12371
12372         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12373         TypeBuilders.
12374
12375         * reflection.c (mono_reflection_create_runtime_class): Remove 
12376         errorneous assignment to klass->element_class, since it is already
12377         done in mono_reflection_setup_internal_class.
12378
12379 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12380
12381         * gc.c: added missing LeaveCriticalSection.
12382         * icall.c: indented a couple of lines.
12383         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12384         if we call EndInvoke inside a callback. Fixes bug #52601.
12385
12386 2004-01-07  Martin Baulig  <martin@ximian.com>
12387
12388         * mono-debug-debugger.h
12389         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12390
12391 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12392
12393         * appdomain.c: Use messages in NotImplementedException.
12394
12395         * exception.c (mono_get_exception_not_implemented): Now this takes
12396         a message argument.
12397
12398         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12399         exception instead of g_asserting an aborting when something is not
12400         implemented.
12401
12402         Add some inline docs.
12403
12404 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12405
12406         * reflection.h: Update after changes to object layout.
12407
12408         * reflection.c: Implement saving of unmanaged aka win32 resources.
12409
12410         * appdomain.c: Bump version number.
12411
12412         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12413         Handle missing domains gracefully.
12414
12415 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12416
12417         * file-io.c : On Windows, there are much more invalid_path_chars.
12418
12419 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12420
12421         * class.h, object.c: prepare for GetType () speedup.
12422
12423 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12424
12425         * profiler.c: workaround for --profile null reference exception on
12426           cygwin. Patch by Patrik Torstensson.
12427
12428 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12429
12430         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12431         make work for unaligned access.
12432
12433 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12434
12435         * class.c: small cleanup (class->fields [i] -> field).
12436         * image.c: check address of metadata is valid.
12437
12438 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12439
12440         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12441         search the list of loaded assemblies.
12442
12443         * reflection.c (mono_reflection_type_from_name): Use 
12444         mono_assembly_loaded instead of mono_image_loaded.
12445
12446         * reflection.c: Fix warnings.
12447
12448 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12449
12450         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12451         is dynamic. This is needed since an assembly can contain both dynamic and
12452         non-dynamic images.
12453
12454         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12455         assembly->dynamic.
12456
12457         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12458
12459         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12460         to store modules loaded using AddModule.
12461
12462         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12463         on Modules.
12464
12465         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12466
12467         * reflection.c (mono_image_fill_export_table_from_module): New function to
12468         fill out the EXPORTEDTYPES table from a module.
12469
12470         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12471         into a separate function. Also handle loaded non-dynamic modules.
12472
12473         * reflection.c (mono_image_basic_init): Fix memory allocation.
12474
12475         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12476
12477         * assembly.c (mono_assembly_load_references): Make this public.
12478
12479 2003-12-19  Martin Baulig  <martin@ximian.com>
12480
12481         * class.c (mono_class_initialize_generic): Made this static, take
12482         a `MonoGenericInst *' instead of a `MonoClass *'.
12483         (mono_class_from_generic): Call mono_class_initialize_generic()
12484         unless we're already initialized or being called from
12485         do_mono_metadata_parse_generic_inst().
12486
12487         * class.h (MonoGenericInst): Added `initialized' and
12488         `init_pending' flags.
12489
12490         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12491         `mono_class_init (gklass)' or mono_class_initialize_generic()
12492         here; set `generic_inst->init_pending' while parsing the
12493         `type_argv'.
12494
12495 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12496
12497         * locales.c: include string.h for memxxx prototypes
12498
12499 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12500
12501         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12502         constructor when accessing literal fields.
12503
12504 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12505
12506         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12507
12508         * reflection.c (assembly_add_resource_manifest): New function to fill
12509         the MANIFESTRESOURCE table.
12510
12511         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12512
12513         * reflection.h: Update to changes in class layout.
12514
12515         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12516         Reenable call to mono_runtime_is_shutting_down ().
12517
12518         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12519         determine if the runtime is shutting down.
12520
12521 2003-12-16  Jackson Harper <jackson@ximian.com>
12522
12523         * icall.c: comment out call to mono_runtime_is_shutting_down to
12524         fix build.
12525         
12526 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12527
12528         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12529         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12530
12531 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12532
12533         * reflection.c: move definition of swap_with_size
12534         to before its first call
12535
12536 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12537
12538         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12539
12540         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12541         icall.
12542
12543         * object.c: Fix warnings.
12544
12545         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12546         members if FlattenHierarchy is set.
12547
12548         * reflection.c (mono_image_add_decl_security): New function to emit
12549         declarative security.
12550
12551         * reflection.h reflection.c: Add support for declarative security.
12552
12553         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12554         
12555 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12556
12557         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12558         
12559         * appdomain.c verify.c: Moved corlib version checking into its own
12560         function in appdomain.c since it needs to create vtables etc.
12561
12562 2003-12-13  Patrik Torstensson <p@rxc.se>
12563
12564         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12565         instead of unwrapped server.
12566
12567 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12568
12569         * verify.c (check_corlib): Fix field index.
12570
12571 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12572
12573         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12574         GetGacPath icall.
12575
12576 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12577
12578         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12579         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12580         cope with sizeof(size_t) != sizeof(guint32).
12581
12582 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12583
12584         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12585         in case of failure.
12586
12587 2003-12-10  Mark Crichton <crichton@gimp.org>
12588
12589         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12590         in managed code.
12591
12592         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12593
12594 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12595
12596         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12597         marked as deleted.
12598
12599 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12600
12601         * verify.c (check_corlib): Handle the case when the version field is 
12602         initialized by a static constructor.
12603
12604 2003-12-08  Patrik Torstensson  <p@rxc.se>
12605
12606     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12607
12608 2003-12-08  Martin Baulig  <martin@ximian.com>
12609
12610         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12611         a MonoReflectionGenericParameter, also take the parameter index
12612         and name as arguments.
12613         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12614         (ves_icall_MonoGenericParam_initialize): New interncall.
12615         (ves_icall_Type_make_byref_type): New interncall.
12616
12617         * reflection.h (MonoReflectionGenericParam): Derive from
12618         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12619         `index' fields.
12620
12621         * reflection.c (mono_reflection_define_generic_parameter): Create
12622         and return a new MonoReflectionGenericParam; don't initialize the
12623         constraints here.
12624         (mono_reflection_initialize_generic_parameter): New public method;
12625         initializes the constraints and creates the `param->pklass'.
12626
12627 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12628
12629         * reflection.h reflection.c: Use the new fields 'num_types', 
12630         'num_fields' and 'num_methods' to track the number of types etc.
12631
12632         * verify.c (check_corlib): Check corlib version number.
12633
12634 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12635
12636         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12637         function works on all methods.
12638
12639 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12640
12641         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12642         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12643         the custom_type_info flag of the transparent proxy.
12644         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12645         objects that supports IRemotingTypeInfo.
12646         * object.h: Added custom_type_info field in transparent proxy.
12647
12648 2003-12-06  Martin Baulig  <martin@ximian.com>
12649
12650         * class.c (mono_class_create_from_generic): Removed.
12651         (mono_class_from_generic): Check `ginst->klass' before doing
12652         anything else.  This is important to fully support "recursive"
12653         generic types.
12654
12655         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12656         empty `generic_inst->klass' before doing anything else.
12657
12658 2003-12-06  Dick Porter  <dick@ximian.com>
12659
12660         * verify.c: 
12661         * object.h:
12662         * icall.c:
12663         * locales.c: Use C structs to access class fields.  Don't do a
12664         conversion between MonoString and UChar because both are
12665         platform-endian UTF-16.  Compare now takes startindex and count
12666         parameters.  Add a char overload for IndexOf.  Speed up the
12667         invariant string IndexOf.
12668
12669 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12670
12671         * Makefile.am (monosn_LDADD): Fix parallel build.
12672
12673 2003-12-04  Martin Baulig  <martin@ximian.com>
12674
12675         * icall.c
12676         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12677         (ves_icall_Type_make_array_type): New interncall.       
12678
12679 2003-12-04  Martin Baulig  <martin@ximian.com>
12680
12681         * locales.c: also change it in the !HAVE_ICU case.
12682
12683 2003-12-04  Dick Porter  <dick@ximian.com>
12684
12685         * icall.c:
12686         * locales.c: construct_compareinfo is now in CompareInfo, not
12687         CultureInfo.
12688
12689 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
12690
12691         * image.c (mono_image_load_file_for_image): Cache loaded images in the
12692         image->files array.
12693
12694         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12695         table as well.
12696
12697         * assembly.c (mono_assembly_load_references): Only load references
12698         once.
12699
12700         * class.c (mono_class_from_name): Avoid linear search of the 
12701         EXPORTEDTYPE table.
12702
12703         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12704
12705 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
12706
12707         * image.h (MonoImage): Add 'field_cache' field.
12708
12709         * loader.c (mono_field_from_token): Cache field lookups.
12710         
12711         * reflection.c (mono_module_get_object): Fix name property.
12712
12713         * icall.c (ves_icall_get_enum_info): Update after changes to 
12714         mono_metadata_get_constant_index ().
12715
12716         * icall.c: Get rid of get_type_info icall, use a separate icall for
12717         each type property to avoid needless memory allocations. Fixes #51514.
12718
12719         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12720         to avoid needless binary searches.
12721
12722         * class.c (class_compute_field_layout): Move the initialization of
12723         field->def_value to mono_class_vtable ().
12724
12725         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12726         non-corlib types.
12727
12728         * object.c (mono_object_allocate): Make it inline.
12729
12730         * object.c (mono_object_allocate_spec): Make it inline.
12731         
12732 2003-12-02  Dick Porter  <dick@ximian.com>
12733
12734         * locales.c (create_NumberFormat): NumberFormatInfo construction.
12735         Patch by Mohammad DAMT (mdamt@cdl2000.com).
12736
12737 2003-12-01  Dick Porter  <dick@ximian.com>
12738
12739         * threads.c: Fix signature and call in CreateMutex and
12740         CreateEvent.
12741
12742 2003-12-01  Dick Porter  <dick@ximian.com>
12743
12744         * icall.c: 
12745         * locales.c: Implement string compares and searching
12746
12747         * object.h: Add extra Thread field
12748
12749 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * reflection.c (fixup_method): Add support for MonoCMethod.
12752
12753 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
12754
12755         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12756
12757         * reflection.c (assembly_name_to_aname): Allow extra characters in
12758         assembly names. Fixes #51468.
12759
12760 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
12761
12762         * exception.c (mono_exception_from_name_domain): New helper function.
12763
12764         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12765         exception object in the correct domain.
12766
12767         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
12768         formatting + make a copy a the input data.
12769
12770         * loader.c (mono_get_method_from_token): Methods which contain
12771         native code do not have entries in the ImplMap.
12772
12773         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12774         Thanks to Gonzalo for spotting this.
12775         
12776         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12777         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12778
12779         * assembly.h (mono_assembly_load_from): Split the second part of 
12780         assembly loading into a new public function.
12781
12782         * exception.h (mono_get_exception_bad_image_format): New function.
12783
12784 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
12785
12786         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12787         Enumerate all modules inside a dynamic assembly. Fixes #51293.
12788         
12789         * icall.c: Add new icall for creating dynamic methods.
12790
12791         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12792
12793         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12794
12795         * reflection.c (mono_reflection_create_dynamic_method): New icall to
12796         create a dynamic method.
12797
12798         * reflection.c (resolve_object): New helper function.
12799
12800         * reflection.c: Generalize ReflectionMethodBuilder and the functions
12801         which manipulate it so they can also work on dynamic methods.
12802
12803         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
12804         creating the MonoReflectionMethodAux structure if it is not needed.
12805         
12806         * reflection.h verify.c: Update after changes to object layout.
12807
12808         * reflection.c (method_builder_encode_signature): Fix compilation on
12809         gcc 2.95.x.
12810
12811 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
12812
12813         * appdomain.h: Added support for context static fields. Added static_data
12814           field to MonoAppContext and renamed thread_static_fields to a more
12815           generic special_static_fields in MonoAppDomain, since it can now contain
12816           context static fields.
12817         * domain.c: Updated hashtable name.
12818         * object.c: Replaced field_is_thread_static() for a more generic
12819           field_is_special_static() which also checks for context static attribute.
12820           In mono_class_vtable(), added support for static context fields.
12821         * threads.c: Changed methods that manage thread static fields to more
12822           generic methods so they can be reused both for thread and context static
12823           data.
12824         * threads.h: Declared some new methods.
12825
12826 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
12827
12828         * reflection.h: Update after changes to the managed types.
12829
12830         * reflection.c (encode_custom_modifiers): New helper function.
12831
12832         * reflection.c (method_encode_signature): Emit custom modifiers.
12833
12834         * reflection.c (field_encode_signature): Emit custom modifiers.
12835
12836 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
12837
12838         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12839
12840         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
12841         implementation.
12842
12843         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
12844         icall.
12845
12846         * object.c (mono_field_get_value_object): New function.
12847
12848         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12849         specific.
12850
12851 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
12852
12853         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12854         return a preallocated out-of-memory exception instance.
12855
12856         * object.c (out_of_memory): Use the new function.
12857
12858         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12859         flag is before the custom modifiers. Fixes #49802.
12860
12861 2003-11-16  Martin Baulig  <martin@ximian.com>
12862
12863         * class.c (mono_class_is_open_constructed_type): Implemented the
12864         MONO_TYPE_GENERICINST case.
12865
12866 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
12867
12868         * assembly.c (mono_assembly_fill_assembly_name): New function to
12869         fill out the MonoAssemblyName structure.
12870         (mono_assembly_open): Use the new function.
12871
12872         * icall.c (fill_reflection_assembly_name): New helper function.
12873
12874         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12875         new function.
12876
12877         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
12878
12879 2003-11-15  Martin Baulig  <martin@ximian.com>
12880
12881         * class.c (mono_class_is_open_constructed_type): New public
12882         function; checks whether a type is an open constructed type,
12883         ie. whether it still contains type parameters.
12884         (mono_class_inflate_generic_type): If we're a type parameter and
12885         the inflated type is also a MONO_TYPE_(M)VAR, return the original
12886         type.
12887
12888         * class.h (MonoGenericInst): Added `guint32 is_open'.
12889
12890         * loader.c (method_from_methodspec): Check whether we're an open
12891         or closed constructed type and set `ginst->is_open'.
12892
12893         * reflection.c (mono_reflection_bind_generic_parameters): Check
12894         whether we're an open or closed constructed type and set
12895         `ginst->is_open'.
12896         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
12897         from open constructed types.
12898
12899 2003-11-15  Martin Baulig  <martin@ximian.com>
12900
12901         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12902         a generic instance (instead of a generic type declaration) with
12903         unbound generic parameters, bind them to our actual types.
12904
12905 2003-11-14  Martin Baulig  <martin@ximian.com>
12906
12907         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
12908
12909         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12910         an interface type, populate `res->interfaces' with instantiated
12911         versions of all the interfaces we inherit.
12912
12913 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
12914
12915         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
12916         when MONO_PATH is set but doesn't contain the install dir.
12917
12918 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12919
12920         * icall.c:
12921         (ves_icall_Type_GetInterfaces): don't return an interface twice when
12922         it's also implemented in base classes. Fixes bug #50927.
12923
12924 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
12925
12926         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
12927         if this method is called from a finalizer. Fixes #50913.
12928
12929 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
12930
12931         * threads.c: Implement VolatileRead/VolatileWrite
12932
12933         * icall.c: Add new icalls for VolatileRead/VolatileWrite
12934
12935 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12936
12937         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
12938         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
12939         2.95.3.
12940
12941         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
12942         from Peter Ross (pro@missioncriticalit.com).
12943         
12944 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
12945
12946         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
12947
12948 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12949
12950         * assembly.c (mono_assembly_load_references): Disable check because it
12951         triggers on older corlibs which lots of people have.
12952
12953 2003-11-12  Jackson Harper  <jackson@ximian.com>
12954
12955         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
12956         load corlib.dll if mscorlib.dll is not found.
12957         * assembly.h: Remove corlib name define.
12958         * class.c:
12959         * domain.c:
12960         * image.c: Change corlib name to mscorlib.
12961         
12962 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12963
12964         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
12965
12966 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
12967
12968         * appdomain.h: Added loader_optimization here to sync with the C#
12969         code, and add disallow_binding_redirects field.
12970
12971 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12972
12973         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
12974
12975         * reflection.c (mono_image_build_metadata): Fix crash on modules
12976         with no types.
12977
12978         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
12979
12980         * icall.c (ves_icall_get_method_info): Return callingConvention as
12981         well.
12982
12983         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
12984         namespaces from the EXPORTEDTYPE table as well.
12985
12986         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
12987         from all modules inside the assembly.
12988         
12989 2003-11-11  Martin Baulig  <martin@ximian.com>
12990
12991         * reflection.c (mono_reflection_bind_generic_parameters): Make
12992         this work for interfaces.
12993
12994 2003-11-11  Martin Baulig  <martin@ximian.com>
12995
12996         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
12997
12998 2003-11-11  Martin Baulig  <martin@ximian.com>
12999
13000         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13001         "MonoInflatedMethod" and "MonoInflatedCtor".
13002
13003 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13004
13005         * reflection.c (resolution_scope_from_image): Use the assembly table
13006         from the manifest module, since other modules don't have it.
13007
13008         * debug-helpers.c (mono_type_full_name): New helper function.
13009
13010         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13011
13012         * image.c (mono_image_load_file_for_image): New public function which
13013         is a replacement for the load_file_for_image in class.c.
13014
13015         * assembly.c (mono_assembly_load_module): A wrapper for the function
13016         above which does assembly association and reference loading too.
13017
13018         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13019
13020 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13021
13022         * appdomain.c: not all of the attributes for the full assembly name
13023         are required and the order doesn't matter. Fixes bug #50787.
13024
13025 2003-11-10  Dick Porter  <dick@ximian.com>
13026
13027         * locales.c: Use platform-endian UTF16
13028
13029 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13030
13031         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13032         
13033 2003-11-10  Martin Baulig  <martin@ximian.com>
13034
13035         * metadata.c
13036         (mono_metadata_load_generic_params): Make this actually work.
13037
13038         * reflection.c (mono_reflection_bind_generic_parameters): If our
13039         parent is a generic instance, pass all the `types' to it, no
13040         matter whether it has the same number of type parameters or not.
13041
13042 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13043
13044         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13045
13046         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13047         assignment code to this function so it gets called recursively for all
13048         modules.
13049
13050         * image.c (load_modules): Remove the assembly assignment since it is
13051         now done by mono_assembly_load_references.
13052         
13053         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13054         Add 'module' argument.
13055         (mono_module_get_types): New helper function.
13056         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13057
13058 2003-11-08  Martin Baulig  <martin@ximian.com>
13059
13060         * class.c (mono_class_inflate_generic_method): Interface method
13061         don't have a header.
13062
13063         * reflection.c (mono_image_get_methodspec_token): Take an
13064         additional `MonoGenericInst *' argument instead of reading it from
13065         the header; this is necessary to support interfaces.
13066         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13067         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13068         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13069         argument.
13070
13071         * reflection.h (MonoReflectionInflatedMethod): Added
13072         `MonoGenericInst *ginst'.
13073
13074 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13075
13076         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13077
13078 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13079
13080         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13081
13082 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13083
13084         * reflection.c 
13085         (reflection_methodbuilder_from_method_builder):
13086         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13087         initialize a ReflectionMethodBuilder structure.
13088         (mono_image_get_methodbuilder_token):
13089         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13090         tokens which point to types in another module inside the same assembly.
13091
13092         * reflection.c: Use the new helper functions.
13093         
13094         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13095
13096         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13097         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13098
13099         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13100         neccesary.
13101
13102         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13103         current module. Emit the manifest only for the main module.
13104
13105         * reflection.c (mono_image_create_token): Add assertion when a 
13106         memberref needs to be created.
13107
13108         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13109
13110         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13111         larger buffer for the custom attribute blob. Fixes #50637.
13112         
13113 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13114
13115         * threadpool.c: notify listener on async processing handles after
13116         invoking the async callback. Thanks to Zoltan.
13117
13118 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13119
13120         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13121         avoid code duplication.
13122
13123         * reflection.h (MonoDynamicImage): New type which is currently unused,
13124         but will be used through the ref.emit code in place of 
13125         MonoDynamicAssembly.
13126
13127         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13128         object layout.
13129
13130         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13131         a MonoDynamicImage instead of just a MonoImage.
13132         
13133         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13134         icalls to ModuleBuilder but keep their semantics, so they will work
13135         with moduleb->assemblyb. This will change later.
13136         
13137 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13138
13139         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13140         object layout.
13141
13142         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13143         main module, since it is now done by the managed code.
13144
13145 2003-11-03  Martin Baulig  <martin@ximian.com>
13146
13147         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13148         `ginst->klass' here.
13149         (method_encode_methodspec): Don't use the `ginst->generic_method's
13150         klass if it's a generic instance, use `ginst->klass' in this case.
13151
13152 2003-11-03  Martin Baulig  <martin@ximian.com>
13153
13154         * reflection.c (mono_image_get_generic_method_param_info):
13155         Removed, use mono_image_get_generic_param_info() instead.
13156         (mono_image_get_type_info): Write the GenericParam table before
13157         the Method table.  This is neccessary because in the GenericParam
13158         table, type parameters of the class (ie. '!0' etc.) must come
13159         before the ones from its generic methods (ie. '!!0' etc).
13160
13161 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13162
13163         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13164
13165 2003-11-02  Martin Baulig  <martin@ximian.com>
13166
13167         * reflection.c (create_generic_typespec): Take a
13168         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13169         the generic parameters from it.
13170
13171 2003-11-02  Martin Baulig  <martin@ximian.com>
13172
13173         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13174         instead of a `MonoClassField *' since we just need the type.
13175         (create_generic_typespec): New static function.  Creates a
13176         TypeSpec token for a generic type declaration.
13177         (mono_image_get_generic_field_token): New static function.
13178         (mono_image_create_token): If we're a FieldBuilder in a generic
13179         type declaration, call mono_image_get_generic_field_token() to get
13180         the token.
13181
13182 2003-11-02  Martin Baulig  <martin@ximian.com>
13183
13184         * reflection.h
13185         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13186         `MonoReflectionGenericInst *declaring_type' and
13187         `MonoReflectionGenericInst *reflected_type' fields.
13188
13189         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13190         `MonoReflectionGenericInst *declaring_type' and a
13191         `MonoReflectionGenericInst *reflected_type' argument instead of a
13192         single `MonoReflectionGenericInst *type' one.  Set
13193         `res->declaring_type' and `res->reflected_type' from them.
13194         (mono_reflection_inflate_field): Likewise.      
13195
13196 2003-11-02  Martin Baulig  <martin@ximian.com>
13197
13198         * class.c (mono_class_setup_vtable): Don't store generic methods
13199         in the vtable.  
13200
13201 2003-11-02  Martin Baulig  <martin@ximian.com>
13202
13203         * reflection.h (MonoReflectionGenericInst): Added
13204         `MonoReflectionType *declaring_type'.
13205
13206         * reflection.c (mono_reflection_bind_generic_parameters): Use
13207         `if (tb->parent)' instead of `klass->parent'.
13208
13209 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13210
13211         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13212         with an empty ASSEMBLY table.
13213
13214         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13215         variable in the inner and outer loops.
13216
13217 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13218
13219         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13220         argument.
13221
13222         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13223         
13224         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13225         icalls. Instead, do everything in managed code. This is needed since
13226         it is hard to restore the original domain etc. in unmanaged code in the
13227         presence of undeniable exceptions.
13228
13229         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13230         New icalls to push and pop appdomain refs.
13231
13232 2003-10-31  Martin Baulig  <martin@ximian.com>
13233
13234         * class.c (inflate_generic_type): Renamed to
13235         mono_class_inflate_generic_type() and made it public.
13236
13237         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13238         New interncall.
13239
13240         * loader.c (mono_field_from_memberref): Also set the retklass for
13241         typespecs.
13242
13243         * fielder.c (mono_image_get_inflated_field_token): New static
13244         method; creates a metadata token for an inflated field.
13245         (mono_image_create_token, fixup_method): Added support for
13246         "MonoInflatedField".
13247         (fieldbuilder_to_mono_class_field): New static function.
13248         (mono_reflection_inflate_field): New public function.
13249
13250         * reflection.h
13251         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13252         (MonoReflectionInflatedField): New typedef.     
13253
13254 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13255
13256         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13257         for Solaris and other platforms without s6_addr16
13258
13259 2003-10-30  Martin Baulig  <martin@ximian.com>
13260
13261         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13262         argument instead of two.
13263         (mono_class_inflate_generic_signature): Likewise.
13264         (inflate_generic_header): Likewise.
13265         (mono_class_inflate_generic_method): Likewise.  In addition, if
13266         `ginst->klass' is set, it becomes the new `method->klass'.
13267
13268         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13269         field.
13270
13271         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13272         first byte. [FIXME]
13273         (method_encode_methodspec): If we have generic parameters, create
13274         a MethodSpec instead of a MethodRef.
13275         (fixup_method): Added support for "MonoInflatedMethod" and
13276         "MonoInflatedCtor".
13277         (mono_image_create_token): Added support for "MonoInflatedMethod"
13278         and "MonoInflatedCtor".
13279         (inflated_method_get_object): New static function; returns a
13280         managed "System.Reflection.MonoInflatedMethod" object.
13281         (mono_reflection_bind_generic_method_parameters): Return a
13282         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13283         (mono_reflection_inflate_method_or_ctor): Likewise.
13284         (mono_image_get_generic_method_param_info): Initialize unused
13285         fields to zero.
13286         (mono_image_get_generic_param_info): Likewise.
13287
13288         * reflection.h (MonoReflectionInflatedMethod): New public
13289         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13290         "S.R.MonoInflatedCtor" classes.
13291
13292         * loader.c (method_from_memberref): If we're a TypeSpec and it
13293         resolves to a generic instance, inflate the method.
13294
13295 2003-10-28  Dick Porter  <dick@ximian.com>
13296
13297         * object.c (mono_runtime_run_main): Convert command-line arguments
13298         into utf8, falling back to the user's locale encoding to do so.
13299
13300 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13301
13302         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13303         at this time.
13304
13305         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13306
13307         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13308         up icalls at method definition time. Partially fixes #33569.
13309
13310 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13311
13312         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13313         marshalling of arrays. Fixes #50116.
13314
13315         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13316
13317         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13318         points to a vtable in the dying appdomain.
13319
13320         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13321         listeners into unmanaged code inside the lock.
13322
13323         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13324         domains and add some comments.
13325
13326 2003-10-25  Martin Baulig  <martin@ximian.com>
13327
13328         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13329
13330         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13331
13332         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13333         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13334         currently parsing.  Create the generic class and store it in
13335         `generic_inst->klass' before parsing the type arguments.  This is
13336         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13337         for an example.
13338         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13339         to support recursive typespec entries.
13340
13341         * class.c (mono_class_setup_parent): If our parent is a generic
13342         instance, we may get called before it has its name set.
13343         (mono_class_from_generic): Splitted into
13344         mono_class_create_from_generic() and mono_class_initialize_generic().
13345
13346 2003-10-25  Martin Baulig  <martin@ximian.com>
13347
13348         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13349         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13350         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13351         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13352
13353         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13354         (create_typespec): Likewise.
13355         (mono_reflection_bind_generic_parameters): Return a
13356         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13357         (mono_reflection_inflate_method_or_ctor): New public function.
13358
13359         * reflection.h (MonoReflectionGenericInst): New typedef.        
13360
13361 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13362
13363         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13364         inside the domain lock. Fixes #49993.
13365         
13366         * object.c (mono_class_vtable): When typed allocation is used, 
13367         allocate vtables in the GC heap instead of in the mempool, since the
13368         vtables contain GC descriptors which are used by the collector even
13369         after the domain owning the mempool is unloaded.
13370
13371         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13372
13373         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13374         reflect what it does. Also invalidate mempools instead of freeing
13375         them if a define is set.
13376
13377         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13378         of the appdomain.
13379         
13380         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13381         hold the finalizable objects in this domain.
13382
13383         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13384         appdomain.
13385
13386         * appdomain.c (mono_domain_set): New function to set the current
13387         appdomain, but only if it is not being unloaded.
13388
13389         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13390         appdomain which is being unloaded.
13391         
13392         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13393         unloading of the root appdomain.
13394
13395         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13396         icall to execute a method in another appdomain. Intended as a 
13397         replacement for InternalSetDomain, which can confuse the code 
13398         generation in the JIT.
13399
13400         * appdomain.c (mono_domain_is_unloading): New function to determine
13401         whenever an appdomain is unloading.
13402
13403         * appdomain.c (mono_domain_unload): New function to correctly unload
13404         an appdomain.
13405
13406         * assembly.c (mono_assembly_load_references): Check that an assembly
13407         does not references itself.
13408
13409         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13410         domain manually, it asks the finalizer thread to do it, then waits for
13411         the result. Also added a timeout.
13412
13413         * icall.c: Register the new icalls.
13414
13415         * threads.h threads.c: Export the mono_gc_stop_world and 
13416         mono_gc_start_world functions.
13417         
13418         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13419         function to fill out the mempool with 0x2a.
13420
13421 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13422
13423         * reflection.h (MonoReflectionMethodAux): New structure to store
13424         information which is rarely used, thus is not in the MonoMethod
13425         structure.
13426
13427         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13428         store the aux info.
13429
13430         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13431         and marshalling info into the aux structure.
13432
13433         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13434         from the aux structure.
13435
13436         * loader.c (mono_method_get_param_names): Retrieve the param names from
13437         the aux structure.
13438         
13439 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13440
13441         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13442         warning.
13443
13444 2003-10-21  Dick Porter  <dick@ximian.com>
13445
13446         * socket-io.c
13447         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13448         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13449
13450 2003-10-21  Martin Baulig  <martin@ximian.com>
13451
13452         * reflection.c (mono_reflection_bind_generic_parameters):
13453         `klass->parent' is NULL for interfaces.
13454
13455 2003-10-21  Martin Baulig  <martin@ximian.com>
13456
13457         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13458
13459 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13460
13461         * exception.c (mono_exception_from_name_msg): New helper function for
13462         creating exceptions and initializing their message field.
13463
13464         * exception.c: Simplify functions using the new helper.
13465
13466         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13467         New function.
13468
13469         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13470         mono_raise_exception, since otherwise gcc doesn't generate the function
13471         epilog for raise_exception, confusing the stack unwinding in the JIT.
13472         Fixes #45043.
13473
13474         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13475         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13476         Fixes #49499.
13477
13478 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13479
13480         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13481         utf8.
13482
13483 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13484
13485         * icall.c: Removed GetUninitializedObject method because
13486           AllocateUninitializedClassInstance does the same.
13487
13488 2003-10-18  Martin Baulig  <martin@ximian.com>
13489
13490         * class.c (inflate_generic_signature): Renamed to
13491         mono_class_inflate_generic_signature() and made it public.
13492         (my_mono_class_from_generic_parameter): New static function; if we
13493         don't already have the generic parameter's MonoClass, create a
13494         very simple one which is just used internally in the runtime and
13495         not passed back to managed code.
13496
13497         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13498
13499         * metadata.h (MonoMethodSignature): Moved the
13500         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13501         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13502
13503         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13504         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13505         interncall on the MonoMethod class, not on MethodInfo.
13506         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13507         calling mono_reflection_bind_generic_method_parameters() directly.
13508
13509         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13510         return the already computed `method->signature'.
13511         (method_from_methodspec): New static function to load a method
13512         from a MethodSpec entry.
13513         (mono_get_method_from_token): Call the new method_from_methodspec()
13514         for MethodSpec tokens.  
13515         (mono_get_method_from_token): If we're a generic method, load the
13516         type parameters.
13517
13518         * reflection.c (mono_image_get_memberref_token): Allow
13519         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13520         table.
13521         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13522         (mono_image_create_token): First check whether it's a generic
13523         method (so we'd need to create a MethodSpec), then do the other
13524         two alternatives.
13525         (mono_reflection_bind_generic_method_parameters): Return a
13526         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13527         called directly from the interncall.
13528
13529 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13530
13531         * reflection.c (load_public_key): Move loading of the public key
13532         into managed code.
13533
13534         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13535
13536         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13537         fields.
13538
13539         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13540         culture, hash_alg and public_key. Fixes #49555.
13541
13542 2003-10-17  Martin Baulig  <martin@ximian.com>
13543
13544         * class.h (MonoGenericInst): Moved this declaration here and added
13545         `MonoMethod *generic_method'.
13546
13547         * icall.c
13548         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13549         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13550
13551         * metadata.c (mono_metadata_type_equal): Two types of
13552         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13553         index; ie. don't compare the address of the `MonoGenericParam'
13554         structure.
13555         (mono_metadata_load_generic_params): Removed the `MonoMethod
13556         *method' argument.
13557
13558         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13559         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13560
13561         * reflection.c (method_encode_signature): Encode the number of
13562         generic parameters.
13563         (encode_generic_method_sig): New static function.
13564         (method_encode_methodspec): New static function; creates an entry
13565         in the MethodSpec table for a generic method.
13566         (mono_image_get_methodspec_token): New static function.
13567         (mono_image_create_token): Call mono_image_get_methodspec_token()
13568         for generic methods.
13569         (mono_reflection_bind_generic_method_parameters): New public
13570         function.  Instantiates a generic method.
13571
13572 2003-10-16  Martin Baulig  <martin@ximian.com>
13573
13574         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13575         *gen_params' here from MonoMethodHeader.
13576
13577         * metadata.c (mono_metadata_parse_method_signature): If we have
13578         generic parameters, initialize `method->gen_params' and then set
13579         the correct `type->data.generic_param' in all the parameters.
13580
13581 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13582
13583         * threads.c (mono_threads_get_default_stacksize): New function to 
13584         return the default stacksize.
13585
13586         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13587         termination of the finalizer thread, since the previous method had
13588         race conditions. Fixes #49628.
13589
13590         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13591         as for the other managed threads.
13592
13593 2003-10-16  Martin Baulig  <martin@ximian.com>
13594
13595         * class.c (inflate_generic_signature): Copy `generic_param_count'
13596         and `gen_params'.
13597
13598         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13599         New interncall.
13600
13601         * metadata.c (mono_metadata_parse_method_signature): Actually set
13602         the `method->generic_param_count' here.
13603         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13604
13605 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13606
13607         * object.h: Add a new field to TypedRef to simplify the implementation
13608         of the REFANY opcodes in the JIT.
13609
13610         * icall.c: Make use of the new field.
13611
13612         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13613         dynamically.
13614
13615 2003-10-15  Martin Baulig  <martin@ximian.com>
13616
13617         * class.c (mono_class_from_gen_param): Renamed to
13618         mono_class_from_generic_parameter() and moved most of the
13619         functionality from mono_reflection_define_generic_parameter()
13620         here; ie. we create a "real" class here.
13621         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13622         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13623         previously been called.
13624
13625         * class.h (MonoGenericParam): Moved the declaration of this struct
13626         here from metadata.h and added `MonoMethod *method'.
13627
13628         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13629         interncall.
13630
13631         * loader.c (mono_get_method_from_token): If we have any generic
13632         parameters, call mono_metadata_load_generic_params() to read them
13633         from the MONO_TABLE_GENERICPAR.
13634
13635         * metadata.c (mono_metadata_load_generic_params): Added
13636         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13637
13638         * metadata.h (MonoMethodSignature): Replaced
13639         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13640         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13641
13642         * reflection.c (mono_reflection_define_generic_parameter): Moved
13643         most of the functionality into the new
13644         mono_class_from_generic_parameter(); set the `method' field if
13645         we're a method parameter.       
13646
13647 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13648
13649         * marshal.c (emit_struct_conv): if native size is 0
13650         emit no code.
13651
13652 2003-10-14  Martin Baulig  <martin@ximian.com>
13653
13654         * icall.c: The generics API has changed in the spec since it was
13655         added to System.Type; these modifications make it match the spec
13656         again.
13657         (ves_icall_Type_GetGenericParameters): Renamed to
13658         `ves_icall_Type_GetGenericArguments'.
13659         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13660         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13661         `ves_icall_MonoType_get_HasGenericArguments'.
13662         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13663         `ves_icall_MonoType_get_IsGenericParameter'.
13664         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13665         this is no interncall anymore.
13666         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13667         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13668
13669 2003-10-14  Martin Baulig  <martin@ximian.com>
13670
13671         * reflection.c (mono_reflection_bind_generic_parameters): Also
13672         inflate generic methods if we're reading the class from IL.
13673
13674 2003-10-13  Martin Baulig  <martin@ximian.com>
13675
13676         * reflection.c (mono_reflection_define_generic_parameter): This
13677         method isn't called directly from the icall anymore; take a
13678         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13679         method generic parameters.
13680         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13681         (method_builder_encode_signature): Encode generic parameters.
13682         (mono_image_get_method_info): Write generic params to the
13683         MONO_TABLE_GENERICPARAM table.
13684
13685         * reflection.h (MonoReflectionMethodBuilder): Added
13686         `MonoArray *generic_params'.
13687
13688         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13689
13690         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13691         wrapper for mono_reflection_define_generic_parameter().
13692         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
13693
13694 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
13695
13696         * marshal.h: Add missing function to fix build.
13697
13698         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
13699         the SetLastError pinvoke attribute.
13700
13701         * marshal.c (mono_marshal_set_last_error): New helper function called
13702         by the generated code.
13703         
13704         * marshal.c (mono_mb_emit_branch): New helper function.
13705
13706         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13707
13708         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13709         classes as parameters and return values of delegates. Fixes #29256. 
13710
13711 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
13712
13713         * locales.c: use gint32 in non HAVE_ICU case
13714
13715 2003-10-11  Martin Baulig  <martin@ximian.com>
13716
13717         * mono-debug.c (mono_debug_add_method): Added a workaround for
13718         bug #48591.
13719
13720 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
13721
13722         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13723         delegates passed to native code must use the STDCALL calling 
13724         convention. Fixes #35987.
13725
13726 2003-10-10  Martin Baulig  <martin@ximian.com>
13727
13728         * class.c (inflate_generic_type): If we're inflating for a generic
13729         type instance (and not for a generic method), return
13730         MONO_TYPE_MVAR unchanged.
13731
13732 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13733
13734         * string-icalls.c: Join ignores null strings in the source array.
13735         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13736         * threads.c: GetAvailableTheads is slightly more accurate.
13737
13738 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
13739
13740         * threads.h threads.c : add mono_threads_set_default_stacksize
13741         and pass default to CreateThread calls.
13742
13743 2003-10-09  Dick Porter  <dick@ximian.com>
13744
13745         * icall.c:
13746         * locales.h:
13747         * locales.c: Internal calls for constructing CultureInfo and
13748         related objects from libicu (if its available.)
13749
13750 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
13751
13752         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13753
13754 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13755
13756         * threadpool.c: added an argument to async_invoke_thread that is the
13757         item to process, pass the MonoAsyncResult to the thread start function
13758         when creating a new thread. This way we don't need to acquire any lock
13759         when we're creating a new thread. Readded a semaphore for faster
13760         response times (instead of that Sleep i added).
13761
13762 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
13763
13764         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13765         get daylight change dates better on Windows, fix handling
13766         of platforms without tm_gmtoff.
13767
13768 2003-10-06  Martin Baulig  <martin@ximian.com>
13769
13770         * class.c (inflate_generic_method): Renamed to
13771         mono_class_inflate_generic_method() and made public.
13772         (mono_class_init): Don't inflate the generic methods here.
13773         (mono_class_from_generic): Added `gboolean inflate_methods'
13774         argument.  Inflate the methods here.
13775
13776         * loader.c (mono_method_get_param_names): Ignore instances of
13777         generic types for the moment.
13778
13779         * reflection.c (fixup_method): Added support for inflated methods.
13780         (mono_image_create_token): Use mono_image_get_methodref_token()
13781         for inflated methods.
13782         (mono_custom_attrs_from_param): Ignore instances of generic types
13783         for the moment.
13784         (mono_reflection_bind_generic_parameters): New public function.
13785         Moved all the functionality from
13786         ves_icall_Type_BindGenericParameters() here and added support for
13787         dynamic types.
13788         (mono_reflection_define_generic_parameter): Initialize
13789         `klass->methods' here.
13790
13791         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13792         functionality into mono_reflection_define_generic_parameter().
13793         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13794         TypeBuilder, return that TypeBuilder.
13795
13796 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13797
13798         * appdomain.c: removed mono_delegate_semaphore.
13799
13800         * threadpool.c:
13801         (mono_thread_pool_add): moved hash table creation inside and the thread 
13802         creation outside of the critical region.
13803         (mono_thread_pool_finish): removed obsolete code.
13804         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13805         continue or exit the thread depending on the queue.
13806
13807 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
13808
13809         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13810         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13811         handle more bool marshalling options
13812
13813 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
13814
13815         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13816         arrays of structs. Also add a more descriptive error message when
13817         a structure member is marshalled as LPArray.
13818
13819 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
13820
13821         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13822         marshalling arrays of complex types. Fixes #29098. Also remove an
13823         usused and incomplete function.
13824
13825 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13826
13827         * gc.c: report heap_size - free_bytes as total memory allocated
13828         (bug#49362).
13829
13830 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
13831
13832         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
13833         fix timezone handling problems on Windows.
13834         
13835         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13836         asserts when the year is outside the range handled by ms the functions.
13837
13838         * class.c (setup_interface_offsets): If the class is an interface,
13839         fill out its interface_offsets slot.
13840
13841 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13842
13843         * threadpool.c: mark threadpool threads as background.
13844
13845 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
13846
13847         * decimal.c - define DECINLINE to nothing if not using GCC
13848
13849 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
13850
13851         * assembly.c: More refcount fixes.
13852
13853 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13854
13855         * string-icalls.c: if we're not trimming, return the same string.
13856         When not splitting, don't create a new string.
13857
13858 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13859
13860         * image.c:
13861         (mono_image_open): increment the ref_count inside the critical section.
13862
13863 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
13864
13865         * image.c (mono_image_open): Fix reference counting bug.
13866
13867 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
13868
13869         * marshal.c (mono_marshal_type_size) struct alignment changed for 
13870         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
13871         64bits. Avoid leak in mono_marshal_get_native_wrapper when
13872         mono_lookup_pinvoke_call throws.        
13873
13874 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
13875
13876         * reflection.c (mono_reflection_parse_type): Fix #49114.
13877
13878         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
13879         temporary workaround for cygwin header problem.
13880
13881         * object.c (mono_object_isinst): Synchronize this with the code
13882         generated by the JIT for casts.
13883
13884 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
13885
13886         * reflection.c (encode_type): Fix #38332.
13887
13888 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
13889
13890         * marshal.c (mono_marshal_method_from_wrapper): New function to return
13891         the original method from the wrapper method.
13892
13893 2003-09-25  Martin Baulig  <martin@ximian.com>
13894
13895         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
13896         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
13897         (ves_icall_Type_get_IsGenericInstance): New interncall.
13898
13899 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
13900
13901         * object.c: fix cast warning in big endian code.
13902
13903 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
13904
13905         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
13906         
13907 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13908
13909         * assembly.c: don't call check_env from mono_assembly_load. It's
13910         already done once in mono_assemblies_init and may cause headaches when
13911         multiple threads are loading assemblies.
13912
13913 2003-09-19  Martin Baulig  <martin@ximian.com>
13914
13915         * reflection.c (mono_reflection_define_generic_parameter): Don't
13916         allocate `klass->methods', set `klass->flags' to
13917         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
13918
13919 2003-09-18  Martin Baulig  <martin@ximian.com>
13920
13921         * class.c (mono_class_init): Don't create `class->methods' if it's
13922         already initialized.
13923
13924         * metadata.c (mono_metadata_load_generic_params): Make this
13925         actually work.
13926
13927         * reflection.c (mono_reflection_define_generic_parameter): Set
13928         parent class and interfaces from the constraints.
13929
13930         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
13931         to keep this struct in sync with the declaration in TypeBuilder.cs.
13932
13933 2003-09-17  Martin Baulig  <martin@ximian.com>
13934
13935         * metadata.h (MonoType): Replaced the data's `int type_param'
13936         field with `MonoGenericParam *generic_param'.
13937         (MonoGenericParam): Added `MonoClass *klass'.
13938
13939         * class.c (mono_class_from_gen_param): Removed the
13940         `MonoImage *image' and `int type_num' arguments.
13941
13942         * metadata.c (mono_metadata_parse_generic_param): New static
13943         method; creates a MonoGenericParam which just contains the index.
13944         (do_mono_metadata_parse_type): Call
13945         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
13946         MONO_TYPE_MVAR.
13947
13948         * reflection.c (mono_image_typedef_or_ref): Generic type
13949         parameters may be in the same assembly, but never use a typedef
13950         for them.
13951         (mono_reflection_define_generic_parameter): We're now creating a
13952         "real" class for the type parameter; it's now safe to call
13953         mono_class_from_mono_type() on the class'es type, it'll do the
13954         right thing.
13955
13956 2003-09-16  Martin Baulig  <martin@ximian.com>
13957
13958         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
13959         `symfile->range_entry_size' and `symfile->class_entry_size' here;
13960         the `symfile' data structure must be fully initialized before it
13961         gets added to the table.
13962
13963 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
13964
13965         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
13966
13967         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
13968         class init trampolines.
13969
13970 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
13971
13972         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
13973         to the built-in profiler to turn off time and allocation profiling
13974         respectively.
13975
13976 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
13977
13978         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
13979         g_direct_equal.
13980
13981         * debug-helpers.c (mono_method_full_name): Print the wrapper type
13982         in human readable form.
13983
13984 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
13985
13986         * reflection.c icall.c: Fixed warnings.
13987
13988         * image.c (load_class_names): Use a temporary hash table to hold the
13989         namespaces in order to avoid doing many string comparisons.
13990
13991         * image.h: Fix typo.
13992
13993         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
13994         Pass NULL instead of g_direct_equal to the GHashTable constructor 
13995         since the NULL case is short-circuited inside g_hash_table_lookup, 
13996         leading to better performance.  
13997
13998         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
13999         obtain the first custom attribute for a given index. Depends on the
14000         CustomAttribute table being sorted by the parent field.
14001
14002         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14003         for better performance.
14004
14005 2003-09-07  Martin Baulig  <martin@ximian.com>
14006
14007         * class.c (mono_class_init): If we're a generic instance, inflate
14008         all our methods instead of loading them from the image.
14009         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14010
14011 2003-09-07  Martin Baulig  <martin@ximian.com>
14012
14013         * mono-debug-debugger.c: Added support for constructors.
14014
14015 2003-09-06  Martin Baulig  <martin@ximian.com>
14016
14017         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14018         New interncall.
14019
14020         * reflection.c (mono_reflection_setup_generic_class): Call
14021         ensure_runtime_vtable() to create the vtable.
14022
14023 2003-09-05  Martin Baulig  <martin@ximian.com>
14024
14025         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14026         MONO_TYPE_MVAR.
14027
14028 2003-09-04  Martin Baulig  <martin@ximian.com>
14029
14030         * reflection.c (mono_reflection_define_generic_parameter): Generic
14031         parameters start with zero.
14032
14033 2003-09-04  Martin Baulig  <martin@ximian.com>
14034
14035         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14036
14037         * reflection.h (MonoReflectionGenericParam): New typedef.
14038         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14039         the generic parameters from the managed TypeBuilder.
14040
14041         * reflection.c (mono_reflection_define_generic_parameter): New function.
14042         (mono_reflection_create_runtime_class): Encode generic parameters.
14043         (mono_reflection_setup_generic_class): New function; this is
14044         called after adding adding all generic params to the TypeBuilder.
14045         (encode_type): Added MONO_TYPE_VAR.
14046
14047 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14048
14049         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14050         here from the JIT.
14051
14052         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14053         load hook.
14054
14055 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14056
14057         * reflection.h reflection.c class.h class.c: Delete duplicate 
14058         definition of mono_type_get_name () from reflection.c and export the
14059         one in class.c.
14060
14061         * class.c: Class loading fixes from Bernie Solomon 
14062         (bernard@ugsolutions.com).
14063
14064         * reflection.c: Endianness fixes from Bernie Solomon 
14065         (bernard@ugsolutions.com).
14066         
14067 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14068
14069         * assembly.h assembly.c: Define a file format version for AOT
14070         libraries.
14071         
14072         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14073
14074         * appdomain.h (MonoJitInfo): New field to determine whenever the
14075         code is domain neutral.
14076         
14077 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14078
14079         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14080
14081 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14082
14083         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14084         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14085         Avoid caching the result since strings must be domain specific. Fixes
14086         #48050.
14087
14088 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14089
14090         * marshal.c (mono_marshal_init): Make this callable multiple times
14091         since it is hard to find a correct place to call it.
14092
14093         * object.c (mono_runtime_class_init): Execute static constructors in
14094         the correct appdomain.
14095
14096         * image.c (build_guid_table): Handle the case when multiple images have
14097         the same GUID.
14098
14099 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14100
14101         * icall.c: added a couple of icalls for System.Web.
14102
14103 2003-08-28  Martin Baulig  <martin@ximian.com>
14104
14105         * icall.c (ves_icall_Type_BindGenericParameters): Use
14106         `klass->generic_inst' instead of `&klass->byval_arg' in the
14107         mono_type_get_object() call.  The returned type must be
14108         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14109
14110 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14111
14112         * NOTES: New file.
14113
14114         * object.c (mono_class_proxy_vtable): Make it thread safe.
14115
14116         * pedump.c: Fix warning.
14117
14118         * object.c appdomain.h: Get rid of metadata_section. 
14119         It is no longer needed and it was causing deadlocks with domain->lock.
14120
14121         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14122
14123 2003-08-26  Martin Baulig  <martin@ximian.com>
14124
14125         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14126
14127 2003-08-26  Martin Baulig  <martin@ximian.com>
14128
14129         * pedump.c (main): Call mono_metadata_init(),
14130         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14131         and mono_loader_init().
14132
14133 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14134
14135         * loader.h: Add missing include to fix build.
14136
14137         * image.h: mono_image_load_references is no more.
14138
14139         * assembly.c: Reworked assembly loading to make it really thread safe.
14140         After these changes, the assembly returned by mono_assembly_open is
14141         fully initialized, i.e. all its references assemblies are loaded.
14142
14143         * assembly.c (mono_image_load_references): Renamed to 
14144         mono_assembly_load_references, and made private, since clients no
14145         longer need to call it.
14146
14147         * class.c: Removed calls to mono_assembly_load_references, since it was
14148         a source of deadlocks.
14149
14150         * loader.h loader.c class.h class.c: Protect data structures using a 
14151         new lock, the loader lock.
14152
14153         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14154         GPtrArrays only when needed.
14155
14156         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14157         into empty structures by mcs. Fixes pinvoke7.cs.
14158         
14159         * domain.c (mono_init): Call a new initialization function.
14160
14161         * appdomain.c (mono_runtime_init): Call the new initializer function
14162         of the marshal module.
14163
14164         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14165         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14166
14167         * marshal.h marshal.c: Added locks around the wrapper caches to make
14168         this module thread safe.
14169
14170         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14171         this argument. Fixes pinvoke1.exe.
14172
14173 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14174
14175         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14176         enumeration of values. Removed fields to store remote call output values in
14177         MonoAsyncResult. Not needed any more.
14178         * object.c: Initialize call_type and async_result fields in mono_message_init.
14179         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14180         dispatching the message.
14181         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14182         async call to finish. To do it use a message with EndInvoke call type.
14183
14184 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14185
14186         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14187         determines whenever a method has marshalling info.
14188
14189 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14190
14191         * assembly.c: fix the build on windows.
14192
14193 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14194
14195         * object.cs: Fixed bug #47785.
14196
14197 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14198
14199         * string-icalls.c (StringReplace): If their are no occurances of
14200         the old string found return a reference to the supplied
14201         string. This saves some memory and matches MS behavoir.
14202         
14203 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14204
14205         * socket-io.c: fixed compilation for systems that define AF_INET6
14206         and don't define SOL_IP/SOL_IPV6.
14207
14208 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14209
14210         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14211         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14212
14213         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14214
14215         * domain.c: Make this module thread safe.
14216
14217         * domain.c (mono_init): Call new initialization function.
14218
14219         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14220         reference types too. Fixes #38812.
14221
14222         * image.c (mono_image_init): Fixed warnings.
14223
14224         * class.c (mono_class_from_typeref): Handle assembly load failure
14225         correctly.
14226
14227         * appdomain.c (add_assemblies_to_domain): Handle the case when
14228         the references of an assembly are not yet loaded.
14229
14230         * metadata.c image.c assembly.c: Moved initialization of global
14231         variables to a separate function called at startup since lazy 
14232         initialization of these variables is not thread safe.
14233         
14234         * image.c assembly.c: Made this module thread safe by adding locks in 
14235         the appropriate places.
14236
14237         * domain.c (mono_init): Call the new initialization functions of the
14238         three modules.
14239
14240 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14241
14242         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14243           make a direct call. It is proxy's work to make the call asynchronous.
14244           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14245           the return values.
14246         * object.cs: mono_method_call_message_new(): read AsyncResult and
14247           state object from parameters list, if this info is requested.
14248         * object.h: Added fields to store remote call output values in
14249           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14250
14251 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14252
14253         * object.h: add needed fields to MonoThread.
14254         * threads.c, threads.h: allow registering a function to cleanup data
14255         allocated per thread by the JIT.
14256
14257 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14258
14259         * loader.h: portability fix by Bernie Solomon
14260         * <bernard@ugsolutions.com>.
14261
14262 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14263
14264         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14265         return a MonoArray. This simplifies the code and also ensures that
14266         the cache allways contains an object reference as a value.
14267
14268         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14269         function.
14270
14271 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14272
14273         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14274         fixes a problem with byte ordering when getting the address family for
14275         a socket.
14276
14277 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14278
14279         * .cvsignore: Added monosn.
14280
14281         * reflection.h reflection.c loader.c: Added support for parameter
14282         marshalling to dynamically created types. Fixes #47295.
14283
14284 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14285
14286         * rand.c: remove useless warnings.
14287
14288 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14289
14290         * class.c: implemented ldtoken for methods and fieldrefs.
14291
14292 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14293
14294         * threadpool.c: when mono_async_invoke was called, no one took care of
14295         monitoring the queue. So if the method invoked took some time and we
14296         got new async invoke requests after 500 ms (the thread created waited
14297         that long in WaitForSingleObject), the new async invoke was not called
14298         until the previous one finished.
14299
14300         This is fixed now. Thanks to Totte for helping with it.
14301
14302 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14303
14304         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14305
14306 2003-08-11  Martin Baulig  <martin@ximian.com>
14307
14308         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14309
14310 2003-08-06  Martin Baulig  <martin@ximian.com>
14311
14312         * mono-debug-debugger.c: Added support for static fields,
14313         properties and methods.
14314
14315 2003-08-06  Martin Baulig  <martin@ximian.com>
14316
14317         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14318         make this work for applications with multiple application domains.
14319
14320 2003-08-04  Martin Baulig  <martin@ximian.com>
14321
14322         * mono-debug-debugger.c: Completely reworked the type support; the
14323         most important thing is that we're now just using one single
14324         `MonoType' instance per type.
14325
14326 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14327
14328         * mono-endian.h, mono-endian.c, icall.c: Added icall
14329         ves_icall_System_Double_AssertEndianity to assert double word endianity
14330         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14331
14332 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14333
14334         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14335         support, icalls and fixes.
14336
14337 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14338
14339         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14340         classes that are a punctuation character in .NET is not the same a
14341         g_unichar_ispunct.
14342
14343 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14344
14345         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14346
14347 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14348
14349         * icall.c: Add new MemCopy internalcall.
14350         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14351         Simplified code; It is not necessary to handle all the cases here,
14352         as the C# code takes care of it.  Only handle the case of the name
14353         resource embedded into the assembly.
14354
14355         Changed signature to return the data pointer and the size of the
14356         data. 
14357
14358 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14359
14360         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14361         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14362
14363 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14364
14365         * socket-io.c: ignore EINTR error in select.
14366
14367 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14368
14369         * class.h, class.c: removed unused subclasses field in MonoClass.
14370
14371 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14372
14373         * icall.c: improve fix of get_base_definition(). If the parent class
14374           doesn't have the mehod, look at the parent of the parent.
14375         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14376           to check if a parameter is an in or out parameter
14377           (PARAM_ATTRIBUTE_IN is not set by default).
14378           mono_method_return_message_restore(): Use mono_class_value_size to
14379           get the size of a value type. mono_type_stack_size (parameterType)
14380           does not return the correct value if parameterType is byRef.
14381           mono_load_remote_field(), mono_load_remote_field_new(),
14382           mono_store_remote_field(), mono_store_remote_field_new():
14383           raise exception if the remote call returns an exception.
14384
14385 2003-07-28  Martin Baulig  <martin@ximian.com>
14386
14387         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14388         method.  This is a wrapper around mono_runtime_invoke() which
14389         boxes the instance object if neccessary.
14390
14391 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14392
14393         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14394         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14395
14396 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14397
14398         * icall.c: disable mcs bug workaround.
14399
14400 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14401
14402         * object.c (mono_runtime_class_init): Take the metadata_section
14403         mutex before obtaining the domain mutex.
14404
14405         * appdomain.h: Added definition of metadata_section mutex here. 
14406
14407         * object.c: define metadata_mutex here.
14408
14409 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14410
14411         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14412         fixed.
14413
14414 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14415
14416         * reflection.c: Fix bug #46669
14417
14418 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14419
14420         * exception.c:
14421         * exception.h:
14422         * icall.c:
14423         * object.h: fill in the type name for TypeLoadException.
14424
14425 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14426
14427         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14428         relationship between TypeBuilders while compiling corlib) and bug
14429         45993 (Array types returned from the runtime while compiling
14430         corlib were from the loaded corlib).
14431
14432 2003-07-22  Martin Baulig  <martin@ximian.com>
14433
14434         * mono-debug-debugger.c: Reworked the type support a bit more;
14435         distinguish between types and classes.
14436
14437 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14438
14439         * icall.c: add IsArrayImpl icall.
14440
14441 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14442
14443         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14444         initializing real_size only once. Also fix bug #46602.
14445
14446 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14447
14448         * object.c: Renamed mono_metadata_section to metadata_section.
14449
14450 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14451
14452         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14453           empty array if the type is an array. Fixed.
14454           ves_icall_MonoMethod_get_base_definition: if the base method
14455           is abstract, get the MethodInfo from the list of methods of
14456           the class.
14457         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14458           and it was 1-based. Fixed in mono_param_get_objects.
14459
14460 2003-07-20  Martin Baulig  <martin@ximian.com>
14461
14462         * mono-debug.h: Set version number to 31.
14463         (mono_debug_init): Added `MonoDomain *' argument.
14464
14465         * mono-debug-debugger.c: Reworked the type support; explicitly
14466         tell the debugger about builtin types; pass the `klass' address to
14467         the debugger.
14468
14469 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14470
14471         * image.c: Allow new metadata tables to be loaded without a
14472         warning. Also update the warning message to give the new constant value.
14473                 
14474 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14475
14476         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14477         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14478         array type representation changes.
14479
14480 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14481
14482         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14483         on Environment.Exit () call.
14484
14485 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14486
14487         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14488         requires a matching corlib.
14489
14490 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14491
14492         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14493           Committed again without the CRs.
14494         
14495 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14496
14497         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14498           getting it from the "this" socket instance. Did not work
14499           if the socket is a subclass of Socket.
14500           Also fixed bug #35371.
14501
14502 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14503
14504         * metadata.c: fixed size for TypedByRef.
14505         * loader.c: when searching for a method, consider the vararg amrker.
14506         * unicode.c, decimal.c: constify some arrays.
14507
14508 2003-07-15  Dick Porter  <dick@ximian.com>
14509
14510         * socket-io.c: Fixed compilation for gcc < 3.2.
14511
14512         Fixed compilation for machines that don't have AF_INET6 (thanks to
14513         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14514
14515         Fixed compile warnings.
14516         
14517         Fixed formatting and line endings.
14518
14519 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14520
14521         * socket-io.h:
14522         * socket-io.c: Added IPv6 support.
14523
14524 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14525
14526         * class.c (mono_class_is_assignable_from): New function to implement
14527         the is_assignable_from logic. Used by mono_object_isinst, 
14528         Type::IsAssignableFrom () and the interpreter.
14529
14530         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14531         Object, even interfaces.
14532         
14533         * object.c (mono_object_isinst): Implement in terms of 
14534         is_assignable_from.
14535
14536         * icall.c (ves_icall_type_is_assignable_from): New icall.
14537
14538 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14539
14540         * domain.c (foreach_domain): fix compiler warning.
14541
14542 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14543
14544         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14545         not available on all plattforms
14546
14547 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14548
14549         * image.h image.c: Store the metadata version string in MonoImage.
14550         * icall.c: New icall to retrieve the image version.
14551         * reflection.c (create_dynamic_image): Fill in the image version field
14552         * reflection.c (build_compressed_metadata): Use the image version
14553         from the image structure.
14554
14555 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14556
14557         * appdomain.c: modified comment.
14558         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14559         That will be its last iteration when mono_gc_cleanup is called from
14560         mono_runtime_cleanup and before the domain is unloaded.
14561
14562         Fixes bug #45962.
14563
14564 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14565
14566         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14567         attributes.
14568
14569 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14570
14571         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14572         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14573         Bernie Solomon <bernard@ugsolutions.com>.
14574
14575 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14576
14577         * object.c, object.h: provide mono_object_new_fast() for faster
14578         allocation in some special cases.
14579
14580 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14581
14582         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14583         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14584
14585 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14586
14587         * threadpool.c: fix leaks.
14588
14589 2003-07-01  Dick Porter  <dick@ximian.com>
14590
14591         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14592         using MonoGHashTables.  Fixes threadpool bug posted to list.
14593
14594 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14595
14596         * image.h, image.c: added support to load an assembly from a byte array.
14597         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14598         assembly bundle support.
14599
14600 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14601
14602         * threadpool.c (mono_thread_pool_add): keep a reference to the
14603         AsyncResult to prevent GC
14604
14605 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14606
14607         * class.c: leak fix.
14608
14609 2003-06-25  Dick Porter  <dick@ximian.com>
14610
14611         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14612         for the async object, the WaitHandle object will close the handle.
14613         Fixes bug 45321.
14614
14615 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14616
14617         * class.c: in mono_array_class_get (), lookup from the hash with the
14618         same type we insert: this works around a bug in
14619         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14620         lluis. The real fix will have to wait for after the release.
14621
14622 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14623
14624         * icall.c: fix memory leak when getting type members.
14625
14626 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14627
14628         * reflection.c: added more pubtoken special cases.
14629
14630 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14631
14632         * class.c: handle field offset correctly when class size
14633         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14634
14635 2003-06-20  Martin Baulig  <martin@ximian.com>
14636
14637         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14638         *image' field.
14639
14640 2003-06-20  Martin Baulig  <martin@ximian.com>
14641
14642         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14643
14644 2003-06-20  Martin Baulig  <martin@ximian.com>
14645
14646         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14647         just distinguish between variables in registers and variables at
14648         an offset relative to a register.
14649
14650 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14651
14652         * icall.c: #ifdef out latest changes until mcs is fixed.
14653
14654 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14655
14656         * icall.c: return members in metadata order.
14657
14658 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14659
14660         * icall.c: avoid infinite loop in GetTimeZoneData.
14661
14662 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14663
14664         * icall.c: added Marshal.Prelink/All icalls.
14665
14666 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14667
14668         * object.c, object.h: fix warnings and do some overflow checking
14669         when creating arrays.
14670
14671 2003-06-17  Dick Porter  <dick@ximian.com>
14672
14673         * file-io.h:
14674         * file-io.c: File attributes need to be tweaked slightly when
14675         passed from the managed to the w32 world.
14676
14677 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14678         * profiler.h profiler-private.h profiler.c: Rework last patch
14679         based on suggestion by Paolo.
14680         
14681 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14682
14683         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14684         instruction level coverage data collection.
14685         * profiler.h profiler.c (: Added new callback function which can be
14686         used by the profiler to limit which functions should have coverage
14687         instrumentation.
14688         * profiler.c (mono_profiler_load): Call g_module_build_path to
14689         generate the file name of the profiler library.
14690
14691 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14692
14693         * profiler.c, profiler.h, profiler-private.h: added basic block 
14694         coverage profiling API.
14695
14696 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
14697
14698         * reflection.c (mono_reflection_create_runtime_class): Add support
14699         for events in dynamically generated code.
14700
14701         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14702         not allocated.
14703
14704 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14705
14706         * icall.c: when getting timezone info, return reasonable values if we
14707         can't get the actual data.
14708
14709 2003-06-14  Dick Porter  <dick@ximian.com>
14710
14711         * threads.c (start_wrapper): Remove the reference to the thread
14712         object in the TLS data, so the thread object can be finalized.
14713         This won't be reached if the thread threw an uncaught exception,
14714         so those thread handles will stay referenced :-( (This is due to
14715         missing support for scanning thread-specific data in the Boehm GC
14716         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14717
14718 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14719
14720         * reflection.c: ensure streams and tables are first allocated with
14721         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14722
14723 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14724
14725         * icall.c: fixed GetElementType for byrefs (bug# 44792).
14726
14727 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
14728
14729         * reflection.c (mono_reflection_create_runtime_class): Add support for
14730         properties to dynamically created classes.
14731         * reflection.c: Fix a few places where non-MonoObjects were inserted
14732         into the tokens hashtable.
14733
14734 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14735
14736         * object.c: some support to handle out of memory exceptions.
14737
14738 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
14739
14740         * marshal.c (mono_marshal_get_native_wrapper): support reference
14741         return types
14742
14743 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14744
14745         * object.h, object.c: more portability stuff from Bernie Solomon.
14746         Unexport mono_object_allocate(). Added mono_object_unbox ().
14747         Set exitcode when an unhandled exception is thrown.
14748
14749 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
14750
14751         * marshal.c (mono_marshal_get_native_wrapper): use custom
14752         marshaler for return types.
14753
14754 2003-06-10  Dick Porter  <dick@ximian.com>
14755
14756         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14757         ip_mreq is available
14758
14759 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14760
14761         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14762         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14763         by Bernie Solomon <bernard@ugsolutions.com>.
14764
14765 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
14766
14767         * gc.c (mono_gc_init): Avoid error message on shutdown when
14768         GC_DONT_GC=1 is used.
14769
14770         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
14771         New icall to return the GUID of a module.
14772
14773 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14774
14775         * class.c: ensure instance size always includes the parent's size
14776         even whem class size is set explicitly (fixes bug#44294).
14777
14778 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14779
14780         * profiler.h, profiler.c: made the simple profiler thread-safe,
14781         get more accurate timing info. Allow the loading of an
14782         externally-developed profiler module.
14783
14784 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
14785
14786         * marshal.c (mono_marshal_get_native_wrapper): improved
14787         class/byref arguments.
14788         (mono_marshal_get_native_wrapper): better string marshaling support.
14789
14790 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14791
14792         * class.c: ensure .pack and .size are handled correctly and
14793         simplified layout of static fields.
14794
14795 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
14796
14797         * appdomain.c
14798         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14799
14800         * loader.c (mono_lookup_pinvoke_call): look for modules in the
14801         current directory (fix bug 44008)
14802
14803 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
14804
14805         * marshal.c (mono_marshal_get_native_wrapper): started support for
14806         custom marshalers.
14807         (mono_delegate_to_ftnptr): consider marshalling specifications
14808
14809 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14810
14811         * reflection.c, reflection.h: emit custom marshal info.
14812
14813 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14814
14815         * object.c: free the GError.
14816         * icall.c: added CloseEvent_internal.
14817         * threads.[ch]:
14818         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14819         call.
14820
14821 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
14822
14823         * loader.c (mono_method_get_signature): Add support for dynamic
14824         assemblies.
14825
14826 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14827
14828         * reflection.c: fixed bug #43905.
14829
14830 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14831
14832         * class.c, domain.c, icall.c, metadata.h, object.h: support for
14833         handling TypedReference and ArgIterator.
14834         * loader.c, loader.h: added function to get signature at call site.
14835
14836 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14837
14838         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
14839         data readonly. Buglets and warning fixes. Some MethodSpec support.
14840
14841 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14842
14843         * class.h, class.c, object.c: remove relative numbering support.
14844
14845 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
14846
14847         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14848         free the string, until we get a chance to fix Gtk#
14849
14850 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14851
14852         * marshal.c: revert last patch.
14853
14854 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14855
14856         * icall.c: updates for new mono_class_vtable() not calling
14857         the type constructor anymore.
14858
14859 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14860
14861         * object.h, object.c: separate vtable creation from type
14862         initialization. Make running the .cctor thread safe.
14863
14864 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
14865
14866         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14867
14868 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
14869
14870         * loader.c (mono_get_method): consider calling convention
14871
14872 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
14873
14874         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14875         to return the invisible global type for a module.
14876
14877         * reflection.c (mono_image_build_metadata): Emit global fields too.
14878
14879 2003-05-20  Peter Williams  <peterw@ximian.com>
14880
14881         * loader.c (mono_lookup_internal_call): Add a few newlines.
14882
14883 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
14884
14885         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
14886         literal strings.
14887
14888         * appdomain.c (set_domain_search_path): Recalculate search path when
14889         AppDomainSetup.PrivateBinPath changes.
14890
14891         * object.c (mono_class_compute_gc_descriptor): It turns out some
14892         parts of the class libs (like System.Thread) holds pointers to
14893         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
14894         to treat native int a pointer type here.
14895         
14896 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
14897
14898         * appdomain.h, domain.c: add hashtable for jump target resolution.
14899
14900 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
14901
14902         * reflection.h reflection.c icall.c: Added new icalls 
14903         GetManifestResourceInfoInternal, GetModulesInternal and support
14904         infrastructure.
14905
14906 2003-05-16  Dick Porter  <dick@ximian.com>
14907
14908         * icall.c:
14909         * file-io.h:
14910         * file-io.c: Implement System.IO.MonoIO::GetTempPath
14911
14912 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
14913
14914         * object.c: mono_store_remote_field: little fix to previous patch.
14915
14916 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14917
14918         * class.c: add constructors to array classes.
14919         * icall.c: special case array construction for InternalInvoke (),
14920
14921 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
14922
14923         * class.h class.c reflection.c object.c: Added support for field
14924         defaults in dynamically generated classes.
14925
14926 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
14927
14928         * reflection.c: properly encode charset for ddlimport.
14929
14930 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
14931
14932         * threads.c: allow compiling without GC.
14933
14934 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14935
14936         * appdomain.h, object.c, object.h, threads.c, threads.h: added
14937         handling of thread static data.
14938
14939 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14940
14941         * reflection.h, reflection.c: added mono_custom_attrs_free ().
14942
14943 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
14944
14945         * class.c (mono_array_class_get): always set the serializable flags
14946         (mono_array_class_get): always set the SEALED attribute for array types
14947
14948 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
14949
14950         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
14951         attributes (fix for bug 42021).
14952
14953 2003-05-12  Dick Porter  <dick@ximian.com>
14954
14955         * gc.c: Don't run finalizers when the finalizer thread is
14956         finishing up, because the default domain has already been
14957         destroyed.
14958
14959 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
14960
14961         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
14962         value is null, we should throw an exception.   This is slightly
14963         different than the other conventions used for the constructor.
14964
14965 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14966
14967         * socket-io.c: fixed windows build.
14968
14969 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14970
14971         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
14972
14973 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
14974
14975         * object.c (mono_string_new_wrapper): Compatibility fix for MS
14976         compilers.
14977
14978 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
14979
14980         * class.c (mono_class_layout_fields): Add experimental GC aware
14981         auto layout facility. Requires class library changes to work correctly.
14982
14983         (mono_class_setup_vtable): Avoid overriding explicit interface
14984         method implementations. Fixes iface3.exe test.
14985
14986         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
14987         object reference.
14988         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
14989         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
14990
14991         * metadata.h: Add new type classification macro which determines
14992         whenever the type holds an object reference.
14993
14994 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
14995
14996         * marshal.c (mono_marshal_get_native_wrapper): cleanups
14997
14998 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
14999
15000         * gc.c (finalizer_thread): Work around a GC bug.
15001
15002 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15003
15004         * marshal.c (emit_struct_conv): allow unions
15005
15006         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15007
15008 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15009
15010         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15011
15012 2003-05-06  Martin Baulig  <martin@ximian.com>
15013
15014         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15015
15016 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15017
15018         * socket-io.c:
15019         (Select_internal): allow NULLs, don't create arrays if not needed.
15020         Coupled with Socket.cs changes.
15021
15022         * threadpool.c:
15023         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15024         register a finalizer for it that will close the semaphore handle. This
15025         fixes the leak and make Lupus' test run with > 4080 loops.
15026
15027 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15028
15029         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15030         Jerome Laban (bug #42287)
15031
15032 2003-05-02  Martin Baulig  <martin@ximian.com>
15033
15034         * debug-mono-symfile.h
15035         (MonoSymbolFile): Moved declaration into mono-debug.h.
15036         (MonoDebugMethodJitInfo): Likewise.
15037         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15038         argument.
15039         (_mono_debug_address_from_il_offset): Take a
15040         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15041
15042         * mono-debug.h
15043         (MonoDebugDomainData): New struct.
15044         (mono_debug_get_domain_data): New function.
15045         (mono_debug_add_method): Take an additional `MonoDomain *'
15046         argument.
15047         (mono_debug_source_location_from_address): Likewise.
15048         (mono_debug_il_offset_from_address): Likewise.
15049         (mono_debug_address_from_il_offset): Likewise.
15050
15051 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15052
15053         * reflection.c: one more check for null type in custom attrs.
15054
15055 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15056
15057         * reflection.c: avoid warning (comparison is always false due to limited
15058         range of data type).
15059
15060 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15061
15062         * icall.c: throw an exception in Type.GetField if the argument 'name'
15063         is NULL.
15064
15065 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15066
15067         * reflection.c: fixed handling of enums in named arguments to custom
15068         attributes (bug #42123).
15069
15070 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15071
15072         * reflection.c: use the right array element type and handle
15073         a null for a Type argument, too.
15074
15075 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15076
15077         * reflection.c: handle arrays as arguments to custom attributes.
15078
15079 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15080
15081         * reflection.c: handle a string value in a custom attr
15082         ctor that takes an object.
15083
15084 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15085
15086         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15087         (fix bug #42063)
15088
15089 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15090
15091         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15092
15093 2003-04-27  Martin Baulig  <martin@ximian.com>
15094
15095         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15096         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15097         MONO_DEBUGGER_EVENT_BREAKPOINT.
15098         (mono_breakpoint_trampoline_code): Removed.
15099         (mono_debugger_event_handler): The last argument is now a
15100         `guint32'.
15101         (mono_debugger_insert_breakpoint_full): Removed the
15102         `use_trampoline' argument.
15103         (mono_debugger_method_has_breakpoint): Likewise.
15104         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15105         mono_debugger_breakpoint_callback(); take the method and
15106         breakpoint number as arguments.
15107
15108 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15109
15110         * metadata.c: fix off by one when loading parameters attributes.
15111
15112 2003-04-24  Martin Baulig  <martin@ximian.com>
15113
15114         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15115
15116 2003-04-24  Martin Baulig  <martin@ximian.com>
15117
15118         * mono-debug-debugger.c: Moved all code which interacts with the
15119         Mono Debugger here.
15120
15121         * debug-mono-symfile.c: This code now just deals with the symbol
15122         file itself, the debugger code is now in mono-debug-debugger.c.
15123
15124 2003-04-23  Martin Baulig  <martin@ximian.com>
15125
15126         * mono-debug.c (mono_debug_source_location_from_il_offset):
15127         New method; like mono_debug_source_location_from_address(), but
15128         takes an IL offset instead of a machine address.
15129
15130 2003-04-23  Martin Baulig  <martin@ximian.com>
15131
15132         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15133         `line' field; this is now computed by the debugger.
15134
15135 2003-04-23  Martin Baulig  <martin@ximian.com>
15136
15137         * mono-debug.[ch]: New files.  This is the new debugging interface.
15138
15139         * mono-debug-debugger.[ch]: New files.  Moved all code which
15140         interacts with the Mono Debugger here.
15141
15142 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15143
15144         * domain.c (mono_init): initialize mono_defaults.monitor_class
15145
15146 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15147
15148         * reflection.c (method_encode_code): Add a spicy exception to help
15149         future compiler authors.
15150
15151 2003-04-21  Martin Baulig  <martin@ximian.com>
15152
15153         * icall.c
15154         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15155         Make this work with relative pathnames; g_filename_to_uri() needs
15156         an absolute filename.
15157
15158 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15159
15160         * icall.c: Track name changes in Object and ValueType.
15161
15162 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15163
15164         * metadata.c (mono_type_stack_size): size should be a multiple of
15165         sizeof (gpointer)
15166
15167 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15168
15169         * gc.c:
15170         (internal_domain_finalize): moved into mono_domain_finalize. No need
15171         to create another thread because the finalizers will be run in the
15172         finalizer thread.
15173         
15174         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15175         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15176         to be run (MS does this too).
15177
15178 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15179
15180         * object.c (mono_class_compute_gc_descriptor): Update comment.
15181
15182         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15183
15184         * image.h: Add synchronized wrapper cache.
15185
15186         * image.c (do_mono_image_open): Initialize cache.
15187
15188         * reflection.c (create_dynamic_mono_image): Initialize cache.
15189
15190 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15191
15192         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15193         ves_icall_System_Buffer_ByteLengthInternal.
15194
15195 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15196
15197         * reflection.c: setup klass->nested_in earlier. Allow
15198         a dash in the assembly name.
15199
15200 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15201
15202         * metadata.c (mono_type_to_unmanaged): dont access
15203         type->data.klass for MONO_TYPE_OBJECT
15204         (mono_type_to_unmanaged): consider System.Delegate class
15205
15206 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15207
15208         * class.c: just setup supertypes in the proper place instead of
15209         initializing the full element class for arrays.
15210
15211 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15212
15213         * class.c: ensure the element class of arrays is initialized.
15214         Setup the supertype info for array classes, too.
15215
15216 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15217
15218         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15219
15220 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15221
15222         * Makefile.am: re-added -m option when running cygpath. This way,
15223         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15224         separator.
15225         * mono-config.c: same codepath for locating mono config file for WIN32
15226         and the rest.
15227         * assembly.c: if mono_assembly_setrootdir is called, don't override
15228         the value set.
15229
15230 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15231
15232         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15233         MONO_ASSEMBLIES variable.
15234
15235 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15236
15237         * icall.c: added Assembly::GetNamespaces() icall.
15238
15239 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15240
15241         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15242
15243 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15244
15245         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15246         * object.c: fixed bug in the construction of vtable for proxies
15247
15248 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15249
15250         * object.c (mono_array_new): Mark mono_array_new as an icall.
15251
15252 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15253
15254         * class.c: fixed test for public method when overriding interfaces.
15255         Closes bug #40970.
15256
15257 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15258
15259         * appdomain.h, domain.c: added mono_domain_foreach() to
15260         be able to access the currently loaded appdomains.
15261         * object.c: make string interning work across sppdomains.
15262         Mark some functions for use as icalls.
15263
15264 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15265
15266         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15267
15268         * reflection.h reflection.c: Allocate long living data using 
15269         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15270
15271         * reflection.c: Double the allocation size in streams instead of
15272         increasing it, to prevent unneccesary copying on large assemblies.
15273         
15274         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15275         creation if the assembly does not have the Run flag set.
15276
15277 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15278
15279         * class.h: avoid the C++ keywords in header files (Jerome Laban
15280         spotted and fixed this).
15281
15282 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15283
15284         * object.c:
15285         (mono_unhandled_exception): fill in the arguments for the
15286         UnhandledException event. Only trigger that event for the default
15287         domain (as MS does).
15288
15289 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15290
15291         * object.c: Improve typed allocation stuff based on suggestions from
15292         Paolo. Also turn it on if the GC library supports it.
15293
15294 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15295
15296         * object.c object.h class.h: Added experimental typed allocation
15297         facility using the interfaces in gc_gcj.h.
15298
15299         * os/gc_wrapper.h: Added new include files.
15300         
15301 2003-04-03  Martin Baulig  <martin@ximian.com>
15302
15303         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15304         which is not yet enabled by default.
15305
15306         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15307         functions.
15308         (mono_gc_lock, mono_gc_unlock): New static functions.
15309
15310         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15311         functions; stop/start the world for the garbage collector.  This
15312         is using the windows API; we need to complete the SuspendThread()/
15313         ResumeThread() implementation in the io-layer to make this work on Unix.
15314         (mono_gc_push_all_stacks): New public function; tells the garbage
15315         collector about the stack pointers from all managed threads.
15316
15317 2003-04-03  Martin Baulig  <martin@ximian.com>
15318
15319         * object.h (MonoThread): Added `gpointer stack_ptr'.
15320
15321         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15322
15323 2003-04-03  Martin Baulig  <martin@ximian.com>
15324
15325         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15326
15327 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15328
15329         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15330         field.last.
15331
15332 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15333
15334         * loader.c (mono_lookup_internal_call): Report the corlib that is
15335         out of sync.
15336
15337 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15338
15339         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15340         System.DBNull (it's class not valuetype).
15341
15342 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15343
15344         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15345         if the array method was already assigned a token (fixes bug#40646).
15346
15347 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15348
15349         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15350         if no assembly is given.
15351
15352 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15353
15354         * metadata.h: Added the new tables.
15355
15356         * row-indexes.h: Added definitions for new tables.
15357
15358         * metadata.c: Add schemas for new tables, and add support for
15359         computing the sizes of them.
15360
15361         * class.c: Update for handling the new type cases.
15362
15363 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15364
15365         * metadata.h (MONO_TYPE_IS_VOID): new macro
15366
15367 2003-03-31  Martin Baulig  <martin@ximian.com>
15368
15369         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15370
15371         * threads.c (mono_thread_new_init): Call `thread_created' in the
15372         mono_thread_callbacks.
15373
15374 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15375
15376         * loader.h: added marshalbyrefobject_class to mono_defaults
15377         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15378         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15379           generation of output parameters.
15380           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15381         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15382           contextbound and the target object belongs to the context of the caller.
15383         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15384         * object.c: Implemented support for interfaces and abstract classes
15385           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15386           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15387
15388 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15389
15390         * class.h class.c (mono_class_is_subclass_of): New function.
15391         
15392         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15393         routines for most common case (calls from ArrayList::ToArray).
15394
15395         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15396         routine so programs which call Environment::Exit() can be profiled.
15397
15398         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15399         Added MONO_ARCH_SAVE_REGS.
15400
15401         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15402
15403 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15404
15405         * blob.h: Add a couple of new MonoType types definitions.
15406
15407         * tabledefs.h: Add a couple of new call convs.
15408
15409 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15410
15411         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15412         the layout of the class.
15413
15414         * reflection.c (alloc_table): double the size on overflow to avoid
15415         unnecessary copying.
15416
15417         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15418         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15419         null so it can be garbage collected.
15420         
15421 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15422
15423         * reflection.c (mono_reflection_get_type): Return the resolved type
15424         only if it is in the assembly we searched.
15425
15426         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15427
15428         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15429         method.
15430
15431 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15432
15433         * appdomain.c:
15434         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15435         the right one is 'file:///blah', but MS allows it.
15436         * assembly.c:
15437         (mono_assembly_open): allow 'file://blah'
15438
15439         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15440
15441 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15442
15443         * socket-io.c: fixes bug #40310.
15444
15445 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15446
15447         * reflection.c (mono_reflection_parse_type): handle deeply nested
15448         types correctly.
15449
15450         * reflection.c (mono_image_create_token): Use unique token values
15451         since they will be put into a hash table.
15452
15453         * class.c (mono_class_setup_vtable): If a method occurs in more than
15454         one place in the vtable, and it gets overriden, then change the
15455         other occurances too.
15456
15457         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15458         object as return type.
15459
15460 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15461
15462         * icall.c: Deleted "ToString" implementation for double and float
15463         because they are full implemented in managed code.
15464
15465 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15466
15467         * reflection.c, reflection.h: implemented and exported functions
15468         to retrieve info about custom attributes.
15469
15470 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15471
15472         * appdomain.c: moved Uri handling to assembly.c
15473         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15474         work when using a file Uri in *nix and windows.
15475
15476         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15477         GetReferencedAssemblies.
15478
15479 2003-03-18  Dick Porter  <dick@ximian.com>
15480
15481         * icall.c: Rename a couple of internal calls
15482
15483         * threads.c: Set the thread state to Stopped when a thread exits.
15484         Fixes bug 39377.
15485
15486 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15487
15488         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15489         New icall.
15490
15491         * object.c (mono_class_vtable): fix warning.
15492
15493 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15494
15495         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15496
15497         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15498         memory.
15499         (method_encode_clauses): Create exception info structures in the right
15500         order.
15501         (mono_reflection_setup_internal_class): Initialize supertypes field.
15502
15503         * class.c object.c: Handle interfaces which implement other interfaces 
15504         correctly.
15505
15506         * class.h class.c: Move the supertypes array initialization code into 
15507         a separate function so it can be used for dynamic types too. Also call
15508         it earlier, in mono_class_init(), since it can be used before the
15509         type is initialized.
15510
15511 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15512
15513         * Makefile.am:
15514         * assembly.c:
15515         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15516
15517         * appdomain.c:
15518         * appdomain.h:
15519         * marshal.c:
15520         * object.c: remove warnings.
15521
15522 2003-03-13  Martin Baulig  <martin@ximian.com>
15523
15524         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15525         (MonoDebugLexicalBlockEntry): New types.
15526
15527         * debug-mono-symfile.c
15528         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15529
15530 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15531
15532         * process.c: ret can be any non-zero value accroding to MS doc.
15533
15534 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15535
15536         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15537         fixing a warning for a miss-used prototype, would have cause
15538         random memory corruption.
15539
15540 2003-03-07  Martin Baulig  <martin@ximian.com>
15541
15542         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15543         getting really annoying ....
15544
15545 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15546
15547         * reflection.c (fixup_method): added support for array methods.
15548
15549 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15550
15551         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15552         (pointed out by Michael Adams).
15553
15554 2003-03-04  Dick Porter  <dick@ximian.com>
15555
15556         * icall.c: Temporarily reverted the Double and Single ToString()
15557         change, because it broke nunit.
15558
15559 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15560
15561         * object.h, threads.h: make include files compatible with C++
15562         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15563
15564 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15565
15566         * icall.c: Erased ToString helper functions for Double and Single.
15567         Now, that implementations ar all in managed code (Double and Single
15568         Formatters).
15569
15570 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15571
15572         * appdomain.c: Added method for initializing the default context of
15573         a domain. Added internal call for getting the default context.
15574         * appdomain.h: Added context variable in MonoDomain struct.
15575         * domain.c: mono_domain_set also sets the default context of the domain
15576         * icall.c: Mapped internal method InternalGetDefaultContext.
15577         * object.c: mono_object_get_virtual_method returns always a remoting
15578         wrapper if the object is a transparent proxy.
15579         mono_runtime_invoke_array: when creating an object by calling the
15580         constructor, if the created object is a proxy, then the constructor should
15581         be called using the a remoting wrapper.
15582
15583 2003-03-03  Dick Porter  <dick@ximian.com>
15584
15585         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15586         variable so it compiles on solaris.  Problem spotted by
15587         Christopher Taylor <ct@cs.clemson.edu>
15588
15589 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15590
15591         * appdomain.c:
15592         (get_info_from_assembly_name): don't leak value.
15593
15594         * icall.c:
15595         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15596         result.
15597
15598 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15599
15600         * assembly.c: export mono_image_load_references ().
15601         * class.c: handle function pointers. mono_class_from_name() now
15602         supports nested type names directly.
15603
15604 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15605
15606         * reflection.h reflection.c: Encode already created dynamic methods 
15607         and fields correctly as a DEF instead of a REF.
15608
15609         * reflection.c: Get rid of the force_ref argument to 
15610         mono_image_typedef_or_ref since it was wrong in the first place.
15611
15612         * string-icalls.c: add error checking to string constructors according
15613         to the MSDN docs.
15614
15615         * reflection.c: Emit types in the order their TypeBuilders were 
15616         created. Previously, a new table index was assigned to each type before
15617         the tables were emitted. This was wrong because the signature blob
15618         might already refer to a type by its original table index.
15619
15620 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15621
15622         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15623         change.
15624         
15625 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15626
15627         * Makefile.am: make assemblies dir have \ instead of / on windows.
15628
15629 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15630
15631         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15632         iterate over the NESTEDCLASS table using a linear search since the
15633         table is not guaranteed to be sorted by the secondary key.
15634
15635         * class.c (mono_class_create_from_typedef): fixed up call to
15636         mono_metadata_nesting_typedef.
15637         
15638 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15639
15640         * marshal.c (mono_string_to_byvalstr): clear the memory as
15641         suggested by Jerome Laban <jlaban@wanadoo.fr>
15642
15643 2003-02-26  Dick Porter  <dick@ximian.com>
15644
15645         * process.c: Cope with padding in .rsrc blocks
15646
15647 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15648
15649         * metadata.h: reverted the filter_len change, it breaks reflection
15650         
15651 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15652
15653         * metadata.h: added a new field to store the filter_len
15654         
15655
15656 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15657
15658         * reflection.c: handle custom attributes for types and members
15659         created with Reflection.Emit (bug#38422).
15660
15661 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15662
15663         * reflection.c: define RTSpecialName automatically for constructors for
15664         compatibility with MS.NET.
15665
15666         * reflection.c (mono_reflection_create_runtime_class): initialize
15667         nested_in field of dynamically created classes.
15668
15669 2003-02-22  Martin Baulig  <martin@ximian.com>
15670
15671         * debug-mono-symfile.h: Incremented version number.
15672
15673 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15674
15675         * object.h icall.c process.c: fix warnings.
15676
15677 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15678
15679         * appdomain.h appdomain.c:
15680         (mono_domain_try_type_resolve): split the 
15681         name_or_tb argument into a name and a tb argument.
15682         (mono_domain_has_type_resolve): new function to check whenever the
15683         application has registered a TypeResolve event handler.
15684         
15685         * icall.c reflection.h reflection.c: move the type resolve logic into
15686         mono_reflection_get_type () so it will be invoked when 
15687         Assembly::GetType () is called.
15688
15689         * reflection.c:
15690         (mono_reflection_get_type): renamed to get_type_internal.
15691         (mono_reflection_get_type): fixed type name generation so it works 
15692         for nested types too.
15693         (mono_reflection_get_type): call has_type_resolve () to avoid the 
15694         costly type name generation if there is no resolve event handler.
15695
15696 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15697
15698         * class.c, image.c: load exported types from file references.
15699
15700 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
15701
15702         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15703           used to cache the managed methods used to create proxies and make 
15704           remote invocation of methods.
15705         * class.h: Added in MonoVTable a flag to indicate that a class needs 
15706           to be remotely created.
15707         * object.c: Modified the method mono_class_vtable(). It now initializes 
15708           the remote flag of the vtable. Modified mono_object_new_specific(), 
15709           so now it checks the remote flag.
15710         * icall.c: Added a couple of internal methods, one for enabling instance 
15711           creation interception for a type, and one for creating objects bypassing
15712           the remote check.
15713
15714 2003-02-18  Martin Baulig  <martin@ximian.com>
15715
15716         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15717         New interncall to get a method's metadata token.
15718
15719         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15720         New interncall for the debugger.
15721
15722 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
15723
15724         * class.c (mono_class_setup_vtable): allocate supertype array
15725
15726 2003-02-18  Martin Baulig  <martin@ximian.com>
15727
15728         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15729
15730 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15731
15732         * reflection.c:
15733         (assembly_name_to_aname): jump over unknown properties (i've found
15734         something like: 'type, assembly, version=xxx, custom=null, public...',
15735         so now will ignore custom=null and still get the rest of the values).
15736
15737 2003-02-17  Dick Porter  <dick@ximian.com>
15738
15739         * threads.c: Have Thread.Start() wait for a semaphore to signal
15740         that the thread has set up all its local data.  This fixes bug
15741         34323, where Abort() raced the new thread's TLS data.
15742
15743         Also removes the handle_store() call from start_wrapper, because
15744         threads are now always created suspended and there is no longer a
15745         race between the parent and child threads to store the info.
15746
15747 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15748
15749         * image.c: explain the #- heap issue in a message, hopefully
15750         avoiding FAQs on mono-list.
15751
15752 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15753
15754         * icall.c:
15755         (GetEntryAssembly): if the domain has not invoked
15756         AppDomain.ExecuteAssembly yet, return the assembly of the default
15757         AppDomain.
15758
15759 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
15760
15761         * class.c (mono_ldtoken): make it work in dynamic assemblies.
15762
15763 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15764
15765         * metadata.c, reflection.c: simple speedup to type hash
15766         and equals code.
15767
15768 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15769
15770         * image.c, image.h, class.c, assembly.c: move module loading
15771         to MonoImage. When loading metadata, consider alignemnet from
15772         the start of metadata, not from the metadata address in memory.
15773
15774 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
15775
15776         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
15777         AssemblyBuilder objects. Factored out custom attribute creation into
15778         a separate function.
15779         (create_custom_attr): new function to create custom attributes.
15780
15781 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
15782
15783         * Makefile.am: Got tired of typing the full pathname to pedump.
15784         Until there is another option, am installing this.
15785
15786 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
15787
15788         * class.c (class_compute_field_layout): always set field->parent 
15789         (mono_ldtoken): use mono_defaults.fieldhandle_class;
15790
15791 2003-02-11  Dick Porter  <dick@ximian.com>
15792
15793         * threads-types.h:
15794         * monitor.c: Rewrote Monitor, making lock much faster and
15795         Pulse/Wait work as specified.  Also uses much fewer handles, and only
15796         creates them as needed.
15797
15798         * exception.c: Added SynchronizationLockException
15799
15800         * threads.c: Deleted old Monitor implementation.  The new one is
15801         in a new file.
15802
15803 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15804
15805         * class.c: handled TypedReference type code. Set the correct size for
15806         class data. Setup interface_offsets for interface classes, too.
15807
15808 2003-02-09  Martin Baulig  <martin@ximian.com>
15809
15810         * debug-mono-symfile.h: Reflect latest symbol writer changes.
15811
15812 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15813
15814         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15815         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15816         * object.c: fixed mono_object_get_virtual_method () for interfaces.
15817         * verify.c: check for code that runs after the end of the method.
15818
15819 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15820
15821         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15822         "System.Math::Round2".
15823         * sysmath.h: Added Floor, Round and Round2 definitions.
15824         * sysmath.c: Modified certain functions that were not 100% compliant
15825         with MS.NET (math precision) and added the implementation of Floor,
15826         Round and Round2.
15827
15828 2003-02-07  Martin Baulig  <martin@ximian.com>
15829
15830         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15831
15832 2003-02-07  Martin Baulig  <martin@ximian.com>
15833
15834         * debug-mono-symfile.c: Reflected latest symwriter changes.
15835         (mono_debug_create_mono_symbol_file): Removed.
15836         (mono_debug_open_mono_symbol_file): Take an argument which
15837         specifies whether to create a dynamic symbol file.
15838
15839 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
15840
15841         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15842
15843 2003-02-05  Martin Baulig  <martin@ximian.com>
15844
15845         * reflection.c (mono_image_build_metadata): Make this public,
15846         protect it against being called multiple times, don't create
15847         resources and don't build the compressed metadata here.
15848         (mono_image_create_pefile): Do this here.
15849
15850         * icall.c
15851         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15852
15853 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15854
15855         * socket-io.c: fixed bug #36322.
15856
15857 2003-02-06  Piers Haken <piersh@friskit.com>
15858
15859         * appdomain.[ch]:
15860         * class.h:
15861         * debug-mono-symfile.c:
15862         * icall.c:
15863         * loader.c:
15864         * mono-config.c:
15865         * monosn.c:
15866         * reflection.c:
15867         * socket-io.c: warning cleanups
15868
15869 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
15870
15871         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15872         function. works like remoting invoke, but does a check for the Proxy first.
15873
15874 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
15875
15876         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15877
15878 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
15879
15880         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
15881         array of pointers.
15882         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
15883         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
15884
15885         * object.c (mono_store_remote_field_new): used by the new jit
15886         instead of mono_store_remote_field
15887         (mono_load_remote_field_new): used by the new jit
15888         instead of mono_load_remote_field
15889
15890 2003-02-05  Patrik Torstensson
15891
15892         * appdomain.c: changed unload to take the domain id instead
15893         of domain
15894         
15895         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
15896
15897
15898 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15899
15900         * appdomain.c: don't look for assemblies in ApplicationBase if
15901         PrivateBinPathProbe is set.
15902
15903 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15904
15905         * object.c: make the first argument in main_args contain the absolute
15906         path to the assembly. Fixes bug #37511.
15907
15908 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15909
15910         * icall.c: get correct UTC offset for countries not using daylight
15911         time saving. Fixes bug #30030.
15912
15913 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15914
15915         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
15916         and 1 are the family).
15917
15918 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
15919
15920         * icall.c (ves_icall_InternalExecute): removed wrong assertion
15921
15922         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
15923
15924 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
15925
15926         * reflection.c: added support for SignatureHelper tokens, which is
15927         needed by the Calli opcode.
15928
15929         * reflection.h: track changes to SignatureHelper class.
15930
15931         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
15932
15933 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15934
15935         * appdomain.c: fixed loading assemblies from PrivateBinPath.
15936
15937 2003-02-03  Patrik Torstensson
15938         * appdomain.[c|h], domain.c : 
15939          - Added support for getting a domain via domain id
15940          - Support for setting and getting domain from System.AppDomain 
15941            (used in cross appdomain channel)
15942          - Added support for get/set for a MonoAppContext on a thread 
15943            (Context class in System.Runtime.Remoting.Contexts),
15944          - Removed hack in Get/SetData and ExecuteAssembly.
15945         
15946         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
15947         the managed world to get control when a proxy is created.
15948
15949         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
15950         
15951 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
15952
15953         * icall.c
15954         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15955         Populate the codebase field as well.
15956
15957 2003-02-02  Martin Baulig  <martin@ximian.com>
15958
15959         * debug-mono-symfile.c
15960         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
15961         (mono_debug_symfile_add_method): Allow interncalls.
15962
15963 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15964
15965         * icall.c: throw parse exception if strtod fails or the string is empty.
15966
15967 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
15968
15969         * marshal.c: handle object type separately from defined
15970         class types.
15971
15972 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
15973
15974         * marshal.c: handle NATIVE_LPSTR for strings when it's
15975         explicitly specified.
15976
15977 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
15978
15979         * reflection.c, reflection.h, icall.c: setup the reflection
15980         handle cache for ModuleBuilders and AssemblyBuilders.
15981
15982 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
15983
15984         * reflection.c (reflection_methodbuilder_to_mono_method): set
15985         pinvoke flag
15986
15987 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15988
15989         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
15990
15991 2003-01-29  Dick Porter  <dick@ximian.com>
15992
15993         * threads.c: No need for the fake_thread kludge now that Thread
15994         doesn't run a class constructor
15995         
15996 2003-01-29  Dick Porter  <dick@ximian.com>
15997
15998         * threads.c: Use g_direct_hash instead of the rather bogus
15999         g_int_hash
16000
16001 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16002
16003         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16004         (fix pinvoke12.exe)
16005         (mono_marshal_get_struct_to_ptr): generate valid IL code
16006         (mono_marshal_get_ptr_to_struct): generate valid IL code
16007         (*): correctly set sig->pinvoke, we need to memdup the signature
16008         to do that
16009
16010 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16011
16012         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16013         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16014
16015 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16016
16017         * profiler.c: provide more callers information.
16018
16019 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16020
16021         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16022
16023         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16024
16025         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16026
16027 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16028
16029         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16030         exception instead of going into an infinite loop on dates which it 
16031         can't yet handle.
16032
16033         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16034         out-of-range exception if needed.
16035
16036         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16037         an implementation for an interface method and to override an inherited
16038         method at the same time. 
16039         Imagine a scenario when a virtual method is used to override a
16040         virtual abstract method in a parent class, and this same method 
16041         provides an implementation for an method inherited from an interface. 
16042         In this case, the interface resolution code will set im->slot, which 
16043         means that the virtual method override pass will skip this method 
16044         which means a pointer to the abstract method inherited from the parent
16045         will remain in the vtable of this non-abstract class.
16046
16047         * class.c: (mono_class_setup_vtable): continue search for a real 
16048         method if only an abstract method is found.     
16049
16050 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16051
16052         * reflection.c: add size to encoding for ByValStr and ByValArray
16053         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16054
16055 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16056
16057         * class.c (mono_class_setup_vtable): pass the override info as an
16058         argument.
16059
16060         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16061         correctly.
16062         
16063         * reflection.c (ensure_runtime_vtable); add support for method 
16064         overrides.
16065         
16066 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16067
16068         * reflection.c (resolution_scope_from_image): Hack to work to work with
16069         dynamic assemblies.
16070
16071         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16072         added a 'force_ref' argument to force this function to allways return 
16073         a TypeRef. This is needed by mono_image_get_memberref_token ().
16074         
16075 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16076
16077         * reflection.c (mono_image_get_type_info): interfaces really don't have
16078         a parent.
16079
16080         * reflection.c (mono_image_basic_init): fill out missing fields of
16081         image structure.
16082
16083         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16084         dynamic assemblies. This is required so dynamic assemblies show up in
16085         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16086         Type::GetType() etc. This is consistent with MS behaviour.
16087
16088         * image.c image.h reflection.c: add newly created classes to the name 
16089         cache so mono_class_get () will find them.      
16090
16091 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16092
16093         First part of changes to get IKVM.NET running under mono.
16094         
16095         * appdomain.h, appdomain.c: added new function 
16096         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16097         This function will call AppDomain::DoTypeResolve to do the actual work.
16098
16099         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16100         moved existing code dealing with dynamic tokens to a new function 
16101         called mono_reflection_lookup_dynamic_token (). This function will 
16102         raise TypeResolve events when appropriate. Since reflection.c is not 
16103         part of libmetadata, a new hook function called 
16104         mono_lookup_dynamic_token() is added to class.c which will call this.
16105
16106         * assembly.h assembly.c: make the invoke_load_hook function public,
16107         so it can be called for dynamic assemblies.
16108
16109         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16110
16111         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16112         type isn't found.
16113
16114         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16115         MonoGHashTable, since it contains pointers to objects which the GC 
16116         needs to track.
16117
16118         * assembly.c (search_loaded): remove unused variable.
16119         
16120 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16121
16122         * object.c: fixed issue exposed by gcc-generated IL programs
16123         that use RVA data for pointers.
16124
16125 2003-01-25  Martin Baulig  <martin@ximian.com>
16126
16127         * threads.c (start_wrapper): Moved the initialization of
16128         `start_func' above the mono_new_thread_init() call to which we
16129         pass it as argument.
16130
16131 2003-01-24  Martin Baulig  <martin@ximian.com>
16132
16133         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16134         the MonoThread pointer.
16135
16136 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16137
16138         * icall.c: Rename `PowImpl' to Pow.
16139
16140 2003-01-23  Dick Porter  <dick@ximian.com>
16141
16142         * threads.c (start_wrapper): Create a Thread object if needed, so
16143         the Main() thread can do the class initialisation in a subthread
16144         that has been set up to allow managed code execution.
16145
16146         Pass the thread ID instead of the MonoThread pointer to the thread
16147         start and attach callbacks.  This change is required, because the
16148         jit thread start callback must be called _before_ the Thread
16149         object can be created.
16150         
16151         (mono_thread_init): Removed much object creation code that is no
16152         longer needed.  No managed code is called from here now.
16153
16154         * object.c (mono_runtime_exec_managed_code): Create a subthread
16155         for Main, and call back to the runtime to use it.
16156         Set the exit code when Main exits.
16157
16158         * gc.c: Make sure domain finalisation happens in a subthread.
16159         Re-enable threaded GC, fixing bug 31333 (again).
16160
16161         * environment.c: System.Environment internall calls (so far just
16162         ExitCode is here, the others are still in icall.c)
16163
16164         * appdomain.c (mono_runtime_cleanup): All threads running managed
16165         code should have finished before mono_runtime_cleanup() is
16166         reached, so no need to clean up threads.
16167
16168 2003-01-22  Martin Baulig  <martin@ximian.com>
16169
16170         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16171         `gpointer func' arguments.      
16172         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16173         but added `MonoThread *thread' argument.
16174         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16175
16176         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16177         and pass it to the mono_thread_start_cb callback.
16178         (mono_install_thread_callbacks): New public function to install a
16179         set of callbacks which are set by the debugger.
16180         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16181
16182 2003-01-22  Martin Baulig  <martin@ximian.com>
16183
16184         * Makefile.am: Install debug-mono-symfile.h.
16185
16186 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16187
16188         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16189
16190 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16191
16192         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16193         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16194         (mono_array_class_get): correctly set access levels of arrays
16195
16196 2003-01-20      Patrik Torstensson
16197         * image.h (MonoAssemblyName): changed major, minor, build, revision
16198         from signed to unsigned.
16199
16200 2003-01-20  sean kasun <skasun@azstarnet.com>
16201
16202         * reflection.c (load_cattr_value): Now this handles
16203         MONO_TYPE_SZARRAY.  Fixes bug #35629
16204
16205 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16206
16207         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16208         integer value
16209
16210 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16211
16212         * decimal.c: fixed bug #26056.
16213
16214 2003-01-17  Martin Baulig  <martin@ximian.com>
16215
16216         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16217
16218 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16219
16220         * exception.[ch]:
16221         (mono_get_exception_type_initialization): new function.
16222
16223         * object.c: throw a TypeInitializationException when an exception is
16224         thrown invoking the class constructor.
16225
16226 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16227
16228         * reflection.c: fixed attribute reading.
16229
16230 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16231
16232         * icall.c:
16233         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16234         provided, look for the type in the calling assembly and then in
16235         mscorlib; if the assembly name is provided, only try that one.
16236
16237 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16238
16239         * object.c: register the vtable before there is a chance it's
16240         queried again recursively.
16241
16242 2003-01-13  Duncan Mak  <duncan@ximian.com>
16243
16244         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16245         gc-internal.h. 
16246         
16247 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16248
16249         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16250
16251 2003-01-11  Martin Baulig  <martin@ximian.com>
16252
16253         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16254         this to 20 for the release.
16255
16256 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16257
16258         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16259
16260         * loader.c (mono_method_get_marshal_info): bug fix
16261
16262         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16263         structures with explicit layout
16264
16265 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16266
16267         * profiler.c: made the output more readable (and sorted). 
16268         Added caller information for the allocation profiler.
16269
16270 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16271
16272         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16273
16274 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16275
16276         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16277         to get value types.
16278         
16279 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16280
16281         * object.c, profiler.h, profiler.c, profiler-private.h:
16282         Added object allocation profiler.
16283
16284 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16285
16286         * reflection.h, reflection.c: handle global methods.
16287         Compress blob entries.
16288
16289 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16290
16291         * marshal.c: fix compilation.
16292
16293 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16294
16295         * loader.c (mono_method_get_marshal_info): impl.
16296
16297         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16298
16299 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16300
16301         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16302         for reference types.
16303
16304 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16305
16306         * loader.c: fixed off by one error in loaded parameter names.
16307
16308 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16309
16310         * marshal.c (mono_marshal_get_icall_wrapper): like
16311         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16312         instead of a MonoMethod.
16313
16314 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16315
16316         * decimal.c: fixed bug #36537.
16317
16318 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16319
16320         * marshal.c: throw a missing method exception if a
16321         P/Invoke method is not found.
16322
16323 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16324
16325         * icall.c: allow a null this for constructors.
16326
16327 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16328
16329         * icall.c: raise the proper exceptions if the arguments to the
16330         internal Invoke are incorrect.
16331
16332 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16333
16334         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16335
16336 2003-01-03  Martin Baulig  <martin@ximian.com>
16337
16338         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16339
16340 2002-12-31  Martin Baulig  <martin@ximian.com>
16341
16342         * debug-mono-symfile.c: Completely rewrote the type section.
16343         Instead of using individual malloc()ed fields, we use one big
16344         continuous memory area and offsets into this area.
16345         See the comments in the source code for details.
16346
16347 2002-12-30  Martin Baulig  <martin@ximian.com>
16348
16349         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16350
16351 2002-12-30  Martin Baulig  <martin@ximian.com>
16352
16353         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16354         line number table in this data blob instead of using an external
16355         pointer.
16356
16357 2002-12-28  Martin Baulig  <martin@ximian.com>
16358
16359         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16360
16361 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16362
16363         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16364         as a boxed return type.
16365
16366 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16367
16368         * appdomain.c
16369         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16370         g_build_filename to properly get separators on the filename created.
16371
16372         * object.h: Small change, introduce MonoMarshalByRefObject to
16373         track the layout of that structure in the C# universe as we make
16374         changes there.
16375
16376 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16377
16378         * object.c: removed assert to allow static fields on interfaces.
16379         * loader.c: a TypeSpec may be used for any type, not just arrays.
16380
16381 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16382
16383         * class.c, class.h: added mono_class_array_element_size ().
16384         Ignore static methods in interfaces.
16385
16386 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16387
16388         * threads.c: fixed the build under cygwin.
16389
16390 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16391
16392         * reflection.c: handle nullref constants. Allocate keys for
16393         reflection handles with the GC.
16394
16395 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16396
16397         * threads.c, threads.h: added mono_thread_get_abort_signal()
16398         to get a suitable signal for thread abort.
16399
16400 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16401
16402         * metadata.c: fix handling of ExportedType table.
16403
16404 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16405
16406         * icall.c: added WriteWindowsDebugString internal call.
16407
16408 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16409
16410         * reflection.h: added fields to match C# implementation.
16411
16412 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16413
16414         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16415
16416 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16417
16418         * gc.h, gc-internal.h: Rename header for GC internal calls to
16419         gc-internal.h from gc.h as to not clash with Boehm GC having its
16420         header installed as <gc.h> in outside include paths.
16421         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16422         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16423
16424 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16425
16426         * icall.c: assign minor, build and revision in FillName.
16427
16428 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16429
16430         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16431         Added support for running code generated by Reflection.Emit.
16432
16433 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16434
16435         * appdomain.c: check for NULL argument in LoadFrom.
16436
16437 2002-12-10  Dick Porter  <dick@ximian.com>
16438
16439         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16440
16441 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16442
16443         * appdomain.c: fix buglet when building exe file name.  Handle full
16444         assembly name (needed after latest changes to AssemblyName).
16445         * image.c:
16446         (mono_image_close): free some hashtables.
16447
16448 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16449
16450         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16451         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16452         on some systems (redhat 7.3) 
16453
16454 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16455
16456         * threads.c: delete the critical section of a sync block,
16457         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16458
16459 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16460
16461         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16462
16463 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16464
16465         * appdomain.[ch]: handle the assembly preload event to try loading the
16466         assemblies using the paths we have in the current domain.
16467
16468         * assembly.[ch]: created an assembly preload hook that is called to try
16469         loading the assembly by other means that the ones provided here.
16470
16471         * domain.c: initialize the domain search path.
16472
16473         From now on, assemblies (TODO: except corlib and System) are loaded
16474         according to these rules when using mono_assembly_load ():
16475
16476                 1. It tries to load the assembly from the ApplicationBase
16477                 of the current domain appending .dll and .exe (TODO: have to
16478                 try loading from name/name.dll and name/name.exe).
16479
16480                 2. It tries the search path specified in PrivateBinPath for the
16481                 current domain (if any).
16482
16483                 3. Previous behavior.
16484
16485 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16486
16487         * icall.c: implemented GetInterfaceMap() related icall.
16488         * domain.c, loader.h: load MethodInfo in mono_defaults.
16489
16490 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16491
16492         * gc.c: disable the finalizer thread for now, untill all the issues
16493         with it are resolved.
16494
16495 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16496
16497         * string-icalls.c: handle embedded nulls in string ctor when the
16498         length is specified.
16499
16500 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16501
16502         * class.c: look for explicit interface implementation in parent
16503         classes, too.
16504
16505 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16506
16507         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16508
16509 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16510
16511         * gc.c: protect handles with a critical section.
16512
16513 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16514
16515         * icall.c:
16516         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16517         parameters. If no assembly specified, try getting the type from all
16518         the assemblies in the current domain, else, load the assembly and get
16519         the type from it.
16520
16521 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16522
16523         * marshal.c: applied patch from Aleksey Demakov that fixes
16524         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16525
16526 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * icall.c: fixed get_location.
16529
16530 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16531
16532         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16533         declarations to make it work with older gcc. 
16534
16535         * loader.c (mono_get_method): set signature->pinvoke for native calls
16536
16537 2002-11-20  Dick Porter  <dick@ximian.com>
16538
16539         * threads.c (mono_thread_init): Set the main thread's handle
16540
16541 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16542
16543         * gc.c: allow compilation without GC support. Changed to match the
16544         mono coding style.
16545
16546 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16547
16548         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16549
16550 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16551
16552         * reflection.c: set a public key token on the core assemblies.
16553
16554 2002-11-18  Dick Porter  <dick@ximian.com>
16555
16556         * threads.c: Split out some thread initialisation so that other
16557         files can set the start callback function.
16558
16559         * gc.c: Run finalisers in a separate thread, to avoid stack
16560         overflow.  Fixes bug 31333.
16561
16562         * appdomain.c: Set up GC finalisation thread.
16563
16564         * reflection.c: 
16565         * object.c: 
16566         * domain.c: Use gc.h macros for GC_malloc
16567         
16568 2002-11-15  Dick Porter  <dick@ximian.com>
16569
16570         * threadpool.c: 
16571         * threads.c:
16572         * appdomain.c: Removed mono_runtime_init_with_attach(),
16573         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16574         merging the extra parameter with the existing function.  Removed
16575         unneeded code in mono_thread_attach().
16576
16577 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16578
16579         * image.c (mono_image_loaded_by_guid): a method to get loaded
16580         images by guid. 
16581         (load_metadata_ptrs): we store the guid as string.
16582
16583 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16584
16585         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16586
16587         * metadata.c (mono_guid_to_string): imported method form Zoltan
16588         Varga (slightly modified)
16589
16590         * assembly.c (mono_assembly_open): load precompiled code
16591
16592         * loader.h (MonoMethod): we store the method token for use in the
16593         aot compiler. 
16594
16595 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16596
16597         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16598         the hook function called when an assembly is loaded.
16599         
16600         * domain.c: Modified file.
16601         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16602
16603         Fixes bug #33196.
16604
16605 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16606
16607         * reflection.c: Map PEFileKind to the value expected by the WinNT
16608         image loader. 
16609
16610 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16611
16612         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16613         Read until the buffer is filled completely.
16614
16615 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16616
16617         * icall.c: implemented MonoType.InternalGetEvent ().
16618
16619 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16620
16621         * appdomain.c: implemented InitAppDomainSetup. Delayed
16622         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16623         the entry_assembly.
16624
16625         * assembly.c: base_dir is now an absolute path ending with
16626         G_DIR_SEPARATOR.
16627
16628         * icall.c: modified get_location according to the above changes.
16629
16630         * object.c: init AppDomain.SetupInformation for the default domain after
16631         we have the entry assembly.
16632
16633         * domain.c: when unloading a domain, setup = NULL.
16634
16635 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16636
16637         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16638
16639 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16640
16641         * object.h, object.c: introduced mono_object_get_virtual_method ()
16642         to lookup the method invoked on an object when a callvirt is done on
16643         a method.
16644         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16645
16646 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16647
16648         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16649         current domain when loaded an assembly and failed to load it.
16650
16651         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16652
16653 2002-10-31  Dick Porter  <dick@ximian.com>
16654
16655         * icall.c: 
16656         * file-io.h: 
16657         * file-io.c: Return the error status in a parameter, as the
16658         GetLastError() value has long since been blown away if we try and
16659         look it up in a subsequent internal call invocation.  Delete the
16660         GetLastError() internal call, because it's useless.
16661
16662 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16663
16664         * class.[ch]: added cast_class to fix bug 29517
16665
16666 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16667
16668         * marshal.c: create valid IL code in the filter clause:
16669         the new JIT is less forgiving:-)
16670
16671 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16672
16673         * icall.c: removed get_property internal call.
16674
16675 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16676
16677         * appdomain.h domain.c: Added an ID to appdomains.
16678         
16679         * threads.c threads.h icall.c: Implement icall
16680         Thread:GetDomainID(), and remove unused icall 
16681         CurrentThreadDomain_internal.
16682
16683 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16684
16685         * icall.c: Don't recurse through the base types in GetConstructor.
16686         Fixes bug #32063. 
16687
16688 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16689
16690         * mempool.h, mempool.c: added mono_mempool_empty() and
16691         mono_mempool_stats().
16692
16693 2002-10-23  Dick Porter  <dick@ximian.com>
16694
16695         * file-io.c: 
16696         * file-io.h: 
16697         * icall.c: Added MonoIO.GetFileType internal call
16698
16699 2002-10-17  Dick Porter  <dick@ximian.com>
16700
16701         * appdomain.c (mono_runtime_cleanup): Don't signal the async
16702         delegate semaphore before waiting for all threads to finish,
16703         because new threads can also call async delegates.  Fixes bug
16704         32004.
16705
16706         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16707         of 3 seconds, in case another async job is queued.  (This part is
16708         needed because the bug fix reintroduced the 3s exit lag.)  This
16709         makes the mono_runtime_shutdown flag superfluous.
16710
16711 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16712
16713         * reflection.c: include ehader size in method section headers.
16714         Really check for suplicated modules entries.
16715
16716 2002-10-17  Martin Baulig  <martin@gnome.org>
16717
16718         * debug-mono-symfile.c: Added back support for locals.
16719
16720 2002-10-14  Martin Baulig  <martin@gnome.org>
16721
16722         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16723         MONO_TYPE_VOID.
16724
16725 2002-10-14  Martin Baulig  <martin@gnome.org>
16726
16727         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16728         mono_class_get() instead of looking in the class cache. 
16729
16730 2002-10-13  Martin Baulig  <martin@gnome.org>
16731
16732         * debug-mono-symfile.c: Set version number to 28, include the
16733         signature in method names.
16734
16735 2002-10-13  Martin Baulig  <martin@gnome.org>
16736
16737         * debug-mono-symfile.h: Set version number to 27.
16738
16739 2002-10-11  Martin Baulig  <martin@gnome.org>
16740
16741         * gc.c: Don't register/unregister NULL pointers as disappearing links.
16742
16743 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16744
16745         * metadata.c, metadata.h: added helper function to allocate signatures.
16746
16747 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16748
16749         * icall.c: added internal call to get the location of machine.config.
16750
16751 2002-10-08  Martin Baulig  <martin@gnome.org>
16752
16753         * debug-mono-symfile.c: Ignore classes with a pending init for the
16754         moment.
16755
16756 2002-10-03  Dick Porter  <dick@ximian.com>
16757
16758         * threads.c: Freebsd pthread_t is a pointer
16759
16760 2002-10-03  Dick Porter  <dick@ximian.com>
16761
16762         * socket-io.c: Implemented GetHostName_internal
16763
16764 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16765
16766         * mono-config.c:
16767         (mono_config_parse_file): don't leak the text.
16768
16769 2002-10-02  Martin Baulig  <martin@gnome.org>
16770
16771         * debug-mono-symfile.c: Added support for methods.
16772
16773 2002-10-01  Martin Baulig  <martin@gnome.org>
16774
16775         * debug-mono-symfile.c: Don't emit methods and line numbers for
16776         the dynamic symbol file, just write the type table.  We can easily
16777         have an external helper program which creates a symbol file for an
16778         IL file.        
16779
16780 2002-10-01  Dick Porter  <dick@ximian.com>
16781
16782         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16783         Only add the handle to the cleanup array when we're about to
16784         launch the thread.  Bug 31425 deadlocked when the test was run on
16785         mono under w32.
16786
16787 2002-10-01  Martin Baulig  <martin@gnome.org>
16788
16789         * debug-mono-symfile.c: Added support for properties.
16790
16791 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16792
16793         * reflection.c: unaligned store fix from Mark Crichton
16794         <crichton@gimp.org>.
16795
16796 2002-09-27  Martin Baulig  <martin@gnome.org>
16797
16798         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16799         New interncall.
16800
16801 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16802
16803         * assembly.h, assembly.c: use a sane API to hook into the assembly
16804         loading process instead of a useless special-purpouse hack
16805         (ngen needs a hook, too, for example).
16806
16807 2002-09-27  Dick Porter  <dick@ximian.com>
16808
16809         * threads.c (mono_thread_init): Call GetCurrentProcess() so
16810         io-layer can set up some process handle info.  Not needed on w32,
16811         but doesn't hurt either.
16812
16813         * process.c: Pass the program name in the second parameter to
16814         CreateProcess, so the path is searched.  Include the working
16815         directory. Implemented process name, process enumeration, and some
16816         process detail internal calls.
16817         
16818         * icall.c: Added internal calls for process lookup, and some
16819         process details
16820
16821 2002-09-26  Martin Baulig  <martin@gnome.org>
16822
16823         * assembly.c (mono_install_open_assembly_hook): New global
16824         function to install a function to be invoked each time a new
16825         assembly is loaded.
16826         (mono_assembly_open): Run this callback function if set.
16827
16828         * debug-mono-symfile.c: Put back line numbers for the dynamic
16829         symbol file and also record the .il file as source file.  This
16830         allows us to install the temporary symbol file as `file.dbg' just
16831         like a compiler-generated one.
16832
16833 2002-09-26  Nick Zigarovich <nick@chemlab.org>
16834
16835         * Corrected typo in gc.c (BOHEM vs BOEHM).
16836
16837 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16838
16839         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16840         GetProperties. Also avoid calling g_slist_length in GetProperties and
16841         GetMethods.
16842
16843 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16844
16845         * reflection.c: avoid unaligned stores (bug spotted by
16846         Mark Crichton  <crichton@gimp.org>).
16847
16848 2002-09-25  Martin Baulig  <martin@gnome.org>
16849
16850         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16851         instead of guint64 for addresses and added prologue/epilogue info.
16852
16853 2002-09-25  Martin Baulig  <martin@gnome.org>
16854
16855         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16856         store line number info.  For the dynamic symbol file, we only need
16857         to provide the JIT generated dynamic line number info for the dynamic
16858         symbol file.
16859
16860 2002-09-25  Martin Baulig  <martin@gnome.org>
16861
16862         * debug-mono-symfile.h: Incremented version number.
16863
16864 2002-09-24  Martin Baulig  <martin@gnome.org>
16865
16866         * class.c (mono_debugger_class_init_func): New global function
16867         pointer variable.
16868         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16869         call it.
16870
16871         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16872         function.  This is called via the mono_debugger_class_init_func
16873         hook to add all types to the dynamic type table.
16874         (ves_icall_MonoDebugger_GetType): New interncall to get a class
16875         from its metadata token.
16876
16877         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
16878         New interncall for the debugger.
16879
16880 2002-09-24  Nick Drochak <ndrochak@gol.com>
16881
16882         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
16883         before using it in case it is null.
16884         
16885 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16886
16887         * metadata.c: allow custom modifiers in local var signatures
16888         (bug spotted by Zoltan Varga).
16889
16890 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16891
16892         * class.c: deal with the <Module> class that may have a NULL vtable.
16893         Eliminate warnings.
16894
16895 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16896
16897         * image.c, image.h: more strong name helpers.
16898         * monosn.c: more work: convert pem keys to cryptoapi format.
16899
16900 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16901
16902         * string-icalls.c: speedup IndexOf.
16903
16904 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16905
16906         * icall.c: updates from Zoltan.2.Varga@nokia.com.
16907
16908 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16909
16910         * icall.c: cleanup: use mono_object_domain ().
16911
16912 2002-09-23  Martin Baulig  <martin@gnome.org>
16913
16914         * debug-mono-symfile.c: Improved type support.
16915
16916 2002-09-22  Martin Baulig  <martin@gnome.org>
16917
16918         * debug-mono-symfile.c: Added support for reference types and strings.
16919
16920 2002-09-22  Martin Baulig  <martin@gnome.org>
16921
16922         * debug-mono-symfile.c: Started to work on the type table.
16923
16924 2002-09-21  Martin Baulig  <martin@gnome.org>
16925
16926         * debug-mono-symfile.c: Largely reworked the symbol table format.
16927         The symbol table is now incrementally updated each time a new
16928         method is added.  We're now also using our own magic and version
16929         so that you don't need to recompile all your classes if the
16930         dynamic table changes.
16931         (mono_debug_update_mono_symbol_file): Removed.
16932         (mono_debug_symfile_add_method): New function to add a method.
16933
16934 2002-09-21  Martin Baulig  <martin@gnome.org>
16935
16936         * icall.c
16937         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
16938         New interncall.
16939
16940         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
16941         New interncall to get a method from its metadata token.
16942
16943 2002-09-21  Martin Baulig  <martin@gnome.org>
16944
16945         * debug-mono-symfile.c: Create type table.
16946
16947 2002-09-20  Martin Baulig  <martin@gnome.org>
16948
16949         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
16950
16951 2002-09-20  Martin Baulig  <martin@gnome.org>
16952
16953         * debug-mono-symfile.c: Provide information about params and locals.
16954
16955 2002-09-20  Martin Baulig  <martin@gnome.org>
16956
16957         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
16958         New interncall.
16959
16960         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
16961         interncall to get a method from its metadata token.
16962
16963 2002-09-20  Martin Baulig  <martin@gnome.org>
16964
16965         * debug-mono-symfile.c: Added a few checks for method->header
16966         being non-NULL.  This should never happen, but for the moment
16967         let's use a g_warning() rather than a g_assert().
16968
16969 2002-09-19  Mark Crichton  <crichton@gimp.org>
16970
16971         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
16972         even if support for it isn't present.  Added an #ifdef to fix this.
16973
16974         * socket-io.c: Added checks back for Solaris support.
16975
16976 2002-09-19  Martin Baulig  <martin@gnome.org>
16977
16978         * debug-mono-symfile.c (read_string, write_string): Reflect latest
16979         changes in the symbol file format.
16980
16981 2002-09-18  Martin Baulig  <martin@gnome.org>
16982
16983         * debug-mono-symfile.c: Set version number to 21.
16984
16985 2002-09-18  Dick Porter  <dick@ximian.com>
16986
16987         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
16988         on netbsd.  Fixes bug 30051.
16989
16990 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16991
16992         * reflection.c:
16993         (set_version_from_string): little fix.
16994
16995 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16996
16997         * monosn.c, Makefile.am: added strong name utility.
16998         * reflection.h, reflection.c: implemented delayed signing,
16999         locale, version and hash id assembly attributes.
17000
17001 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17002
17003         * loader.c, metadata.c: load param attributes in signatures.
17004
17005 2002-09-16  Martin Baulig  <martin@gnome.org>
17006
17007         * debug-mono-symfile.c: Added string table with all method names.
17008
17009 2002-09-14  Martin Baulig  <martin@gnome.org>
17010
17011         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17012         fast method lookup.
17013
17014 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17015
17016         * reflection.c: record the public key token of referenced assemblies.
17017
17018 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17019
17020         * image.c, image.h: added functions to get the strong name and the
17021         public key of an assembly.
17022         * pedump.c: use them.
17023
17024 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17025
17026         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17027
17028 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17029
17030         * marshal.c (mono_marshal_get_managed_wrapper): Added
17031         MONO_TYPE_BOOLEAN 
17032
17033 2002-09-11  Martin Baulig  <martin@gnome.org>
17034
17035         * gc.c: Call GC_unregister_disappearing_link() on all links when
17036         finalizing them, this is necessary to aviod a crash in boehm's
17037         finalize handler.
17038
17039 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17040
17041         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17042         nick@chemlab.org.
17043
17044 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17045
17046         * icall.c: implemented MonoType::Module.
17047         * reflection.c, reflection.h: mono_module_get_object () from
17048         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17049
17050 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17051
17052         * icall.c: ignore overridden methods in GetMethods ().
17053         Fix for FieldInfo::SetValue().
17054         * object.c: handle float/double in runtime invoke.
17055
17056 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17057
17058         * object.c: allow a constructor to be called again on an object.
17059
17060 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17061
17062         * class.h, class.c: move field layout code to it's own function and
17063         export it. Get an interface id earlier. Move fields in MonoClass
17064         so they are more cache friendly and align the bitfields.
17065         * loader.c: temporary handle get_param_names() for a runtime method.
17066         * reflection.c, reflection.h: more code to handle runtime creation of
17067         types.
17068
17069 2002-09-09  Martin Baulig  <martin@gnome.org>
17070
17071         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17072         signature with the pinvoke field being set for the actual call.
17073
17074 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17075
17076         * icall.c: removed some unused icalls. Start of map of glib charsets
17077         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17078
17079 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17080
17081         * debug-helpers.c: break infinite loop (found and fixed by
17082         Holger Arnold <harnold@gmx.de>).
17083
17084 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17085
17086         * icall.c: target may be null in create_delegate.
17087
17088 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17089
17090         * marshal.c: handle a boolean return type.
17091
17092 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17093
17094         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17095
17096 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17097
17098         * gc.c: fix weakreferences.
17099
17100 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17101
17102         * icall.c: added icall to get default codepage.
17103
17104 2002-09-03  Dick Porter  <dick@ximian.com>
17105
17106         * threads.h: 
17107         * threads.c: Use MonoThread instead of MonoObject where
17108         apropriate.
17109
17110         Store running thread objects in a hash table, so that we have all
17111         the info to hand when waiting for them to finish
17112         (means we don't need OpenThread() any more, so mingw builds should
17113         be fully functional again.)
17114
17115         * verify.c:
17116         * object.h: Added thread ID to MonoThread
17117
17118 2002-09-03  Martin Baulig  <martin@gnome.org>
17119
17120         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17121
17122 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17123
17124         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17125
17126 2002-09-03  Martin Baulig  <martin@gnome.org>
17127
17128         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17129         argument to store the end address of the disassembled instruction.
17130
17131         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17132         here from debug-symfile.h.
17133         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17134         JIT into this struct.
17135         (MonoSymbolFile): Added `char *image_file' field.
17136         (MonoDebugGetMethodFunc): Removed.
17137         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17138         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17139         (mono_debug_find_method): New method.
17140
17141         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17142         create a full symbol file.
17143         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17144         and static symbol files.
17145         (mono_debug_find_method): The symbol file keeps an internal method hash,
17146         call this to get a MonoDebugMethodInfo from a MonoMethod.
17147
17148         * debug-symfile.[ch]: Removed.
17149
17150 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17151
17152         * image.c (do_mono_image_open): Remove linker version check.
17153
17154 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17155
17156         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17157         wrappers for instance methods.
17158         
17159 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17160
17161         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17162
17163 2002-08-28  Dick Porter  <dick@ximian.com>
17164
17165         * Makefile.am: Export HOST_CC for w32 builds
17166
17167 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17168
17169         * file-io.c process.c: MonoString are null terminated, no
17170         need for mono_string_to_utf16() anymore.
17171
17172 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17173
17174         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17175
17176 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17177
17178         * icall.c, reflection.h: speedup System.MonoType.
17179
17180 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17181
17182         * reflection.c: allow null as the value of a string argument in
17183         custom attributes constructors.
17184
17185 2002-08-27  Martin Baulig  <martin@gnome.org>
17186
17187         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17188         `trampoline_address' field.
17189
17190 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17191
17192         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17193         check (fixes bug #29486) 
17194
17195 2002-08-27  Martin Baulig  <martin@gnome.org>
17196
17197         * debug-mono-symfile.c: Changed the file format in a way that allows us
17198         open it read-only and to use a specially malloced area for all the
17199         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17200         debugging IL code and there is no MCS generated symbol file for it.
17201
17202 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17203
17204         * object.c: added a define for a good string and array
17205         creation speedup (not enabled by default because we need to deal with
17206         the synch stuff).
17207
17208 2002-08-26  Martin Baulig  <martin@gnome.org>
17209
17210         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17211         function to create a dynamic symbol file.  This is used by the
17212         debugger to create a symbol file for IL code on-the-fly.
17213
17214 2002-08-26  Martin Baulig  <martin@gnome.org>
17215
17216         * loader.c (mono_lookup_pinvoke_call): Include the error message
17217         from g_module_error() in the error message.
17218
17219 2002-08-24  Martin Baulig  <martin@gnome.org>
17220
17221         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17222         function to update the symbol file.  The symbol file is mmap()ed
17223         writable, but private.  This allows us to install the symbol file
17224         together with the assembly.
17225
17226 2002-08-24  Martin Baulig  <martin@gnome.org>
17227
17228         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17229         but they can read the new symbol file format which mcs is now creating.
17230
17231         * debug-symfile.c (mono_debug_find_source_location): Moved to
17232         debug-mono-symfile.c; this is now operating on the new symbol file.
17233
17234 2002-08-23  Martin Baulig  <martin@gnome.org>
17235
17236         * debug-helpers.c (mono_method_desc_from_method): New function to get
17237         a MonoMethodDesc from a MonoMethod.
17238
17239 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17240
17241         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17242         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17243
17244 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17245
17246         * string-icalls.[ch]: make helper methods static.
17247
17248 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17249
17250         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17251         types to it and to SetValueInternal.
17252
17253         * object.c: Moved handle_enum label to its proper place. This was the
17254         f... bug! ;-)
17255
17256         This time i compiled mcs and gtk-sharp and they both work.
17257
17258 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17259
17260         * icall.c: reverted partially my previous patch until 
17261         object.c:set_value handles enums correcly.
17262
17263 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17264
17265         * icall.c:
17266         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17267         (ves_icall_System_Environment_get_MachineName): removed warning when
17268         compiling under cygwin.
17269
17270 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17271
17272         * object.c: fixed field_get_value() for reference types.
17273
17274 2002-08-22  Dick Porter  <dick@ximian.com>
17275
17276         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17277         Don't free a buffer while it's still needed.  Patch from Jonathan
17278         Liger <Jonathan.liger@wanadoo.fr>
17279
17280 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17281
17282         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17283         internal call.
17284
17285 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17286
17287         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17288         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17289
17290         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17291         we call unmanaged code which throws exceptions.
17292
17293 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17294
17295         * appdomain.h: added per-domain entry_assembly.
17296         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17297         arguments.
17298         * icall.c: Assembly::GetEntryAssembly icall.
17299         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17300         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17301
17302 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17303
17304         * appdomain.h, gc.c: added mono_domain_finalize ().
17305
17306 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17307
17308         * object.c:
17309         (mono_print_unhandled_exception): changed g_warning by g_printerr
17310         because g_log has a 1024 characters limit (yeah, i got a big stack
17311         trace). Don't print exception name, that should be in ToString 
17312         returned string.
17313
17314 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17315
17316         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17317         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17318
17319 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17320
17321         * object.c:
17322         (mono_print_unhandled_exception): after previous commit, i realized
17323         that MS calls ToString on the exception. I changed this function to
17324         do that. This way we get stack_trace for free.
17325
17326 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17327
17328         * object.c:
17329         (mono_print_unhandled_exception): invoke Message property instead of
17330         getting 'message' field from Exception. Don't allocate memory for
17331         'trace' and 'message' if not needed.
17332
17333 2002-08-18  Dick Porter  <dick@ximian.com>
17334
17335         * unicode.c: Fix asserts to match Encoder.cs checks
17336
17337 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17338
17339         * marshal.c: fix unaligned store issue and a few wrong
17340         opcode argument types.
17341
17342 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17343
17344         * icall.c: added GetUninitializedObjectInternal internal call.
17345
17346 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17347
17348         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17349         to the right domain.
17350
17351 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17352
17353         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17354
17355         * class.c (class_compute_field_layout): set blittable to false for Strings
17356
17357         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17358
17359 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17360
17361         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17362         first chunk of code to create types at runtime. Code to
17363         handle ReflectedType/DeclaringType. Make reflection handles
17364         domain specific.
17365
17366 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17367
17368         * class.c: set correct name in arrays.
17369
17370 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17371
17372         * appdomain.c (mono_domain_transfer_object): make it work with
17373         valuetypes. bug fixes.
17374
17375 2002-08-12  Dick Porter  <dick@ximian.com>
17376
17377         * object.h: Rename some parameters to avoid c++ keywords (Patch
17378         from Joseph Wenninger <kde@jowenn.at>)
17379
17380 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17381
17382         * icall.c: added icall to implement Assembly.GetFile*.
17383
17384 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17385
17386         * reflection.h, reflection.c: code to embed managed resources.
17387
17388 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17389
17390         * class.c: move all the type size stuff into
17391         class_compute_field_layout().
17392
17393 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17394
17395         * class.c: ensure enums have always the correct instance size.
17396         * unicode.c: remove wrong assert.
17397
17398 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17399
17400         * assembly.c: fix mem corruption issue.
17401         * image.h, image.c: added mono_image_get_resource () to access
17402         managed resources.
17403         * icall.c: implemented Assembly.EntryPoint property and some
17404         Managed Resources related internalcalls.
17405
17406
17407 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17408
17409         * image.c, image.h: impemented mono_image_get_entry_point ().
17410         * appdomain.c: use mono_image_get_entry_point.
17411
17412 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17413
17414         * reflection.c: support the object type argument when loading
17415         custom attributes.
17416
17417 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17418
17419         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17420         String as return type.
17421
17422 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17423
17424         * reflection.c: fix encoding of named args for custom attrs to match
17425         the ms implementation. Read them back when instantiating custom
17426         attributes.
17427
17428 2002-08-02  Radek Doulik  <rodo@ximian.com>
17429
17430         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17431         by Dietmar as quick fix
17432         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17433         16 as stack size, used on more places as quick fix before Dietmar
17434         will fix it properly
17435
17436 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17437
17438         * object.h, object.c: added accessors for fields and properties.
17439
17440 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17441
17442         * class.c, class.h: made mono_class_get_field_from_name ()
17443         loop on parent types.
17444         Added mono_class_get_property_from_name ().
17445
17446 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17447
17448         * class.c, class.h: move the code to setup the type vtable in its own
17449         function so that it can be reused also for types created at runtime.
17450         Eliminate the "class" identifier from the header file.
17451         * reflection.c: setup the vtable for enums so that we can create
17452         objects for use in SetConstant ().
17453
17454 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17455
17456         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17457         instead of the delegate itself as this pointer (bug #28383)
17458
17459 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17460
17461         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17462         conversions.
17463
17464 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17465
17466         * loader.c: don't set the pinvoke bit on icalls.
17467
17468 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17469
17470         * debug-helpers.c (mono_method_full_name): only print a number to
17471         indicate wrapper type (so that the output is more readable in traces).
17472
17473 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17474
17475         * class.c (mono_class_init): include method override patch from Paolo
17476
17477 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17478
17479         * icall.c: fixed GetTypeCode().
17480
17481 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17482
17483         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17484         use real delegate invoke function to make it work with multicast
17485         delegates (fix bug# 28291).
17486
17487 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17488
17489         * object.c: load constant strings.
17490
17491 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17492
17493         * reflection.c: no magic numbers.
17494         * tabledefs.h: security action enum.
17495
17496 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17497
17498         * assembly.c: fix possible memory corruption.
17499
17500 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17501
17502         * reflection.h, reflection.c: added support for linking resources.
17503         * verify.c: check we have an updated corlib.
17504
17505 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17506
17507         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17508         string arrays.
17509         (mono_marshal_string_array): null terminate unmanaged string arrays.
17510         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17511
17512 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17513
17514         * icall.c: Type.GetType () can now return also types from the
17515         calling assembly.
17516
17517 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17518
17519         * loader.h, loader.c: stack walking support.
17520         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17521         GetCallingAssembly.
17522
17523 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17524
17525         * marshal.c: added optimisations for blittable types 
17526
17527         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17528         (mono_class_setup_mono_type): set blittable attribute for single
17529         and double.
17530
17531         * marshal.c (mono_string_utf8_to_builder): impl.
17532         (mono_string_builder_to_utf8): impl.
17533         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17534
17535 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17536
17537         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17538         (mono_marshal_get_managed_wrapper): impl. byref types
17539
17540 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17541
17542         * icall.c:
17543         (search_method): don't display debug message. 
17544
17545 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17546
17547         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17548
17549 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17550
17551         * appdomain.c: set the missing filename when throwing exception.
17552
17553 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17554
17555         * metadata.c (mono_type_size): code cleanup
17556         (mono_type_stack_size): removed some test code
17557
17558 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17559
17560         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17561         mono_get_exception_file_not_found now.
17562
17563         * exception.c (mono_exception_from_name_two_strings): New version
17564         that will call a constructor with two string arguments. 
17565         (mono_get_exception_file_not_found): New helper routine, used to
17566         report file-not-found errors.
17567
17568 2002-07-20  Dick Porter  <dick@ximian.com>
17569
17570         * process.h:
17571         * process.c: Pass file handles to CreateProcess
17572         
17573         * icall.c:
17574         * file-io.h:
17575         * file-io.c: Implemented CreatePipe
17576
17577 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17578
17579         * metadata.c (mono_get_param_info): set alignment for value types
17580
17581 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17582
17583         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17584         Constify mono_domain_assembly_open().
17585         * loader.c: handle null namespace in icalls.
17586
17587 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17588
17589         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17590         (emit_str_to_ptr_conv): marshal object as structs
17591
17592         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17593
17594         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17595
17596 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17597
17598         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17599         (mono_marshal_get_native_wrapper): we an now return value types
17600
17601 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17602
17603         * verify.c: more checks implemented.
17604
17605 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17606
17607         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17608         (fix bug #27695)
17609         (mono_marshal_get_native_wrapper): allow byref arguments
17610         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17611         impl. PtrToStringXXX methods
17612         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17613         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17614         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17615         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17616         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17617
17618 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17619
17620         * reflection.c: fix buglet in parsing an assembly name.
17621
17622 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17623
17624         * marshal.c (emit_ptr_to_str_conv): first impl.
17625
17626 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17627
17628         * object.c, class.h: cache the vtable in the class as suggested by
17629         vargaz@freemail.hu (Zoltan Varga).
17630
17631 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17632
17633         * class.h, loader.c: added mono_field_from_token().
17634         * verify.c: first cut of type checking code.
17635
17636 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17637
17638         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17639
17640 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17641
17642         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17643         (fix bug #27782)
17644         (mono_marshal_get_remoting_invoke): impl.
17645         (mono_delegate_begin_invoke): impl.
17646         (mono_mb_emit_save_args): impl.
17647         (mono_delegate_end_invoke): impl.
17648         (mono_marshal_get_delegate_begin_invoke):
17649         (mono_marshal_get_delegate_end_invoke):
17650         (mono_marshal_get_delegate_invoke): generate a special name for
17651         those methods (including the signature) and associate them whith
17652         the delegate class. 
17653
17654 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17655
17656         * reflection.[ch]: 
17657         (mono_reflection_type_from_name): now it has a MonoImage parameter
17658         which is used as the default image to search the type in. If the image
17659         is NULL or getting the type from it fails, it defaults to corlib.
17660
17661         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17662         new parameter.
17663
17664 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17665
17666         * reflection.c: update the parameter table index.
17667
17668 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17669
17670         * domain.c: don't include the mark byte in the string hash.
17671
17672 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17673
17674         * icall.cs: icall for Type.GetTypeCode ().
17675         * verify: a couple of fixes and disabled local initialization checks.
17676
17677 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17678
17679         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17680
17681         * debug-helpers.c (mono_method_full_name): print the type of the
17682         runtime wrapper
17683
17684         * metadata.c (mono_signature_hash): a hash function for signatures
17685         (mono_signature_hash): better hash algorithm
17686
17687         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17688
17689         * debug-helpers.c (mono_method_full_name): this can now generate
17690         method names with signatures
17691
17692         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17693         method dont have this pointers.
17694
17695 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17696
17697         * reflection.c: fixup typebuilder tokens.
17698         * image.c: fix buglet.
17699         * marshal.h: remove whitespace.
17700         * metadata.h, metadata.c: reinstate code that was removed.
17701         * verify.c: handle catch directives and fix another couple of bugs.
17702
17703 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
17704
17705         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17706         (mono_marshal_get_native_wrapper): make it comp. with the old code
17707         (mono_marshal_get_native_wrapper): support boolean
17708         (mono_marshal_get_managed_wrapper): support more types
17709
17710 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
17711
17712         * class.c (class_compute_field_layout): compute class->blittable attribute.
17713
17714 2002-07-09  Dick Porter  <dick@ximian.com>
17715
17716         * threads.c: Make the thread cleaning up cope with threads that
17717         call ExitThread()
17718
17719 2002-07-08  Radek Doulik  <rodo@ximian.com>
17720
17721         * reflection.c (method_encode_code): use non-translated values to
17722         compute finally_start, this fixes exception handling on ppc, yay!
17723
17724         * decimal.h (struct signscale): fix endianess
17725
17726 2002-07-07  Radek Doulik  <rodo@ximian.com>
17727
17728         * reflection.c: swap box_val and not val
17729
17730 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17731
17732         * reflection.c, reflection.h: handle full assembly info in type name.
17733         Handle Type arguments when loading custom attributes.
17734         * icall.c: updated to use new mono_reflection_type_from_name () method.
17735
17736 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17737
17738         * loader.c:
17739         (method_from_memberref): also print assembly name when method not found.
17740
17741 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17742
17743         * icall.c:
17744         (ves_icall_TypeGetProperties): fixed bug #27473. 
17745
17746 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17747
17748         * reflection.c: display image name and token when cannot find the
17749         .ctor for an attribute.
17750
17751 2002-07-05  Martin Baulig  <martin@gnome.org>
17752
17753         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17754
17755 2002-07-04  Dick Porter  <dick@ximian.com>
17756
17757         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17758         compile on mingw.  This will cause mingw builds to not wait for
17759         subthreads to terminate after the main thread does.  I've lodged a
17760         bug with the mingw developers for them to wrap OpenThread().
17761
17762 2002-07-03  Dick Porter  <dick@ximian.com>
17763
17764         * threads.c: Store thread IDs instead of handles, because
17765         GetCurrentThread() returns a pseudohandle and therefore stores
17766         useless values.  mono_thread_cleanup() continues checking the
17767         array of threads until it is empty, to cope with subthreads
17768         spawning new threads after the main thread has finished.
17769
17770         * profiler.h:
17771         * profiler.c:
17772         * profiler-private.h: Pass the thread ID to thread profiler
17773         functions, instead of a handle
17774
17775 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17776
17777         * verify.c: fixes to make it more usable.
17778         * pedump.c: added --verify code to verify IL code in an assembly.
17779
17780 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17781
17782         * reflection.c: turn errors into warnings to allow compiling corlib.
17783
17784 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17785
17786         * reflection.c: add special cases to compile corlib.
17787
17788 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17789
17790         * reflection.c: handle properties with only a set method.
17791
17792 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17793
17794         * opcodes.h: add enum with opcodes in opval order.
17795
17796 2002-07-01  Dick Porter  <dick@ximian.com>
17797         
17798         * object.h:
17799         * object.c (mono_runtime_run_main): Removed unneeded argument
17800
17801 2002-06-28  Martin Baulig  <martin@gnome.org>
17802
17803         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17804
17805 2002-06-27  Dick Porter  <dick@ximian.com>
17806
17807         * threads.c: Store the handle in both the parent thread and in the
17808         subthread, to minimise the time between starting a new thread and
17809         storing its ID.
17810
17811 2002-06-26  Dick Porter  <dick@ximian.com>
17812
17813         * appdomain.c (mono_runtime_cleanup): Close the socket library
17814         after all the threads have finished, not before
17815
17816 2002-06-26  Martin Baulig  <martin@gnome.org>
17817
17818         * debug-symfile.c (mono_debug_find_source_location): Added
17819         `guint32 *line_number' argument.  If it's not NULL, store the line number
17820         there and return the file name without the line number.
17821
17822 2002-06-25  Dick Porter  <dick@ximian.com>
17823
17824         * icall.c:
17825         * process.h:
17826         * process.c: Process forking and other support functions
17827
17828 2002-06-25  Dick Porter  <dick@ximian.com>
17829
17830         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17831         things dont happen when the image is closed.
17832         (mono_image_lookup_resource): Walk the resource section looking
17833         for a particular entry
17834
17835         * cil-coff.h: PE resource section decoding
17836
17837 2002-06-25  Dick Porter  <dick@ximian.com>
17838         
17839         * assembly.h:
17840         * assembly.c: 
17841         (mono_assembly_foreach): Accessor functions to walk the list of
17842         loaded assemblies
17843         (mono_assembly_set_main):
17844         (mono_assembly_get_main): Process methods need to know which
17845         assembly is the "main" one
17846
17847         * object.c (mono_runtime_run_main): Record the main assembly
17848
17849         * debug-helpers.c: Fix typo
17850
17851 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
17852
17853         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17854         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17855
17856 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17857
17858         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17859
17860 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
17861
17862         * image.c (do_mono_image_open): Initialize reference count,
17863         otherwise we leak the MonoImage.
17864
17865 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17866
17867         * reflection.c: small tweak to handle self-hosting.
17868
17869 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17870
17871         * reflection.c: fix type name parse code.
17872
17873 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17874
17875         * reflection.c: break out of the loop.
17876         * image.c: special case corlib.
17877
17878 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17879
17880         * reflection.c: add all the custom attrs at the end to ensure the
17881         ctors have been properly initialized when the attributes are defined
17882         in the current assembly.
17883
17884 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17885
17886         * reflection.c: handle correctly multiple-nested types.
17887
17888 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17889
17890         * row-indexes.h: fix typos.
17891         * reflection.c: adjust for typos and fix method_def_or_ref
17892         encoding in MethodImpl table.
17893
17894 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17895
17896         * reflection.c: fix entry point patching (thanks Serge!).
17897
17898 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
17899
17900         * verify.c: add check for System.Exception
17901
17902 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17903
17904         * image.c, class.c: minifix for code just c&p'ed.
17905         * reflection.c: warning fix.
17906         * object.h, loader.h, domain.c: load also StringBuilder.
17907
17908 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17909
17910         * marshal.h, marshal.c: some support code to handle complex marshaling.
17911
17912 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17913
17914         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
17915         Better signatures with vtable error dump.
17916
17917 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
17918
17919         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
17920
17921 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
17922
17923         * icall.c (ves_icall_Type_GetField): impl.
17924
17925 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17926
17927         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
17928         to retrieve a marshal description blob for a field or param.
17929
17930 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17931
17932         * reflection.h, reflection.c: change order of nested type emission
17933         to avoid table corruption. The NestedTypes table is sorted.
17934         * icall.c: change order of GetConstructor results to workaround mcs bug.
17935
17936 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17937
17938         * reflection.h, reflection.c: handle field and param marshal
17939         information.
17940
17941 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17942
17943         * icall.c, marshal.c marshal.h: more Marshal class implementation.
17944
17945 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17946
17947         * reflection.c: fix call convention.
17948
17949 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17950
17951         * reflection.h, reflection.c: mono_image_get_memberref_token()
17952         takes a type instead of a class, now. Added
17953         mono_image_get_array_token() to create tokens for the special
17954         multi-dim array methods.
17955
17956 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17957
17958         * assembly.c: handle modules (no assembly table). Split
17959         loading references in its own function.
17960         * class.c: handle moduleref resolution scope.
17961         * image.c, image.h: cache module name in image.
17962
17963 2002-06-07  Martin Baulig  <martin@gnome.org>
17964
17965         * reflection.c (mono_image_get_type_info): Only add a class layout entry
17966         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
17967
17968 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17969
17970         * icall.c: more signature fixes that used uint instead of int.
17971
17972 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17973
17974         * reflection.c: fixed signature of field refs.
17975
17976 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17977
17978         * class.c, reflection.c: handle typerefs of nested types
17979         (both on read and when writing files).
17980
17981 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17982
17983         * icall.c: fix method signatures that tried to workaround the previous
17984         typo, d'oh!
17985
17986 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17987
17988         * debug-helpers.c: fix typo.
17989
17990 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17991
17992         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
17993         rewrote the PE/COFF writing code (our programs are understood by the
17994         ms runtime, now).
17995
17996 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17997
17998         * gc.c, gc.h, icall.c: weakreference support.
17999
18000 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18001
18002         * Makefile.am, mono-config.c: use $(sysconfdir).
18003
18004 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18005
18006         * icall.c: changed default precision of Double.ToString() to 15.
18007         Fixed memory leak. Unified with Single.ToString.
18008
18009 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18010
18011         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18012
18013 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18014
18015         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18016         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18017         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18018         and myself.
18019
18020 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18021
18022         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18023
18024 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18025
18026         * reflection.c, socket-io.c: more compilation fixes.
18027
18028 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18029
18030         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18031         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18032         unicode.c: warning and compiler compatibility fixes.
18033
18034 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18035
18036         * class.h, metadata.c: fixed warnings/compilation errors.
18037
18038 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18039
18040         * Makefile.am, mono-config.c, mono-config.h: configuration file
18041         support routines.
18042         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18043         config file. Export methods to insert and lookup mappings.
18044
18045 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18046
18047         * reflection.c: handle types and boxed objects in custom attr
18048         constructors.
18049
18050 2002-05-30  Martin Baulig  <martin@gnome.org>
18051
18052         * debug-symfile.c
18053         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18054
18055 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18056
18057         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18058         to lookup the implmap row for a P/Invoke method.
18059         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18060         P/Invoke method from the runtime on an as needed basis.
18061
18062 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18063
18064         * metadata.c (mono_metadata_parse_signature): impl.
18065
18066 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18067
18068         * class.c: handle .pack directive.
18069
18070 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18071
18072         * object.c: initialize static fields with RVA data.
18073
18074 2002-05-25  Martin Baulig  <martin@gnome.org>
18075
18076         * debug-symfile.c
18077         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18078
18079 2002-05-24  Martin Baulig  <martin@gnome.org>
18080
18081         * debug-symfile.c
18082         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18083         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18084         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18085
18086 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18087
18088         * object.c: special case string ctros in invoke.
18089         * gc.c: silly whitespace changes.
18090
18091 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18092
18093         * threadpool.[ch]: impl. a threadpool that can
18094         be used by mint and mono.
18095
18096 2002-05-22  Martin Baulig  <martin@gnome.org>
18097
18098         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18099         The first argument is now a `MonoReflectionModuleBuilder *', the return
18100         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18101         `methods' field to get the method builder.  The `token' argument is the
18102         unfixed token.
18103
18104         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18105         invalid characters instead of g_assert_not_reached()ing.  This seems
18106         to be the behaviour of mscorlib.
18107
18108 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18109
18110         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18111         Hestilow to fix bug #25104
18112
18113 2002-05-21  Martin Baulig  <martin@gnome.org>
18114
18115         * debug-symfile.c (mono_debug_find_source_location): New function.
18116         Looks up an IL offset in the line number table and returns the source
18117         location as a string.
18118
18119 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18120
18121         * icall.c:
18122         (mono_double_ToStringImpl): changed %f by %g until we have something
18123         better.
18124
18125 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18126
18127         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18128         parameters first in C#.
18129
18130 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18131
18132         * icall.c, reflection.h: added icall to get info about an event.
18133
18134 2002-05-20  Radek Doulik  <rodo@ximian.com>
18135
18136         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18137         endian
18138         (mono_value_box): don't use memcpy for small sizes on
18139         architectures with unaligned access
18140
18141 2002-05-20  Martin Baulig  <martin@gnome.org>
18142
18143         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18144         if `tb->parent == NULL'.
18145         (mono_reflection_create_internal_class): New function.  This is
18146         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18147         for enum types.
18148
18149         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18150         New interncall.
18151
18152 2002-05-19  Martin Baulig  <martin@gnome.org>
18153
18154         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18155         argument to get the length, don't default to the array length.
18156
18157 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18158
18159         * assembly.c (mono_assembly_setrootdir): New function used to
18160         override the MONO_ASSEMBLIES directory.
18161
18162 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18163
18164         * icall.c: ValueType_GetHashCode() initialize local var.
18165
18166 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18167
18168         * reflection.c: sort custom attributes table.
18169
18170 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18171
18172         * reflection.c: support named args in custom attributes (write support).
18173
18174 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18175
18176         * reflection.c: fix finally position calculation.
18177
18178 2002-05-15  Radek Doulik  <rodo@ximian.com>
18179
18180         * reflection.c: fixed endianess at many places
18181
18182         * icall.c (ves_icall_InitializeArray): comment out debug msg
18183
18184 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18185
18186         * object.c (mono_unhandled_exception): new function to handle
18187         unhandled exceptions.
18188         (mono_unhandled_exception): call the UnhandledException event.
18189         (mono_runtime_delegate_invoke): impl.
18190
18191 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18192
18193         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18194         returns the RVA, not the direct pointer to the data. Handle the case
18195         when the class size is fixed.
18196
18197 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18198
18199         * reflection.c: fix some endianess issues.
18200
18201 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18202
18203         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18204
18205         * threads.c (mono_thread_init): added a callback which is invoked
18206         at thread start.
18207
18208 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18209         
18210         * icall.c: make GetHashCode return non-negative values.
18211
18212 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18213
18214         * object.c, icall.c, gc.c: revert to address-based hashcode.
18215
18216 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18217
18218         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18219
18220 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18221
18222         * icall.c, class.c: special case <Module>.
18223
18224 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18225
18226         * icall.c: fix bug in GetNow().
18227
18228 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18229
18230         * object.c (mono_runtime_class_init): make sure that we call all
18231         static class constructors.
18232
18233 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18234
18235         * reflection.c: sort methodsemantics table.
18236
18237 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18238
18239         * reflection.h, reflection.c: honour init locals setting.
18240
18241 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18242
18243         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18244
18245 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18246
18247         * reflection.c: support ContructorBuilders in attribute blob creation.
18248
18249 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18250
18251         * reflection.c: some changes to build a binary that can be run
18252         directly in windows.
18253
18254 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18255
18256         * loader.c: print a big message when an icall can't be found.
18257
18258 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18259
18260         * string-icalls.c: fix bug 24248.
18261
18262 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18263
18264         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18265         icall.c, reflection.h: separate assembly loading by pathname and by
18266         assembly name. Use the MONO_PATH env var to search for assemblies.
18267
18268 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18269
18270         * assembly.c, image.h: add some support for assemblies
18271         with multiple modules.
18272         * class.c, class.h: export mono_class_from_typeref().
18273         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18274         instead.
18275
18276 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18277
18278         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18279         documentation says (the ECMA one is correct).
18280
18281 2002-05-02  Dick Porter  <dick@ximian.com>
18282
18283         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18284         Don't name the synchronisation mutex.
18285
18286 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18287
18288         * rand.c
18289         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18290         Make the prototypes match.
18291         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18292         Same.
18293
18294         * icall.c
18295         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18296         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18297         all systems have tm.tm_zone, so use strftime() with %Z to print
18298         the timezone abreviation into a temp string.
18299
18300         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18301         rather than mono_array_addr() on a MonoString on Big Endian
18302         machines.
18303
18304 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18305
18306         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18307         fix bug 24041
18308
18309 2002-04-30  Dick Porter  <dick@ximian.com>
18310
18311         * socket-io.c: Cope with SOCKET being an integer rather than a
18312         pointer now.
18313
18314         * threads.c: Added Thread_free_internal, to deal with thread
18315         handle cleanup.  Moved calls to handle_store() and handle_remove()
18316         to start_wrapper(), so each can only be called once.  Allocate
18317         synchronisation blocks with GC_malloc(), and use GC finalisation
18318         to close the handles.
18319
18320         * icall.c: added System.Threading.Thread::Thread_free_internal
18321
18322 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18323
18324         * icall.c: support Environment.Exit, CommandLineArgs().
18325
18326 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18327
18328         * object.c, object.h: added mono_runtime_run_main () and
18329         mono_runtime_get_main_args () for use in System.Environment.
18330
18331 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18332
18333         * gc.c: fix thinko, enable actual finalization since the jit is now
18334         fixed.
18335
18336 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18337
18338         * gc.c, object.c: take into account that an object may be offset wrt the address
18339         returned by GC_malloc().
18340
18341 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18342
18343         * image.c: handle files without entries in the assembly table (modules).
18344
18345 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18346
18347         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18348         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18349         allowed to be null when it's System.Object class setup.
18350
18351 2002-04-27  Martin Baulig  <martin@gnome.org>
18352
18353         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18354         if `tb->parent == NULL' rather than crashing.
18355
18356 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18357
18358         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18359         calling acos() where asin() should have been called.
18360
18361 2002-04-26  Martin Baulig  <martin@gnome.org>
18362
18363         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18364         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18365         there's a subdirectory called `System', but we don't want to read that
18366         subdirectory as an assembly.
18367
18368 2002-04-25  Martin Baulig  <martin@gnome.org>
18369
18370         * debug-symfile.c: Reflect latest MonoString changes.
18371
18372 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18373
18374         * rand.c, rand.h: instance method icalls need to have an explicit
18375         this pointer as first argument in the C implementation.
18376
18377 2002-04-25  Nick Drochak <ndrochak@gol.com>
18378
18379         * icall.c: Fix typo in map for GetNonZeroBytes
18380
18381 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18382
18383         * string-icalls.c : String does now passes unit tests without any 
18384         errors, the following changes has been made:
18385         
18386         Implemented replace methods.
18387         Renaming of methods to (try) follow the standard.
18388         Fixed compare ordinal
18389         Made all memory allocated directly to function instead of via icall function.
18390         Small performance fix in is_in_array function
18391                         
18392  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18393
18394         c (mono_string_Internal_ctor_charp_int_int):
18395         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18396         sindex < 0, throw ArgumentOutOfRangeException instead of
18397         ArgumentNullException.
18398
18399         Added new check for length == 0, however
18400         I need to make it return String.Empty from the C code.
18401         
18402         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18403         that calculate the length for us here.
18404         
18405         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18406         mono_string_new_utf16 with mono_string_new, since value is utf8.
18407
18408 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18409
18410         * object.c: register the object for finalization if needed.
18411         Allocate one more char in the string for the terminating 0 char.
18412
18413 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18414
18415         * class.c, class.h, image.c: check if a type implemenst a destructor.
18416         Use the proper key for array class lookups.
18417         * icall.c: register the icalls in the System.GC class.
18418         * gc.c, gc.h: GC-related functions and icalls.
18419
18420 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18421
18422         * icall.c:
18423         * socket-io.c:
18424         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18425         changed a couple of free () by g_free ().
18426
18427         * decimal.c: one-liner in the comments for decimal2string ().
18428
18429 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18430
18431         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18432
18433 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18434
18435         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18436         * object.c (mono_runtime_invoke_array) : handle null in params
18437
18438 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18439
18440         * string-icalls.c: fixed bug in split (one off bug)
18441
18442 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18443
18444         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18445         * icalls.c: added String::Equals as internal method
18446
18447 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18448
18449         * threads.c: fixed bug in the double interlocked functions
18450
18451 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18452
18453         * threads.c: implemented all of the new interlocked icalls.
18454         * string-icalls.c: fix a bug in insert.
18455         * icalls.c: added the icalls for interlocked, removed old string functions.
18456         
18457 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18458
18459         * loader.c: fix off-by-one error when reading argument names.
18460
18461 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18462
18463         * profiler.c: win32 counter implementation (untested).
18464         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18465         (the latter needs testing and more complete impl. from win32 folks).
18466
18467 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18468
18469         * object.c: mono_array_new_full workaround mono_array_class_get
18470         problem.
18471
18472 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18473
18474         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18475         * object.h (mono_string_chars): Changed casting type.
18476
18477 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18478
18479         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18480                            method signatures to use gunichar2 instead of gint16.
18481
18482 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18483
18484         * object.h, object.c: domain-specific versions of mono_object_new and
18485         mono_array_new.
18486
18487 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18488
18489         * object.c: changed String layout
18490
18491         * string-icalls.c (mono_string_Internal_ctor_chara): added
18492         internal string constructors.
18493
18494 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18495
18496         * threads.c: pass 'this' to the thread start routine.
18497
18498 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18499
18500         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18501         InternalCompareStr don't call twice mono_string_cmp_char for the last
18502         character. Improved performance in mono_string_cmp_char.
18503
18504 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18505
18506         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18507         code into its own library: libmonoruntime.
18508
18509 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18510
18511         * object.h, object.c: changed array format so that szarrays do not
18512         require a bounds structure.
18513         * icall.c, appdomain.c: support for new szarray format.
18514
18515 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18516
18517         * metadata.c: compare also the retuns type when comparing signatures:
18518         we didn't do this as an optimization since really overloaded methods
18519         must differ also in the arguments, but this doesn't work with
18520         low-level IL code (or when using explicit conversion operators: see
18521         bug#23498 for an example).
18522
18523 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18524
18525         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18526
18527 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18528
18529         * icall.c: make MonoType::GetElementType its own icall.
18530
18531 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18532
18533         * icall.c: remove MonoMethod_get_Name().
18534         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18535         object.
18536
18537 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18538
18539         * string-icalls.c: optimized a few methods.
18540
18541 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18542
18543         * icall.c: added all new string internal calls
18544         * string-icalls.c: added, new string internal call implementation.
18545         * object.c: added mono_string_new_size for allocating a string a size
18546
18547 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18548
18549         * object.c (mono_object_isinst): use the same code as in the
18550         optimized x86 version.
18551
18552 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18553
18554         * profiler.c: TSC-based timer code (faster and more accurate).
18555         Not hooked up in configure, yet (set USE_X86TSC to 1).
18556
18557 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18558
18559         * profiler.c, profiler.h: track time spent compiling methods.
18560         * threads.c: track thread creation/destruction.
18561
18562 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18563
18564         * profiler.c, profiler.h, profiler-private.h: profiling interface
18565         and sample implementation. Moved here so that it can be used also by
18566         the jit.
18567
18568 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18569
18570         * reflection.c, reflection.h: keep types and other handles separate in
18571         the hash tables for referred tokens. Add guid for modules.
18572
18573 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18574
18575         * assembly.c: fix bugs found with valgrind.
18576         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18577
18578 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18579
18580         * threads: added icall support for getting current domain for
18581                    the thread.
18582  
18583 2002-04-13  Martin Baulig  <martin@gnome.org>
18584
18585         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18586         (MonoDebugVarInfo): Added `index' field for register based addresses.
18587         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18588         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18589         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18590         `MonoDebugVarInfo *this_var'.
18591
18592         * debug-symfile.c (relocate_variable): New static function to write
18593         a location description for a local variable or method parameter.
18594
18595 2002-04-12  Martin Baulig  <martin@gnome.org>
18596
18597         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18598         stack offset and begin/end scope address of a local variable.
18599         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18600         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18601         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18602
18603         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18604         Added new relocation types for start/end scope of a local variable.
18605
18606 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18607
18608         * object.h: add mono_object_domain() macro.
18609         * reflection.c: handle typespecs.
18610         * icall.c: MonoMethod::get_Name() implementation.
18611
18612 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18613
18614         * icall.c: String::GetHashCode() icall implementation.
18615
18616 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18617
18618         * icall.c: String::IndexOfAny icall.
18619         * object.c, object.h: make array->max_length more useful.
18620         Intrduced mono_object_class() and mono_string_length() macros.
18621
18622 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18623
18624         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18625         instead of g_unichar_isdigit.
18626
18627 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18628
18629         * icall.c: Implement a simple Double.ToString().
18630
18631 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18632
18633         * appdomain.h: only io-layer.h is supposed to be included.
18634         * icall.c: explicitly import environ. Fix warning.
18635
18636 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18637
18638         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18639                 return true even if it's not Daylight Savings time.
18640                 Only return false for the case where the function isn't
18641                 implemented for a plaform (read Windows).
18642
18643 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18644
18645         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18646         data with a mutex.
18647
18648 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18649
18650         * mempool.c (mono_mempool_alloc): only use g_malloc when
18651         absolutely necessary.
18652
18653 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18654
18655         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18656
18657         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18658         (mono_class_proxy_vtable): use domain mempool
18659
18660 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18661
18662         * appdomain.h, appdomain.c: split initialization that requires the
18663         execution engine support into mono_runtime_init().
18664
18665 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18666
18667         * class.c (mono_class_init): don't include vtable inside MonoClass
18668         to save some memory, gather some statistics.
18669         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18670
18671 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18672
18673         * icall.c: internalcall implementation for ValueType.Equals().
18674
18675 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18676
18677         * object.c (mono_message_init): moved 
18678         (mono_runtime_exec_main): new arch. independent impl.
18679         (mono_runtime_invoke_array): new method - like
18680         mono_runtime_invoke, but you can pass an array of objects.
18681         (mono_remoting_invoke): new arch. independent impl.
18682         (mono_message_invoke): new arch. independent impl.
18683         (mono_runtime_class_init): new arch. independent impl.
18684         (mono_runtime_object_init): new arch. independent impl.
18685
18686 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18687
18688         * metadata.c, object.c, reflection.c: documented the exported
18689         functions.
18690
18691 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18692
18693         * icall.c: simpler code to pass the assembly builder data to corlib.
18694         Implement GetNestedTypes() internalcall.
18695
18696 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18697
18698         * class.c: warn if a type can't be loaded.
18699
18700 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
18701
18702         * image.h: typedef MonoImageOpenStatus
18703         * types.h: removed unused file
18704         
18705 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
18706
18707         * icall.c: Enum_ToObject accepts enum value arguments.
18708
18709 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18710
18711         * class.c: move initialization of properties, events and nested
18712         classes, so that they happen for interfaces, too.
18713
18714 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18715
18716         * icall.c: cleanup some ugly casts in Array_SetValue*.
18717
18718 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18719
18720         * icall.c: the values array fro enums is of the correct type, now.
18721         Implement (correctly) getFullName instead of assQualifiedName for
18722         MonoType.
18723         * reflection.h, reflection.c: added mono_type_get_name ().
18724
18725 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18726
18727         * assembly.c, image.h: for each MonoImage, record from wich assembly
18728         it was loaded.
18729         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18730         Make Type.Assembly work.
18731
18732 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
18733
18734         * debug-symfile.h: use char* instead of gpointer to avoid
18735         unnecessary casts.
18736
18737         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18738
18739         * icall.c (ves_icall_InternalExecute): impl. FielSetter
18740         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18741
18742 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
18743
18744         * icall.c (mono_message_init): impl. (code cleanup)
18745         (ves_icall_InternalExecute): impl. FieldGetter
18746
18747         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18748         defined we call all (non-static)methods through the vtable. 
18749
18750 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18751
18752         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18753         finalizer even though the memory is still referenced (and the chunk of
18754         memory is not freed).
18755
18756 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18757
18758         * assembly.c: fix brokeness.
18759
18760 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18761
18762         * class.c: kill some warnings. Check explicit interface method
18763         implementation also without considering the namespace.
18764         Load also literal strings in static class data.
18765
18766 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
18767
18768         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
18769         (default_assembly_name_resolver): Make the resolver take the
18770         "base" directory where the assembly was originally defined, so we
18771         can load DLLs that are in the same directory as the assembly that
18772         is being referenced.
18773
18774 2002-03-28  Dick Porter  <dick@ximian.com>
18775
18776         * file-io.h: 
18777         * file-io.c:
18778         * socket-io.c: 
18779         * unicode.h: 
18780         * unicode.c: Warning cleanups
18781
18782 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18783
18784         * object.h, reflection.h: use the correct type instead of MonoObject.
18785
18786 2002-03-28  Martin Baulig  <martin@gnome.org>
18787
18788         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18789         (mono_debug_update_symbol_file): Initialize classes if necessary.
18790
18791 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18792
18793         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18794         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18795
18796 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18797
18798         * assembly.h: fix function prototype.
18799         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18800         * mono-endian.h: use const cast.
18801
18802 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18803
18804         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18805
18806 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18807
18808         * loader.c: don't assert when a typeref can't be loaded, give
18809         a chance to the runtime to trow an exception instead.
18810         * loader.h: fix warning.
18811
18812 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18813
18814         * class.c (mono_class_proxy_vtable): added proxy support
18815
18816 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
18817
18818         * icall.c: removed last of PAL calls, added System.Environment
18819         * file-io.h, file-io.c: MonoIO implementation
18820         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18821
18822 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18823
18824         * appdomain.c: do not use the byte marker in ldstr table lookup.
18825         * debug-helpers.c: allow two ':' to separate class and method name.
18826         * object.c: allocate arrays bounds with the GC, too.
18827         * verify: add a few more checks.
18828
18829 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18830
18831         * reflection.c: output also literal strings. Allocate parameter data
18832         with GC_malloc() (thanks, Martin, for catching this!).
18833
18834 2002-03-26  Martin Baulig  <martin@gnome.org>
18835
18836         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18837         include the `this' offset in the `param_offsets'.
18838
18839 2002-03-25  Martin Baulig  <martin@gnome.org>
18840
18841         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18842         mono_debug_get_class() function to get the classes. Added new
18843         relocation types for arrays and strings.
18844         (mono_debug_get_class): New static function to search in all
18845         referenced assemblies for a metadata token.
18846
18847         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18848
18849 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18850
18851         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18852         hold gc-allocated objects. Make the string heap a stream like the
18853         others. Removed duplicated code when writing stream info.
18854         Added asserts to catch possible buffer overflows. Set the sorted map
18855         for tables that need sorting. Added some documentation.
18856
18857 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18858
18859         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
18860         for interned strings and vtables.
18861
18862 2002-03-24  Martin Baulig  <martin@gnome.org>
18863
18864         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18865         it in the array since it was created with g_slist_prepend().
18866
18867 2002-03-24  Martin Baulig  <martin@gnome.org>
18868
18869         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18870         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18871         (mono_debug_method_from_token): Renamed to
18872         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18873         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18874
18875         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18876         relocation types.
18877
18878         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
18879
18880 2002-03-24  Martin Baulig  <martin@gnome.org>
18881
18882         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
18883         (mono_debug_method_from_token): New func.
18884
18885         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
18886         New interncall, calls mono_debug_local_type_from_signature().
18887         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
18888         calls mono_debug_method_from_token().
18889
18890 2002-03-23  Martin Baulig  <martin@gnome.org>
18891
18892         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
18893         specifies the number of bytes to be converted, not the array size.
18894         Return the number of chars, not the number of bytes.
18895         (ves_icall_iconv_get_chars): The `byteCount' argument
18896         specifies the number of bytes to be converted, not the array size.
18897
18898 2002-03-23  Martin Baulig  <martin@gnome.org>
18899
18900         * reflection.h (MonoReflectionSigHelper): New type.
18901
18902         * reflection.c (mono_reflection_sighelper_get_signature_local),
18903         (mono_reflection_sighelper_get_signature_local): New functions.
18904
18905         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
18906         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
18907         interncalls.
18908
18909 2002-03-23  Martin Baulig  <martin@gnome.org>
18910
18911         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
18912         is_writeable is set.
18913         (mono_raw_buffer_update): New function to write the modified map
18914         back to disk.
18915
18916         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
18917
18918         * debug-symfile.c (mono_debug_update_symbol_file): Call
18919         mono_raw_buffer_update() when done writing.
18920
18921 2002-03-23  Martin Baulig  <martin@gnome.org>
18922
18923         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
18924
18925         * debug-symfile.c: Added support for arguments and local variables.
18926
18927 2002-03-23  Dick Porter  <dick@ximian.com>
18928
18929         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
18930         protected by ifdefs, hence breaking the w32 build.
18931
18932 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18933
18934         * object.c: implement is_interned() the right way.
18935
18936 2002-03-21  Martin Baulig  <martin@gnome.org>
18937
18938         * debug-symfile.[ch]: New files to handle debugging information
18939         files. There's also support to dynamically update these symbol
18940         files to include machine dependent information.
18941
18942 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
18943
18944         * threads.c (mono_thread_create): new function to create thread
18945         from C
18946
18947 2002-03-20  Martin Baulig  <martin@gnome.org>
18948
18949         * icall.c (ves_icall_InternalInvoke): Create a new object if the
18950         method is a constructor.
18951         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
18952         points to ves_icall_InternalInvoke().
18953
18954 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
18955
18956         * file-io.c: Flush shouldn't throw exceptions.
18957
18958 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
18959
18960         * file-io.c: FileStream flush support; FileSetLength now
18961         restores file pointer.
18962
18963 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18964
18965         * class.c: set image for pointer classes.
18966
18967 2002/03/19  Nick Drochak <ndrochak@gol.com>
18968
18969         * sysmath.c: Forgot one.
18970
18971 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
18972
18973         * sysmath.c: Avoid redefining existing names.
18974
18975 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
18976
18977         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
18978         handled by runtime as icall rather than dllimport from libm.so
18979         * file-io.c, file-io.h: fixed handle argument type.
18980
18981 2002-03-18  Dick Porter  <dick@ximian.com>
18982
18983         * reflection.c (mono_image_get_type_info): rename interface to
18984         iface, because of "#define interface struct" on windows.
18985
18986 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
18987
18988         * class.c, class.h: rename and export mono_ptr_class_get().
18989         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
18990         * reflection.c, reflection.h, icall.c: better/saner type name
18991         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
18992         method signatures.
18993
18994 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
18995
18996         * class.c (mono_class_init): removed hardcoded GHC_SLOT
18997
18998         * icall.c (ves_icall_InternalInvoke): impl.
18999
19000 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * reflection.c: output the interface map table, too.
19003
19004 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19005
19006         * class.c (class_compute_field_layout): separate computation of 
19007         static field layout
19008
19009 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19010
19011         * icall.c: added System.Buffer support.
19012         * file-io.c: moved file icalls from PAL to FileStream.
19013
19014 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19015
19016         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19017
19018 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19019
19020         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19021
19022 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19023
19024         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19025
19026 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19027
19028         * debug-helpers.{c,h}: moved here from monograph some useful functions
19029         to locate a method by name/signature in a class or image. Included
19030         also a small and flexible IL disassembler.
19031
19032 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19033
19034         * reflection.c: fixup tokens in methods with small header size, too.
19035
19036 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19037
19038         * object.c (mono_string_to_utf8): remove assert(!error), instead
19039         print a warning. 
19040
19041 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19042
19043         * icall.c: update to the new mono_Array_class_get interface.
19044
19045 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19046
19047         * appdomain.c, object.c: Boehm-GC enable.
19048         * icall.c: make get_data_chunk() support split data requests.
19049         Ensure a class is initialized in more cases. Return only the first
19050         property found in GetProperties() or the compiler gets confused. 
19051         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19052         * reflection.h, reflection.c: add fixup mechanism for field and method
19053         tokens. Initialize assembly->typeref in a single place. Output
19054         properties after events. Support custom attributes for events, too.
19055         Typo fix for paramter custom attrs.
19056
19057 2002-03-07  Martin Baulig  <martin@gnome.org>
19058
19059         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19060
19061 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19062
19063         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19064
19065 2002-03-06  Martin Baulig  <martin@gnome.org>
19066
19067         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19068         non-zero lower bounds. See testcases #F10-#F13.
19069
19070 2002-03-05  Martin Baulig  <martin@gnome.org>
19071
19072         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19073
19074         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19075         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19076         here.
19077         (ves_icall_System_Array_SetValue): Likewise.
19078         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19079         as argument and does the actual work. This function is used when copying a
19080         multi-dimensional array.
19081         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19082         now do all the widening conversions of value types.
19083         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19084
19085 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19086
19087         * class.c: remove some magic numbers and use the smbolic names,
19088         instead. Added init_events() to load event info at class init time.
19089         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19090         and mono_metadata_methods_from_event().
19091         * reflection.h, reflection.c: added support for writing out the evnets
19092         related information.
19093
19094 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19095
19096         * reflection.h, icall.c: use a different method (GetInterfaces)
19097         to gather interface info and add isbyref, isprimitive and
19098         ispointer to the ves_icall_get_type_info() return value.
19099
19100 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19101
19102         * class.h: stared adding support for events.
19103         * icall.c: split find_members implementation. Added debug icall to get
19104         the address of an object.
19105         * reflection.c: handle TypeBuilders in mono_type_get_object().
19106
19107 2002-03-01  Martin Baulig  <martin@gnome.org>
19108
19109         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19110         ArgumentOutOfRangeException(), not an ArgumentException().
19111         (ves_icall_System_Array_GetLowerBound): Likewise.
19112         (ves_icall_System_Array_GetValue): Improved argument checking.
19113         (ves_icall_System_Array_SetValue): Improved argument checking.
19114
19115 2002-03-01  Martin Baulig  <martin@gnome.org>
19116
19117         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19118         called with invalid arguments rather than just dying with g_assert().
19119         (ves_icall_System_Array_SetValue): Likewise.
19120         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19121         raise a NotImplementedException instead.
19122         (ves_icall_System_Array_GetLength): Added argument checking.
19123         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19124
19125 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19126
19127         * object.h (mono_assert): new macros mono_assert and
19128         mono_assert_not_reached
19129
19130 2002-02-28  Martin Baulig  <martin@gnome.org>
19131
19132         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19133         and "System::String::IsInterned" to "System::String::_IsInterned".
19134
19135 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19136
19137         * icall.c: remove hacks for typebuilder. Added icall to create a
19138         modified type from a tybebuilder.
19139         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19140         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19141         to create a backing MonoClass for a TypeBuilder.
19142
19143 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19144
19145         * class.c, class.h: more refactoring of class init.
19146         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19147
19148 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19149
19150         * marshal.c, marshal.h: start of marshaling interface.
19151
19152 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19153
19154         * icall.c: fix order in assembly qualified name icall.
19155
19156 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19157
19158         * class.c: do not free str, since we store it in the hash table.
19159         * reflection.h: add label field to MonoILExceptionInfo.
19160         * reflection.c: handle references to more than one assembly. Handle
19161         case when there isn't a module created in the assembly.
19162
19163 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19164
19165         * class.c: Fix typo. Start refactoring of class init code.
19166
19167 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19168
19169         * appdomain.c: exit with 1 on error.
19170         * class.c: we already have the name in MonoClassField.
19171         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19172         MonoStreamHeader instead of an offset of image->raw_metadata.
19173
19174 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19175
19176         * appdomain.c (mono_init): Be even more descriptive about the error.
19177
19178 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19179
19180         * appdomain.c: give the user an informative message when corlib can't
19181         be loaded.
19182
19183 2002-02-26  Martin Baulig  <martin@gnome.org>
19184
19185         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19186         New icall to get the time zone data.
19187
19188 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19189
19190         * reflection.c: set virtual and raw size of section correctly.
19191         * threads.c: transfer domain information to newly created threads.
19192
19193 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19194
19195         * class.c: when instancing a class in a domain, load the default
19196         vaules for static fields from the constant table. Fix System.Enum to
19197         not be an enum.
19198         * icall.c: implement Object::GetType() internalcall. Implemented
19199         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19200         Fixed checking of binding flags in find_members().
19201         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19202         * reflection.c: handle enumerations when writing to the constant
19203         table. Use a different object cache for types.
19204
19205
19206 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19207
19208         * object.c (mono_object_isinst): fix for arrays
19209
19210         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19211
19212 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19213
19214         * object.c: don't use mprotect ()  and fix intern pool hash table
19215         lookup for big endian systems.
19216
19217 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19218
19219         * icall.c: change type_is_subtype_of () signature.
19220
19221 2002-02-21  Mark Crichton  <crichton@gimp.org>
19222
19223         * rand.c, rand.h: Added random number generator for
19224         System.Security.Cryptography classes.
19225
19226         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19227
19228         * icall.c: Added System.Security.Cryptography calls.
19229
19230 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19231
19232         * class.c, icall.c, metadata.c: better support for pointer types.
19233         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19234         * reflection.c: Add support for getting custom attrs for properties
19235         and simplify some code.
19236
19237 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19238
19239         * icall.c: change getToken () and add custom attribute GetBlob()helper
19240         method.
19241         * reflection.h: add custom attrs array to the reflection builder structures.
19242         * reflection.c: encode and emit custom attributes for all the relevant
19243         reflection objects. Cache fieldref and methodref tokens. Change
19244         mono_image_create_token() interface to take a MonoDynamicAssembly.
19245         More complete custom attributes decoder. Load custom attributes for
19246         Assembly, Field, Method and Constructor objects, too. Make the
19247         returned array an Attribute[] one, not object[]. Added
19248         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19249         custom attribute constructor.
19250
19251 2002-02-20  Dick Porter  <dick@ximian.com>
19252
19253         * icall.c:
19254         * rawbuffer.c:
19255         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19256         problem code out for now).
19257
19258 2002-02-19  Radek Doulik  <rodo@ximian.com>
19259
19260         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19261
19262 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19263
19264         * icall.c: register the GetCustomAttributes method.
19265         * object.c, object.h: add mono_string_new_len ().
19266         * reflection.h, reflection.c: added mono_runtime_invoke(),
19267         mono_install_runtime_invoke(). Added
19268         mono_reflection_get_custom_attrs () to load custom attributes and
19269         create the attribute objects.
19270
19271 2002-02-19  Dick Porter  <dick@ximian.com>
19272         * threads-dummy-types.c:
19273         * threads-dummy-types.h:
19274         * threads-dummy.c:
19275         * threads-dummy.h:
19276         * threads-pthread-types.c:
19277         * threads-pthread-types.h:
19278         * threads-pthread.c:
19279         * threads-pthread.h:  Deleted obsolete files
19280
19281 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19282
19283         * class.c (mono_class_vtable): runtime init the class when we
19284         allocate static class data.
19285
19286         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19287
19288         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19289         and String - but we will need generic marshalling support in the
19290         future. 
19291         (mono_init): set the domain name in a ms compatible way
19292
19293         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19294         String[].
19295
19296 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19297
19298         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19299         for sizes
19300
19301         * appdomain.c (mono_domain_unload): impl.
19302
19303 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19304
19305         * appdomain.c, object.c: fix intern pool implementation.
19306         * class.c: fix alignment code.
19307
19308 2002-02-16  Radek Doulik  <rodo@ximian.com>
19309
19310         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19311         and s2 > s1, just copy lower bytes to be compatible with little
19312         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19313         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19314
19315         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19316         force big_endian to be 1 for big endian machines 
19317         (ves_icall_iconv_new_decoder): ditto
19318
19319 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19320
19321         * socket-io.c (convert_sockopt_level_and_name): If the system
19322         doesn't define SOL_IP or SOL_TCP, get them by hand using
19323         getprotobyname() and caching the values (because this could be a
19324         slow operation).
19325         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19326         Use the appropriate struct when the system does support it. Ie,
19327         not all systems have struct ip_mreqn so use struct ip_mreq when
19328         appropriate.
19329
19330 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19331
19332         * reflection.c: handle finally clauses.
19333
19334 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19335
19336         * socket-io.c: use g_snprintf() instead of snprintf.
19337
19338 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19339
19340         * reflection.c (mono_param_get_objects): Cast second argument to
19341         mono_method_get_param_names to a const char** to silence the
19342         compiler warning.
19343
19344         * appdomain.c (mono_domain_assembly_open): Put parens around the
19345         truth statement in the for-loop.
19346
19347         * unicode.c (iconv_convert): Got rid of a compiler warning about
19348         int i being unused when the system has a new iconv.
19349         (iconv_get_length): Same.
19350
19351         * image.c (load_class_names): Cast the second argument to
19352         g_hash_table_insert() to char* to hush compiler warnings about the
19353         arg being a const.
19354         (mono_image_open): Same here.
19355
19356         * socket-io.c: Don't conditionally include sys/filio.h or
19357         sys/sockio.h here anymore since we now get them from
19358         io-layer/io-layer.h
19359         (inet_pton): If the system doesn't support inet_aton, implement
19360         using inet_addr and also #define INADDR_NONE if it isn't defined
19361         by the system.
19362
19363 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19364
19365         * metadata.c, metadata.h: added function to get packing and size info
19366         of a typedef.
19367         * reflection.h, reflection.c: handle field RVA data. Save info about
19368         the table layout if needed. Assign typedef indexes to all the types
19369         before dumping the info about them to avoid forward reference problems.
19370
19371 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19372
19373         * socket-io.c (convert_sockopt_level_and_name): ifdef
19374         SO_ACCEPTCONN because it is not defined on my system (old debian)
19375
19376 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19377
19378         * opcode.c: use stddef.h to get NULL.
19379
19380 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19381
19382         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19383         for FIONBIO, FIONREAD and SIOCATMARK.
19384         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19385         define INADDR_NONE and besides, inet_addr() is deprecated and
19386         should not be used. Use inet_pton() instead - it also has the
19387         added bonus that it can easily handle IPv6 addresses as well.
19388         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19389
19390 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19391
19392         * decimal.c: remove _MSC_VER conditional.
19393
19394 2002-02-13  Dick Porter  <dick@ximian.com>
19395
19396         * socket-io.c: 
19397         * icall.c: Internal calls for Blocking, Select, Shutdown,
19398         GetSocketOption and SetSocketOption
19399
19400 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19401
19402         * assembly.cs: better resolver: use it instead of some kludgy
19403         code.
19404
19405 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19406
19407         * reflection.c: the best way to speed-up the compiler is to avoid
19408         infinite loops.
19409
19410 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19411
19412         * class.c (mono_class_vtable): changed the object layout
19413         (obj->vtable->class). 
19414         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19415
19416 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19417
19418         * assembly.c: look for assemblies in the assembly dir, too.
19419
19420 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19421
19422         * class.c: fix thinko in mono_class_from_type().
19423
19424 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19425
19426         * exception.h, exception.c: added TypeLoadException.
19427         * object.h, object.c: added mono_array_clone ().
19428         * icall.c: handle throwOnError in AssemblyGetType().
19429         Added Array.Clone().
19430         * opcode.h, opcode.c: use a single value for the opcode val.
19431         Compile fix for non-gcc compilers.
19432
19433 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19434
19435         * opcodes.c, opcodes.h: export interesting info about opcodes.
19436
19437 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19438
19439         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19440         icalls. 
19441
19442         * class.c (class_compute_field_layout): set element_class for enums
19443         (mono_class_create_from_typedef): set element_class for normal classes
19444
19445         * icall.c (ves_icall_System_Enum_get_value): impl.
19446
19447         * class.c (mono_class_create_from_typedef): do not set valuetype
19448         flag for System.ValueType and System.Enum
19449
19450 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19451
19452         * unicode.c (iconv_convert): fix big endian problem.
19453
19454 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19455
19456         * class.c: add asserts if we are ever going to scribble over memory.
19457         * socket-io.c: not all systems have AF_IRDA defined.
19458
19459 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19460
19461         * class.c (class_compute_field_layout): do not consider static
19462         fields to compute alignment
19463
19464 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19465
19466         * appdomain.c (mono_appdomain_get): impl.
19467         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19468
19469 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19470
19471         * icall.c: ignore "file://" prefix when loading an assembly.
19472
19473 2002-01-23  Dick Porter  <dick@ximian.com>
19474
19475         * socket-io.c:
19476         * icall.c:
19477         * Makefile.am: Added socket support
19478
19479 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19480
19481         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19482         code back.  This should return the assemblies that are loaded by
19483         the runtime on behalf of an application domain. 
19484
19485         The current implementation is still broken, it just returns every
19486         assembly loaded, but until we get real applications domain this
19487         will do.
19488
19489 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19490
19491         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19492         AppDomain object.
19493
19494 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19495
19496         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19497         the mono_class_from_name lookup.
19498         (ves_icall_get_parameter_info): ditto.
19499         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19500         method.
19501         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19502
19503 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19504
19505         * class.c: load also nested classes on class init.
19506         System.ValueType instance methods gets passed boxed
19507         values, unless methods in derived classed that get a pointer to the
19508         data.
19509         * icall.c: use better name parsing code in GetType().
19510         * image.c, image.h: add mono_image_loaded ().
19511         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19512         * reflection.c, reflection.h: added mono_reflection_parse_type().
19513
19514 2002-01-22  Veronica De Santis <veron78@interfree.it>
19515
19516         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19517         * threads.c : Added the implementation of internal calls for events
19518         * threads.h : Added prototypes of internal calls for events
19519         
19520 2002-01-21  Radek Doulik  <rodo@ximian.com>
19521
19522         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19523
19524 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19525
19526         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19527         (mono_class_value_size): use min_align
19528
19529 2002-01-20  Dick Porter  <dick@ximian.com>
19530
19531         * threads.h:
19532         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19533         so it compiles on w32.
19534
19535 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19536
19537         * metadata.c (mono_type_stack_size): impl.
19538
19539         * class.c (mono_class_get_field): impl. memberref token
19540
19541 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19542
19543         * icall.h : Added the internal calls mapping for CreateMutex_internal
19544                     and ReleaseMutex_internal.
19545         * threads.h : Added the prototype of mutexes internal calls.
19546         * threads.c : Added the implementations of mutexes internal calls.
19547
19548 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * metaparse.h: removed unused file.
19551         * reflection.c, reflection.h: added stream_data_align () function 
19552         to align data in streams and keep stream aligned. Add support for
19553         exception support in method headers.
19554
19555 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19556
19557         * unicode.c: make iconv_convert () return the number of bytess written
19558         in the output buffer.
19559
19560 2002-01-15  Dick Porter  <dick@ximian.com>
19561         * threads.c: Make the runtime's idea of infinite timeouts coincide
19562         with the class library's
19563
19564         Fix a particularly egregious bug in mono_thread_cleanup(). That
19565         code was so utterly bogus it must have been written on a Monday.
19566
19567 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19568
19569         * reflection.h: add subtypes field to TypeBuilder.
19570         * reflection.c: encode constants for literal fields.
19571         Handle subtypes. Fix user string token (and add a zero byte)
19572         at the end.
19573         
19574 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19575
19576         * class.c (mono_class_init): bug fix: assign slot numbers for
19577         abstract methods.
19578
19579 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19580
19581         * reflection.c: don't try to output a code RVA for abstract methods.
19582         Small fixes for method header format. Output parameter info to the
19583         ParamDef table. Save method overriding info to MethodImpl table.
19584         Fix property support. Allow typedef.extends to be a type in the
19585         building assembly.
19586         * verify.c: fix off-by-one error.
19587
19588 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19589
19590         * class.c: fix mono_class_from_mono_type () for szarray types.
19591         Remove unused cache check in mono_class_from_type_spec().
19592         * icall.c: *type_from_name () functions handle simple arrays and byref.
19593         * reflection.c: handle byref and szarray types. Handle methods without
19594         body (gets P/Invoke compilation working). Handle types and fields in
19595         get_token ().
19596         * reflection.h: add rank to MonoTypeInfo.
19597
19598 2002-01-10  Dick Porter  <dick@ximian.com>
19599
19600         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19601         internal calls
19602
19603 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19604
19605         * icall.c: initialize class in type_from_handle ().
19606         Loop also in parent classes for get_method ().
19607         * reflection.c: properly encode class and valuetype types.
19608         Start on encoding TypeBuilder types. Handle fieldrefs.
19609         Use correct length when registering a user string.
19610         Handle ConstructorBuilder and MonoMethod in get_token ().
19611         Make mono_type_get_object () aware of cached types.
19612         * object.c: back out change to mono_string_new ().
19613
19614 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19615         * object.c: mono_string_new should return a NULL when the string 
19616         passed in is NULL -- not try to deference it.
19617         
19618 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19619
19620         * icall.c: hack to make IsSubType work for TypeBuilders.
19621         * reflection.c: emit constructors before methods.
19622         Retrieve param names in mono_param_get_objects().
19623
19624 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19625
19626         * Makefile.am: fix list of headers and sources so automake 1.5
19627         doesn't complain. Removed \# at end of list.
19628
19629 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19630
19631         * reflection.c: get token for a method ref. Set return type of
19632         constructor to void.
19633         * loader.c: debug message.
19634         * class.c: typo fix.
19635
19636 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19637
19638         * icall.c: fix array init with rank > 1. FindMembers
19639         loops in parent class as well.
19640         * image.c: do not insert nested types in name cache.
19641         * reflection.c: warning fix.
19642         * reflection.h: add override method (for interface impl).
19643
19644 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19645
19646         * metadata.c: fix customattr decoding.
19647
19648 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19649
19650         * rawbuffer.cs: Added native Win32 implementation, avoids using
19651         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19652
19653 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19654
19655         * class.c: make the low-level routines handle the cache.
19656
19657 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19658
19659         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19660
19661 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19662
19663         * class.c: fix mono_array_element_size() for objects.
19664         * class.h, class.c: add properties to MonoClass and load them
19665         at init time.
19666         * icall.c: check with isinst() when assigning a value to an array
19667         instead of requiring the classes to match exactly.
19668         Implemented icall for System.Type::GetType().
19669         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19670         enums. Handle bindingflags when looking for methods and fields.
19671         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19672         and mono_metadata_methods_from_property().
19673         * reflection.h, reflection.c: added structures for propreties,
19674         parameters and enums. Implemented mono_property_get_object() and
19675         mono_param_get_objects().
19676
19677 2001-12-18  Dick Porter  <dick@ximian.com>
19678
19679         * file-io.c: Use mono_string_to_utf16() instead of
19680         mono_string_chars()
19681
19682         * object.c: Added mono_string_to_utf16(), which copies the non
19683         NULL-terminated MonoString into a new double-null-terminated
19684         buffer.
19685
19686 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19687
19688         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19689
19690 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
19691
19692         * file-io.c: raise exceptions if handle is invalid.
19693
19694 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19695
19696         * assembly.c: yet another check for mscorlib.
19697         * class.c, class.h: load nesting info for classes.
19698         * icall.c: many new functions to support the Reflection classes.
19699         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19700         * reflection.h, reflection.c: mono_image_create_token(),
19701         mono_assembly_get_object(), mono_type_get_object(),
19702         mono_method_get_object(), mono_field_get_object(): methods to return
19703         objects that parallel the C representation of assemblies, types,
19704         methods, fields.
19705
19706 2001-12-11  Dick Porter  <dick@ximian.com>
19707
19708         * icall.c:
19709         * file-io.c: Internal calls for file IO.
19710
19711 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19712
19713         * tabledefs.h: missing FileAttributes.
19714         * verify.h, verify.c: use is_valid_string () to simplify and check for
19715         valid strings more correctly. Fix warnings and speeling.
19716         Check more tables: Filed, File, ModuleRef, StandAloneSig.
19717         Check code: branches, maxstack, method calls.
19718
19719 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
19720
19721         * object.c (mono_object_allocate): removed static, so that the jit
19722         can allocate value types.
19723
19724         * icall.c (ves_icall_System_DateTime_GetNow): impl.
19725
19726 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19727
19728         * class.c: init enum types right away and register the
19729         token->MonoClass map in mono_class_create_from_typedef ().
19730         * verify.h, verify.c: first cut of the verifier.
19731         * pedump.c: add --verify switch to verify metadata tables.
19732         * tabledefs.h: add some missing enums.
19733
19734 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
19735
19736         * class.c (mono_install_runtime_class_init): impl.
19737         (mono_class_init): renamed mono_class_metadata_init to
19738         mono_class_init, also removed the metadata_inited flag
19739
19740         * object.c (mono_object_isinst): use faster algorithm
19741
19742 2001-11-30  Radek Doulik  <rodo@ximian.com>
19743
19744         * mono-endian.h: reverted last change
19745         added function prototypes
19746
19747         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19748         add mono-endian.c back
19749
19750         * mono-endian.c: returned back, as Paolo pointed out, it's needed
19751         for unaligned access, I've mistaked it with endianess. I am
19752         sorry.
19753         (mono_read16): fix reverted endianess
19754         (mono_read64): ditto
19755         (mono_read32): ditto
19756
19757 2001-11-30  Dick Porter  <dick@ximian.com>
19758
19759         * exception.c: Implement mono_exception_from_name()
19760
19761 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19762
19763         * metadata.h, metadata.c: remove params_size and locals_size and their
19764         calculation from the metadata code: they are only usefult to the
19765         interp.
19766
19767 2001-11-29  Radek Doulik  <rodo@ximian.com>
19768
19769         * object.c (mono_ldstr): swap bytes here, it's probably not the
19770         best place, but works for me now, I'll redo it once I know mono
19771         better, also note that I add PROT_WRITE and don't reset back, also
19772         note that it's only affects big endians, so x86 should be OK
19773
19774         * mono-endian.h (read16): use just glib macros for both endians
19775
19776         * mono-endian.c: removed as glib macros are used in in
19777         mono-endian.h so we don't need to care about endianess for read
19778         macros as glib does that for us already
19779
19780 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19781
19782         * class.h, class.h: take minimum alignment into consideration so
19783         that the fields of a class remain aligned also when in an array.
19784
19785 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19786
19787         * loader.h, loader.c: add mono_method_get_param_names().
19788         * class.c: 0-init class fields.
19789
19790 2001-11-26  Dick Porter  <dick@ximian.com>
19791
19792         * icall.c:
19793         * threads-types.h:
19794         * threads.c: New file that handles System.Threading on all platforms
19795
19796         * object.c: 
19797         * object.h: Remove the synchronisation struct from MonoObject,
19798         replace it with a pointer that gets initialised on demand
19799
19800         * Makefile.am: Replace all the system-specific threading code with
19801         a single file that uses the new wrapper library
19802
19803 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19804
19805         * class.c, class.h: add mono_install_trampoline() so that the runtime
19806         can register a function to create a trampoline: removes the ugly
19807         requirement that a runtime needed to export arch_create_jit_trampoline.
19808         * object.h, object.c: added mono_install_handler() so that the runtime
19809         can install an handler for exceptions generated in C code (with
19810         mono_raise_exception()). Added C struct for System.Delegate.
19811         * pedump.c: removed arch_create_jit_trampoline.
19812         * reflection.c: some cleanups to allow registering user strings and
19813         later getting a token for methodrefs and fieldrefs before the assembly
19814         is built.
19815         * row-indexes.h: updates and fixes from the new ECMA specs.
19816
19817 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19818
19819         * class.h, class.c: add enum_basetype field to MonoClass.
19820         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19821         to get index in the constant table reated to a field, param or
19822         property.
19823         * reflection.h, reflection.c: handle constructors. Set public-key and
19824         version number of the built assembly to 0.
19825         * row-indexes.h: update from new ECMA spec.
19826
19827 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19828
19829         * class.h, class.c: add a max_interface_id to MonoClass.
19830         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19831         since it's used to do that. Added mono_type_type_from_obj().
19832         Make GetType() return NULL instead of segfaulting if the type was not
19833         found. Handle simple arrays in assQualifiedName.
19834         * object.h: add a struct to represent an Exception.
19835         * reflection.c: output call convention in method signature.
19836         Add code to support P/Invoke methods and fixed offsets for fields.
19837
19838 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19839
19840         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19841         the value.
19842         * icall.c: use mono_array_addr instead of array->vector: fixes the
19843         reflection image writing.
19844         * reflection.c: init call convention byte to 0 in method signature.
19845         Encode the property signature. Don't output property-related methods
19846         twice. Really process the properties for a type (don't cast a field to
19847         a property, my mom always told me that).
19848         Fix 64 bit issues in pointer alignment in a different and more
19849         readable way.
19850
19851 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
19852
19853         * loader.h: Removed type class from MonoDefaults, added monotype
19854
19855         * loader.c: Loaded MonoType, removed loading of Type
19856
19857         * icall.c (my_mono_new_object): Now returns a System.MonoType,
19858         and fills in System.Type._impl with a RuntimeTypeHandle rather
19859         than the actual MonoClass *
19860
19861         (ves_icall_type_from_handle): change from type_class to
19862         monotype_class
19863
19864         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19865         implemented
19866
19867         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19868         implemented
19869
19870         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19871
19872         (ves_icall_System_Reflection_Assembly_GetType): implemented
19873
19874         (ves_icall_System_MonoType_assQualifiedName): implemented
19875
19876         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19877
19878 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
19879
19880         * assembly.c (mono_assembly_open): Implement a cache for the
19881         assemblies. 
19882
19883         (mono_assembly_close): only destroy the assembly when the last
19884         reference is gone.
19885         
19886 2001-11-09  Dick Porter  <dick@ximian.com>
19887
19888         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
19889
19890 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
19891
19892         * class.c (mono_class_metadata_init): bug fix: compute the right slot
19893
19894 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19895
19896         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
19897         from Martin Weindel.
19898         * object.h: add mono_string_chars ().
19899
19900 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
19901
19902         * reflection.c (build_compressed_metadata): Eliminates warnings
19903         and uses 64-bit clean code.
19904
19905         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
19906         (mono_type_equal): Change signature to eliminate warnings.
19907
19908 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19909
19910         * icall.c, loader.c: remove the internalcall array constructors.
19911         Changes to match the new MonoArray structure.
19912         * object.h, object.c: an array object doesn't allocate an extra
19913         vector. Add mono_array_new_full () to create jagged arrays easily.
19914
19915 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19916
19917         * metadata.h, metadata.c: add mono_metadata_field_info () to
19918         retreive all the info about a field from vairous tables.
19919         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
19920         * class.h, class.c: augment MonoClassField with more info.
19921         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
19922         policy and load a field's RVA if needed.
19923
19924 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
19925
19926         * class.c (mono_class_metadata_init): create a trampoline for all
19927         virtual functions instead of actually compiling them.
19928
19929 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
19930
19931         * class.h, class.c: include name in MonoClassField.
19932         * class.c: fix fundamental type of System.Object and System.String.
19933         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
19934         tokens in ldtoken.
19935         * icall.c: remove internalcalls for the Reflection stuff that is now
19936         done in C# code.
19937         * loader.c: mono_field_from_memberref () implementation.
19938         * mono-endian.c: thinko (s/struct/union/g).
19939         * object.c, object.h: make the mono_string_* prototypes actually use
19940         MonoString instead of MonoObject.
19941         * reflection.c, reflection.h: updates for changes in the reflection
19942         code in corlib: we use C structures that map to the actual C# classes.
19943         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
19944         fat method header if needed and use the info from the ILGenerator for
19945         methods. Handle fields in types. Misc fixes.
19946
19947 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
19948
19949         * class.c (mono_class_metadata_init): bug fix: always allocate
19950         space for static class data
19951
19952 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
19953
19954         * class.c (mono_compute_relative_numbering): use relative
19955         numbering to support fast runtime type checks.
19956
19957 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
19958
19959         * class.c (mono_class_create_from_typeref): added debugging output
19960         to print class name when MonoDummy is returned instead of real class
19961
19962 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
19963
19964         * class.c (mono_class_metadata_init): interface offset table now
19965         contains pointers into the vtable - this is more efficient for the jit
19966
19967 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
19968
19969         * class.c (mono_class_metadata_init): use a temporary vtable (the
19970         old algorithm only worked for the interpreter, but not for the jit)
19971
19972 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
19973
19974         * loader.c (method_from_memberref): use mono_class_get to get the
19975         class of an array instead of using System.Array directly.
19976         (mono_get_method): also add MEMBERREF methods to the method cache
19977         which usefull for arrays.
19978
19979 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
19980
19981         * pedump.c (arch_compile_method): added to compute vtable entry
19982
19983         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
19984         number of interfaces.
19985         
19986         * class.h: merged MonoArrayClass into MonoClass
19987
19988         * class.c (mono_class_create_from_typedef): compute the vtable size and
19989         allocate space to include the vtable inside MonoClass
19990         (mono_class_metadata_init): initialize the vtable
19991
19992 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
19993
19994         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
19995         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
19996         * image.c: endian fixes by Laurent Rioux.
19997         * object.h, object.c: rename MonoStringObject to MonoString and
19998         MonoArrayObject to MonoArray. Change some function names to conform to
19999         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20000         guint16* as first argument, so don't use char*.
20001         Provide macros to do the interesting things on arrays in a portable way.
20002         * threads-pthread.c: updates for the API changes and #include <sched.h>
20003         (required for sched_yield()).
20004         * icall.c: updates for the API changes above.
20005         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20006         platforms that need them.
20007
20008 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20009
20010         * class.c: set the correct type for all the fundamental
20011         type when loading the class.
20012
20013 2001-10-05  Dick Porter  <dick@ximian.com>
20014
20015         * threads-pthread.c (pthread_mutex_timedlock): Simple
20016         compatibility version for C libraries that lack this call.
20017
20018 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20019
20020         * class.c: MonoTypes stored in MonoClass are stored as
20021         fundamental MonoTypes when the class represents a
20022         fundamental type (System.Int32, ...).
20023         The TypeHandle return by ldtoken is a MonoType*.
20024         * icall.c: ves_icall_get_data_chunk () write out all the
20025         PE/COFF stuff. Implement ves_icall_define_method (),
20026         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20027         * image.c: properly skip unknown streams.
20028         * loader.h, loader.c: add type_class to mono_defaults.
20029         * metadata.c, metadata.h: export compute_size () as
20030         mono_metadata_compute_size () with a better interface.
20031         Typo and C&P fixes.
20032         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20033         * reflection.c, reflection.h: many cleanups, fixes, output method
20034         signatures and headers, typedef and typeref info, compress the metadata
20035         tables, output all the heap streams, cli header etc.
20036         * row-indexes.h: typo fixes.
20037
20038 2001-10-04  Dick Porter  <dick@ximian.com>
20039
20040         * object.h: Add a synchronisation mutex struct to MonoObject
20041
20042         * object.c (mono_new_object): Initialise the object
20043         synchronisation mutexes
20044
20045         * icall.c: System.Threading.Monitor internal calls
20046         
20047         * threads-pthread.h:
20048         * threads-pthread.c: System.Threading.Monitor internal calls
20049
20050         * threads-types.h: New file, includes the system-specific thread
20051         structures
20052         
20053         * threads-pthread-types.h:
20054         * threads-pthread-types.c: New files, handle pthread-specific
20055         synchronisation types
20056
20057         * threads-dummy-types.h: 
20058         * threads-dummy-types.c: New files of dummy support for
20059         thread-specific types
20060
20061         * metadata.c:
20062         * image.c:
20063         * pedump.c: include mono-endian.h not endian.h
20064         
20065         * Makefile.am: More threads files.
20066         Name mono-endian.h not endian.h
20067
20068 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20069
20070         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20071         stuff and implement a few more bits.
20072         * icall.c: a field needs to be dereferenced twice. Do not use the same
20073         name for two variables in the same scope.
20074         * image.c, image.h: cleanups.
20075
20076 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20077
20078         * class.c (mono_class_metadata_init): bug fix: compute the right size
20079
20080 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20081
20082         * icall.c: implemented some of the Reflection internalcalls.
20083         * image.c, image.h: start writing out the PE/COFF image.
20084         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20085         that does the reverse than decode_blob_size ().
20086         * object.c: use mono_metadata_encode_value (). Move here
20087         temporary implementation of mono_string_to_utf8 ().
20088         * rawbuffer.c: make malloc_map static.
20089
20090 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20091
20092         * metadata.c: fix type comparison for arrays.
20093         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20094         Added a couple of new classes to monodefaults.
20095         * icall.c: added a couple of Reflection-related internalcalls.
20096         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20097         Added a byval_arg MonoType to MonoClass.
20098
20099 2001-09-28  Dick Porter  <dick@ximian.com>
20100
20101         * icall.c:
20102         * threads-pthread.h: 
20103         * threads-pthread.c: Implemented internal calls for
20104         LocalDataStoreSlot operations.  Applied mutexes around all shared
20105         data.  Reworked the thread creation and Start() operations to
20106         avoid a race condition.
20107         
20108         * threads-dummy.h:
20109         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20110
20111 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20112
20113         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20114
20115 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20116
20117         * class.c, loader.c: warn and return NULL instead of erroring out.
20118         * icall.c: added System.AppDomain::getCurDomain().
20119         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20120
20121 2001-09-25  Dick Porter  <dick@ximian.com>
20122
20123         * threads-pthread.h:
20124         * threads-pthread.c: Implemented timed thread joining and added
20125         System.Threading.Thread::Join_internal internal call
20126
20127         * icall.c: Added System.Threading.Thread::Join_internal internal call
20128
20129         * threads-dummy.h:
20130         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20131
20132 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20133
20134         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20135         mono_string_intern () to implement the semantics of the ldstr opcode
20136         and the interning of System.Strings.
20137         * icall.c: provide hooks to make String::IsIntern and String::Intern
20138         internalcalls.
20139
20140 2001-09-23  Dick Porter  <dick@ximian.com>
20141
20142         * threads-dummy.c: 
20143         * threads-dummy.h: New files of dummy threading routines
20144
20145         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20146         support code based on system specifics
20147
20148         Rename PTHREAD_LIBS to THREAD_LIBS
20149         
20150 2001-09-23  Dick Porter  <dick@ximian.com>
20151
20152         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20153         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20154         internal calls.
20155         (mono_thread_init): Set up a Thread object instance to return when
20156         the main thread calls Thread.CurrentThread
20157         (mono_thread_cleanup): Wait for all subthreads to exit
20158
20159         * icall.c: New internal calls for System.Threading.Thread::Sleep
20160         (including Schedule) and CurrentThread
20161
20162         * threads.h: New file, to insulate thread-specific stuff from the
20163         rest of the code
20164
20165 2001-09-21  Dick Porter  <dick@ximian.com>
20166
20167         * threads-pthread.h: 
20168         * threads-pthread.c: New file, for handling pthreads-style
20169         threading support.  Start() now starts a new thread and executes
20170         the ThreadStart delegate instance.
20171
20172         * icall.c: Added the internalcall for
20173         System.Threading.Thread::Start_internal
20174
20175         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20176
20177 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20178
20179         * loader.c: work around the different signatures for delegates
20180         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20181
20182 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20183
20184         * class.h, class.c: add mono_class_get_field_from_name ().
20185         * *: Fix C comments and other ANSI C issues.
20186
20187 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20188
20189         * endian.h, assembly.c: fix some endianness issues.
20190
20191 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20192
20193         * loader.h, load.c: add delegate_class to mono_defaults.
20194         Handle runtime provided methods in mono_get_method ().
20195
20196 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20197
20198         * loader.c (mono_get_method): use pinvoke for internal call
20199
20200         * icall.c: use pinvoke for internal call
20201
20202         * loader.c (method_from_memberref): set the method name
20203
20204 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20205
20206         * metadata.c: help the compiler generate better code for
20207         mono_class_from_mono_type ().
20208
20209 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20210
20211         * class.c (mono_class_metadata_init): delayed computing of the
20212         class size to mono_class_metadata_init ()
20213
20214 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20215
20216         * class.c, class.h: add an interfaces member to MonoClass.
20217         * image.c, image.h: add assembly_name field to MonoImage
20218         from the assembly table.
20219         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20220
20221 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20222
20223         * class.c: Handle Array in mono_class_from_mono_type ().
20224         * metadata.c, pedump.c: some endian fixes.
20225
20226 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20227
20228         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20229         * metadata.c: fix small problem introduced with the latest commit.
20230
20231 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20232
20233         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20234         We don't need a MonoMetadata pointer anymore to compare signatures in
20235         mono_metadata_signature_equal (), update callers.
20236         Reduced memory usage an number of allocations for MonoMethodHeader and
20237         MonoMethodSignature.
20238
20239 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20240
20241         * metadata.c: added compare for szarray.
20242
20243 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20244
20245         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20246         and add a couple more types to it and mono_defaults. Give an hint on
20247         classes that need implementing in our corlib and are referenced
20248         in mscorlib.
20249
20250 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20251
20252         * class.h, class.c: keep track if a class is also an Enum.
20253         * loader.c: Implement a couple more types for use in libffi
20254         marshalling. Gives better diagnostics when failing to dlopen
20255         a library. Set method->klass for P/Invoke methods, too.
20256
20257 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20258
20259         * class.c, class.h: add a MonoType this_arg to MonoClass that
20260         represents a pointer to an object of the class' type that
20261         can be used by the interpreter and later the type cache.
20262         Add best guess alignment info for valuetype objects.
20263
20264 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20265
20266         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20267         into MonoType: one less level of indirection and allocation and
20268         simplifies quite a bit of code. Added cache for MonoTypes that are
20269         used frequently, so that we don't need to allocate them all the time.
20270
20271 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20272
20273         * class.c (mono_class_create_from_typedef): System.Enum is also a
20274         value type, although it does not derive from System.ValueType
20275         (maybe a bug in the ms compiler?)
20276
20277         * metadata.c (mono_type_size): return the right size for value types
20278
20279         * loader.c (mono_get_method): only initialize method header if not abstract
20280
20281         * class.c (mono_class_from_mono_type): use mono_default values. 
20282
20283 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20284
20285         * *: use MonoClass pointers instead of <type_tokens>
20286         
20287         * class.h: new flag: metadata_inited.
20288
20289         * class.c (mono_class_metadata_init): impl.
20290         (mono_class_instance_size): impl.
20291         (mono_class_data_size): impl.
20292
20293 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20294
20295         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20296         MonoClass now has the name and name_space fields. 
20297         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20298         mono_get_method () takes and optional MonoClass as argument.
20299         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20300         instead that takes advantage of a map from class names to typedef
20301         tokens in MonoImage.
20302
20303 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20304
20305         * metadata.c: zero is not a valid alignment boundary.
20306         Merge MONO_TYPE_VOID in default decoding code.
20307
20308 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20309
20310         * image.h: merged MonoMetadata into MonoImage
20311
20312         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20313         identify the type of elements.
20314
20315 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20316
20317         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20318         * cil-coff.h: split MonoMSDOSHeader and add size info.
20319         * image.c: add some consistency checks.
20320         * metadata.c: fix row size computation: one programmer
20321         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20322         add explanation for the locator routine.
20323         Fix decoding of size in method header.
20324         
20325 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20326
20327         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20328         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20329         function from gnome-libs.  This uses the right path separator
20330         based on the OS, and also works around a bug in some systems where
20331         a double slash is not allowed. 
20332         (default_assembly_name_resolver): Use g_concat_dir_and_file
20333         (mono_assembly_open): ditto.
20334
20335 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20336
20337         * metadata.c (mono_metadata_signature_equal): impl.
20338
20339         * *: void is now a realy MonoType (instead of using NULL)
20340         
20341         * metadata.c (do_mono_metadata_parse_type): use
20342         mono_metadata_parse_type to parse void value.
20343
20344 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20345
20346         * metadata.c, metadata.h: in the signature and method header store
20347         only the space required for holding the loca vars and incoming arguments.
20348
20349 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20350
20351         * metadata.c (do_mono_metadata_parse_type): treat void like any
20352         other type (instead of assigning NULL);
20353
20354 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20355
20356         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20357
20358 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20359
20360         * image.c (do_mono_image_open): added a cache for arrays.
20361
20362 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20363
20364         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20365         decode a single column from a row in a metadata table and changes
20366         to take advantage of it in the typedef locator (gives a nice speed up).
20367         Store offset info for function params.
20368
20369 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20370
20371         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20372
20373 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20374
20375         * assembly.c: how could mono_assembly_close () had ever worked?
20376         * metadata.c, metadata.h: provide offset info for local vars.
20377         Implement mono_type_size () to take care of alignment as well
20378         as size (it was mono_field_type_size in cli/class.c before).
20379
20380 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20381
20382         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20383
20384         * assembly.h (CORLIB_NAME): set to corlib.dll
20385
20386         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20387
20388 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20389
20390         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20391         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20392         tokentype.h: massive namespace cleanup.
20393
20394 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20395
20396         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20397
20398 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20399
20400         * metadata.c (mono_metadata_free_type): added check for type !=
20401         NULL (void) before calling mono_metadata_free_type()
20402
20403 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20404
20405         * metadata.h, row_indexes.h: added header with enumerations to use
20406         to index in the columns from tables in metadata and to decode coded
20407         tokens: we should start using this instead of embedding magic numbers
20408         all over the code.
20409
20410 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20411
20412         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20413         Move metadata_t info from cli_image_info_t to MonoImage, where
20414         it's easily accessible. Changed all the uses accordingly.
20415         Added the method and class caches to MonoImage.
20416         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20417         and mono_metadata_decode_value () signature to be more consistent
20418         with the other parse functions (and simplify code). Taken advantage
20419         of zero-length array allocation with GCC. Removed reduntant (and
20420         wrong) MonoFieldType struct and use MonoParam instead. Changed
20421         mono_metadata_parse_field_type () to use common code for parsing.
20422         Added mono_metadata_typedef_from_field () and
20423         mono_metadata_typedef_from_method () to lookup a typedef index from a
20424         field or method token.
20425         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20426
20427 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20428
20429         * metadata.c (mono_metadata_parse_field_type): Implement. 
20430         (do_mono_metadata_parse_type): Split engine from
20431         mono_metadata_parse_type, so that we can create smaller structures
20432         for things that just have one pointer to the MonoType (look at
20433         the MonoFieldType)
20434
20435 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20436
20437         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20438         as Jan Gray found out, it is incorrect. 
20439
20440 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20441
20442         * assembly.c: Implement asssembly loading.  This loads an image
20443         and loads all the referenced assemblies.  Come to think of it, we
20444         could always do lazy loading of the assemblies. 
20445
20446         * image.c (mono_image_open): Keep loaded images in a hashtable.
20447
20448         * image.h (MonoImage): Add reference count.
20449
20450 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20451
20452         * assembly.c (mono_assembly_open): Keep track of the file name in
20453         case the assembly has no ASSEMBLY table.
20454
20455         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20456         from get.c here.
20457
20458 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20459
20460         * metadata.c, metadata.h: decode local vars in method header
20461         parse function. Change callers accordingly.
20462
20463 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20464
20465         * metadata.h, cil-coff.h: protect against multiple inclusion.
20466         Added some new structures to hold information decoded from metadata:
20467         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20468         and relevant decoding/free functions.
20469         * metadata.c: implement decoding functions. Add warning for out of bounds
20470         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20471         all the info about a method signature and invocation. Remove check on
20472         uninitialized local var in parse_mh() and fix memory leak.
20473
20474 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20475
20476         * metadata.h: More macros.
20477
20478         * tokentype.h: New file.
20479
20480 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20481
20482         * assembly.c: added a consistency check and initialize
20483         some structures with g_new0().
20484         * metadata.c: fixed a couple more bugs in table size computation
20485         and add other checks for out-of bound access to metadata.
20486
20487 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20488
20489         * metatada.c: fix bugs computing table sizes. Spew a
20490         warning when index in string heap is out of bounds.
20491
20492 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20493
20494         * metadata.h: Add a couple of macros to manipulate tokens. 
20495
20496 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20497
20498         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20499         cli_section_tables).
20500
20501 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20502
20503         * metadata.c (mono_metadata_user_string): New function, provides
20504         access to the UserString heap. 
20505
20506 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20507
20508         * metadata.c: Add inline documentation.
20509
20510 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20511
20512         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20513         files. 
20514
20515 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20516
20517         * typeattr.h: New file, TypeAttribute flags. 
20518
20519 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20520
20521         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20522         mono_assembly_ensure_section): Section loading code.
20523         (load_section_tables): Load the sections.
20524
20525         * mono/metadata/metadata.c (mono_metadata_locate_token,
20526         mono_metadata_locate): Functions to locate the information
20527         definition given a token or a table and an index.
20528         (mono_metadata_compute_table_bases): New.
20529         (compute_size): New function to compute the sizes of the various
20530         tables.
20531
20532         * mono/metadata/metadata.h: Finish listing the different index
20533         types. 
20534
20535         * mono/metadata/pedump.c: Improve to dump new information.
20536
20537 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20538
20539         * mono/metadata/metadata.c: Entered all the tables matching
20540         Beta2. 
20541
20542         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20543
20544
20545