2007-01-11 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2
3         * marshal.c, marshal.h, icall-def.h: Implement 
4         Marshal.ReAllocCoTaskMem.
5
6 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
7
8         * marshal.c: memory retention fixes: use the proper
9         image cache for runtime_invoke method lookups.
10
11 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
12
13         * mempool.c: added code to help debug mempool allocations.
14
15 2007-01-11  Dick Porter  <dick@ximian.com>
16
17         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
18         support (experimenting with faking it with IP_MTU_DISCOVER for
19         systems that don't have IP_DONTFRAGMENT.)
20         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
21         icall.
22
23         * icall-def.h: new System.Net.Sockets.Disconnect icall.
24
25         * socket-io.h: Add new fields to MonoSocketAsyncResult
26         corresponding to the new ones in Socket.cs.
27
28 2007-01-11  Raja R Harinath  <rharinath@novell.com>
29
30         Fix IronPython regression mentioned in #80249
31         * metadata.c (do_mono_metadata_parse_generic_class): Clear
32         'cached_context' field, since it may have been initialized as a
33         side-effect of metadata parsing.
34
35         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
36         (_MonoGenericClass.cached_class): Move here and rename from lone
37         remaining field of ...
38         (_MonoInflatedGenericClass): ... this.  Remove.
39         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
40         to changes.
41
42         Fix mcs/tests/test-128.cs regression.
43         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
44         2007-01-10 change below.
45         [MONO_TYPE_OBJECT]: Recurse into array case.
46
47 2007-01-11  Raja R Harinath  <harinath@gmail.com>
48
49         * class-internals.h (mono_get_inflated_generic_class): Remove.
50         * class.c (mono_get_inflated_generic_class): Remove.
51         (mono_generic_class_get_class): Rename from
52         mono_class_create_generic.
53         (mono_class_from_mono_type) [GENERICINST]: Use it.
54         * reflection.c, metadata.c: Update to changes.  Use
55         'mono_class_from_mono_type'.
56
57 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
58
59         * reflection.c: use passed type when encoding an array element
60         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
61
62 2007-01-09  Robert Jordan  <robertj@gmx.net>
63
64         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
65         result arguments (someDelegate.EndInvoke (unrelatedAres)).
66         Fixes bug #80392.
67
68 2007-01-09  Raja R Harinath  <rharinath@novell.com>
69
70         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
71
72         * object.c (set_value): Avoid aliasing between type->data.klass
73         and type->data.generic_class.
74
75         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
76
77 2007-01-08  Raja R Harinath  <rharinath@novell.com>
78
79         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
80         between type->data.klass and type->data.generic_class.
81
82 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
83
84         * marshal.c: In MS.NET, StringBuilder objects are not copied by
85         value in out parameters.
86
87 2007-01-08  Raja R Harinath  <rharinath@novell.com>
88
89         Simplify invariant for MonoGenericClass::klass field.
90         * class.c (mono_class_create_generic): Verify 'klass' is null.
91         * metadata.c (do_mono_metadata_parse_generic_class): Don't
92         initialize 'klass' field.
93
94 2007-01-05  Raja R Harinath  <rharinath@novell.com>
95
96         Ongoing work to avoid redundant data and simplify invariants.
97         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
98         'generic_class', and change type to a GenericInst.
99         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
100         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
101
102 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
103
104         * class.c : skip io-layer under PLATFORM_WIN32.
105
106 2007-01-03  Tor Lillqvist  <tml@novell.com>
107
108         Fix #80305: In a bundled executable, look in the bundled exe
109         assembly to determine the runtime version. Add the possibility to
110         bundle also the machine.config file.
111         
112         * assembly.c (mono_assembly_open_from_bundle): Make
113         non-static. Allow being called even if we have no bundled
114         assemblies, and return NULL right away in that case.
115
116         * domain-internals.h: Declare mono_assembly_open_from_bundle()
117         here.
118
119         * domain.c (app_config_parse): Take an assembly exe file name as
120         parameter instead of a config file name. Check for a bundled
121         config file for that assembly by calling
122         mono_config_string_for_assembly_file() (see below) before looking
123         for one in the file system.
124         (get_runtimes_from_exe): Corrsponding change to call of
125         app_config_parse().
126         (get_runtimes_from_exe): Check for bundled assembly exe file first
127         by calling mono_assembly_open_from_bundle(). If no bundled
128         assembly exe file is found, call mono_image_open() as before to
129         look it up in the file system.
130
131         * mono-config.c: Add variable bundled_machinec_onfig.
132         (mono_config_string_for_assembly_file): New function.
133         (mono_config_for_assembly): Move code snippet that looks for a
134         bundled assembly .config file into the above new function. Call
135         it.
136         (mono_register_machine_config, mono_get_machine_config): New
137         functions to set and retrieve
138
139         * assembly.h: Declare mono_register_machine_config().
140
141         * mono-config.h: Declare mono_get_machine_config() and
142         mono_config_string_for_assembly_file().
143
144         * icall.c: No declaration of environ necessary on Win32. It is
145         declared (as a macro expanding to a function call) in stdlib.h.
146         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
147         New internal mono function. Returns the value of
148         mono_get_machine_config() as a Mono string.
149
150         * icall-def.h: Add get_bundled_machine_config().
151
152 2007-01-04  Raja R Harinath  <rharinath@novell.com>
153
154         Remove redundant field
155         * class-internals.h (_MonoGenericContext.container): Remove field.
156         * loader.c (mono_method_get_signature_full): Don't parse a
157         "container" for a signature parse when the signature is inflated
158         immediately.
159         (method_from_methodspec): Likewise, for a generic_inst.
160         * class.c, metadata.c, reflection.c: Update to changes.
161
162 2006-01-04  Raja R Harinath  <rharinath@novell.com>
163
164         * class-internals.h (_MonoGenericClass): Rename 'context' field to
165         'cached_context', and change semantics -- it starts off NULL, and
166         is initialized on demand.
167         * class.c (mono_generic_class_get_context): New accessor to
168         replace 'context' field accesses.
169         (mono_class_get_context): New helper.
170         (*): Update to changes.
171         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
172
173 2007-01-03  Miguel de Icaza  <miguel@novell.com>
174
175         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
176         before the memcpy.   Fixes Marshal2 regression.
177
178 2007-01-02  Jb Evain  <jbevain@gmail.com>
179
180         * blob.h: add a MONO_TYPE_ENUM definition
181         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
182         fix the encoding of arrays of enums in custom attributes.
183
184         Fixes #79666.
185
186 2007-01-01  Miguel de Icaza  <miguel@novell.com>
187
188         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
189         string is null terminated, but only cut the string short if it
190         overflows the buffer.   
191         
192         (mono_string_to_byvalstr): Also fix this routine.   The code here
193         was not properly terminating a string (it was only terminated
194         because of the previous catch-all memset). 
195
196         I left the memset, because I do not know if applications expect
197         the runtime to clear this region. 
198
199         Fixes #79944.
200
201         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
202         Clear the error before returning to unmanaged code to prevent the
203         runtime from being confused later on (fixes  80420).
204         (ves_icall_type_from_name): Always call mono_loader_clear_error
205         after parsing a type that could have failed.
206         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
207
208         * loader.c (mono_loader_clear_error): Fix indentation.
209
210 2006-12-28  Martin Baulig  <martin@ximian.com>
211
212         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
213
214 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
215
216         * reflection.c: patch from Rolf Bjarne Kvinge to fix
217         getting a token for an EnumBuilder.
218
219 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
220
221         * reflection.c: be more careful in case resource generation
222         fails to create the data array.
223
224 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
225
226         * sgen-gc.c: write barrier for clone and fix unregister handles.
227
228 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
229
230         * reflection.c: some fixes needed in the generics code for the moving GC.
231
232 2006-12-22  Robert Jordan  <robertj@gmx.net>
233
234         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
235         account. Fixes bug #80299.
236
237 2006-12-21  Raja R Harinath  <rharinath@novell.com>
238
239         Fix WaitHandle usage in delegates.
240         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
241         * object.c (mono_wait_handle_new): Use the property set method to
242         initialize the handle.
243         (mono_wait_handle_get_handle): New.
244         * threadpool.c (mono_async_invoke): Use it.
245         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
246         Likewise.
247         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
248
249 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
250
251         * marshal.c (emit_marshal): Call emit_marshal_variant and
252         emit_marshal_com_interface when applicable.
253         (emit_marshal_variant, emit_marshal_com_interface): Add
254         methods for this case and remove if's from emit_marshal_object.
255         
256 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
257
258         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
259
260 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
261
262         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
263         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
264         and GlobalFree on Windows. Remove FIXME.
265
266 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
267
268         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
269         implementation for managed objects.
270
271 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
272
273         * object.c: implemented code to be used for checking
274         that no reference field overlaps with non-references.
275
276 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
277
278         * threadpool.c: fix queue code to be compatible with the
279         moving GC.
280
281 2006-12-18  Miguel de Icaza  <miguel@novell.com>
282
283         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
284         in structures by throwing ArgumentNullException.
285
286         (emit_marshal_safehandle): Also when they are null parameters.
287
288         (emit_marshal_safehandle): Add support for ref
289         SafeHandles parameters
290
291 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
292
293         * profiler.c: updated to use the mono-dl API instead of
294         gmodule.
295
296 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
297
298         * profiler.c: updated to use the mono-dl dynamic loading
299         API instead of gmodule.
300
301 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
302
303         * profiler.c: use readlink, older versions of glib don't have
304         g_file_read_link ().
305
306 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
307
308         * profiler.c: try to detect the path to mono if libc fails to provide
309         a useful name (bug #80286).
310
311 2006-12-16  Raja R Harinath  <rharinath@novell.com>
312
313         Fix #80242
314         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
315         instance, use the generic type definition instead.
316         (ves_icall_Type_GetNestedTypes): Likewise.
317         * class.c (mono_class_create_generic): Always set the
318         nested_classes of a generic instance to NULL, even if the generic
319         type definition has nested types.
320
321 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
322
323         * marshal.c (mono_string_from_bstr): Revert previous Windows change
324         and fix on Linux.
325         
326 2006-12-15  Miguel de Icaza  <miguel@novell.com>
327
328         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
329         my arguments were in the wrong order.   I also fixed the Windows
330         version which seems to have had the same issue.
331
332         (mono_free_bstr): On Unix, this is g_free.
333         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
334         conversions (for the tests in corlib to pass).
335
336 2006-12-14  Miguel de Icaza  <miguel@novell.com>
337
338         * marshal.c (emit_ptr_to_object_conv): For now, ignore
339         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
340         exception if a ref SafeHandle in a struct has changed).
341         
342         (emit_struct_conv): Do not perform layout checks for classes
343         derived from SafeHandle, as those are specially handled. 
344
345         (emit_object_to_ptr_conv): Add support for
346         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
347
348         (emit_marshal_safehandle): Implement conversion of return values
349         of safehandles (MARSHAL_ACTION_CONV_RESULT).
350         
351         * threads.c: WaitHandle now is compiled with two different handles
352         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
353         for 2.0.
354         
355         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
356         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
357         these routines to cope with both kinds of fields.
358
359 2006-12-12  Miguel de Icaza  <miguel@novell.com>
360
361         * metadata.c (mono_type_to_unmanaged): Handle the case where
362         type->data.klass is a SafeHandle, and in that case, return the
363         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
364         MONO_MARSHAL_CONV_SAFEHANDLE. 
365
366 2006-12-11  Miguel de Icaza  <miguel@novell.com>
367
368         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
369         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
370         calling emit_marshal_object.
371
372         (emit_marshal_safehandle): Implement marshalling of
373         SafeHandle parameters (no ref support yet).
374
375         (MarshalAction): Document the defines as I implement
376         them for SafeHandle.
377
378         (emit_marshal_object): indentation police.
379
380         * class-internals.h: Define MonoSafeHandle.
381         Add safehandle_class to MonoDefaults type.
382
383         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
384         list of classes to check for fields. 
385
386         * domain.c (mono_init_internal): Add SafeHandle to the list of
387         mono_defaults loaded.
388
389 2006-12-15  Raja R Harinath  <rharinath@novell.com>
390
391         Fix #80253
392         * reflection.c (mono_reflection_bind_generic_parameters): If the
393         generic type definition is a type builder, ensure that it is fully
394         initialized before instantiating it.  Kill some dead code.
395
396 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
397
398         * object.c: clear the loader_error () before loading
399         more metadata stuff (bug #80258).
400
401 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
402
403         * icall.c, icall-defs.h: type modifiers icalls for
404         parameters and properties.
405
406 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
407
408         * object.c, icall.c: fixed warnings.
409
410 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
411
412         * marshal.c: fixed a couple of leaks and coding style in a few places.
413
414 2006-12-08  Dick Porter  <dick@ximian.com>
415
416         * process.c: Cope with NULL ProcessStartInfo arguments on windows
417         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
418         80173.
419
420 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
421
422         * process.c: ProcessStartInfo may have only filename set and
423         arguments can be NULL.
424
425 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
426
427         * icall.c: fix leak found by Robert Jordan.
428
429 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
430
431         * marshal.c, marshal.h: generate managed method to access an element
432         of a multi-dimensional array.
433
434 2006-11-30  Paolo Molaro (lupus@ximian.com)
435
436         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
437
438 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
439
440         * icall.c: back out GetFields () fix until the serialization code is
441         fixed to not depend on the incorrect behaviour.
442
443 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
444
445         * profiler.c: provide defaults if none are set.
446
447 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
448
449         * Makefile.am, attrdefs.h: new public header file with
450         constants for attributes for use by embedders.
451
452 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
453
454         * icall.c: GetFields () fix for bug #80064.
455
456 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
457
458         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
459         removed long unused icalls.
460
461 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
462   
463         * marshal.c: 
464                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
465                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
466                 can be generated without a delegate class.
467                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
468         
469         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
470
471 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
472
473         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
474         #80069.
475
476 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
477
478         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
479         icall-def.h: added icalls needed by System.GC.
480
481 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
482
483         * loader.c: ensure the class in catch clauses is handled
484         correctly for generics methods (fixes bug#79980).
485
486 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
487
488         * monitor.h, monitor.c: added mono_locks_dump () function
489         to help debug deadlocks involving managed locks.
490
491 2006-11-13  Dick Porter  <dick@ximian.com>
492
493         * file-io.c (get_file_attributes): If the file is a symlink try
494         and get the stat data for the target, but also add the
495         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
496         the specs for the windows symlink support, but will probably have
497         to be reworked when I have test data from a vista machine.  Fixes
498         bug 79887.
499
500 2006-11-13  Dick Porter  <dick@ximian.com>
501
502         * gc.c (mono_domain_finalize): 
503         * marshal.c (mono_delegate_begin_invoke): 
504         * threadpool.c (socket_io_init, mono_thread_pool_init)
505         (mono_thread_pool_finish): 
506         * monitor.c (mono_monitor_try_enter_internal): 
507         * threads.c (mono_thread_resume, mono_thread_init)
508         (mono_thread_suspend_all_other_threads)
509         (mono_thread_execute_interruption): 
510         * appdomain.c (mono_domain_unload): Check for NULL error returns
511         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
512         75733.
513
514 2006-11-11  Miguel de Icaza  <miguel@novell.com>
515
516         * process.c
517         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
518         Only close the handle if the value of the handle is not
519         INVALID_HANDLE_VALUE.  This just makes the process a bit more
520         robust.
521
522         Improvement for #75733, so that we do not run into this problem. 
523
524         
525         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
526         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
527         internal variables.  Fixes #79462 
528         
529
530 2006-11-09  Dick Porter  <dick@ximian.com>
531
532         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
533         Use poll() not select().  Fixes bug 79397.
534
535 2006-11-09  Raja R Harinath  <rharinath@novell.com>
536
537         Fix #79872
538         * assembly.c (mono_assembly_load_from_full): Check that the given
539         image has an assembly manifest.
540
541 2006-11-09  Ankit Jain  <jankit@novell.com>
542
543         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
544         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
545         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
546
547 2006-11-07  Dick Porter  <dick@ximian.com>
548
549         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
550         Put the old resolver behaviour back for pre-2.0 profiles.
551
552 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
553
554         * threadpool.c: precise GC and locking fixes.
555
556 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
557
558         * class.c: don't load types that have an explicit unaligned
559         managed reference. Provide better info in the TypeLoad exception.
560         Part of the fix for bug #79744.
561         * object.c: use the correct check for class type load issues.
562
563 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
564
565         * class.c: enforce alignment of fields with managed references
566         even when Pack=1 is forced by the user (bug #77788).
567
568 2006-11-03  Dick Porter  <dick@ximian.com>
569
570         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
571         If the address reverse lookup fails, return it as the hostname
572         anyway.  Fixes bug 79721.
573
574 2006-11-03  Dick Porter  <dick@ximian.com>
575
576         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
577         Fix build on Windows.
578
579 2006-11-02  Dick Porter  <dick@ximian.com>
580
581         * icall-def.h: 
582         * object-internals.h: 
583         * exception.c (mono_get_exception_thread_interrupted): 
584         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
585         Fixes bug 74525.
586
587         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
588         Check for pending Thread.Interrupt.
589
590 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
591         * loader.c: Fixed bug 79684.
592
593 2006-10-27  Dick Porter  <dick@ximian.com>
594
595         * file-io.c (get_file_attributes): Force symlinks to directories
596         to be returned as a regular file.  Fixes bug 79733.
597 2006-10-26  Dick Porter  <dick@ximian.com>
598
599         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
600         CreateFile to open a directory then we need to set the
601         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
602
603 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
604
605         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
606         friends.
607
608 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
609
610         * sgengc.c: small cleanup of timer code.
611
612 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
613
614         * sgen-gc.c: fix some warnings and start adding support for
615         complete object removal on domain unload.
616
617 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
618
619         * assembly.c: build_assembly_name should not consider a version
620         number without build or revision number invalid. Fixes bug #79715.
621
622 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
623
624         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
625         call kernel32 function OutputDebugString directly.
626         
627         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
628         
629 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
630
631         * reflection.c: small cleanup, using a function to insert a MonoString
632         in the string heap.
633
634 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
635
636         * reflection.c: moving GC fixes.
637
638 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
639
640         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
641         all the objects with finalizers belonging to an unloading appdomain.
642
643 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
644
645         * sgen-gc.c: added ability to allocate even when the nursery is fully
646         pinned and fixed a couple of bugs.
647
648 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
649
650         * threads.h: Revert the last change for now.
651
652         * threads.h (mono_thread_get_pending_exception): Rename this to
653         mono_thread_get_undeniable_exception ().
654
655 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
656
657         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
658         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
659         when fname does not refer to valid assembly. This result in a more
660         meaningful error message.
661         * exception.c: added mono_get_exception_bad_image_format2 which 
662         constructs a BadImageFormatException using the ctor taking a custom
663         message and the file name. Passing in a NULL msg results in a default
664         message.
665         * exception.h: define mono_get_exception_bad_image_format2 function.
666         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
667         when file name pointed to an invalid IL image. Use 
668         mono_get_exception_file_not_found2 to construct FileNotFoundException,
669         as this results in a more meaningful error message.
670
671 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
672
673         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
674         #79465.
675
676 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
677
678         * metadata.c (mono_type_size): Change the align parameter to guint32 for
679         consistency with the other _size functions.
680         (mono_type_stack_size): Ditto.
681
682         * class.c object.c icall.c: Fix warnings caused by the above change.
683
684         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
685
686         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
687
688         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
689
690 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
691
692         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
693         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
694         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
695         threadpool.h, threads-types.h: mark more internal functions.
696
697 2006-10-11  Dick Porter  <dick@ximian.com>
698
699         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
700         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
701         reproduce the bug even before applying the fix.)
702
703 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
704
705         * reflection.c: allow retrieving attributes for arguments in generic
706         methods (bug #79241).
707
708 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
709
710         * debug-mono-symfile.c: properly check fopen () result (found by
711         coverity).
712
713 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
714
715         * reflection.c: make error message clearer and fixed two
716         issuelets found by Coverity.
717
718 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
719
720         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
721
722 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
723
724         * object-internals.h, gc-internal.h, profiler-private.h:
725         mark internal functions.
726
727 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
728
729         * reflection.c: put data in the text section.
730         * icall.c: recognize more types in type_from_typename ().
731         * process.c, marshal.c: added some GC FIXMEs.
732
733 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
734
735         * loader.c: check for NULL before initializing.
736
737 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
738
739         * gc.c (finalizer_thread): Use a non-alertable wait here.
740
741         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
742         until the correct solution is found.
743
744 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
745
746         * reflection.c (mono_module_get_object): Avoid an assert when operating on
747         modules with no metadata. Fixes #79596.
748
749         * image.c (load_metadata_ptrs): Put back the error message when
750         the #- heap is encountered since the support is not complete yet.
751
752 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
753
754         * gc.c: do not allow the user to SuppressFinalize () a
755         delegate because it would leak the trampoline if present.
756
757 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
758
759         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
760         PropertyPtr table.
761
762 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
763
764         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
765
766         * metadata.c (mono_metadata_get_param_attrs): Ditto.
767
768         * row-indexes.h: Add definitions for *Ptr tables.
769
770         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
771
772         * metadata.c (mono_metadata_translate_token_index): New helper function to
773         translate table indexes used in uncompressed metadata.
774         (mono_metadata_decode_table_row): Ditto.
775         (mono_metadata_decode_table_row_col): Ditto.
776
777         * metadata.c: Add table schema for *Ptr tables.
778
779         * class.c loader.c: Use the new helper function to access the affected metadata
780         tables.
781         
782         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
783         #38532.
784         
785 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
786
787         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
788         sequences which can be unbounded in size. Fixes #79583.
789
790 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
791
792         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
793         static initialization.
794
795         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
796
797         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
798
799         * domain.c (mono_domain_free): Free up type_init_exception_hash.
800
801         * object.c (mono_runtime_class_init): Implement correct semantics when a static
802         ctor fails, i.e. throw the same exception on subsequent accesses.
803         
804 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
805
806         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
807         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
808         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
809         Handle marshalling of interfaces and VARIANTs contained in structs.
810         
811         Code is contributed under MIT/X11 license.
812         
813 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
814
815         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
816         
817         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
818         mempool.
819
820 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
821
822         * console-io.c: ignore previous SIGINT handler.
823
824 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
825
826         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
827         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
828         #79460, #79461, #79485.
829
830         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
831
832         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
833         #79217.
834
835 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
836
837         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
838         could be generated from it.
839
840 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
841
842         * rand.c: fix read loop to correctly handle EINTR.
843
844 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
845
846         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
847         internal calls are defined to keep methods closer to the declaring
848         type and allow a significant reduction in runtime relocations and
849         memory usage.
850
851 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
852
853         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
854         exception message to have FileNotFoundException use the default
855         assembly load error message. Fixes bug #79426.
856         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
857
858 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
859
860         * threadpool.c: (start_thread_or_queue) use the root domain when
861         creating the thread instead of the async object one.
862
863 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
864
865         * class.c, object.c, class-internals.h, reflection.c:
866         for arrays, store element_size inside MonoClass (speedup
867         for array object creation).
868
869 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
870
871         * icall.c: fixed CodeBase to use the file name and not the module
872         name (bug #79365).
873
874 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
875
876         * mono-debug.c, mono-debug.h: export find_method as
877         mono_debug_find_method ().
878
879 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
880
881         * debug-helpers.c, class-internals.h: added a few functions useful
882         when debugging under gdb.
883
884 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
885
886         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
887         characters that need special handling.
888
889 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
890
891         * mono-config.c: make the os/cpu specification more flexible,
892         allowing lists and negation.
893
894 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
895
896         * marshal.c: COM Interop fixes. Handle case where method->klass.
897         is interface. Handle BSTR/MonoString when null. Use CDECL as 
898         calling convention on non-windows platforms. This is for
899         compatibility with XPCOM and MainWin COM.
900         
901         Code is contributed under MIT/X11 license.
902         
903
904 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
905
906         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
907         correctly. Fixes #79217.
908
909         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
910
911 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
912
913         * mono-config.c: allow both an os and cpu attribute for dllmap
914         and dllentry elemnets to enable a single config file to be used
915         for multiple architectures.
916
917 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
918
919         * loader.c: MonoLoaderError was cleared too soon on load failure.
920         Fixes bug #79424.
921
922 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
923
924         * icall.c: use the defining class vtable when accessing a
925         static field, not a pobblibly derived class.
926
927 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
928
929         * icall.c string-icalls.c: Remove references to unicode.h.
930
931         * unicode.h unicode.c Makefile.am: Remove these unused source files.
932
933         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
934
935         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
936         indicating the image where custom marshaller types should be looked up.
937         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
938         custom marshallers, instead of corlib. Fixes #79425.
939
940 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
941
942         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
943
944 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
945
946         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
947         Implement Environment.ProcessorCount.
948         
949         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
950         Implement Environment.ProcessorCount.
951         
952         * icall.c: 
953         Add Environment.ProcessorCount icall.
954         
955         Patch by Jason McFall.
956
957 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
958
959         * assembly.c: don't append .exe/.dll when the filename already contains
960         one of those extensions.
961
962 2006-09-12  Martin Baulig  <martin@ximian.com>
963
964         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
965         to array interfaces.
966
967 2006-09-11  Martin Baulig  <martin@ximian.com>
968
969         * reflection.c (mono_image_build_metadata): Create the
970         MethodImpl's after emitting all types and methods, so we don't
971         need another fixup pass for them.
972
973 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
974
975         * class.c (mono_class_from_name_case): Fix regression introduced by the last
976         change.
977
978 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
979
980         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
981         unload.
982
983 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
984
985         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
986         args is not set. Fixes #78926.
987
988 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
989
990         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
991
992         * image.c (load_class_names): Move this to class.c, and rename it to 
993         'mono_image_init_name_cache'.
994         (load_modules): Fix a warning.
995
996         * class.c icall.c image.c: Initialize image->name_cache lazily.
997
998         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
999         on its name using information in the AOT file.
1000
1001         * class.c (mono_class_from_name): Use the new hook function.
1002
1003 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1004
1005         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1006         correctly.
1007
1008         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1009         Fixes #79289.
1010         
1011 2006-09-06  Martin Baulig  <martin@ximian.com>
1012
1013         * icall.c (mono_lookup_internal_call): Small fix.
1014
1015 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1016
1017         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1018         double g_free.
1019
1020 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1021
1022         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1023         when --debug is specified.
1024
1025 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1026
1027         * class.c (setup_generic_array_ifaces): Fix a warning.
1028
1029 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1030
1031         * Temporarily remove the patch to assemly.c that checks the
1032         assembly versions as it breaks our gacutil.
1033
1034 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1035
1036         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1037
1038         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1039         a net 1.0 runtime.
1040
1041         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1042         created using the default ctor. Fixes #79152.
1043         (mono_string_builder_to_utf16): Ditto.
1044
1045 2006-09-01  Martin Baulig  <martin@ximian.com>
1046
1047         Fix handling of the generic array interfaces.
1048
1049         * class-internals.h
1050         (MonoDefaults): Removed `generic_array_class' and added
1051         `generic_ilist' class.
1052
1053         * class.c
1054         (mono_bounded_array_class_get): Add the new generic array interfaces.
1055         (setup_generic_array_ifaces): New static method; create vtable
1056         entries for each method in the generic array interfaces.
1057
1058         * metadata.c
1059         (select_container): Allow "parent-less" generic methods.
1060
1061         * marshal.c
1062         (mono_marshal_get_generic_array_helper): New public method.
1063
1064         * icall.c
1065         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1066         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1067         moved the interncall into System.Array.
1068
1069 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1070
1071         A few more cases of avoiding work on types with ->byref set.
1072         Has the real fix for #79238
1073         * icall.c (is_generic_parameter): New helper.
1074         (ves_icall_Type_GetGenericParameterPosition): Use it.
1075         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1076         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1077         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1078         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1079         reference types.
1080         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1081         reference types.
1082         (ves_icall_Type_get_IsGenericInstance): Likewise.
1083         (ves_icall_Type_get_IsGenericType): Likewise.
1084
1085 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1086
1087         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1088         class if possible.
1089
1090         * mempool.h (mono_mempool_get_allocated): New helper function.
1091
1092         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1093         change.
1094
1095         * mempool.c: Fix warnings and the calculation of stats.
1096
1097         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1098
1099         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1100
1101         * loader.c (mono_get_method_from_token): Update method_count stat.
1102
1103         * class-internals.h (MonoStats): Add some stats.
1104
1105 2006-08-31 Robert Jordan  <robertj@gmx.net>
1106
1107         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1108         with managed variants.
1109         All code is contributed under the MIT/X11 license.
1110         
1111 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1112
1113         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1114         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1115
1116         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1117
1118         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1119         with cycles in classes.
1120
1121         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1122
1123         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1124         missing a [MarshalAs] directive. Fixes #79203.
1125
1126         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1127         klass->marshal_info. Fixes #79217.
1128
1129 2006-08-30  Martin Baulig  <martin@ximian.com>
1130
1131         Committing a patch from Joachim Ante <joe@otee.dk>:
1132         Add support for binary data symbol stores.
1133
1134         * debug-mono-symfile.c
1135         (mono_debug_open_mono_symbol_file): Renamed into
1136         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1137         arguments.
1138
1139         * mono-debug.c
1140         (mono_debug_open_image): Added `raw_contents' and `size' args.
1141         (mono_debug_init_2_memory): New public function.
1142
1143 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1144
1145         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1146
1147 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1148
1149         * appdomain.c: implement support for ShadowCopyFiles.
1150
1151 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1152
1153         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1154         when value is NULL (and should remove CID #51).
1155
1156 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1157
1158         * image.c: moved 2 functions to ../utils.
1159
1160 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1161
1162         * gc.c: cope with the target object of a GC handle being NULL
1163         (bug #78877).
1164
1165 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1166
1167         * class.c: recursively check parent's explicit implementations
1168         of interface methods (fixes bug #79125).
1169
1170 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1171
1172         * filewatcher.c: Avoid warnings when building, do not redefine
1173         constants that are defined.
1174
1175         Remove warnings.
1176
1177 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1178
1179         * image.c: don't fail when the link points to an absolute path.
1180
1181 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1182
1183         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1184         Fix CID #3.
1185
1186 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1187
1188         * image.c (full_path): A new method used to obtain the actual path
1189         of an assembly even in the presence of symbolic links.  
1190
1191         This is necessary for the case where we are running a binary that
1192         has been GACed, but we are using the "published" path name
1193         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1194         file in the GAC.
1195
1196         This was the source of the failure for the `xsp' command with the
1197         recent AppDomain changes, as far as the runtime was concerned,
1198         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1199         $prefix/mono/gac/blah/version/blah.exe.
1200
1201         (do_mono_image_open): use full path
1202
1203 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1204
1205         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1206
1207 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1208
1209         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1210         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1211
1212 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1213
1214         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1215         small structures. Fixes #78990.
1216
1217 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1218
1219         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
1220
1221         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
1222
1223 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1224
1225         * appdomain.c:
1226         * marshal.c: don't load all the assemblies from a domain into newly
1227         created ones. The new domains might have different rules and load
1228         assemblies from different locations. Fixes bug #76757.
1229
1230         Patch by Lluis. Conflicts resolved by Brian Crowell.
1231
1232 2006-08-16  Alp Toker  <alp@atoker.com>
1233
1234         * socket-io.c: First half of the fix for #79084.
1235         Set sa_size to the length of the content, not that of the struct.
1236         Don't add NULL suffix to the content, this should be done in
1237         managed code if needed.
1238
1239 2006-08-14  Raja R Harinath  <rharinath@novell.com>
1240
1241         Fix part of #79012
1242         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
1243         mono_metadata_parse_type returns NULL.
1244
1245 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
1246
1247         * normalization-tables.h : new file for string normalization data.
1248         * locales.c, locales.h, icall.c :
1249           added load_normalization_resource() for string normalization,
1250           and icall as well.
1251         * Makefile.am : added normalization-tables.h to the sources.
1252
1253 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
1254
1255         * marshal.c: Add more helper functions to reduce code duplication and use them
1256         everywhere.
1257
1258 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
1259
1260         * marshal.c: Fix non-x86 stdcall warnings.
1261         
1262         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
1263         them everywhere.
1264
1265 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
1266
1267         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1268         type check on multi-dimensional arrays. Fixes #79000.
1269
1270 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
1271
1272         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1273         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1274         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1275         * class-internals.h: add is_com_object to class structure.
1276         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1277         null checks to COM object marshalling. Fix .ctor call on RCW.
1278         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1279         
1280         All code is contributed under the MIT/X11 license.
1281
1282 2006-08-09  Dick Porter  <dick@ximian.com>
1283
1284         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1285         racing mono_monitor_allocator_lock() somewhere, so don't delete
1286         the critical section for now.  Found by running and exiting
1287         monodevelop.
1288
1289 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
1290
1291         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1292         (ves_icall_System_ComObject_FindInterface): Ditto.
1293         (ves_icall_System_ComObject_CacheInterface): Ditto.
1294
1295         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1296         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1297
1298 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1299
1300         * threadpool.c: treat pipes from process asynchronous reads as sockets
1301         when reading from them, so we get select/poll or epoll to wait for
1302         data.
1303
1304 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
1305
1306         * loader.c: Fix a typo (CID #233) in the null check.
1307
1308 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
1309
1310         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1311         Hopefully fixes #78949.
1312         
1313         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
1314         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1315         bytes. Fixes #78972.
1316
1317 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1318
1319         * filewatcher.c: we need to set errno here.
1320
1321 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1322
1323         * filewatcher.c: let Win32Exception get the error value.
1324
1325 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1326
1327         * filewatcher.c: translate errno into win32 errors for Win32Exception
1328         to know what happened.
1329
1330 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
1331
1332         * threadpool.c: Fix more warnings.
1333
1334         * assembly.c (search_loaded): Fix warnings.
1335
1336         * threadpool.c (mono_thread_pool_finish): Fix warnings.
1337         (mono_async_invoke): Ditto.
1338
1339 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
1340
1341         * object.c (mono_remote_class_vtable): Need to create proxy vtable
1342         entries for __ComObject type in addition to ComImport types.
1343         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1344         about hash table.
1345         
1346         All code is contributed under the MIT/X11 license.
1347
1348 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1349
1350         * image.c: avoid tentative loading of modulerefs that contain
1351         no metadata (P/Invoke library names).
1352
1353 2006-07-28  Dick Porter  <dick@ximian.com>
1354
1355         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1356         mono_loader_lock() somewhere, so don't delete the critical section
1357         for now.  Found by running and exiting monodevelop.
1358
1359 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1360
1361         * filewatcher.c: define the inotify syscalls when we're building on
1362         linux and have sys/syscall.h. The build system might not have support
1363         for inotify but the target system might have it.
1364
1365 2006-07-26  Miguel de Icaza  <miguel@novell.com>
1366
1367         * domain.c: Documentation updates.
1368
1369         * loader.c (mono_free_method): Do not release the method
1370         information if we are being profiled, as profilers will use this
1371         information at shut down to present some data to the user.
1372
1373         This is needed so that the profiler does not crash, as the
1374         profiler tends to keep MonoMethods around, and they might become
1375         invalid if we free these.
1376
1377         (mono_get_method_constrained): Return the original CIL stream
1378         method as well, so verification can be performed against it.
1379
1380 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1381
1382         * filewatcher.[ch]: support for inotify file system watcher.
1383         * icall.c: add new internal calls for the inotify file system watcher.
1384
1385 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1386
1387         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1388         #78888.
1389
1390 2006-07-20  Dick Porter  <dick@ximian.com>
1391
1392         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1393         warning.
1394
1395 2006-07-20  Dick Porter  <dick@ximian.com>
1396
1397         * threads.c (start_wrapper): Do the thread cleanup while we still
1398         hold a reference to its object.  Fixes bug 78123.
1399
1400 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
1401
1402         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1403         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1404           "managed-to-managed".
1405         * icall.c: Redirect string constructors that take sbyte* to
1406           ves_icall_System_String_ctor_RedirectToCreateString.
1407         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1408           to CreateString () methods with matching signature.
1409         * reflection.c: Use original security informations for
1410           MONO_WRAPPER_MANAGED_TO_MANAGED.
1411         * security-manager.c: Use original security informations for
1412           MONO_WRAPPER_MANAGED_TO_MANAGED.
1413         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1414           that is a placeholder and only its address should be used.
1415         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1416           that is a placeholder and only its address should be used.
1417
1418 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
1419
1420         Begin implementing COM Interop.
1421         * appdomain.c: Increment corlib version.
1422         * class.c: Set ComImport classes' parent to __ComObject.
1423         * loader.c: Mark cominterop methods as such.
1424         * domain.c: Add __ComObject class to MonoDefaults structure.
1425         * image.c: Add 2 hashtables to the image for COM Interop related methods
1426         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1427         using the mempool allocator
1428         
1429         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1430         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1431         declaration for mono_metadata_type_dup_mp.
1432         
1433         * debug-helpers.c: Added strings for two additional wrapper types
1434         * object.c: Create proxy objects for ComImport classes
1435         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1436         and added __ComObject class to MonoDefaults structure.
1437         
1438         * object-internals.h: Finish MonoRealProxy definition, and add definition of
1439         MonoComInteropProxy and MonoComObject.
1440         
1441         * marshal.c: Added support for COM Interop
1442         (signature_cominterop): Converts managed signature to corresponding
1443         unmanaged COM signature.
1444         (cominterop_get_function_pointer): gets unmanaged function pointer via
1445         COM object vtable
1446         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1447         (cominterop_get_method_interface): returns interface type that method is defined on
1448         (mono_mb_emit_cominterop_call): emits native call to function pointer
1449         gotten from vtable
1450         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1451         that matches signature of unmanaged function.
1452         (cominterop_get_native_wrapper): wrapper around adjusted method call.
1453         (cominterop_get_invoke): forwards call from proxy to __ComObject
1454         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
1455         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
1456         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
1457         
1458         * marshal.h: Added Marshal icall declarations.
1459         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1460         so we can access them in finalizer
1461         
1462 2006-07-14  Dick Porter  <dick@ximian.com>
1463
1464         * object.c (mono_type_initialization_cleanup): Fix a race
1465         condition by temporarily commenting out the critical section
1466         deletion.
1467
1468 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
1469
1470         * reflection.c (create_custom_attr): Fix some warnings.
1471         (create_custom_attr_data): Ditto.
1472         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1473         types. Fixes #78855.
1474
1475 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
1476
1477         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1478
1479         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1480
1481 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
1482
1483         * reflection.c (resolve_object): Add support for DynamicMethod.
1484
1485         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1486         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1487
1488 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
1489
1490         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
1491         don't leak GPtrArray's pdata has we have no use (nor free) for it.
1492
1493 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
1494
1495         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1496         Fixes #77888.
1497
1498 2006-06-30  Raja R Harinath  <rharinath@novell.com>
1499
1500         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1501         slightly: remove a shadow local variable.
1502
1503 2006-06-29  Raja R Harinath  <rharinath@novell.com>
1504
1505         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1506         definition that introduces the virtual function slot.
1507         Also fix Coverity #105.
1508
1509 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
1510
1511         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1512         for dynamic assemblies. Fixes #78724.
1513
1514 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
1515
1516         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1517         Fixes #78722.
1518
1519 2006-06-21  Martin Baulig  <martin@ximian.com>
1520
1521         * reflection.c
1522         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1523         fixes #76484.
1524
1525 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
1526
1527         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1528
1529 2006-06-20  Raja R Harinath  <rharinath@novell.com>
1530
1531         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1532         nor TYPEREFs.
1533         * class.c (mono_class_create_from_typespec): Add 'context' argument.
1534         Inflate result if necessary.
1535         (mono_class_get_full): Remove old version.  Rename from
1536         'mono_class_get' and add 'context' argument.  Pass it to
1537         ..._create_from_typespec.
1538         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
1539         (mono_ldtoken): Revert change below.
1540
1541 2006-06-20  Martin Baulig  <martin@ximian.com>
1542
1543         * class.c (mono_ldtoken): Don't pass the generic context to
1544         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
1545
1546 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
1547
1548         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1549         and later freeing it. Fixes #78638.
1550
1551 2006-06-15  Miguel de Icaza  <miguel@novell.com>
1552
1553         * icall.c (mono_class_get_throw): Revert over-zealous error
1554         throwing, the caller for mono_class_get_throw will cope with
1555         errors when classes are not properly initialized already.
1556
1557         The code still copes with loader exceptions though.
1558
1559         Fixes the regression in reftype1 and reftype3 from the CAS tests.
1560         
1561 2006-06-14  Miguel de Icaza  <miguel@novell.com>
1562
1563         Fixes the `make run1' version of RuntimeAbort (to be commited,
1564         source is in Bugzilla).
1565         
1566         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1567         FALSE on class loading failure instead of returning true.
1568
1569         * class.c (mono_class_create_from_typedef): It is possible for
1570         mono_metadata_interfaces_from_typedef_full to fail if a class is
1571         not found, cope with this.
1572         
1573
1574 2006-06-14  Dick Porter  <dick@ximian.com>
1575
1576         * socket-io.c: 
1577         * process.c: Fix a bunch of signed/unsigned warnings from gcc
1578         4.1.1
1579
1580 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
1581
1582         * culture-info-table.h : oops, forgot to make it nsync with r61548.
1583
1584 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1585
1586         * icall.c: Another fix for building mono in Visual Studio.
1587
1588 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
1589
1590         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1591         
1592 2006-06-09  Martin Baulig  <martin@ximian.com>
1593
1594         * debug-mono-symfile.c: Put this back and really fix it this
1595         time. Sorry for all the trouble.
1596
1597 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
1598
1599         * icall.c (mono_class_get_throw): Fix a warning.
1600         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
1601         ReflectionTypeLoadException if needed. Fixes #78606.
1602
1603         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1604         (mono_class_init): Ditto.
1605
1606         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1607         ref_only exceptions.
1608         (mono_loader_clear_error): Make this work even if there is no error.
1609
1610 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
1611
1612         * object-internals.h marshal.c marshal.h icall.c: Implement method 
1613         Marshal.GetComSlotForMethodInfo using internal call.
1614
1615 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1618         a function for signalling it.
1619
1620         * class.c (mono_class_from_typeref): Use the new kind of loader error when
1621         a referenced assembly is not found.
1622
1623         * loader.c (mono_loader_error_prepare_exception): Add support for 
1624         LOADER_ERROR_ASSEMBLY. Fix formatting.
1625
1626 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
1627
1628         * domain.c appdomain.c class-internals.h marshal.c: Add support 
1629         for VARIANT marshalling on windows and increment corlib version
1630         since Variant struct was added.
1631
1632 2006-06-03  Miguel de Icaza  <miguel@novell.com>
1633
1634         * debug-mono-symfile.c: Revert Martin's previous patch which broke
1635         stack trace line information:
1636
1637         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1638         (Martin) when looking up B which is between A and C, return A not C.
1639
1640         Bug is #78573.
1641
1642         Thanks to Alexander Olk for tracking this down.
1643
1644 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
1645
1646         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1647         
1648         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1649         avoid clobbering its value.
1650         (mono_string_to_lpstr): Fix a warning on windows.
1651
1652 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1653
1654         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1655
1656         * reflection.c loader.c: Removed references to 'dummy' flag.
1657
1658         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1659
1660         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1661         it gets GC tracking.
1662
1663         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1664         GC tracking.
1665         
1666         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1667
1668         * marshal.c threadpool.c: Update callers of mono_async_result_new.
1669
1670         * appdomain.c: Bump corlib version.
1671
1672 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1673
1674         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1675         CEE_STIND_REF when working with object references.
1676
1677 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
1678
1679         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1680         Fixes #78539.
1681
1682 2006-05-30  Miguel de Icaza  <miguel@novell.com>
1683
1684         * loader.c (method_from_memberref): Fix argument value for
1685         mono_loader_set_error_method_load (I was passing the MonoClass
1686         instead of the class name char *).
1687
1688 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
1689
1690         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1691         CEE_STIND_REF when working with object references.
1692
1693 2006-05-30  Martin Baulig  <martin@ximian.com>
1694
1695         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1696         mono_method_full_name() change and replace the ':' with a '.'
1697         here.
1698
1699 2006-05-30  Martin Baulig  <martin@ximian.com>
1700
1701         * debug-mono-symfile.c
1702         (mono_debug_symfile_lookup_location): Fix the algorithm:
1703         when looking up B which is between A and C, return A not C.
1704
1705 2006-05-29  Martin Baulig  <martin@ximian.com>
1706
1707         * mono-debug.h
1708         (MonoDebugMethodInfo): Make the typedef public.
1709         (MonoDebugSourceLocation): New public struct.
1710
1711         * mono-debug.c
1712         (mono_debug_source_location_from_address): Removed.
1713         (mono_debug_source_location_from_il_offset): Removed.
1714         (mono_debug_il_offset_from_address): Removed.
1715         (mono_debug_address_from_il_offset): Removed.
1716         (mono_debug_lookup_method): New public function.
1717         (mono_debug_lookup_source_location): New public function; replaces
1718         the old mono_debug_source_location_from_*() functions; see the
1719         inline documentation.
1720         (mono_debug_free_source_location): New public function.
1721         (mono_debug_print_stack_frame): New public function; see the
1722         inline documentation.
1723
1724         * debug-mono-symfile.c
1725         (mono_debug_find_source_location): Renamed into
1726         mono_debug_symfile_lookup_location(); only take a
1727         `MonoDebugMethodInfo *' and an `offset' argument; added inline
1728         documentation.
1729         (mono_debug_find_method): Renamed into
1730         mono_debug_symfile_lookup_method().
1731
1732 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
1733
1734         * assembly.c (mono_assembly_open_full): Dont overwrite the status
1735         returned by mono_image_open_full ().
1736
1737         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1738         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1739         #78517.
1740
1741         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1742         #78518.
1743
1744 2006-05-27  Miguel de Icaza  <miguel@novell.com>
1745
1746         * class.c (mono_class_from_typeref): handle missing images
1747         earlier, deals with bug #78418.   Refactor code; 
1748
1749         Fix a warning introduced in my previous commit (some stale code
1750         from before I revisited my patch).
1751
1752         * class.c (mono_class_create_from_typedef): On failure, remove the
1753         class from the MonoImage->class_cache as the class is not
1754         initialized;   Fixes the leak pointed out by Paolo.
1755
1756 2006-05-25  Dick Porter  <dick@ximian.com>
1757
1758         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
1759         DeleteCriticalSections until I figure out which one may still be
1760         sometimes locked when mono_thread_cleanup is called.
1761
1762 2006-05-24  Dick Porter  <dick@ximian.com>
1763
1764         * threads.c (mono_thread_cleanup): Move the threading cleanup out
1765         of mono_thread_manage and back into its own function, so it can be
1766         called after the finalizer thread has finished.
1767
1768         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1769
1770 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
1771
1772         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1773         Fixes #78495.
1774
1775         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1776         with non-blittable elements.
1777         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1778
1779 2006-05-24  Martin Baulig  <martin@ximian.com>
1780
1781         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1782         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
1783
1784         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1785         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1786         `mono_debugger_event_handler' to NULL.
1787
1788 2006-05-24  Martin Baulig  <martin@ximian.com>
1789
1790         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1791
1792 2006-05-24  Martin Baulig  <martin@ximian.com>
1793
1794         * mono-debug-debugger.h
1795         (mono_debugger_create_notification_function): Added
1796         `MonoCodeManager *' argument.
1797
1798 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1799
1800         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1801
1802 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1803
1804         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1805         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1806         implementation.
1807
1808 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1809
1810         * icall.c: precise GC support: objects can't be stored in unmanaged
1811         memory anymore, even if they are kept alive by other references: since
1812         they can move the GC needs to be able to always find them.
1813
1814 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1815
1816         * object.c: precise GC support for static fields. Support
1817         for moving GCs: write barriers and pinned allocation for interned
1818         strings.
1819
1820 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1821
1822         * domain.c, domain-internals.h: precise GC support for the MonoDomain
1823         structure.
1824
1825 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1826
1827         * class.c, gc.c: sgen and precise GC updates.
1828
1829 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1830
1831         * marshal.h, marshal.c: added write barrier wrapper and precise type
1832         fixes.
1833
1834 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1835
1836         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1837         support.
1838
1839 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1840
1841         * reflection.c: precise and sgen GC updates.
1842
1843 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1844
1845         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1846
1847 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
1848
1849         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1850
1851 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
1852
1853         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1854         MONO_TYPE_OBJECT. Fixes #78462.
1855
1856 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
1857
1858         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
1859         and blittable types.
1860
1861 2006-05-17  Miguel de Icaza  <miguel@novell.com>
1862
1863         * class.c (mono_class_get_exception_for_failure): Implement parts
1864         of a TODO: if the loader error is set (instead of the class
1865         error), we return a Loader exception that can be properly thrown
1866         elsewhere.
1867
1868         This was exposed by some Winforms 2.0 code that I tried to run
1869         (Atsushi pointed me to it).
1870
1871 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
1872
1873         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1874         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1875         
1876         * marshal.c (emit_marshal_vtype): Add limited support for 
1877         UnmanagedType.LPStruct. Fixes #78427.
1878
1879         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
1880         Applied a patch from kangaroo to fix #77523.
1881
1882 2006-05-17  Martin Baulig  <martin@ximian.com>
1883
1884         * threads.c
1885         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
1886         (debugger_thread_created): Removed.
1887         (debugger_thread_exited): Removed.
1888
1889 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
1890
1891         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1892
1893         * object-internals.h (MonoReflectionResource): Sync with managed version.
1894
1895 2006-05-12  Wade Berrier <wberrier@novell.com>
1896
1897         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
1898
1899 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
1900
1901         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
1902         functions try to allocate from the image mempool.
1903
1904 2006-05-12  Dick Porter  <dick@ximian.com>
1905
1906         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
1907
1908 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
1909
1910         * object.c: The FieldGetter and FieldSetter methods require the full
1911         name of the class, not only the name. Fixes bug #78277.
1912
1913 2006-05-11  Miguel de Icaza  <miguel@novell.com>
1914
1915         * loader.c (method_from_memberref): Do not pass the NULL klass to
1916         mono_loader_set_error_() methods.  Pass the non-NULL value
1917         (class). 
1918
1919 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
1920
1921         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
1922         (mono_assembly_close): Null out assembly->image->references after freeing it.
1923
1924         * image.c (mono_image_close): Free image->references.
1925         
1926         * reflection.c (mono_image_basic_init): Fix a small memory leak.
1927
1928 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1929
1930         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
1931         before checking if it's NULL (g_assert).
1932
1933 2006-05-10  Martin Baulig  <martin@ximian.com>
1934
1935         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
1936         I thought I already killed that two months ago, but now it somehow reappeared.
1937
1938 2006-05-10  Martin Baulig  <martin@ximian.com>
1939
1940         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
1941
1942 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
1943
1944         * reflection.c: Allocate memory for dynamically created methods in the image
1945         mempools.
1946
1947 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
1948
1949         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
1950         don't use the ad pointer before checking if it's NULL (g_assert).
1951
1952 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
1953
1954         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
1955         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
1956
1957         * marshal.c: Allocate all signatures from mempools.
1958
1959         * marshal.c: Allocate some more signatures from mempools.
1960
1961 2006-05-09  Miguel de Icaza  <miguel@novell.com>
1962
1963         * object.c (mono_load_remote_field): The code used to provide a
1964         temporary variable for returning results if the user did not
1965         provide a result pointer.  But our temporary variable was allocted
1966         on the satck.
1967
1968         Fix calling code to always pass a result area.   Coverity ID 103.
1969
1970 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
1971
1972         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
1973         value, not the old. Fixes #78312.
1974         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
1975
1976         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
1977         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
1978         per-image cache.
1979
1980         * assembly.c (mono_assembly_close): Free image->references.
1981
1982         * assembly.c (mono_assembly_names_equal): Fix a warning.
1983         (mono_assemblies_cleanup): Cleanup more global data.
1984
1985         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
1986
1987         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
1988         ptr_cache and image->modules.
1989
1990         * image.c (mono_image_init): Allocate array_cache lazily.
1991         
1992 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1993
1994         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
1995         behavior was changed recently and has bad side effects.
1996
1997 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
1998
1999         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2000         
2001         * assembly.c (mono_assembly_close): Remove a debug printf.
2002
2003         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2004
2005         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2006         to also allow for temporary references between mono_image_open ()/close ().
2007
2008         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2009
2010 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2011
2012         * marshal.c: Fix support for dynamic methods.
2013
2014         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2015
2016         * marshal.c (mono_marshal_cleanup): New cleanup function.
2017
2018         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2019         image mempools.
2020
2021         * class.c (mono_class_init): Fix leaking class->nested_classes.
2022
2023         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2024
2025         * image.c (mono_image_init): Initialize the new cashes.
2026
2027         * image.c (mono_image_close): Destroy the new cashes.
2028
2029         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2030
2031         * mempool.c (mono_mempool_strdup): New helper function.
2032
2033         * class-internals.h: Add prototype for mono_loader_unlock ().
2034
2035         * domain.c (mono_jit_info_table_find): Fix a warning.
2036         (mono_debugger_check_runtime_version): Ditto.
2037
2038         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2039         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2040         functions to these modules.
2041
2042         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2043         metadata modules.
2044         
2045         * marshal.c (mono_free_bstr): Fix a warning.
2046
2047         * assembly.c (mono_assembly_open_full): Fix another small leak.
2048
2049         * object.c: Fix some unload leaks in the remoting code.
2050
2051         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2052         function.
2053
2054         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2055
2056         * reflection.c: Fix some unload leaks in dynamic assemblies.
2057
2058 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2059
2060         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2061         * marshal.h: Add BSTR support on Win32
2062         * icall.c: Add BSTR icalls
2063         * metadata.h: Add BSTR enums
2064
2065 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2066
2067         Work to catch the crash from #76795 and turn it into an
2068         exception.   As I stubbed out pieces of the VisualBasic support,
2069         I found a number of places where the code was failing and I added
2070         checks to those places. 
2071         
2072         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2073         function return a status code.  If we fail to parse the signature
2074         from mono_metadata_parse_generic_inst, return FALSE.
2075
2076         * loader.c (mono_get_method_from_token): If we fail to load the
2077         method (mono_class_get) return NULL.   
2078
2079         * (method_from_memberref): Return NULL if we are unable to parse
2080         the method signature
2081
2082         (mono_loader_error_prepare_exception): Since we now use the
2083         loader_error flag internally to stop processing, and obtaining
2084         exceptions that might be thrown will walk this code path the
2085         proper way of going from a MonoLoaderError into a
2086         MonoException was convoluted.   This new routine encapsulates the
2087         process of turning the error into an exception and *clearing* the
2088         error afterwards.
2089         
2090 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2091
2092         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2093         with missing assemblies), and to cope with:
2094
2095                 * Missing fieldref from a non-existing assembly.
2096                 * Missing methodref from a non-existing assembly.
2097
2098         The first batch of work to address *some* of the issues from 76661.
2099         
2100         * object.c (mono_class_create_runtime_vtable): If we fail to
2101         initialize the class raise the exception here. 
2102
2103         * metadata.c (mono_class_get_overrides_full): If any methods fail
2104         to load return the failure to the caller.
2105
2106         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2107         flagging assemblies that failed to load.   
2108
2109         Do not crash if we are unable to load the assembly.
2110
2111         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2112         assemblies. 
2113
2114         * loader.c (mono_loader_set_error_type_load): Change the
2115         convention to always pass unallocated strings, so we make our own
2116         copies (I know our own code had duplicated strings before, but
2117         this keeps the normal conventions).
2118         (method_from_memberref): Call mono_loader_set_error_method_load
2119         for all possible failures of loading the class. 
2120         Remove assert, turn into a loader error.
2121
2122         (mono_loader_error_to_exception): Move this routine from mini
2123         (mini_loader_error_to_exception) there was no need to have that in
2124         mini. 
2125
2126         * class.c (mono_class_from_typeref): If we were not able to load
2127         the assembly with mono_assembly_load_reference, call the
2128         mono_loader_set_error_type_load to register the problem.
2129
2130         (mono_class_setup_fields): If we fail to load the type from
2131         mono_metadata_parse_type_full, call mono_class_set_failure and
2132         break from the loop.
2133
2134         If class->exception_type is set, we do not layout the fields as
2135         that might crash the runtime, and instead return (from breaking
2136         from the previous loop).
2137
2138         (mono_class_setup_vtable): This now returns a boolean indicating
2139         whether the table was properly setup.   The decision is driven by
2140         mono_class_get_overrides_full which might run into non-existing
2141         methods. 
2142         
2143         (mono_class_init): Returns TRUE on success or FALSE if there was a
2144         problem in loading the type (incorrect assemblies, missing
2145         assemblies, methods, etc).
2146
2147         When we call mono_class_setup_fields we also check for a potential
2148         error inside this call (either a class exception or a general
2149         loader exception).
2150
2151         (mono_class_create_from_typedef): If the parent fails to load
2152         (calling mono_class_get_full) return NULL.
2153         
2154         ** Important **
2155
2156         calls to mono_metadata_parse_type_full should be checked
2157         everywhere and set the mono_class_set_failure
2158         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2159
2160         The current patch checks the places where my manually constructed
2161         tests show the errors are showing up, but we should do it
2162         everywhere. 
2163
2164         ** Important2 **
2165
2166         mono_class_init return values should be tested everywhere, like
2167         the previous case this is something that we should audit
2168         everywhere and not only on the cases exposed by the tests I
2169         created. 
2170
2171 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2172
2173         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2174         boolean parameter and instead pass the information on `options'
2175         parameter (FileOptions).
2176
2177         * icall.c: Register the new signature for MonoIO.Open.
2178
2179         * debug-helpers.c (dis_one): Trying to understand how coverity
2180         works.  Fix Run 5, item 78.
2181
2182 2006-04-26  Dick Porter  <dick@ximian.com>
2183
2184         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2185         dereference.
2186
2187 2006-04-25  Martin Baulig  <martin@ximian.com>
2188
2189         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2190
2191         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2192         debugger_thread_created().
2193         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2194         special way.
2195         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2196         (mono_debugger_finalize_threads): New function; undo the effects
2197         of mono_debugger_init_threads().
2198         (mono_debugger_create_all_threads): Removed.
2199
2200 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2201
2202         * image.c (mono_image_close): Tidy up trace messages.
2203
2204         * assembly.c (mono_assembly_close): Ditto.
2205
2206         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2207         no longer references an already freed assembly. Fixes #78168.
2208
2209 2006-04-21  Dick Porter  <dick@ximian.com>
2210
2211         * threads.c (mono_thread_detach): Fix reference counting when
2212         detaching threads.
2213
2214 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2215
2216         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2217         #78155.
2218
2219 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
2220
2221         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
2222         (mono_type_to_stind): Ditto.
2223
2224         * marshal.c: Use the new helper functions to simplify code.
2225
2226         * image.c (mono_image_close): Add some code for help debug assembly unloading
2227         problems.
2228
2229         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
2230         image mempool.
2231
2232         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
2233         assembly was already loaded in another appdomain. Fixes #78083.
2234
2235 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
2236
2237         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
2238         referenced assemblies.
2239         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
2240
2241         * domain.c (mono_domain_free): Add a trace message.
2242
2243         * appdomain.c (add_assemblies_to_domain): Ditto.        
2244
2245         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
2246         field.  
2247
2248 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2249
2250         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
2251
2252 2006-04-12  Martin Baulig  <martin@ximian.com>
2253
2254         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
2255         `USE_INCLUDED_LIBGC'.   
2256
2257 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
2258
2259         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2260         the patch contains ../ and a small directory name later. Hopefully fixes
2261         #78035.
2262
2263 2006-04-10  Martin Baulig  <martin@ximian.com>
2264
2265         Clean up the debugger's thread-handling code.
2266
2267         The debugger's thread-handling code has been moved from
2268         ../mini/debug-debugger.c to threads.c.  We now iterate directly
2269         over the `threads' hash, keep track of exiting threads and also
2270         use proper locking.
2271
2272         We can now debug XSP and XSP based applications with the debugger.
2273
2274         * object-internals.h (MonoThread): Added `gpointer end_stack'.
2275
2276         * threads.h
2277         (MonoThreadCallbacks): Removed; this was only used by the debugger.
2278         (mono_install_thread_callbacks): Likewise.      
2279
2280         * threads.c (mono_thread_callbacks): Removed.
2281         (debugger_thread_created, debugger_thread_exited): New static functions.
2282         (start_wrapper): Call debugger_thread_created().
2283         (thread_cleanup): Call debugger_thread_exited().
2284         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2285         (mono_debugger_init_threads): New public function.
2286         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2287         iterate directly over the `threads' hash and also use proper locking.
2288
2289         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2290
2291         * mono-debug-debugger.h
2292         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2293
2294 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
2295
2296         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
2297         argument type=array. Fixes #78057.
2298
2299 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
2300
2301         * culture-info-table.h : regenerated. Fixed bug #69652.
2302
2303 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
2304
2305         * loader.c metadata.c: Reapply a variant r59116.
2306         
2307         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2308
2309         * class.c (mono_class_setup_interface_offsets): New internal function.
2310
2311         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2312         interfaces too. Fixes #77398.
2313
2314         * reflection.c (encode_cattr_value): Add support for 
2315         parameter type=object, argument type=array.
2316         (load_cattr_value): Ditto. Fixes #77916.
2317
2318         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2319         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2320
2321         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2322         a byval char array and CharSet is Ansi.
2323
2324         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2325
2326 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
2327
2328         * metadata.c: Add some locking comments.
2329         
2330         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2331         mempool.
2332         (mono_metadata_free_method_signature): Don't free the signature itself.
2333
2334         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
2335
2336         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2337         reference the same MonoImage.
2338         (mono_assembly_load_from_full): Add an assert.
2339
2340 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
2341
2342         * image.c (mono_image_close): Don't put the image we are about to free into the
2343         loaded_images_guid_hash.
2344
2345         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2346         to reduce code duplication.
2347
2348         * marshal.c: Register the native functions called by this module as icalls, to
2349         somewhat centralize the creation of MonoMethodSignature's.
2350
2351         * loader.c (mono_method_signature): Add a cache for method signatures.
2352
2353         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2354         the parameter attributes of a method.
2355         (mono_metadata_parse_method_signature_full): Refactored the computation of
2356         parameter attributes into a separate function. Also avoid one allocation in
2357         most cases.
2358
2359         * assembly.c (mono_assembly_close): Ditto.
2360
2361         * image.c (mono_image_close): Log trace messages with INFO level.
2362
2363         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2364
2365         * image.c reflection.c: Correct reference counting of image modules.
2366         
2367         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2368         of this function from the image mempool.
2369         
2370         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2371         to allow more cached types to be used.
2372
2373         * mono-debug.c (mono_debug_add_method): Appled patch from
2374         David S. Miller  <davem@sunset.davemloft.net>: Access 
2375         minfo->lexical_blocks[] entry elements using read32().
2376
2377 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
2378
2379         * loader.c (mono_free_method): No longer free the method header for non-dynamic
2380         methods as it is allocated from the mempool.
2381
2382         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2383         image mempool.
2384
2385         * metadata-internals.h: Add comments describing the reference counting scheme
2386         used for MonoImage and MonoAssembly.
2387
2388         * image.c assembly.c reflection.c: Rework reference counting of images and 
2389         assemblies so they are freed when the runtime is shut down. Free some 
2390         additional memory structures when an image is unloaded.
2391         
2392 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
2393
2394         * class.c loader.c reflection.c: Allocate more data structures in
2395         the image mempool.
2396
2397 2006-03-31  Miguel de Icaza  <miguel@novell.com>
2398
2399         * icall.c
2400         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2401         build on pre glib 2.4 systems.
2402
2403 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2404
2405         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2406
2407         * icall.c: Fix some warnings.
2408
2409 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
2410
2411         * culture-info-table.h : regenerated.
2412
2413 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2414
2415         * threads.c, object-internals.h, verify.c: changed the culture caching
2416         code to use a normal MonoArray for storage so the GC can keep track of
2417         them easily. Fixed bits of the cache logic, too and simplified the
2418         code.
2419
2420 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2421
2422         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2423         thread for non-Boehm GCs.
2424
2425 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2426
2427         * domain.c, object.c, domain-internals.h: reduce the amount of memory
2428         needed to keep track of the data for static fields.
2429
2430 2006-03-29  Raja R Harinath  <rharinath@novell.com>
2431
2432         Fix #75172
2433         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2434         for interface classes.  Use 'num_methods' instead.
2435         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
2436         before using '->vtable_size' field.
2437
2438 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2439
2440         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2441         doesn't contain managed pointers, so use a normal hashtable.
2442
2443 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2444
2445         * reflection.c, class-internals.h, domain.c: fixed handling of types
2446         used as values for objects in custom attributes (bug #77915):
2447
2448 2006-03-24  Martin Baulig  <martin@ximian.com>
2449
2450         * class.c (mono_class_setup_fields): Added support for generic
2451         instances; fixes #77580.
2452
2453 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2454
2455         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2456
2457 2006-03-24  Dick Porter  <dick@ximian.com>
2458
2459         * file-io.c (get_file_attributes): More stat macro breakage.
2460         Fixes bug 77759.
2461
2462 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2463
2464         * profiler.c: added the file=filename option in the default profiler
2465         to output the profile data to filename.
2466
2467 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2468
2469         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2470         bug #77877.
2471
2472 2006-03-22  Martin Baulig  <martin@ximian.com>
2473
2474         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2475         allocated `MonoClassField *' in `fb->handle'.
2476
2477 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2478
2479         * class.c, image.c, metadata-internals.h: implemented new mechanism to
2480         allocate interface ID to save memory and allow better ID reuse on
2481         appdomain unload. setup_generic_vtable () removal from Martin.
2482
2483 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2484
2485         * object.h, appdomain.c, domain.c, exception.c, icall.c,
2486         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2487         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2488         write barriers for reference stores with managed objects accessed with
2489         C structures in the runtime and in embedding programs.
2490
2491 2006-03-20  Raja R Harinath  <rharinath@novell.com>
2492
2493         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2494         'interface_id' and 'max_interface_id' fields of MonoClasses
2495         representing open generic types.
2496
2497 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2498
2499         * object.h, object.c, icall.c: added functions to deal with
2500         storing valuetypes that contain references in managed objects.
2501         * reflection.c, string-icalls.c, threads.c, marshal.c: small
2502         fixes and comments around uses of mono_array_addr ().
2503
2504 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2505
2506         * object.h, icall.c, monitor.c: object.GetHashCode ()
2507         implementation that supports the moving garbage collector.
2508
2509 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2510
2511         * icall.c, threads-types.h, threads.c: implemented finalizer for
2512         LocalDataStoreSlot.
2513
2514 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2515
2516         * metadata.c (mono_type_size): Add a fixme.
2517         (mono_type_stack_size): Ditto.
2518
2519         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
2520         'type_forwarders' field.
2521
2522         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2523         attribute from net 2.0.
2524
2525         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2526         from class.c.
2527
2528         * class.c (mono_class_setup_fields): Fix a warning.
2529         
2530         * class.c (mono_class_from_name): Add support for assemblyref entries
2531         in the EXPORTEDTYPE table.
2532
2533         * reflection.c: Add support for handling type forwarders under net 2.0.
2534
2535         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
2536         
2537 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
2538
2539         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2540         overwriting entries in ModuleBuild->types, also clean up the code
2541         a little. Fixes #77774.
2542
2543 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2544
2545         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2546         load friend assembly info when present.
2547
2548 2006-03-14  Raja R Harinath  <rharinath@novell.com>
2549
2550         Fix crasher on gtest-158.cs.
2551         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2552         the return value if the MonoClass we want is yet in an
2553         inconsistent state.
2554         * class.c (mono_class_create_from_typedef): Add an comment
2555         explaining an order dependency between mono_class_setup_parent and
2556         mono_class_setup_mono_type.
2557
2558 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2559
2560         * class.c: documentation updates and events bug fix.
2561
2562 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2563
2564         * class.c: some cleanup, locking fixes.
2565
2566 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2567
2568         * class.c: fix the generics code to setup nested
2569         type info to the instantiated type (bug #77770).
2570
2571 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2572
2573         * marshal.c: fixed a few type correctness issues.
2574
2575 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2576
2577         * loader.c: the Set/Get/Addrtess array methods should be public.
2578
2579 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
2580
2581         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2582         
2583         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2584         info->wrapper.
2585
2586 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2587
2588         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2589
2590         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2591
2592         * mempool.c (mono_mempool_alloc): Speed this up a bit.
2593         (mono_mempool_alloc0): Ditto.
2594
2595 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2596
2597         * socket-io.c:
2598         (create_object_from_sockaddr): it was allocating 4 extra bytes
2599         for the AF_UNIX data. Fixes bug #77747.
2600
2601 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
2602
2603         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2604
2605 2006-03-09  Dick Porter  <dick@ximian.com>
2606
2607         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2608         Fixes bug 76966 again.
2609
2610 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2611
2612         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2613         names from r57532
2614         * appdomain.c: Bumped corlib version to 48 (due to r57532)
2615
2616 2006-03-07  Martin Baulig  <martin@ximian.com>
2617
2618         * object.c
2619         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2620
2621 2006-03-07  Martin Baulig  <martin@ximian.com>
2622
2623         * class.c
2624         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2625         regression introduced in r56970; see gtest-252.cs.
2626
2627         * loader.c (mono_get_method_constrained): Correctly handle generic
2628         methods; see gtest-253.cs.
2629
2630 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
2631
2632         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2633
2634 2006-03-04  Martin Baulig  <martin@ximian.com>
2635
2636         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2637         compute the parent type at runtime, just like we're already doing
2638         it for interfaces.
2639
2640         * reflection.c
2641         (mono_reflection_bind_generic_parameters): Don't compute the
2642         parent type anymore.
2643
2644         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2645
2646 2006-03-04  Martin Baulig  <martin@ximian.com>
2647
2648         * mono-debug-debugger.h
2649         (mono_debugger_create_notification_function): Allocate memory at
2650         runtime and return a pointer to it.
2651
2652 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
2653
2654         * assembly.c: Fix windows build.
2655         
2656         * assembly.c: Fix build.
2657
2658         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
2659
2660         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2661         
2662 2006-03-03  Dick Porter  <dick@ximian.com>
2663
2664         * process.c
2665         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2666         Check parameters before dereferencing them.  Fixes Aaron's part of
2667         bug 77393.
2668
2669 2006-03-03  Raja R Harinath  <rharinath@novell.com>
2670
2671         Fix performance regression.
2672         * loader.c (find_method_in_class): Add 'from_class' argument.
2673         Rename 'klass' argument to 'in_class'.  The signature is compared
2674         against the method in 'in_class', and the corresponding method is
2675         returned from 'from_class'.
2676         (find_method): Walk both 'in_class' and 'from_class' in parallel.
2677         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2678         type definition and generic instantiation in parallel.
2679         (mono_get_method_constrained): Update to changes.
2680
2681 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2682
2683         * threads.c: make sure the domain is correct, too when doing
2684         mono_thread_attach ().
2685
2686 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
2687
2688         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2689         windows. Fixes #77683.
2690
2691 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2692
2693         * object.h, *: introduced specific way to set elements of an array
2694         of references to be used as write barrier. Still need to audit the
2695         uses of mono_array_addr.
2696
2697 2006-03-01  Miguel de Icaza  <miguel@novell.com>
2698
2699         * object-internals.h: New field to cache the assmebly name, patch
2700         from Tambet Ingo (tambet@ximian.com)
2701
2702 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2703
2704         * decimal.h, class-internals.h, metadata-internals.h,
2705         file-io.h: mark a few function declarations as internal, to
2706         reduce the number of PLT entries.
2707
2708 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2709
2710         * file-io.c: fix typo in warning message.
2711
2712 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2713
2714         * loader.c: on unix, lookup the "*A" version of a function
2715         if charset is auto as a second option before failing.
2716
2717 2006-02-28  Raja R Harinath  <rharinath@novell.com>
2718
2719         * class.h (mono_class_inflate_generic_method): Revert to two
2720         argument version.
2721         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2722         (mono_class_inflate_generic_method_full): Add.
2723         * class.c (mono_class_inflate_generic_method_full): Rename from
2724         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
2725         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
2726         * loader.c, reflection.c: Update to changes.
2727
2728 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2729
2730         * icall.c: const fixes and small improvements.
2731
2732 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2733
2734         * threadpool.c: for asynchronous connect(), enable the same workaround
2735         for BSD 6 as for the Mac. Fixes bug #77637.
2736
2737 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
2738
2739         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2740         formatted classes. Fixes #77524.
2741
2742 2006-02-24  Raja R Harinath  <rharinath@novell.com>
2743
2744         * class.c (inflate_generic_type): Add a couple more
2745         micro-optimizations.
2746         (inflate_generic_context): Don't use the 'gmethod' from
2747         'inflate_with'.
2748         (mono_class_inflate_generic_method): If the method has generic
2749         parameters, but the passed-in context doesn't have a 'gmethod',
2750         create one.  Use the possibly simplified generic instantiation
2751         from the declaring class instead of the one passed in.
2752
2753 2006-02-24  Raja R Harinath  <harinath@gmail.com>
2754
2755         Make generic method signature and method header handling lazy.
2756         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2757         (inflate_generic_header): Likewise.
2758         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
2759         parameter to avoid inflating types.
2760         (mono_get_inflated_method): Empty out.
2761         * class.h (mono_class_inflate_generic_method): Update to changes.
2762         * loader.c (mono_get_method_from_token): Don't parse signature for
2763         generic methods, nor methods of generic classes.
2764         (mono_method_signature): Rename from 'mono_method_signature'.
2765         Inflate signature on demand.
2766         (mono_method_get_header): Inflate method header on demand.
2767         * reflection.c: Update to changes.
2768
2769 2006-02-23  Raja R Harinath  <rharinath@novell.com>
2770
2771         * metadata.c (mono_metadata_inflate_generic_inst): If the
2772         instantiation is closed, don't bother expanding it in the new
2773         context.
2774         * class.c (inflate_generic_class): If the generic instantiation
2775         doesn't change after inflation, return the argument itself.
2776         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2777         Add bounds checks.
2778         (inflate_generic_context): If neither the generic class nor the
2779         generic method instantiations change, return the original context.
2780         * reflection.c (mono_method_get_object): Do
2781         'mono_get_inflated_method' before accessing the ->klass field.
2782         (inflate_mono_method): Don't create a MonoGenericMethod unless
2783         necessary.
2784         (inflate_method): Don't pass a constructed type as the declaring
2785         type of a methodbuilder.
2786
2787 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2788
2789         * object.c: fix memory overwrite.
2790
2791 2006-02-22  Dick Porter  <dick@ximian.com>
2792
2793         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2794         it doesn't work any more.
2795         (mono_threads_request_thread_dump): Fix unused variable warnings.
2796
2797 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2798
2799         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2800         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2801         the public header file.
2802
2803 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
2804
2805         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2806
2807 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2808
2809         * class-internals.h, object.c: reduce the size of MonoVTable
2810         and store the interface_offsets array at negative offsets.
2811
2812 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2813
2814         * metadata.c: tweak table descriptors data structures to reduce
2815         size and runtime relocations.
2816
2817 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2818
2819         * marshal.c: fix some types and opcodes to be type-safe
2820         in marshaling wrappers.
2821
2822 2006-02-21  Ankit Jain  <jankit@novell.com>
2823
2824         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2825
2826 2006-02-21  Raja R Harinath  <rharinath@novell.com>
2827
2828         * metadata.c (get_constraints): Relax debugging checks for monodis.
2829
2830 2006-02-21  Ankit Jain  <jankit@novell.com>
2831
2832         * metadata.c (mono_metadata_load_generic_params): Move the code
2833         checking for ambiguous generic params from here to mono/dis/get.c
2834         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2835
2836 2006-02-21  Raja R Harinath  <harinath@gmail.com>
2837
2838         Fix assertion triggered when compiling nemerle.
2839         * class.c (mono_get_shared_generic_inst): Rename from
2840         get_shared_inst and make non-static.
2841         * loader.c (mono_get_shared_generic_method): New.  Used to create
2842         the MonoGenericContext-equivalent of a MonoGenericContainer.
2843         (mono_get_method_from_token): Initialize the 'context' field of
2844         the created MonoGenericContainer.
2845         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2846         * metadata.c (get_constraints): Add sanity check.
2847         * class-internals.h: Add new internal methods.
2848
2849         * reflection.c (verify_safe_for_managed_space): New sanity check.
2850         Currently checks that owner-less generic parameters aren't allowed
2851         in managed space.
2852         (mono_type_get_object): Use it.
2853         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2854         that are now in mono_type_get_object.
2855         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2856
2857 2006-02-19  Raja R Harinath  <harinath@gmail.com>
2858
2859         * metadata.c (mono_type_create_from_typespec): Rename from
2860         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
2861         argument and caching of types in the generic container.
2862         (unwrap_arrays, find_generic_param): Remove.
2863         * metadata-internals.h: Update.
2864         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2865
2866 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
2867
2868         * class.c (mono_class_get_exception_for_failure): Fix a warning.
2869
2870         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2871         return values. Fixes #77581.
2872
2873         * class.c (mono_fnptr_class_get): Switch name and name_space.
2874
2875         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2876         classes and add support for [In, Out] attributes.
2877         (mono_marshal_free_asany): Ditto. Fixes #77524.
2878
2879 2006-02-18  Raja R Harinath  <harinath@gmail.com>
2880
2881         * class.c (mono_class_from_generic_parameter): Make more robust to
2882         incomplete MonoGenericContainers from monodis.
2883
2884 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2885
2886         * class-internals.h: added some more exception types.
2887         * class.c, metadata.c: added a few checks to handle missing
2888         types.
2889
2890 2006-02-17  Raja R Harinath  <rharinath@novell.com>
2891
2892         Use owner-less generic-params some more.
2893         * class.c (my_mono_class_from_generic_parameter): Remove.
2894         (mono_class_from_generic_parameter): Handle null image,
2895         param->name and param->owner.
2896         (mono_class_from_mono_type): Update.
2897         (mono_class_create_from_typespec): Remove 'container' parameter.
2898         If that parameter is non-null, the result is always inflated by
2899         'mono_class_get_full' anyway.
2900         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
2901         parameter.
2902         (mono_class_get_full): Update.
2903
2904         * class.c (inflate_generic_type) [GENERICINST]: If the generic
2905         instance is not open, don't bother inflating.
2906         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
2907         parse metadata for inflated classes.
2908         (_mono_class_get): Change GenericContext* parameter to
2909         GenericContainer*.
2910         (mono_class_create_from_typespec): Likewise.  Simplify, and
2911         implement trivially.  All the cases are handled in
2912         mono_class_from_mono_type.  Don't inflate returned class.
2913         (mono_class_get_full): Delegate GENERICINST optimization to
2914         inflate_generic_type.
2915         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
2916
2917 2006-02-16  Dick Porter  <dick@ximian.com>
2918
2919         * socket-io.c (create_object_from_sockaddr): Fix typo.
2920         (create_sockaddr_from_object): Check array lengths before
2921         potentially accessing items off the end.
2922         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
2923         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
2924         (ves_icall_System_Net_Sockets_Socket_Send_internal)
2925         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
2926         length checks to avoid wraparound overflows.
2927         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
2928         contents of the array of sockets
2929         (hostent_to_IPHostEntry2)
2930         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
2931         Check return value of inet_ntop ().
2932         (addrinfo_to_IPHostEntry): Fix typo
2933
2934 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2935
2936         Type metadata parsing doesn't use generic-instantiation information.
2937         * metadata.c (mono_metadata_parse_array_full): Change
2938         MonoGenericContext* parameter to MonoGenericContainer*.
2939         (mono_metadata_parse_type_full): Likewise.
2940         (mono_type_create_from_typespec_full): Likewise.
2941         (mono_metadata_parse_mh_full): Likewise.
2942         (mono_metadata_parse_generic_inst): Likewise.
2943         (do_mono_metadata_parse_generic_class): Likewise.
2944         (do_mono_metadata_parse_type): Likewise.
2945         * metadata-internals.h: Update to changes.
2946         * class.c (mono_class_find_enum_basetype): Likewise.
2947         (mono_class_setup_fields): Likewise.
2948         (mono_class_create_from_typespec): Likewise.
2949         * loader.c (method_from_methodspec): Likewise.
2950         (mono_get_method_from_token): Likewise.
2951         (mono_method_get_header): Likewise.
2952
2953 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2954
2955         * marshal.c: handle additional GENERICINST case (patch from
2956         Thong Nguyen <tum@veridicus.com>).
2957         Fix a few cases where LDIND_I/STIND_I was used for references.
2958
2959 2006-02-16  Raja R Harinath  <rharinath@novell.com>
2960
2961         * reflection.c (mono_reflection_get_token): Remove unused variable.
2962
2963 2006-02-16  Martin Baulig  <martin@ximian.com>
2964
2965         * reflection.c (mono_reflection_get_token): Add support for fields
2966         in instantiated generic types.
2967
2968         * icall.c
2969         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
2970
2971 2006-02-15  Martin Baulig  <martin@ximian.com>
2972
2973         * icall.c
2974         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
2975         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
2976         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
2977         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
2978
2979 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2980
2981         * class.c, metadata.c, metadata.h, object.c, icall.c,
2982         marshal.c: changed mono_type_get_underlying_type () to do
2983         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
2984         Fixed handling of instantiated generic valuetypes (bug #75479).
2985
2986 2006-02-15  Raja R Harinath  <rharinath@novell.com>
2987
2988         * metadata.c (mono_metadata_decode_signed_value): Simplify.
2989         Delegate to mono_metadata_decode_value, and work on the returned value.
2990
2991         * icall.c (ves_icall_MonoType_GetGenericArguments):
2992         Add consistency check here too.
2993         
2994 2006-02-15  Ankit Jain  <jankit@novell.com>
2995
2996         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
2997         char/short etc.
2998
2999 2006-02-15  Ankit Jain  <jankit@novell.com>
3000
3001         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3002         signed values, used only for representing lower bounds of arrays.
3003         (mono_metadata_parse_array_full): Use new
3004         mono_metadata_decode_signed_value to decode lower bounds.
3005
3006 2006-02-14  Martin Baulig  <martin@ximian.com>
3007
3008         * reflection.c
3009         (mono_reflection_get_token): Support "MonoGenericMethod" and
3010         "MonoGenericCMethod" and allow generic instances / methods.
3011
3012 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3013
3014         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3015         to obtain the terminal size using an ioctl.
3016
3017         * object.c (mono_nullable_init): Revert this as nullable reference
3018         types are not valid.
3019         (mono_nullable_box): Ditto.
3020
3021 2006-02-09  Dick Porter  <dick@ximian.com>
3022
3023         * threads.c (mono_thread_detach): Drop a reference to the thread
3024         we're detaching.
3025
3026 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3027
3028         * object.c (mono_nullable_init): Handle nullable reference types.
3029         (mono_nullable_box): Ditto. Fixes #77446.
3030
3031 2006-02-07  Martin Baulig  <martin@ximian.com>
3032
3033         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3034
3035 2006-02-07  Ankit Jain  <jankit@novell.com>
3036
3037         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3038         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3039         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3040         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3041         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3042         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3043
3044 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * class.c (mono_class_create_generic): Set type_token as well.
3047
3048         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3049         compatible with MS.
3050
3051 2006-02-02  Martin Baulig  <martin@ximian.com>
3052
3053         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3054         has never been used so far.
3055
3056 2006-02-02  Martin Baulig  <martin@ximian.com>
3057
3058         * mono-debug-debugger.h: Changed comment at the top of this file;
3059         the header is not installed, but it's safe to #include it from
3060         within the JIT.
3061
3062         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3063         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3064
3065 2006-02-02  Martin Baulig  <martin@ximian.com>
3066
3067         * mono-debug.h
3068         (MonoSymbolTable): Removed the `metadata_info' field.
3069
3070         * mono-debug.c
3071         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3072
3073         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3074         (mono_debugger_add_builtin_types): Removed.
3075         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3076         (mono_debugger_create_notification_function): We now operate on a
3077         pre-allocated area; take a `gpointer' and return `void'.
3078
3079         * mono-debug-debugger.c
3080         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3081         (mono_debugger_add_builtin_types): Removed.
3082
3083 2006-02-02  Martin Baulig  <martin@ximian.com>
3084
3085         * threads.c (mono_debugger_create_all_threads): New public method.
3086
3087 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3088
3089         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3090         breaks on several platforms.
3091
3092 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3093
3094         * assembly.c: the VS.NET build doesn't supply default values for
3095         MONO_ASSEMBLIES and MONO_CFG_DIR.
3096
3097 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3098
3099         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3100         helper function.
3101
3102         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3103
3104         * loader.c (method_from_memberref): Fix a warning.
3105
3106         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3107
3108         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3109         with explicit layout. Fixes #77433.
3110
3111 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3112
3113         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3114         max_interface_id is initialized before using it. Fixes #77398.
3115         (ves_icall_Type_GetInterfaces): Ditto.
3116
3117 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3118
3119         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3120         allocate memory for parameter attributes when parsing memberref
3121         signatures.
3122         * loader.c (mono_loader_set_error_method_load): Don't warn.
3123         (method_from_memberref): Ensure MissingMethodException gets thrown
3124         if method is not found.  Make warning more informative.
3125
3126 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3127
3128         Fix #77397
3129         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3130         return true if is byref.
3131         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3132         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3133         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3134
3135 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3136
3137         Fix tests/find-method.2.il
3138         * loader.c (find_method, find_method_in_class): Remove is_inflated
3139         argument.  Revert 2006-01-18 change.
3140         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3141         is generic, search for method in its generic definition.
3142         * class.c (mono_class_setup_vtable_general): Print generic
3143         arguments of generic types in debugging printf.
3144
3145 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3146
3147         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3148
3149         * threads.c (mono_threads_request_thread_dump): New helper function.
3150
3151 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3152
3153         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3154
3155 2006-01-25  Ankit Jain  <jankit@novell.com>
3156
3157         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3158         move definition to ..
3159         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3160         
3161 2006-01-25  Ankit Jain  <jankit@novell.com>
3162             Raja R Harinath  <rharinath@novell.com>
3163
3164         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3165         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3166         as necessary.
3167
3168 2006-01-25  Martin Baulig  <martin@ximian.com>
3169
3170         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3171         `MonoDebuggerThread' into debug-debugger.c.
3172
3173 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3174
3175         * profiler.c: fix printing of data.
3176
3177 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3178
3179         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3180           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3181
3182 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3183
3184         * object.c: fix deadlock related to string interning.
3185
3186 2006-01-23  Martin Baulig  <martin@ximian.com>
3187
3188         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3189
3190         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3191
3192 2006-01-23  Martin Baulig  <martin@ximian.com>
3193
3194         * mono-debug.h: Moved the prototypes of some functions which are
3195         used by the JIT here from mono-debug-debugger.h.
3196
3197 2006-01-21  Martin Baulig  <martin@ximian.com>
3198
3199         * Makefile.am: Don't install mono-debug-debugger.h.
3200
3201 2006-01-21  Martin Baulig  <martin@ximian.com>
3202
3203         * mono-debug-debugger.h: Enforce the private status of this header
3204         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3205         Moved some stuff from mono-debugger-jit-wrapper.h here.
3206
3207 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3208
3209         * class.c (mono_class_from_typeref): Add a sanity test to help
3210         catch lack of assembly load/search hooks.
3211
3212 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3213
3214         * marshal.c (emit_struct_conv): Relax the fields with same offset
3215         check even more. Fixes #77230.
3216
3217 2006-01-18  Martin Baulig  <martin@ximian.com>
3218
3219         * loader.c (find_method_in_class): Added `gboolean is_inflated'
3220         argument; if false, we compare the uninstantiated signatures.
3221         (method_from_memberref): Compare the uninstantiated signatures;
3222         fixes #76417.
3223
3224 2006-01-18  Robert Jordan  <robertj@gmx.net>
3225
3226         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
3227         Clear the weak link. Fixes bug #77170.
3228
3229         * gc.c (mono_gchandle_free):
3230         Reflect *-gc.c changes (tiny optimization).
3231
3232 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
3233
3234         * metadata.c (mono_metadata_signature_dup): Applied patch from
3235         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
3236         Fixes #77288.
3237
3238 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
3239
3240         * marshal.c (emit_struct_conv): Allow fields with the same offset when
3241         marshalling from native to managed code. Fixes #77230.
3242
3243 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3244
3245         * threadpool.c: fix problem (Mac only) when more than one asynchronous
3246         connect. Fixes bug #77020.
3247
3248 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3249
3250         * class.c: fixed id assignement for nested interfaces (bug #77275).
3251         Added also better info for --print-vtable debugging.
3252
3253 2006-01-12  Martin Baulig  <martin@ximian.com>
3254
3255         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
3256         interfaces on-the-fly; fixes #76625.
3257
3258         * class-internals.h
3259         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3260         don't need that anymore.
3261
3262 2006-01-12  Miguel de Icaza  <miguel@novell.com>
3263
3264         * socket-io.c
3265         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3266         To avoid initing the nested_classes when not needed I turned the
3267         PeerCredData as a toplevel internal class, as it has to be shared
3268         anyways. 
3269
3270         Fixes the CASA issue.
3271
3272 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
3273
3274         * domain.c: Accessors for MonoJitInfo
3275
3276         * profiler-private.h: Add jitinfo to the end jit hook
3277
3278         * profiler.[ch]: Define new hooks, called after jitting which give
3279         the MonoJitInfo that was compiled
3280
3281 2006-01-10  Martin Baulig  <martin@ximian.com>
3282
3283         * class.c (mono_class_setup_events): Add support for generic
3284         classes; fixes #76440.
3285
3286 2006-01-06  Raja R Harinath  <rharinath@novell.com>
3287
3288         Fix #77160.
3289         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3290         on passed-in method.
3291
3292 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3293
3294         * object.c (mono_runtime_invoke_array): Add Nullable support.
3295
3296         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3297
3298 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
3299
3300         * file-io.c: Don't consider sockets as directory and avoid an endless
3301         loop. Fix bug #76966.
3302
3303 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
3304
3305         * object.c (mono_nullable_init): New helper function.
3306         (mono_nullable_box): Ditto.
3307
3308         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3309
3310         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3311
3312         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3313         
3314 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * class.c (mono_class_is_assignable_from): Make T assignable to 
3317         Nullable<T>.
3318
3319 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
3320
3321         * appdomain.c: Bump corlib version to 46.
3322         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3323         serialization purpose) and changed ves_icall_System_Reflection_
3324         Assembly_get_code_base signature to accept a boolean (to escape, or 
3325         not, the assembly code base).
3326
3327 2005-12-23  Dick Porter  <dick@ximian.com>
3328
3329         * icall.c: 
3330         * threads-types.h: 
3331         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3332         CreateEvent icall now returns "created" boolean parameter.
3333
3334 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
3335
3336         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3337         #76967.
3338
3339         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
3340         when attr_klass is an interface. Fixes #77045.
3341
3342 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
3343
3344         * marshal.c (emit_struct_conv): Fix previous patch.
3345         
3346         * marshal.c (emit_struct_conv): Add a check for fields with the same
3347         offset.
3348
3349 2005-12-20  Raja R Harinath  <rharinath@novell.com>
3350
3351         Fix regression in Mono.C5.
3352         * class.c (mono_class_create_generic): If 'klass' is an interface
3353         set up the interface offsets.
3354         (mono_class_is_assignable_from): Don't throw away generic arguments.
3355
3356 2005-12-19  Raja R Harinath  <rharinath@novell.com>
3357
3358         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3359         type parameters.
3360
3361 2005-12-15  Raja R Harinath  <rharinath@novell.com>
3362
3363         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3364         dead store.
3365         (do_mono_metadata_parse_generic_class): Don't pass the current
3366         generic context when parsing the type being instantiated: it
3367         cannot use it, anyway.
3368
3369         * loader.c (method_from_memberref): Don't inflate a signature if
3370         it doesn't contain any type parameters.
3371
3372 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
3373
3374         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3375
3376 2005-12-14  Martin Baulig  <martin@ximian.com>
3377
3378         * class.c
3379         (mono_type_get_name_recurse): Don't return null for type
3380         parameters and open generic classes.
3381         (mono_class_setup_methods): Don't exclude generic instances.
3382         (mono_get_unique_iid): Use different IDs for different
3383         instantiations of the same generic type.
3384         (mono_class_setup_vtable): Only use setup_generic_vtable() for
3385         open generic instances; create a normal vtable for closed generic
3386         instances.
3387         (mono_class_setup_vtable_general): We're now also called for
3388         closed generic instances.
3389
3390         * reflection.c
3391         (mono_reflection_bind_generic_parameters): Correctly use
3392         mono_metadata_lookup_generic_inst() everywhere.
3393
3394 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
3395
3396         * object.c (mono_class_create_runtime_vtable): Call 
3397         mono_class_setup_vtable ().
3398
3399         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3400         function.
3401         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3402         #76959.
3403
3404         * loader.c (mono_loader_set_error_type_load): Print the type load
3405         warnings to the console so they are more visible to the user.
3406         (mono_loader_set_error_method_load): Ditto.
3407
3408         * reflection.c (ensure_runtime_vtable): Revert the last change as it
3409         is still broken.
3410         
3411         * reflection.c (ensure_runtime_vtable): Fix build.
3412
3413         * reflection.c (ensure_runtime_vtable): Disable an optimization which
3414         doesn't work in all cases.
3415
3416 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
3417
3418         * object.c (mono_array_new_full): Treat a single dimensional array
3419         with 0 lower bounds as an szarray. Fixes #76973.
3420
3421         * reflection.c (custom_attr_visible): Really fix this.
3422
3423 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
3424
3425         * reflection.c (custom_attr_visible): Allow nested public attributes
3426         as well.
3427
3428         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3429         interface check.
3430
3431 2005-12-12  Raja R Harinath  <harinath@gmail.com>
3432
3433         * class.c (set_generic_param_owner): Delete.
3434         (mono_class_create_from_typedef): Don't set ->owner field of
3435         generic parameters to "param containers" of enclosing classes.
3436         * reflection.c (mono_reflection_initialize_generic_parameter):
3437         Likewise.
3438
3439 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
3440
3441         * reflection.c (custom_attr_visible): Fix build.
3442
3443 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3446         private attributes.
3447         
3448         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3449         handling of null parameter defaults.
3450
3451 2005-12-09  Raja R Harinath  <rharinath@novell.com>
3452
3453         * class.c (mono_class_from_generic_parameter): Don't set
3454         klass->generic_container.
3455         (my_mono_class_from_generic_parameter): Likewise.
3456
3457 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
3458
3459         * reflection.c (load_public_key): Fix a warning.
3460         (method_encode_code): Fix unaligned accesses.
3461
3462 2005-12-07  Martin Baulig  <martin@ximian.com>
3463
3464         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3465
3466         * reflection.c
3467         (write_generic_param_entry): Encode our custom attrs.
3468
3469         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3470
3471 2005-12-07  Martin Baulig  <martin@ximian.com>
3472
3473         * reflection.c (encode_new_constraint): Removed; we don't use the
3474         `NewConstraintAttribute' anymore.
3475
3476 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
3477
3478         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3479         not fire a TypeResolve event when Assembly.GetType () is called.
3480
3481 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
3482
3483         Beginning of support for nullable types in the runtime. Parts of
3484         this patch are from Martin.
3485
3486         * appdomain.c (MONO_CORLIB_VERSION): Bump
3487
3488         * domain.c (mono_init_internal): get the nullable type
3489
3490         * class.c (mono_class_is_nullable): New method
3491         (mono_class_get_nullable_param): New mehod
3492         (mono_class_create_generic): In types T? set cast_class to T
3493
3494         * class-internals.h (MonoDefaults): new nullable default class
3495         (mono_class_get_nullable_param, mono_class_get_nullable_param):
3496         new methods.
3497
3498 2005-12-05  Raja R Harinath  <rharinath@novell.com>
3499
3500         * metadata.c (select_container): New.  Refactor code to select the
3501         appropriate GenericContainer given the type of generic parameter
3502         we are looking for.
3503         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3504         not a MonoGenericContext.  Use select_container.  Update parameters.
3505         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3506         and MONO_TYPE_MVAR.
3507         (unwrap_arrays): Remove duplicate tests.
3508         (find_generic_param): Rename from 'has_same_context'.  Now walks a
3509         generic instantiated class to find any arguments that are generic
3510         parameters.
3511         (mono_type_create_from_typespec_full): Use find_generic_param to
3512         avoid evicting some generic instantiations from the typespec
3513         cache.
3514
3515 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3516
3517         * reflection.c: fixed writing of doubles on ARM FPA.
3518
3519 2005-12-02  Robert Jordan  <robertj@gmx.net>
3520
3521         * icall.c: Fixed EventInfo.ReflectedType (#76829).
3522
3523 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3524
3525         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3526         least on SUSE 10 they are not the same (on debian, they are just the
3527         same thing).
3528
3529 2005-12-01  Raja R Harinath  <rharinath@novell.com>
3530
3531         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3532         DeclaringType for VARs and MVARs.
3533         * class.c (set_generic_param_owner): Fix initialization of owner
3534         fields.
3535
3536 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3537
3538         * icall.c: fixed Enum.ToObject() to correctly convert the values.
3539
3540 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3541
3542         * threadpool.c: workaround for a bug that shows up on the Mac:
3543         select()+connect() on a blocking socket is not like it should
3544         be, so we proceed to connect() in that case, wasting the I/O
3545         threadpool thread until connect succeedes. Fixes bug #75436.
3546
3547 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3548
3549         * threadpool.c: fix typo when setting file descriptor states.
3550
3551 2005-11-28  Raja R Harinath  <rharinath@novell.com>
3552
3553         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
3554         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3555         create a temporary signature container.
3556         (mono_metadata_parse_generic_param): Update to changes.
3557         (mono_type_create_from_typespec_full): Update to changes.
3558         * loader.c (method_from_memberref): Don't use a
3559         MonoGenericContainer while parsing a memberref signature.
3560         (method_from_methodspec): Remove dead-store of the 'container'
3561         variable.  It's overwritten before use.
3562
3563         * metadata.c (mono_type_create_from_typespec_full): Make debugging
3564         checks tighter.
3565         (mono_metadata_parse_generic_param): Likewise.
3566         * loader.c (find_method_in_class): Does not need a
3567         MonoGenericContainer.  Use 'mono_method_signature' rather than
3568         'mono_method_signature_full'.
3569         (find_method, mono_get_method_constrained, method_from_memberref):
3570         Update to changes.
3571
3572         * metadata.c (mono_type_create_from_typespec_full): Ensure that
3573         owner-less generic-parameters are never evicted from the typespec
3574         cache.
3575
3576         * loader.c (method_from_memberref): Don't use the current context
3577         when parsing signatures.
3578         (method_from_methodspec, mono_get_method_from_token): Update to changes.
3579
3580         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3581         side-effects in g_assert.
3582         * loader.c (mono_get_method_from_token): Resolve klass earlier so
3583         that we don't potentially lose information.
3584
3585 2005-11-26  Dick Porter  <dick@ximian.com>
3586
3587         * icall.c:
3588         * threads.c: icalls to implement basic (ie, not named)
3589         System.Threading.Semaphore.
3590
3591 2005-11-24  Dick Porter  <dick@ximian.com>
3592
3593         * process.c
3594         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3595         Use GetProcessId() if it's available.
3596
3597 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
3598
3599         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3600
3601 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3602             Ankit Jain  <jankit@novell.com>
3603
3604         * loader.c (mono_get_method_from_token): Initialize 'method' field
3605         of all generic parameters before parsing the signature.  Remove
3606         code that "fixed"-up MVAR references.
3607
3608 2005-11-23  Ankit Jain  <jankit@novell.com>
3609
3610         * metadata.c (mono_metadata_has_generic_params):
3611         (mono_metadata_load_generic_param_constraints):
3612         (mono_metadata_load_generic_params): Move duplicate code ...
3613         (mono_metadata_get_generic_param_row): ... here. Returns the
3614         first row-id in GenericParam table for a given owner (token).
3615         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3616         prototype.
3617
3618 2005-11-23  Raja R Harinath  <rharinath@novell.com>
3619             Ankit Jain  <jankit@novell.com>
3620
3621         * metadata.c (mono_metadata_class_equal): Pass signature_only when
3622         comparing VARs too.
3623         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
3624         type->data.generic_param only if the type is an MVAR.
3625         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3626         leak owner-less VARs and MVARs into managed space.
3627
3628 2005-11-21  Martin Baulig  <martin@ximian.com>
3629
3630         * class-internals.h
3631         (MonoMethod): Moved the `generic_container' here from
3632         `MonoMethodNormal' since we now also need it for
3633         `MonoMethodPInvoke';
3634         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3635         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3636         an union containing both `MonoMethodNormal' and
3637         `MonoMethodPInvoke'.
3638
3639         * loader.c
3640         (mono_get_method_from_token): Allow implementing generic methods
3641         as interncalls.
3642
3643         * threads.c
3644         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3645         icall.
3646
3647 2005-11-17  Dick Porter  <dick@ximian.com>
3648
3649         * icall.c: 
3650         * process.h: 
3651         * process.c: Split the Process Start_internal icall into
3652         ShellExecuteEx_internal and CreateProcess_internal, which are
3653         called depending on whether UseShellExecute is true.  Fixes bug
3654         76670.
3655
3656         * appdomain.c (MONO_CORLIB_VERSION): Incremented
3657
3658 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
3659
3660         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3661         'msize' parameters, use the information in 'mspec' instead.
3662         (emit_object_to_ptr_conv): Ditto.
3663
3664         * marshal.c (emit_struct_conv): Handle explicit layout structs with
3665         fields out of order. Fixes #76733.
3666
3667 2005-11-17  Ankit Jain  <jankit@novell.com>
3668
3669         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3670
3671 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
3672
3673         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3674           bug #76575.
3675
3676 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3677
3678         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3679         for types with non-auto layout. Fixes #76717.
3680
3681 2005-11-16  Ankit Jain  <jankit@novell.com>
3682
3683         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3684         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
3685         if generic_context is null.
3686           (mono_metadata_generic_param_equal): param->owner can be null.
3687           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3688         null.
3689
3690 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
3691
3692         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3693         the correct value.
3694
3695 2005-11-15  Martin Baulig  <martin@ximian.com>
3696
3697         * object.c (set_value): Use mono_class_from_mono_type() instead of
3698         the hack for generic instances; fixes #76136.
3699
3700 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
3701
3702         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3703         fields.
3704
3705         * image.c (load_metadata_ptrs): Initialize the new fields.
3706
3707         * reflection.c (create_dynamic_mono_image): Ditto.
3708
3709         * reflection.c (build_compressed_metadata): Use the new fields.
3710
3711         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3712         icall.
3713
3714         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3715         icall.
3716         
3717 2005-11-15  Ankit Jain  <jankit@novell.com>
3718             Raja R Harinath  <harinath@gmail.com>
3719
3720         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3721         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3722         new per-generic_container cache if the cached MonoType's context matches
3723         the current context.
3724           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3725         to the expected context.
3726           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3727
3728 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3729
3730         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3731         we changed the signature of an icall.
3732         * icall.c: Modify to mono_double_ParseImpl return true/false 
3733         depending on the success, instead of throwing the exception. This will
3734         help us in Double.TryParse methods.
3735         
3736 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
3737
3738         * marshal.c (emit_marshal_object): Throw an exception when
3739         marshalling 'object' instead of crashing. Fixes #76696.
3740
3741 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3742
3743         * class-internals.h: Add prototype for mono_type_get_full_name ().
3744
3745 2005-11-11  Dick Porter  <dick@ximian.com>
3746
3747         * threads.c (mono_thread_manage): Make sure the main thread has
3748         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
3749
3750 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3751
3752         * loader.c (mono_loader_set_error_type_load): Log a warning to the
3753         console about the missing type.
3754         (mono_loader_set_error_method_load): Ditto.
3755
3756 2005-11-09  Miguel de Icaza  <miguel@novell.com>
3757
3758         * mono-config.c (mono_get_config_dir): Set the system defaults if
3759         none is specified.
3760
3761         * assembly.c (mono_set_dirs): New API entry point to set the
3762         assembly and the config directory in one call
3763
3764 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
3765
3766         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3767         the ftnptr was created from a delegate in a domain other than the
3768         current domain. Fixes #75377.
3769
3770         * exception.h exception.c: Add mono_get_exception_not_supported ().
3771
3772 2005-11-08  Martin Baulig  <martin@ximian.com>
3773
3774         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3775
3776 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
3777
3778         * security-manager.h: Added definitions to deal with strongname key 
3779         pairs bigger (and smaller) than 1024 bits.
3780         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
3781         adjust wrt the public key length being used.
3782
3783 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
3784
3785         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3786           Windows build (r51396-51397).
3787
3788 2005-11-03  Martin Baulig  <martin@ximian.com>
3789
3790         * class.c (mono_class_setup_vtable_general): Also add generic
3791         methods to the vtable; fixes #76581.
3792
3793 2005-11-01  Miguel de Icaza  <miguel@novell.com>
3794
3795         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3796         sure that we lookup GetString method from the System.Text.Encoding
3797         class, not the derived class or we get an empty method.
3798
3799         Fixed class #76612.
3800
3801 2005-10-25  Miguel de Icaza  <miguel@novell.com>
3802
3803         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3804         if it has been previously set (embedders). 
3805
3806         Make mono_set_rootdir available also on Unix.
3807
3808 005-10-24  Robert Jordan  <robertj@gmx.net>
3809
3810         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3811
3812 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
3813
3814         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3815         only calls which are made to native code use this flag.
3816
3817         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3818
3819 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
3820
3821         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3822         Add support for FieldBuilders.
3823
3824 2005-10-29  Martin Baulig  <martin@ximian.com>
3825
3826         * mono-debug.c
3827         (mono_debug_using_mono_debugger): New public method; returns
3828         whether we're running inside the debugger.
3829
3830 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
3831
3832         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3833         for Method/Constructor/FieldBuilders.
3834
3835 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * reflection.c (module_add_cattrs): Save custom attributes for global methods
3838         and fields as well.
3839
3840 2005-10-26  Martin Baulig  <martin@ximian.com>
3841
3842         * mono-debug-debugger.c
3843         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3844
3845 2005-10-24  Raja R Harinath  <harinath@gmail.com>
3846
3847         * icall.c (base64_to_byte_array): Don't pass an out-of-range
3848         integer to isspace.
3849
3850 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
3851
3852         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3853         when passing valuetypes byref. Fixes #76502.
3854
3855 2005-10-19  Jackson Harper  <jackson@ximian.com>
3856
3857         * profiler.c: Don't put a . in front of types that are not in a
3858         namespace.
3859
3860 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
3861
3862         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3863
3864 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
3865
3866         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3867         #76436.
3868         (mono_marshal_get_ldflda_wrapper): Fix a warning.
3869
3870 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3871
3872         * assembly.c metadata-internals.h icall.c: Define an additional
3873         parameter for mono_assembly_name_parse_full, so we can avoid creating
3874         S.R.AssemblyName.Version when no version info wasn't passed.
3875         
3876 2005-10-09  Miguel de Icaza  <miguel@novell.com>
3877
3878         * class.c (mono_type_get_full_name): Reimplement method that was
3879         removed. 
3880
3881         * image.c: Some docs
3882
3883 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
3884
3885         * profiler.c (output_newobj_profile): Fix printing of Total memory
3886         on x86.
3887
3888 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3889
3890         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
3891
3892 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
3893
3894         * threads.c: remove debug output.
3895
3896 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
3897
3898         * threads.c (mono_thread_manage): Fix crashes if more than 64
3899         threads need to be aborted. Hopefully fixes #75899.
3900
3901         * assembly.c (mono_stringify_assembly_name): New helper function.
3902
3903         * class.c: Use mono_stringify_assembly_name instead of the similar
3904         static function.
3905
3906         * assembly.h assembly.c: Add support for calling a postload search 
3907         hook if an assembly cannot be loaded.
3908
3909         * appdomain.c: Register new search hooks which call the AssemblyResolve
3910         events in AppDomain. Fixes #75231
3911
3912 2005-10-07  Martin Baulig  <martin@ximian.com>
3913
3914         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
3915         methods without debug info.
3916
3917 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
3918
3919         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
3920         wrappers.
3921
3922 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3923
3924         * file-io.c: now that we return symlinks, use lstat and, when the file
3925         is a symbolic link, stat, to get the file attributes. Also avoid the
3926         conversion to/from utf16/external.
3927
3928 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
3929
3930         * class.c (mono_class_layout_fields): Compute klass->has_references
3931         correctly if an embedded valuetype is not yet initialized. Fixes
3932         #76331.
3933
3934 2005-10-04  Martin Baulig  <martin@ximian.com>
3935
3936         * metadata.c
3937         (mono_metadata_load_generic_param_constraints): New public
3938         function; splitted the constraints loading out from
3939         mono_metadata_load_generic_params().
3940
3941         * class.c (mono_class_create_from_typedef): Call
3942         mono_metadata_load_generic_param_constraints() after setting up
3943         the type and creating our parent; fixes #75329.
3944
3945 2005-10-04  Martin Baulig  <martin@ximian.com>
3946
3947         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
3948         non-dynamic parent classes.
3949
3950 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
3951
3952         * file-io.c : win32 build fix (ETXTBSY seems not found).
3953
3954 2005-10-04  Martin Baulig  <martin@ximian.com>
3955
3956         * reflection.c
3957         (mono_image_get_methodspec_token): Make the cache actually work;
3958         fixes #75974.
3959
3960 2005-10-04  Martin Baulig  <martin@ximian.com>
3961
3962         * class.c (mono_class_name_from_token): Removed the unneccessary
3963         `MonoGenericContext *' argument.
3964
3965 2005-10-04  Martin Baulig  <martin@ximian.com>
3966
3967         * loader.c
3968         (method_from_methodspec): Make the caching work again; fixes the
3969         performance regression from #76262.
3970
3971 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3972
3973         * file-io.c:
3974         * file-io.h:
3975         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
3976         GetFileSystemEntries that performs the same work but without going
3977         into io-layer, locking, etc.
3978
3979 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
3980
3981         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
3982         ThreadState_Stopped as well. Fixes #76047.
3983
3984 2005-09-29  Martin Baulig  <martin@ximian.com>
3985
3986         * class.c
3987         (inflate_generic_context): If the new context has a `gmethod', set
3988         its `container' that that gmethod's `container'.
3989
3990         * metadata.c
3991         (mono_metadata_parse_generic_param): Simplify things;
3992         `generic_container = generic_context->container;' is just fine.
3993
3994         * loader.c (method_from_methodspec): Code cleanups.
3995
3996 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
3997
3998         * decimal.c: fix warning (and let gcc generate correct
3999         code on ARM with optimizations).
4000
4001 2005-09-28  Martin Baulig  <martin@ximian.com>
4002
4003         * loader.c
4004         (method_from_memberref): Added `MonoGenericContext *class_context'
4005         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4006         (method_from_methodspec): If we're a memberref, use the enclosing
4007         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4008
4009 2005-09-28  Martin Baulig  <martin@ximian.com>
4010
4011         * object.c (mono_runtime_invoke_array): Added support for
4012         MONO_TYPE_GENERICINST; fixes #75917.
4013
4014 2005-09-27  Martin Baulig  <martin@ximian.com>
4015
4016         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4017         `k->byval_arg.type' to determine the actual type.
4018
4019         * loader.c (method_from_methodspec): Removed some hacks.
4020
4021 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4022
4023         * class-internals.h (mono_field_is_deleted): Do the test for
4024         rtspecialname before we check the actual name of the field. This
4025         prevents us from dereferencing a pointer into the string table,
4026         saving us from accessing a few pages
4027
4028         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4029         macros. This will allow a deadlock debugger to easily be plugged
4030         in.
4031
4032 2005-09-27  Martin Baulig  <martin@ximian.com>
4033
4034         * loader.c (method_from_methodspec): Create a "signature"
4035         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4036
4037 2005-09-27  Martin Baulig  <martin@ximian.com>
4038
4039         * class.c
4040         (inflate_generic_class): Correctly set the new context's
4041         container.
4042
4043         * loader.c
4044         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4045         instead of a `MonoGenericContext *'.
4046         (mono_method_signature_full): Take a `MonoGenericContainer *'
4047         instead of a `MonoGenericContext *'.
4048
4049         * metadata.c
4050         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4051         instead of a `MonoGenericContext *'.
4052         (mono_metadata_parse_method_signature_full): Likewise.
4053
4054 2005-09-26  Martin Baulig  <martin@ximian.com>
4055
4056         * class.c
4057         (mono_class_from_generic_parameter): Set `klass->generic_container'
4058         (mono_class_from_generic_parameter): Likewise.
4059         (mono_bounded_array_class_get): We inherit the generic container
4060         from the element class.
4061
4062         * loader.c
4063         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4064         argument rather than computing it here.
4065         (method_from_memberref): Correctly set the generic context before
4066         parsing the signature.  Fixes #75681.
4067
4068 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4069
4070         * object.c (mono_class_has_special_static_fields): Fix warnings.
4071
4072 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4073
4074         * assembly.c: Add parse_public_key function, to
4075         par the public keys. Also added mono_assembly_name_parse_full,
4076         to define it the parsed key should be freed or not.
4077         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4078         to parse a long format assembly name.
4079         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4080         private, since calling it to preserve the key requires
4081         freeing it manually.
4082         
4083 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4084
4085         * locales.c : removed HAVE_ICU part.
4086
4087 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4088
4089         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4090         field_is_special_static if the klass has no special static fields.
4091
4092         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4093         (MonoCachedClassInfo): Likewise.
4094
4095         * object.c (mono_class_has_special_static_fields): New helper function.
4096
4097 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4098
4099         * class.c (mono_class_create_from_typedef): Don't call 
4100         interfaces_from_typedef_full for enums.
4101         (mono_class_create_from_typedef): Compute the base types of enums directly
4102         without calling mono_class_setup_fields ().
4103         (mono_class_find_enum_basetype): New helper function.
4104
4105         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4106         one place inside the string heap.
4107         
4108 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4109
4110         * class.c: locking fixes, code cleanups, some docs added.
4111         Allocate some data structures in the image mempool.
4112
4113 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4114
4115         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4116         the example code.
4117         
4118 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4119
4120         * class-internals.h, class.c, reflection.c: reduce memory taken by
4121         MonoClass.
4122
4123 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4124
4125         * metadata.c, metadata.h, loader.h: documentation updates, code and
4126         API cleanups.
4127
4128 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4129
4130         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4131         the example code.
4132
4133         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4134         page faults caused by the runtime while reading metadata.
4135
4136 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4137
4138         * socket-io.c: the field names were changed 3 months ago and no one
4139         realized until bug #76077 got filed!
4140
4141 2005-09-20  Martin Baulig  <martin@ximian.com>
4142
4143         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4144
4145 2005-09-20  Martin Baulig  <martin@ximian.com>
4146
4147         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4148         write the rank into the class entry.
4149
4150 2005-09-20  Martin Baulig  <martin@ximian.com>
4151
4152         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4153
4154 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4155
4156         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4157
4158         * icall.c (custom_attrs_defined_internal): New icall.
4159
4160         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4161         function.
4162         (mono_custom_attrs_construct_by_type): New helper function.
4163
4164 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4165
4166         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4167         terminate the resulting string. Fixes #76123.
4168
4169 2005-09-16  Martin Baulig  <martin@ximian.com>
4170
4171         * mono-debug.c
4172         (mono_debug_add_method): Ignore inflated methods for the moment.
4173
4174 2005-09-14  Martin Baulig  <martin@ximian.com>
4175
4176         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4177
4178 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4179
4180         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4181         return a success/failure indication.
4182         (mono_metadata_interfaces_from_typedef_full): Ditto.
4183         (get_constraints): Ditto.
4184
4185 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4186
4187         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4188         
4189         * marshal.c (emit_marshal_array): Add support for returning string
4190         arrays from delegates. Fixes #76063.
4191
4192         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4193
4194 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4197         icall.
4198
4199 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4200
4201         * reflection.c icall.c: Fix after mono_get_exception_type_load
4202         signature change.
4203
4204         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4205         (mono_assembly_load_reference): Use the new helper.
4206
4207         * class-internals.h (MonoLoaderError): New structure containing 
4208         information about type loading errors.
4209
4210         * class-internals.h loader.c: Add APIs to store per-thread loader
4211         error information.
4212
4213         * loader.c class.c: Set the loader error if needed.
4214
4215         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4216
4217 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4218
4219         * decimal.c: fixed to handle the broken ARM fp format.
4220
4221 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
4222
4223         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
4224         broken.
4225
4226 2005-09-06  Martin Baulig  <martin@ximian.com>
4227
4228         * domain.c (supported_runtimes): Added v2.0.50727.
4229
4230 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
4231
4232         * culture-info.h: reduce the size of some structures.
4233
4234 2005-09-05  Martin Baulig  <martin@ximian.com>
4235
4236         Reflect latest API changes in the August CTP.
4237
4238         * icall.c
4239         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
4240         ("MonoType.HasGenericArguments"): Removed.
4241         ("MonoMethod.BindGenericParameters"): Renamed to
4242         "MakeGenericMethod".
4243         ("MethodBuilder.BindGenericParameters"): Renamed to
4244         "MakeGenericMethod".    
4245
4246 2005-09-05  Martin Baulig  <martin@ximian.com>
4247
4248         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
4249
4250 2005-09-05  Martin Baulig  <martin@ximian.com>
4251
4252         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4253
4254         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
4255         generic_container is non-NULL.
4256
4257 2005-09-05  Martin Baulig  <martin@ximian.com>
4258
4259         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4260
4261         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4262
4263 2005-08-29  Michal Moskal  <malekith@nemerle.org>
4264
4265         * reflection.c (encode_locals,
4266         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4267         for large generic types.
4268
4269 2005-09-05  Martin Baulig  <martin@ximian.com>
4270
4271         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4272
4273         * class.c (mono_dup_array_type): New public method.
4274         (mono_metadata_signature_deep_dup): New public method.
4275         (dup_type): Correctly duplicate array and function types.
4276
4277 2005-09-05  Martin Baulig  <martin@ximian.com>
4278
4279         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4280
4281         * reflection.c (get_default_param_value_blobs): Handle generic types
4282         and generic methods.
4283
4284 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4285
4286         * class.c: Fixed error reporting (method/class were inversed) for 
4287         inheritance demands.
4288         * security-manager.c|h: Added the AppDomain when calling the managed
4289         System.Security.SecurityManager.InheritanceDemand method.
4290
4291 2005-09-01  Raja R Harinath  <rharinath@novell.com>
4292
4293         * reflection.c (encode_marshal_blob): 'marshaltype' and
4294         'marshaltyperef' are alternate sources for the custom marshaler
4295         name.
4296
4297 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4298
4299         * class.c: fix creation of array classes with rank == 1
4300         (patch by Ankit Jain <jankit@novell.com>).
4301
4302 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4303
4304         * object.c: fix check for creating the bound data for arrays vs
4305         szarrays.
4306
4307 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4308
4309         * object.c: configuration file name is now based on the executable name,
4310         not the image name. Fixes bug #75931.
4311
4312 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
4313
4314         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4315         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4316
4317 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
4318
4319         * rand.c: Use wincrypt.h instead of WinCrypt.h.
4320
4321 2005-08-24  Ankit Jain  <jankit@novell.com>
4322             Raja R Harinath  <rharinath@novell.com>
4323
4324         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4325           called by it recursively.
4326           (mono_class_init): Remove special case in pending_init handling, since it's
4327           superseded by the fix to mono_class_from_typeref.
4328
4329 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
4330
4331         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
4332         BROKEN_THREAD_START stuff.
4333
4334 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
4335
4336         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
4337         trampoline.
4338
4339         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4340         
4341         * object.c (mono_delegate_ctor): Replace the original function address with
4342         a delegate trampoline.
4343
4344 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4345
4346         * icall.c: add boolean argument to base64_to_byte_array and 
4347         InternalFromBase64String to control whether a whitespace-only string
4348         is allowed (or should casue a FormatException to be thrown). We need
4349         this as the behavior has changed between MS.NET 1.x and 2.0, and we
4350         to match the MS behaviour in both profiles.
4351         * appdomain.c: Bump corlib version.
4352
4353 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4354
4355         This patch implements a big portion of publisher policy
4356         support, used to bind assembly versions and redirect
4357         one assembly from version A to version B.
4358
4359         * assembly.c:
4360         New GSList loaded_assembly_bindings, for storing the cached
4361         assembly bindings.
4362         (assembly_binding_maps_name): New static function for checking if a 
4363         assembly binding information maps an assembly name.
4364         (mono_assembly_binding_info_free): New function for freeing
4365         assembly binding information resources.
4366         (get_publisher_policy_info): New static function for retrieving 
4367         assembly binding information from a MonoImage.
4368         (compare_versions): New static function for comparing an assembly
4369         binding information data and the version of an assembly name.
4370         (check_policy_versions): New static function for checking if an
4371         assembly binding info mapping an assembly name is valid for it.
4372         (mono_assembly_load_publisher_policy): New static function for
4373         loading the 'policy.major.minor.MyAssembly' image for an assembly
4374         with an assembly name 'aname'.
4375         (mono_assembly_bind_version): New static function for updating
4376         assembly redirection.
4377         (mono_assembly_apply_binding): New static function for applying
4378         assembly binding.
4379         (search_binding_loaded): New static function for searching 
4380         loaded assembly binding infos in the cache domain.
4381         (mono_assembly_load_full): Don't apply assembly binding for
4382         reflection only assemblies.
4383
4384         * metadata-internals.h: Add MonoAssemblyBindingInfo,
4385         which contains information about assembly binding. Also
4386         declare signature for mono_config_parse_publisher_policy ()
4387         function, used to retrieve pub policy info.
4388         
4389         * mono-config.c:
4390         (publisher_policy_start): New static function used to parse publisher 
4391         policy config files.
4392         (publisher_policy_parser): New static MonoParseHandler containing 
4393         the functions used when parsing config files.
4394         (mono_config_parse_publisher_policy): New function for parsing
4395         publisher policy files.
4396         
4397 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
4398
4399         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4400
4401         * marshal.c (mono_delegate_free_ftnptr): Ditto.
4402
4403         * object.c (mono_get_addr_from_ftnptr): New helper function.
4404
4405         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4406
4407         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4408
4409 2005-08-19  Dick Porter  <dick@ximian.com>
4410
4411         * threads.c, threads.h, appdomain.c, appdomain.h,
4412         profiler-private.h, monitor.c, object.c, object-internals.h,
4413         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4414         store the thread ID, so it can hold a 64 bit value if needed.
4415
4416 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
4417
4418         * reflection.c (mono_reflection_create_dynamic_method): Store the
4419         handle class into the method references as well so ldtoken works in
4420         dynamic methods.
4421
4422         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4423         types.
4424
4425 2005-08-19  Ankit Jain <jankit@novell.com>
4426
4427         Fix #75847.
4428         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
4429           here rather than using the method signature of a arbitrary function
4430           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
4431           two arguments.
4432           Hack done with Harinath.
4433
4434 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4435
4436         * threadpool.c: disable printing stack traces when we get a exception
4437         in a threadpool thread. I need to do more testing to figure out which
4438         cases actually print this. Fixes bug #75828.
4439
4440 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4441
4442         * icall.c: there might be ignored whitespace after the last '='. This
4443         fixes length computation and bug #75840.
4444
4445 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
4446
4447         * assembly.c (mono_assembly_load_full): Consider .exe extension as
4448         well. Fixes #75809.
4449
4450         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4451         #75784.
4452         
4453         * reflection.c (create_custom_attr_data): Ditto.
4454
4455 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
4456
4457         * locales.c, culture-info.h : removed RegionLCIDMap.
4458         * culture-info-tables.h : regenerated.
4459
4460 2005-08-16  Martin Baulig  <martin@ximian.com>
4461
4462         * class.c (mono_type_get_name_recurse): Small fix.
4463
4464 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4465
4466         * locales.c : indentation fixie.
4467
4468 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
4469
4470         * object-internals.h,
4471           locales.h,
4472           locales.c,
4473           culture-info.h,
4474           icall.c : added RegionInfo table support.
4475         * culture-info-table.h : regenerated for region support.
4476
4477 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
4478
4479         * reflection.c (resolve_object): handle all kinds of MonoMethod
4480         including generic ones
4481
4482 2005-08-12  Ankit Jain <jankit@novell.com>
4483
4484         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4485           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
4486
4487 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
4488
4489         * process.c: Don't close a thread handle when it's NULL. This is a
4490         workaround for bug #75733.
4491
4492 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
4493
4494         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4495
4496 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
4497
4498         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4499
4500 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4501
4502         * threadpool.c: if a work item in the thread pool has a callback that
4503         catches a exception, don't propagate it after invoking the callback.
4504         Fixes bug #75336.
4505
4506 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
4507
4508         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4509
4510         * class-internals.h (MonoCachedClassInfo): Add some new fields.
4511
4512         * class.c (mono_class_init): Load field info lazily in the AOT case.    
4513
4514         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4515
4516 2005-08-03  Ankit Jain  <jankit@novell.com>
4517
4518         Fix #75683.
4519         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4520           PInvoke calling convention is 0.
4521
4522 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
4523
4524         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
4525         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4526
4527 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4528
4529         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4530         to handle threads not started by the GC (patch by Michael Meeks
4531         <michael.meeks@novell.com>).
4532
4533 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
4534
4535         * reflection.c: Make buffer used in emitting types larger for some
4536         big generic types (patch by Michal Moskal).
4537
4538 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
4539
4540         * mono-debug.c: Fix some (not all) alignment problems.
4541
4542 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4543
4544         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4545         Invoke mono_image_load_from_data_full passing the refonly
4546         parameter.
4547
4548         * assembly.c
4549         (mono_assembly_open_from_bundle): Add the refonly argument, 
4550         in order to pass it to other methods it calls to.
4551         (do_mono_assembly_open): Add the refonly argument, in order 
4552         to pass it to other methods it calls to.
4553         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4554         the refonly parameter to it.
4555
4556         * image.c: Add loaded_images_refonly_hash and
4557         loaded_images_refonly_guid_hash to cache the reflection
4558         only loaded images.
4559         (mono_images_init): Initialize the hash tables used for
4560         caching the reflection only images.
4561         (load_modules): Invoke mono_image_open_full passing the refonly
4562         parameter to load the modules the correct way.
4563         (build_guid_table): Add the refonly argument, to re-build the 
4564         correct hash table.
4565         (do_mono_image_open): Added the refonly argument, in order to
4566         define it for the loaded image.
4567         (mono_image_loaded_full): New function, which receives an
4568         additional parameter to look for the image in the refonly or
4569         non-refonly section.
4570         (mono_image_loaded): Updated, using mono_image_loaded_full.
4571         (mono_image_loaded_by_guid_full): The same case that happens
4572         with mono_image_loaded_full.
4573         (mono_image_loaded_by_guid): Likewise.
4574         (register_image): Use the ref_only variable inside MonoImage
4575         to decide in which hash table store the current image.
4576         (mono_image_open_from_data_full): Rename
4577         mono_image_open_from_data to mono_image_open_from_data_full,
4578         adding the refonly argument, to define the ref_only variable 
4579         inside MonoImage.
4580         (mono_image_open_from_data): Return 
4581         mono_image_open_from_data_full.
4582         (mono_image_open_full): Rename mono_image_open to
4583         mono_image_open_full, receiving the new refonly argument,
4584         to pass it to inner methods.
4585         (mono_pe_file_open): Update this function, to open
4586         a MonoImage as a non-refonly image.
4587         (mono_image_close): Use the refonly variable inside
4588         MonoImage to remove the image from the correct caches.
4589
4590         * image.h: Add the signatures of mono_image_open_full,
4591         mono_image_open_from_data_full, mono_image_loaded_full,
4592         mono_image_loaded_by_guid_full.
4593
4594         * metadata-internals.h: Add the ref_only field to 
4595         MonoImage.
4596         
4597 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4598
4599         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4600         Fix the last behavior, which used to load the assemblies and
4601         extract MonoReflectionAssemblyName information, instead of
4602         extract it from the metadata tables. Needed for Reflection
4603         Only assemblies.
4604         
4605 2005-07-29  Martin Baulig  <martin@ximian.com>
4606
4607         * mono-debug-debugger.c
4608         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4609         not initialized.
4610
4611         * mono-debug.c
4612         (mono_debug_address_from_il_offset): Check whether we have
4613         debugging support before attempting to take the lock.
4614         (mono_debug_source_location_from_address): Likewise.
4615         (mono_debug_source_location_from_il_offset): Likewise.
4616         (mono_debug_il_offset_from_address): Likewise.
4617         (mono_debug_address_from_il_offset): Likewise.
4618
4619 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
4620
4621         * class.c (mono_class_from_name_case): Add support for dynamic images.
4622         Fixes #75650.
4623
4624         * object.c (mono_class_compute_gc_descriptor): Add a workaround
4625         for #75479.
4626
4627 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4628         
4629         * reflection.c (mono_method_get_object): Fix warning.
4630
4631 2005-07-28  Martin Baulig  <martin@ximian.com>
4632
4633         * mono-debug.c
4634         (mono_debug_add_wrapper): Also write the wrapper type.
4635
4636 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
4637
4638         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4639         
4640         * class.c (mono_class_init): Avoid reading nested classes if the AOT
4641         data indicates the class has none.
4642
4643 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
4644
4645         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4646         loader lock with the debugger lock. Prevents deadlocks for beagle.
4647
4648         Beagle can now run on an smp box for a weekend without any
4649         issues. Woohoo!
4650
4651 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
4652
4653         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4654         in a module. Fixes #75629.
4655
4656 2005-07-26  Martin Baulig  <martin@ximian.com>
4657
4658         * mono-debug.c (mono_debug_add_wrapper): New static method.
4659         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4660         interncall or a wrapper.
4661
4662         * mono-debug.h (MonoDebugWrapperData): New public typedef.
4663         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4664         (MONO_DEBUGGER_VERSION): Bump to 51.
4665
4666         * mono-debug-debugger.c
4667         (mono_debugger_add_type): Removed this empty function.
4668         (mono_debugger_add_method): Likewise.
4669
4670 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
4671
4672         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
4673         before accessing method->slot.
4674
4675 2005-07-21  Jb Evain  <jbevain@gmail.com>
4676
4677         * reflection.c (method_encode_clauses/class): Handle filters clauses.
4678         Fixes #75010.
4679
4680 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
4681
4682         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4683         #75587.
4684
4685 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
4686
4687         * image.h image.c: Add mono_image_get_guid () API function.
4688
4689 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
4690
4691         There were issues when multiple threads tried to load
4692         assemblies. A deadlock was created between assemblies_mutex and
4693         mono_domain_assemblies_lock. This fixes the issue by making the
4694         assembly ref counting be lock free. See bug 75586.
4695         
4696         * image.c (mono_image_close): The add ref function here was using
4697         Interlocked operations while the unref was using a mutex and a
4698         --. I don't think this was ever a bug that would be exposed in a
4699         non-pendantic way (ie, by an embedder doing a ref on one thread
4700         and an unref on another), but for the sake of correctness, this is
4701         now Interlocked.
4702
4703         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4704         (mono_assembly_load_reference): Call mono_assembly_addref rather
4705         than touching the refcount ourselves.
4706         (mono_assembly_close): Use InterlockedDecrement to unref the
4707         assembly. Don't acquire the lock unless it is actually needed.
4708
4709 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4710
4711         * class.c (mono_class_layout_fields): Fix calculation of has_references
4712         for generic types.
4713
4714 2005-07-12  Martin Baulig  <martin@ximian.com>
4715
4716         Applying a patch from Michal Moskal <malekith@nemerle.org>.
4717
4718         * metadata.c
4719         (mono_type_hash): Provide better hashing for generic instances.
4720         (mono_generic_inst_hash): Improve hashing.
4721         (mono_generic_class_hash): Likewise.
4722
4723         * reflection.c (mymono_metadata_type_hash): Improve hashing for
4724         generic instances.
4725
4726 2005-07-12  Martin Baulig  <martin@ximian.com>
4727
4728         * reflection.c (mono_reflection_create_runtime_class): Remove the
4729         hack for generic type definitions and non-`Run' assemblies.
4730         (mono_reflection_bind_generic_parameters): Also use
4731         `klass->wastypebuilder' to check for TypeBuilders.
4732
4733 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
4734
4735         * class.c (mono_class_layout_fields): Fix calculation of has_references
4736         for generic types.
4737
4738         * class.c (inflate_generic_class): Fix a leak.
4739         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4740         for generic types.
4741
4742 2005-07-11  Martin Baulig  <martin@ximian.com>
4743
4744         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4745         on error.
4746
4747 2005-07-11  Martin Baulig  <martin@ximian.com>
4748
4749         * loader.c (find_method): Also lookup in
4750         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4751
4752 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4753
4754         * appdomain.c (mono_domain_unload): Don't free the error message
4755         before passing it to mono_get_exception_...
4756
4757         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4758         
4759 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4760
4761         * threads.c: try to better guess an available RT signal (bug #75387).
4762
4763 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4764
4765         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4766         and CACHE_OBJECT.
4767
4768 2005-07-07  Martin Baulig  <martin@ximian.com>
4769
4770         * class.c (mono_type_get_name_full): Return NULL for
4771         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4772         fixes #75408.
4773
4774 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
4775
4776         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4777         exit the appdomain as well being aborted.
4778
4779         * threadpool.c: Create all threadpool threads inside the root appdomain, and
4780         change back to the root domain after calling managed code. This enables
4781         appdomains using threadpools to be unloaded.
4782
4783 2005-07-07  Martin Baulig  <martin@ximian.com>
4784
4785         * class-internals.h
4786         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4787         into `MonoDynamicGenericClass' since we only need it for dynamic
4788         types.
4789
4790         * reflection.c (mono_class_bind_generic_parameters): We don't need
4791         to compute the `parent' here.
4792
4793 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
4794
4795         * culture-info-table.h : regenerated.
4796
4797 2005-07-06  Martin Baulig  <martin@ximian.com>
4798
4799         * icall.c
4800         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4801
4802         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4803
4804 2005-07-06  Martin Baulig  <martin@ximian.com>
4805
4806         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4807         we're doing a signature-only comparision; fixes #74945.
4808
4809 2005-07-06  Martin Baulig  <martin@ximian.com>
4810
4811         * class-internals.h (MonoGenericClass): Moved some things out into
4812         a new `MonoInflatedGenericClass' type.  
4813         (MonoInflatedGenericClass): New type; the `klass' of a
4814         `MonoGenericClass' is now computed lazyly in
4815         mono_get_inflated_generic_class().      
4816
4817         * class.c (mono_get_inflated_generic_class): New public function.
4818         (mono_class_inflate_generic_method): Removed the unused
4819         `MonoClass *' argument.
4820         (setup_generic_vtable): Don't call mono_get_inflated_method() on
4821         all the methods.
4822         (mono_class_create_generic): Make this static and merge it with
4823         mono_class_create_generic_2(); we're now called automatically from
4824         mono_get_inflated_generic_class().
4825
4826         * loader.c (mono_method_signature): Call
4827         mono_get_inflated_method() here.
4828
4829 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
4830
4831         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4832         type of fields with RVA.
4833
4834         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4835         for this pseudo class.
4836         (my_mono_class_from_generic_parameter): Likewise.
4837         (mono_class_init): Allow interfaces to have cctors.
4838
4839 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4840
4841         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4842         lazily for AOT methods.
4843
4844 2005-07-05  Martin Baulig  <martin@ximian.com>
4845
4846         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4847         returns FALSE for a successful match, not TRUE.
4848
4849 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
4850
4851         * loader.c (mono_method_get_index): Optimize this a bit.
4852
4853 2005-07-04  Martin Baulig  <martin@ximian.com>
4854
4855         * class.c
4856         (class_compute_field_layout): Move the check for generic type
4857         definitions into mono_class_layout_fields().  Fixes #74684.
4858         (mono_class_from_generic_parameter): Correctly compute
4859         `klass->parent'; fixes #75457.
4860
4861         * reflection.c (register_assembly, register_module): Make sure
4862         `domain->rejobject_hash' is already created.
4863
4864 2005-07-02  Martin Baulig  <martin@ximian.com>
4865
4866         * class-internals.h
4867         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4868         `MonoDynamicGenericClass'.      
4869
4870 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
4871
4872         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4873         returned by a field getter is null, since null is a valid value.
4874
4875 2005-07-01  Martin Baulig  <martin@ximian.com>
4876
4877         * reflection.c (mono_reflection_generic_class_initialize): Update
4878         the `dgclass->fields [i].parent' to the correct class.
4879         (mono_image_get_fieldref_token): Use the declaring type, not the
4880         reflected type.
4881
4882 2005-07-01  Martin Baulig  <martin@ximian.com>
4883
4884         * loader.c (find_method): Also look in the interfaces; fixes #75429.
4885
4886 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
4887
4888         * threads.c (thread_cleanup): assert that thread != NULL
4889         (wait_for_tids_or_state_change): We were using the wrong variable
4890         when accessing wait->threads. `i' was always out of the bounds of
4891         the array.
4892
4893 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4894
4895         * loader.c: map user32 and kernel32 to libMonoSupportW
4896
4897 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
4898
4899         * appdomain.c (unload_thread_main): Mark this as WINAPI.
4900
4901 2005-06-28  Martin Baulig  <martin@ximian.com>
4902
4903         * loader.c (method_from_methodspec): Fix #75334.
4904
4905 2005-06-28  Martin Baulig  <martin@ximian.com>
4906
4907         Fix #74953 - Arrays now implement the generic IList<T> interface
4908         on the 2.0 platform.
4909
4910         * class-internals.h (MonoDefaults): Added `generic_array_class'.
4911
4912         * reflection.c (mono_class_bind_generic_parameters): New public
4913         function; similar to mono_reflection_bind_generic_parameters(),
4914         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
4915
4916         * domain.c (mono_init_internal): Try to initialize.
4917         `mono_defaults.generic_array_class' here; this'll only succeed if
4918         we're using the 2.0 corlib.
4919
4920         * icall.c
4921         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
4922         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
4923         (mono_lookup_internal_call): Added support for nested classes.
4924
4925         * loader.c
4926         (mono_get_method_from_token): Set `result->signature->pinvoke' if
4927         we're an interncall and have generic arguments.
4928
4929         * class.c
4930         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
4931         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
4932         instance of System.Array.InternalArray<T> for arrays, so they
4933         implement the generic IList<T> interface.
4934
4935 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
4936
4937         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
4938         (chastamar@yahoo.com). Fixes #75374.    
4939
4940 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
4941
4942         * culture-info-table.h: regenerated.
4943
4944 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4945
4946         * icall.c: handle spaces correctly for base64 strings.
4947
4948 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
4949
4950         * *.c: Kill some warnings.
4951
4952 2005-06-23  Duncan Mak  <duncan@novell.com>
4953
4954         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
4955         that this builds on Solaris 10 (x86).
4956
4957 2005-06-23  Martin Baulig  <martin@ximian.com>
4958
4959         * class.c
4960         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
4961         generic type definitions.
4962
4963 2005-06-23  Martin Baulig  <martin@ximian.com>
4964
4965         Fix #75331.
4966
4967         * metadata.c (mono_class_get_overrides): Renamed to
4968         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
4969         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
4970         pass it to mono_get_method_full().
4971
4972 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
4973
4974         * reflection.c (mono_reflection_create_runtime_class): take the
4975         mono_domain_lock in this method. Prevents deadlocks
4976
4977 2005-06-22  Martin Baulig  <martin@ximian.com>
4978
4979         * loader.c (method_from_methodspec): Fix #75330.
4980
4981 2005-06-22  Martin Baulig  <martin@ximian.com>
4982
4983         * reflection.c (type_get_qualified_name): Use
4984         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
4985         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
4986         argument; use it if we don't have an assembly name.
4987
4988 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
4989
4990         * object.c: In mono_message_init, set "copy out" flag for in
4991         parameters with the [Out] flag.
4992
4993 2005-06-21  Martin Baulig  <martin@ximian.com>
4994
4995         * class.c
4996         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
4997         and MONO_TYPE_PTR.
4998
4999 2005-06-21  Martin Baulig  <martin@ximian.com>
5000
5001         * class.c (mono_class_init): Don't initialize `class->fields' for
5002         generic instances since they're initialized again in
5003         compute_field_layout(). 
5004         (compute_field_layout): Set the field's `generic_info' here; fix
5005         #75320. 
5006
5007 2005-06-21  Martin Baulig  <martin@ximian.com>
5008
5009         * class-internals.h
5010         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5011
5012         * metadata.c (mono_metadata_generic_method_equal): Also
5013         distinguish the `generic_class'; fixes #75334.
5014
5015 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5016
5017         * domain.c:
5018         * appdomain.c:
5019         * domain-internals.h:
5020         * reflection.c: 'domain_assemblies' field is now protected by its own
5021         lock. Don't call into managed code to run the AssemblyLoad event if we
5022         now there are no registered delegates for it.
5023
5024 2005-06-20  Martin Baulig  <martin@ximian.com>
5025
5026         * class.c (mono_class_is_assignable_from): Use a custom version of
5027         mono_class_has_parent() to make things work for generic instances;
5028         fix #75300.
5029
5030 2005-06-20  Martin Baulig  <martin@ximian.com>
5031
5032         * loader.c (method_from_methodspec): Apply a patch from
5033         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5034
5035 2005-06-20  Martin Baulig  <martin@ximian.com>
5036
5037         * class.c (mono_class_init): Reverted Zoltan's last change; it
5038         breaks generics.
5039
5040 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5041
5042         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5043
5044 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5045
5046         * socket-io.c: fix the index in the socket array for writable/error
5047         sockets. Fixes bug #75306.
5048
5049 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5050
5051         * class.c (mono_class_init): Allow interfaces to have static ctors.
5052
5053 2005-06-17  Martin Baulig  <martin@ximian.com>
5054
5055         * loader.c (method_from_methodspec): Use `context->container' when
5056         parsing the `gmethod->inst'.
5057
5058 2005-06-17  Martin Baulig  <martin@ximian.com>
5059
5060         * class.c (mono_type_get_name_recurse): Don't add the assembly
5061         name for type arguments.
5062
5063 2005-06-15  Martin Baulig  <martin@ximian.com>
5064
5065         * reflection.c (mono_image_get_inflated_method_token): Encode
5066         correct klass; fixes #75260.
5067
5068 2005-06-13 Michal Moskal <malekith@nemerle.org>
5069
5070         * icall.c: Make GetCorrespondingMethod/Constructor take
5071         MonoReflectionMethod method not MonoMethod. Removed
5072         MonoType.GetCorrespondingField, and make
5073         MonoGenericType.GetCorrespondingField take name not
5074         MonoClassField.
5075
5076 2005-06-13  Michal Moskal <malekith@nemerle.org>
5077
5078         * reflection.c (field_encode_signature, encode_locals):
5079          Make sizes of buffers for types larger (for big generic types).
5080          (create_generic_typespec,
5081          mono_reflection_sighelper_get_signature_local,
5082          mono_reflection_sighelper_get_signature_field):
5083          Add asserts for too small buffers.
5084
5085 2005-06-15  Martin Baulig  <martin@ximian.com>
5086
5087         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5088         if our parent is not a dynamic type.
5089
5090 2005-06-15  Martin Baulig  <martin@ximian.com>
5091
5092         * class-internals.h (MonoTypeNameFormat): New enum.
5093
5094         * class.c
5095         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5096         (mono_type_get_full_name): Removed.
5097         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5098         argument instead of the boolean's.
5099
5100         * icall.c (ves_icall_System_MonoType_getFullName):
5101         Added `gboolean assembly_qualified'.    
5102
5103         * reflection.h
5104         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5105
5106         * reflection.c (mono_reflection_parse_type): Parse the new type
5107         name format.
5108
5109 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5110
5111         * icall.c: no need to convert from utf16 to utf8 and then back again
5112         after the call to GetLogicalDrives.
5113
5114 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5115
5116         * icall.c: frombase64. Fix problems exposed by new tests.
5117
5118 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5119
5120         * icall.c: added internal calls for converting char [] and strings in
5121         base64 into byte [].
5122
5123 2005-06-10  Martin Baulig  <martin@ximian.com>
5124
5125         * class.c (mono_class_create_generic_2): Read the nested classes
5126         from the metadata rather than from `gklass->nested_classes' since
5127         `gklass' might not be initialized yet.
5128
5129 2005-06-09  Duncan Mak  <duncan@novell.com>
5130
5131         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5132         all public headers. Fixes #74919.
5133
5134 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5135
5136         * domain.c: The key for proxy_vtable_hash is now a pointer
5137         array. Added new GHashFunc and GCompareFunc functions for this.
5138
5139         * class.h: The list of interfaces in MonoRemoteClass is known in
5140         advance and can't grow (we create a new MonoRemoteClass if needed),
5141         so now the interface array can be allocated together with
5142         MonoRemoteClass.
5143         
5144         * object.c: Added a new method create_remote_class_key.
5145         Fixed mono_remote_class so it does not depend on
5146         mono_upgrade_remote_class.
5147         Removed extend_interface_array.
5148         Added new method clone_remote_class(), which makes a copy of a remote
5149         class and adds a new interface or class to it.
5150         mono_upgrade_remote_class() now creates a new remote class (or gets
5151         it from the cache) if an vtable upgrade is needed. In this way
5152         we make sure that other objects sharing the same remote class
5153         don't get the new vtable with unwanted interfaces.
5154         
5155         * object-internals.h:
5156         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5157         
5158         * marshal.c: Track changes in mono_upgrade_remote_class().
5159
5160 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5161         * icall.c: Add runtime methods for obtaining members of inflated
5162         class, which were created from supplied non-inflated members. It
5163         is used in internal Get{Method,Constructor,Field} methods in
5164         System.Type
5165
5166 2005-06-09  Martin Baulig  <martin@ximian.com>
5167
5168         * reflection.c
5169         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5170
5171 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5172         * reflection.c (mono_image_basic_init): Define
5173         Version in MonoDynamicAssembly. 
5174         
5175 2005-06-08  Martin Baulig  <martin@ximian.com>
5176
5177         Fix #75136.
5178
5179         * loader.c
5180         (mono_method_signature_full): New public method; takes a
5181         `MonoGenericContext *'.
5182         (find_method): Use mono_method_signature_full() and pass the
5183         klass'es context to it.
5184
5185         * class.c (mono_class_is_inflated_method): Use
5186         mono_method_signature_full() and pass the context to it.
5187
5188 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5189
5190         * object.c: add proper locking in mono_remote_class_vtable(),
5191         fixes possible memory corruption.
5192
5193 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5194
5195         * marshal.c (mono_remoting_marshal_init): set
5196         initialized after initialization.
5197
5198 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5199
5200         * locales.c : hush.
5201
5202 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5203
5204         * object.c (extend_interface_array): fix really silly
5205         memory corrupting / comparison bug.
5206
5207 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5208
5209         * reflection.c: Functions added to support the creation
5210         of CustomAttributeData, which includes Attribute data
5211         used by ReflectionOnly methods.
5212
5213         * reflection.h:  mono_reflection_get_custom_attrs_data and
5214          mono_custom_attrs_data_construct added (functions exposed).
5215
5216          * icall.c: Added mono_reflection_get_custom_attrs_data
5217          as icall.
5218         
5219 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
5220
5221         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
5222         lupus's request.
5223
5224 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
5225
5226         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
5227
5228         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
5229         dynamic DllImportAttribute.
5230
5231         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
5232         dynamic DllImportAttribute.
5233
5234         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
5235         Fixes #75162.
5236
5237 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5238
5239         * threads.c: avoid segfault when an unstarted thread is aborted.
5240
5241 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
5242
5243         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
5244         Returns the name and version of the runtime for reporting.
5245
5246 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5247
5248         * appdomain.c: bump corlib version.
5249         * object-internals.h: new field in MonoReflectionAssembly.
5250
5251 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5252
5253         * object-internals.h: Carlos forgot to add this field.
5254
5255 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5256
5257         * icall.c: Added create_version to create instances
5258         of Version of MonoReflectionAssemblyName. This change helps
5259         the AssemblyName tests to keep running fine.
5260         
5261 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
5262   
5263         * object.c (mono_method_return_message_restore): A somehow less
5264         intrusive fix for #75138.
5265
5266 2005-06-03  Raja R Harinath  <rharinath@novell.com>
5267
5268         * object.c (mono_method_return_message_restore): Fix computation
5269         of expected number of out args.
5270
5271 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5272
5273         * reflection.c (mono_image_get_method_info): Fix the case when the
5274         charset is empty.
5275
5276 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
5277
5278         * object.c: Added missing null check in
5279           mono_method_return_message_restore.
5280
5281 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
5282
5283         * reflection.c (mono_image_get_method_info): Handle the case when
5284         dllentry is empty.
5285
5286 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
5287
5288         * object.c: When creating the vtable for a proxy, take into account
5289         all inherited interfaces, not only the ones registered in
5290         iclass->interfaces. This fixs bug #74996.
5291         Also, in mono_method_return_message_restore, verify that the array
5292         of out args has the expected lengh.
5293
5294 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5295
5296         * socket-io.c: update the timeout in Poll when the call is interrupte.
5297
5298 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5299
5300         * socket-io.c: support abort/suspend in Select_internal after last
5301         change.
5302
5303 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5304
5305         * threadpool.c: remove warning.
5306
5307 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5308
5309         * icall.c:
5310         * socket-io.[ch]: Select_internal uses poll() now when available, thus
5311         removing the 1024 limit from select(). Runtime part of the fix for
5312         bug #71203.
5313
5314 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5315
5316         * socket-io.c: when resolving the addresses for the same
5317         host returned by gethostname(), get the local IPs from the interface
5318         list. Loopback addresses are discarded if the are interfaces up with
5319         non-loopback ones. Fixes bug #63265.
5320
5321 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
5322
5323         * appdomain.c, verify.c, object-internals.h, reflection.c:
5324         bumped corlib number to 36, and added new extra_flags field
5325         to ReflectionMethodBuilder and friends.  Fixes #75060.
5326
5327 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5328
5329         * gc.c: register a new weak link only if the object is non-null
5330         (fixes bug#75047).
5331
5332 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5333
5334         * culture-info.h : short time pattern too.
5335
5336 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5337
5338         * culture-info.h : expand long time pattern string length.
5339
5340 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5341
5342         * culture-info-table.h : update (more French date format; #72788).
5343
5344 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
5345
5346         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5347         the method is static. Fixes #75029.
5348
5349 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
5350
5351         * reflection.c: Update the table_idx field of method builders after
5352         saving the module, since it can change. This is a workaround for
5353         bug #74914. 
5354
5355 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5356
5357         * culture-info-table.h : update (additional French date format).
5358
5359 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
5360
5361         * icall.c (ves_icall_type_Equals): Revert last change.
5362         
5363         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5364
5365         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5366
5367 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5368
5369         * class-internals.h: Added executioncontext_class field to 
5370         MonoDefaults structure.
5371         * domain.c: Cache System.Threading.ExecutionContext class in 
5372         mono_defaults.
5373         * object.c: Capture the ExecutionContext for asynchroneous calls in
5374          mono_async_result_new.
5375         * object-internals.h: Added execution_context and original_context 
5376         fields to MonoAsyncResult. Added execution_context to MonoThread.
5377         * security-manager.c|.h: Added mono_get_context_capture_method to 
5378         return the capture method (if required by the security manager or by
5379         the framework version used).
5380         * threadpool.c: Apply capture (if present) ExecutionContext in 
5381         mono_async_invoke and revert to original context after it completes.
5382
5383 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
5384
5385         * culture-info-table.h : updated (real hacky solution for zh-CHT).
5386
5387 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
5388
5389         * culture-info-table.h : zh-CHT related workaround.
5390
5391 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5392
5393         * marshal.c (emit_marshal_custom): Add some error checking and call the
5394         methods in the ICustomMarshaler interface. Fixes #74875.
5395         
5396         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5397         native->managed wrappers.
5398
5399 2005-05-12  Martin Baulig  <martin@ximian.com>
5400
5401         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5402         here and use the loader lock.
5403
5404         * mono-debug.c: Properly lock when the debugger is not attached.
5405         (mono_debug_init): Release the initial lock if we're not running
5406         in the debugger.
5407
5408 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
5409
5410         * marshal.c (emit_marshal_custom): Pass through NULL values without
5411         calling the custom marshalling routines.
5412
5413         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5414         conversion in structures. Fixes #74882.
5415
5416 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
5417
5418         * culture-info-table.h : zh-* cultures were missing.
5419
5420 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
5421
5422         * threads.c: Added a new event background_change_event which is signaled
5423         when a thread changes its background mode.
5424         Moved here several checks previously done in managed code. The checks
5425         require the thread lock, and using the thread lock in managed code
5426         can result in deadlocks.
5427         Merged Start_internal and Thread_internal into a single method. Now 
5428         Thread_internal does all work of creating and starting a thread.
5429         Added icalls for setting and getting the state of the object. Moved from
5430         managed code to avoid locking there.
5431         Added wait_for_tids_or_state_change() which is called instad of
5432         wait_for_tids when waiting for non-backround threads to end. This method
5433         will return if one of the threads ends or the background_change_event
5434         is signaled.
5435         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5436         the background mode. This method signals the background_change_event
5437         event.
5438         * icall.c:
5439         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5440         removed Start_internal.
5441         
5442 2005-05-11  Martin Baulig  <martin@ximian.com>
5443
5444         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5445         to order of some fields to get proper alignment on 64-bit machines.
5446
5447 2005-05-11  Martin Baulig  <martin@ximian.com>
5448
5449         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5450         changes as they're broken and completely fuck up the debugger.
5451
5452         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5453
5454 2005-05-10  Martin Baulig  <martin@ximian.com>
5455
5456         * reflection.c (mono_reflection_generic_class_initialize): Don't
5457         call mono_class_setup_parent() here.
5458
5459 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5460
5461         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5462         send/receive timeout use an integer in milliseconds. We were using a
5463         struct timeval.
5464
5465 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5466
5467         * locales.c:
5468         (internal_get_cultures): reserve the first slot of the array for the
5469         InvariantCulture, which will be filled in managed code.
5470
5471 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
5472
5473         * reflection.c (mono_image_fill_module_table): Initialize the
5474         GENERATION field as well.
5475
5476 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5477
5478         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5479         Monitor.Enter on the object.
5480
5481 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
5482
5483         * threads.c: Enable the wait for running threads when exiting.
5484         * icall.c: Suspend all threads before exiting.
5485
5486 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
5487
5488         * assembly.c (mono_assembly_load_reference): Fix warning.
5489
5490 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5491
5492         * threadpool.c: changed the default number of threads per cpu. From now
5493         on, the default will be 20 + (5 * number of cpus) instead of 50.
5494
5495 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
5496
5497         * loader.c (mono_method_get_signature_full): Add locking here.
5498
5499 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
5500
5501         * appdomain.c: Moved methods for parsing and freeing assembly
5502         names to assembly.c.
5503         * assembly.c, domain-internals.h: Created public methods for parsing
5504         assembly names. Fixed mono_assembly_load_with_partial_name:
5505         it now finds the best match, taking into account the version,
5506         token and culture specified in the partial name. Also return
5507         the latest version if no version information is specified.
5508
5509 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5510
5511         * threadpool.c: replace check for SocketAsyncCall class.
5512
5513 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5514
5515         * threadpool-internals.h:
5516         * Makefile.am: added threadpool-internals.h
5517
5518         * threadpool.c: call mono_unhandled_exception on exceptions not handled
5519         that happen in threadpool threads (tested on MS).
5520         (mono_thread_pool_remove_socket): new function that dispatch any pending
5521         AIO call on a socket that is closing. By now only epoll really needs it,
5522         as select/poll wake up when the socket closes.
5523
5524
5525         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5526
5527 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
5528
5529         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5530
5531 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
5532
5533         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5534
5535 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
5536
5537         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5538         has an abort request, convert it into a suspend request.
5539
5540 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
5541
5542         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5543         warning for the usage of `UnmanagedFunctionPointerAttribute' which
5544         is not supported yet.
5545
5546 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5547
5548         * image.c: register assemblies loaded from data (bundles) in the loaded
5549         assemblies hash. Fixes bug #74772.
5550
5551 2005-04-29  Martin Baulig  <martin@ximian.com>
5552
5553         * class.c (mono_type_get_name_recurse): Update to the new naming
5554         schema from the latest .NET 2.x beta2.
5555         (mono_class_setup_vtable_general): If we're a generic instance,
5556         copy the vtable from our generic type definition and inflate all
5557         the methods in it.
5558
5559         * loader.c (find_method): Update to the new naming schema from the
5560         latest .NET 2.x beta2.
5561
5562 2005-04-29  Raja R Harinath  <harinath@gmail.com>
5563
5564         * class.c (mono_class_init): Add a mono_loader_unlock to the
5565         #74734 fix.
5566
5567 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
5568
5569         * icall.c (ves_icall_System_Environment_Exit): Remove the 
5570         suspend_all_other_threads () call for the time being, since it can hang.
5571
5572         * threads.c (mono_thread_manage): Similarly, disable the waiting for
5573         the background threads to exit, since it can also hang.
5574
5575         * class.c (mono_class_init): Applied patch from Ankit Jain 
5576         (radical@gmail.com). Avoid pending init errors when a field refers
5577         to a nested class using a typeref. Fixes #74734.
5578
5579         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5580         this for dynamic modules.
5581
5582 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5583
5584         * threads.c: don't wait for threads that are in the process of aborting
5585         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5586         and waiting for background threads to finish. This makes xsp and
5587         mod-mono-server exit without random length delays and/or hangs.
5588
5589 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5590
5591         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5592
5593 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
5594
5595         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5596         dynamic types to prevent infinite loops. Fixes #74727.
5597
5598         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5599         ..._is_assignable_to.
5600
5601 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
5602
5603         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5604
5605 2005-04-25  Martin Baulig  <martin@ximian.com>
5606
5607         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5608
5609         * domain.c
5610         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5611
5612         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5613
5614         * reflection.c (build_compressed_metadata): Set metadata header
5615         version to 2.0.
5616
5617 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
5618
5619         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5620         number into an integral and a decimal part. Fixes #70473.
5621
5622         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5623
5624 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
5625
5626         * culture-info-table.h : reflected the latest locale-builder output.
5627
5628 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5629
5630         * threadpool.c: check for SuspendRequested too when deciding if
5631         mono_thread_interruption_checkpoint should be called.
5632
5633 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5634
5635         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5636         * threads.c: remove interruption_mutex and use Interlocked instead. When
5637         suspending all the threads, wait for all the suspended events at once.
5638         If we're shutting down and get an APC that is going to be queued,
5639         call mono_thread_execute_interruption immediately, as the thread might
5640         be sleeping on a pthread condition or mutex.
5641
5642         * icall.c: call mono_runtime_set_shutting_down before suspending the
5643         threads.
5644
5645         Fixes bug #74693. And now xsp is happier when exiting.
5646
5647 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
5648
5649         * loader.c (mono_stack_walk): Fix #74690.
5650
5651 2005-04-22  Martin Baulig  <martin@ximian.com>
5652
5653         * mono-debug.h (MonoDebugMethodJitInfo): Added
5654         `MonoDebugMethodJitInfo *jit'.
5655
5656         * mono-debug.c (mono_debug_read_method): Cache the
5657         MonoDebugMethodJitInfo in `address->jit'.
5658         (mono_debug_free_method_jit_info): New public method.
5659
5660 2005-04-22  Martin Baulig  <martin@ximian.com>
5661
5662         * class.c (mono_class_is_assignable_from): Disallow
5663         type parameter -> interface.
5664
5665 2005-04-21  Dick Porter  <dick@ximian.com>
5666
5667         * threads.c (mono_thread_create): Turn an assertion into an error.
5668
5669 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
5670
5671         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5672         
5673         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
5674         Fix some gcc 4.0 warnings.
5675
5676 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5677
5678         * file-io.c: fix alt dir separator char on unix systems
5679         and cleanup (fixes bug #71214).
5680
5681 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
5682
5683         * marshal.c: Use CALLVIRT instead of CALL when dispatching
5684         a call to a remote domain, since the method may be an
5685         interface method in the client domain. This fixes bug #74192.
5686
5687 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5688
5689         * threadpool.c: recv/send are now performed before going back to managed
5690         code to save one transition.
5691
5692 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5693
5694         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5695
5696         * metadata/threadpool.c: removed hack to workaround the bug above.
5697
5698         Fixes bug #74618.
5699
5700 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
5701
5702         * reflection.c reflection.h: Fix handling of parameter defaults in
5703         dynamic methods. Also fixes handling of parameter attributes.
5704         Fixes #74609.
5705
5706         * mono-debug.c (mono_debug_close_image): Fix warning.
5707
5708 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5709
5710         * socket-io.h: replaced old unused field with new 'blocking'.
5711         * threadpool.c: restore socket blocking state on windows(tm).
5712
5713 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5714
5715         * icall.c: don't return the codebase in the AssemblyName[] returned by
5716         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5717         * object-internals.h: Removed FIXME (fields were presents) and fixed
5718         versioncompat declaration.
5719
5720 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5721
5722         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5723         not closed, so don't cleanup when it happens.
5724
5725 2005-04-13  Chris Toshok  <toshok@ximian.com>
5726
5727         * mono-debug-debugger.h: change prototype for
5728         mono_debugger_lookup_type.
5729
5730         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5731         this function, although it should probably be named
5732         mono_debugger_init_type.
5733
5734 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5735
5736         * threadpool.c: fix non-AIO case.
5737
5738 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
5739
5740         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5741         the built-in profiler to measure just JIT compilation times.
5742
5743 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5744
5745         * threadpool.c: the epollfd might be closed by another thread at
5746         any time, so ignore EBADF at treat it as a "we're closing" sign.
5747
5748 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5749
5750         * threadpool.c: release the semaphores with a count equals to the number
5751         of working threads in both IO and regular pools. Fixed typo that messed
5752         up the count of IO pool threads. Don't initialize the pipe handles if
5753         we're using epoll.
5754
5755 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5756
5757         * threadpool.c: some systems don't like a NULL when deleting the socket
5758         from epoll.
5759
5760 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5761
5762         * threadpool.c: fix semaphore allocation.
5763
5764 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5765
5766         * threadpool.c: added epoll() based implementation for asynchronous IO
5767         that is used instead of the default poll() when available.
5768         It can be disabled by setting MONO_DISABLE_AIO.
5769
5770 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5771
5772         * threadpool.c: windows needs 'closesocket' and instead of returning
5773         0 when the stream is closed while in select, it returns -1. Fixes bug
5774         #74573.
5775
5776 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
5777
5778         * class.c (class_compute_field_layout): Fix the regression caused by
5779         the previous try.
5780
5781 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5782
5783         * threadpool.c: separate pool for socket async. IO.
5784         * threadpool.h: mono_max_worker_threads is not a global any more.
5785
5786 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
5787
5788         * class.c (class_compute_field_layout): Fix #74549.
5789
5790 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5791
5792         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5793         use 2 connected sockets instead.
5794
5795 2005-04-08  Miguel de Icaza  <miguel@novell.com>
5796
5797         * mono-config.c: Add new entry point for mkbundle
5798         mono_config_parse_memory. 
5799
5800 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5801
5802         * threadpool.c: removed another unused function.
5803
5804 2005-04-08  Ankit Jain  <radical@corewars.org>
5805
5806         * reflection.c (get_default_param_value_blobs): Add 'types'
5807         parameter to get the types encoded in the constant table.
5808         (mono_param_get_objects): Use the type from the constant table,
5809         not the type of the parameter, when creating default values.
5810         Handle null default values correctly.
5811
5812 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5813
5814         * file-io.c:
5815         * file-io.h:
5816         * threadpool.c:
5817         * threadpool.h:
5818         * icall.c:
5819         * socket-io.c: removed dead code for async IO.
5820
5821 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5822
5823         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5824
5825         * threadpool.c: intercept socket async. calls and pass them to a thread
5826         that is polling and dispatching the job items to the threadpool as
5827         socket become ready. Fixes bugs #71217, #71933.
5828
5829         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5830         between char and short/ushort arrays.
5831
5832         * socket-io.c: remove dead code.
5833
5834 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5835
5836         * locales.c,
5837           icall.c : removed InternalToUpper_Comp() and
5838           InternalToLower_Comp().
5839
5840 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
5841
5842         * char-conversions.h : The tables were incorrectly generated. Should
5843           be generated against invariant culture.
5844
5845 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
5846
5847         * object.c (mono_runtime_invoke_array): Fix return value when 
5848         passing pre-created valuetype objects to ctors.
5849
5850         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
5851         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5852         Fixes #74338.
5853
5854 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
5855
5856         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
5857         only used with --security and hides the wrong corlib version error.
5858
5859 2005-03-30  Joshua Tauberer  <tauberer@for.net>
5860
5861         * class.c: Changed mono_class_name_from_token so that types
5862         outside of a namespace don't have an initial period.  Improved
5863         the g_warning message used in _mono_class_get when loading
5864         fails.
5865         * assembly.c: In mono_assembly_load_reference, when an assembly
5866         can't be found, "No such file or directory" is misleading and
5867         unhelpful because a few paths were checked for the presence of
5868         the assembly.  When that happens (ENOENT), display a nicer
5869         message indicating the directories that were searched.  In all
5870         cases, the warning is made easier to read for non-hackers.
5871
5872 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
5873
5874         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5875         project/solution.
5876         * appdomain.h|domain.c: Removed inline from functions.
5877         * appdomain.c: Reduced warnings when compiling on windows.
5878         * icall.c: Fixed output_debug declaration to gunichar2*.
5879         * mono-config.c: Reduced warnings when compiling on windows.
5880         * rand.c: Added missing "windows.h". Added missing return value.
5881         * rawbuffer.c: Added missing winsock2.h for windows.
5882         * sysmath.h: Added mono-compiler.h header to allow/ease 
5883         compilation with non-GCC compilers.
5884         * threads.c: Fixed declarations to compile with VS.NET C compiler.
5885         Removed cast warnings.
5886
5887         Adapted from the work of J Lothian (for VC6).
5888
5889 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
5890
5891         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
5892         from default_path.
5893
5894 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
5895
5896         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
5897         the 2.0 profile.
5898
5899 2005-03-27  Raja R Harinath  <harinath@gmail.com>
5900
5901         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
5902         has to be in $(exec_prefix).  $(prefix) is for arch-independent
5903         stuff, and it would probably use $(prefix)/share rather than
5904         $(prefix)/lib.
5905
5906 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5907
5908         * console-io.c: added 2 includes that might be missing.
5909
5910 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
5911
5912         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
5913         profile.
5914
5915         * reflection.c (create_custom_attr): Allocate the params array using
5916         alloca so it gets GC tracking.
5917
5918 2005-03-23  Chris Toshok  <toshok@ximian.com>
5919
5920         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
5921         out some spew.
5922
5923 2005-03-24  Raja R Harinath  <rharinath@novell.com>
5924
5925         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
5926         changes to pick up any changes in prefix, etc.
5927
5928 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5929
5930         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
5931         
5932         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
5933         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
5934
5935 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
5936
5937         * class-internals.h object-internals.h class.c reflection.c: Extend the
5938         mono_lookup_dynamic_token () function to return the class of the
5939         token as well. 
5940
5941         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
5942         well. Fixes #73848.
5943
5944 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
5945
5946         * security-manager.c: Skip inheritance checks for intra-corlib
5947         class inheritance and method overrides. This skips a lot of checks
5948         and (anyway) permissions cannot work until corlib is loaded.
5949
5950 2005-03-23  Martin Baulig  <martin@ximian.com>
5951
5952         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
5953         MONO_TYPE_GENERICINST.  
5954
5955 2005-03-23  Martin Baulig  <martin@ximian.com>
5956
5957         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
5958
5959 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5960
5961         * class.c: added locking comments to some functions.
5962         Cache the interface offsets arrays (saves about 20 KB
5963         of runtime memory in a typical app).
5964         Reduce the time overhead in mono_class_setup_supertypes ().
5965
5966 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
5967
5968         * icall.c: speedup and fix leaks in GetMethodsByName and
5969         GetPropertiesByName.
5970
5971 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5972
5973         * reflection.c: some locking fixes.
5974
5975 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5976
5977         * metadata.c: added missing break in case statement.
5978
5979 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
5980
5981         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
5982         typedbyref return values. Fixes #73941.
5983
5984 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5985
5986         * security-manager.c|h: Added demandunmanaged method and 
5987         suppressunmanagedcodesecurity class to MonoSecurityManager.
5988         Renamed aptc class to allowpartiallytrustedcallers.
5989
5990 2005-03-17  Martin Baulig  <martin@ximian.com>
5991
5992         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
5993
5994 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5995
5996         * file-io.c: disabled file async. IO using aio_*. It uses the
5997         threadpool now. Workaround for bug #73718.
5998
5999 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6000
6001         * assembly.h, mono-config.c: added code to deal with bundled configs
6002         for bundled assemblies.
6003
6004 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6005
6006         * *.c, private.h: cleanup, removing old private.h header file.
6007
6008 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6009
6010         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6011         and throw_on_unmappable_char attributes.
6012
6013 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6014
6015         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6016         _ProcessName_internal.
6017
6018 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6019
6020         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6021         #73631.
6022
6023         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6024         are no longer used.
6025
6026 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6027
6028         * object.c (compute_class_bitmap): Add support for generics. Fixes
6029         #73527.
6030
6031 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6032
6033         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6034
6035 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6036
6037         * filewatcher.c: commented out the code for windows watcher, as we don't
6038         use it (we use the managed implementation instead).
6039
6040 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6041
6042         * object-internals.h (MonoThread): Remove 'unused1' field.
6043
6044         * appdomain.c: Bump corlib version.
6045
6046         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6047
6048         * reflection.c (mono_reflection_create_runtime_class): Remove the
6049         AssemblyBuilder.Save optimization since it causes too many problems.
6050
6051 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6052
6053         * exception.c|h: Added mono_get_exception_reflection_type_load to
6054         create a ReflectionTypeLoadException object.
6055         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6056         to return NULL is a InheritanceDemand fails during reflection. Updated
6057         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6058         ReflectionTypeLoadException if an InheritanceDemand fails during 
6059         reflection. Added icall mapping for GetLinkDemandSecurity.
6060         * security-manager.c|h: Added ves_icall_System_Security_
6061         SecurityManager_GetLinkDemandSecurity internal call to return the
6062         class and methods permissions set for a LinkDemand. Removed unused
6063         fields in MonoSecurityManager.
6064
6065 2005-03-10  Martin Baulig  <martin@ximian.com>
6066
6067         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6068         it's a generic instance.
6069
6070 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6071
6072         * reflection.c (mono_get_object_from_blob): Applied patch from
6073         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6074
6075         * class.c (mono_class_is_assignable_from): Another try at fixing 
6076         #73469 without breaking anything.
6077
6078 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6079
6080         * class.c: (mono_class_is_assignable_from): Revert the last changes
6081         since they don't work with generics.
6082         
6083         * class.c (mono_class_is_assignable_from): Fix build bustage.
6084
6085         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6086         the managed IsAssignableFrom method. Fixes #73469.
6087
6088         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6089         function.
6090
6091 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6092
6093         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6094         memory when the remoting callback does not sets the out arguments.
6095         Fixes #73007.
6096
6097         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6098         by mistake.
6099
6100         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6101
6102         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6103
6104         * appdomain.c: Bump corlib version.
6105
6106 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6107
6108         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6109         function.
6110
6111         * threads.c (mono_thread_attach): Detect threads which are not started
6112         by the GC pthread wrappers.
6113
6114 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6115
6116         * icall.c: Added new icall for RNG.
6117         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6118         single handle on Linux to access /dev/urandom and fix #73183.
6119
6120 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6121
6122         * object.c: setting the new vtable in a transparent proxy object must
6123         not change the GC descriptor.
6124
6125 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6126
6127         * object.c: fixed compilation without GCJ support.
6128         * reflection.c: for runtime-created types ensure klass->has_references
6129         is correct (bug #73215).
6130
6131 2005-03-02  Martin Baulig  <martin@ximian.com>
6132
6133         * class.c (mono_class_is_assignable_from): Make this work if
6134         `oklass' is a generic instance; fixes #72831.
6135
6136 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6137
6138         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6139         with hasthis set.
6140         
6141         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6142
6143         * marshal.c: Reorganize native->managed marshalling code to also use
6144         the emit_marshal_... functions.
6145
6146 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6147
6148         * object.c: typed allocs have issues with bitmap sizes > 30,
6149         so check for max_set >= 30.
6150
6151 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6152
6153         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6154         managed code. Fixes #73012.
6155
6156         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6157
6158         * metadata.c reflection.c: Load/Emit elem_mult as well.
6159         
6160         * metadata.h (MonoMarshalSpec): Add comment.
6161
6162         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6163
6164         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6165         num_elem to -1 if not given.
6166
6167         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6168
6169         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6170         given values.
6171
6172 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6173
6174         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6175
6176 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6177
6178         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6179
6180         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6181
6182 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6183
6184         * object.c: generalized the reference bitmap creation
6185         and added hooks for the new GC.
6186         * class-internals.c: removed the gc_bitmap field from MonoClass.
6187
6188 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6189
6190         * domain.c: help the compiler to produce better code
6191         in mono_jit_info_table_find ().
6192
6193 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6194
6195         * object.c: make all allocations look typed.
6196
6197 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6198
6199         * socket-io.c: load Mono.Posix if it's not loaded already
6200         (fixes bug#73033).
6201
6202 2005-02-24  Martin Baulig  <martin@ximian.com>
6203
6204         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6205         * reflection.c (dup_type): Likewise.
6206
6207 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6208
6209         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6210         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6211
6212 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6213
6214         * domain.c, threads.c, object-internals.h: make the critical thread
6215         local vars use the fast access mode (even when we're compiled in
6216         a lib). Provide accessors to be used by the jit during codegen.
6217
6218 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6219
6220         * appdomain.c: Changed hook functios behavior to include
6221         support for the reflection only assemblies. Some icalls were changed
6222         to support the mentioned assemblies too. Signatures of static methods
6223         try_assembly_resolve and real_load now have an additional parameter:
6224         refonly.
6225
6226         * assembly.c: General changes to mono_assembly_ methods to support
6227         reflection only api. Functions mono_assembly_open, mono_assembly_load,
6228         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
6229         suffix, to support an additional gbool parameter to specify whether
6230         the assembli is reflection only or not. Created some new hook functions 
6231         to add support for reflection only assemblies. Signatures of static 
6232         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
6233         have now an additional parameter: refonly.
6234
6235         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
6236         indicating whether the assembly is reflection only or not.
6237
6238         * exception.c: Add mono_get_exception_invalid_operation.
6239
6240         * icall.c: Throw an InvalidOperationException when trying to invoke
6241         a property/method/event, or trying to set/get the value of a field.
6242         Also add an icall to retrieve the ref_only flag to the
6243         MonoReflectionAssembly.
6244
6245 2005-02-23  Chris Toshok  <toshok@ximian.com>
6246
6247         Part of fix for #72827.
6248         * mono-debug.c (mono_debug_add_method): add lexical block data to
6249         the info we write.  Kind of a hack at the moment - we copy the
6250         lexical block info from the MonoDebugMethodInfo to the
6251         MonoDebugMethodJitInfo here, before writing it.
6252         (mono_debug_read_method): read the lexical block info.
6253
6254         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
6255
6256         * debug-mono-symfile.h: add lexical block support.
6257
6258         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6259         support.
6260
6261 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6262
6263         * loader.c (mono_lookup_pinvoke_call): Fix warning.
6264
6265         * object.c (mono_runtime_free_method): Call mono_free_method () and
6266         put the TODOs there.
6267
6268         * loader.c (mono_free_method): Free up most memory allocated for 
6269         dynamic methods.
6270
6271 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6272
6273         * reflection.c: properly flag a Type argument to a
6274         named custom attr value (bug #72248).
6275
6276 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6277
6278         * reflection.c: reduce code duplication in named custom
6279         attribute encoding.
6280
6281 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6282
6283         * reflection.c: properly encode custom attrs of type object
6284         (bug #72649).
6285
6286 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
6287
6288         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6289
6290 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6291
6292         * socket-io.c: load System.dll if it's not loaded already
6293         (bug #72850 and #70477).
6294
6295 2005-02-21  Martin Baulig  <martin@ximian.com>
6296
6297         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6298         generic instances.
6299
6300 2005-02-21  Martin Baulig  <martin@ximian.com>
6301
6302         * reflection.c (mono_image_build_metadata): We also need to
6303         "fixup" the MethodImpl table after we computed the final method
6304         indices.  Call fixup_methodimpl() to do that.
6305         (fixup_methodimpl): New private method.
6306
6307 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6308
6309         * assembly.c: special case mscorlib.dll (bug#72536),
6310         patch from Carlos Alberto Cortez.
6311
6312 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
6313
6314         * threads-types.h threads.c: Fix build bustage.
6315
6316         * threads.c: Use a union for long<->double conversions.
6317
6318         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6319         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6320
6321         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
6322         containing the checkpoint call with NOT_TAKEN.
6323         
6324         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
6325         checkpoint before pushing the arguments, so they won't have to be
6326         spilled to stack.
6327
6328 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6329
6330         * domain.c, assembly.c, domain-internals.h: make some data
6331         const and relocation-free.
6332
6333 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6334
6335         * object.c, appdomain.c, class-internals.h: introduce the
6336         MonoClassRuntimeInfo structure to hold the info needed to
6337         use a class at runtime. Made mono_class_vtable() lock-free
6338         for all the appdomains.
6339
6340 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6341
6342         * metadata-internals.h, image.c: introduce a per-image mempool to
6343         be used for memory that has the same lifetime as the image.
6344
6345 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
6346
6347         * domain.c: In mono_init_internal(), instead of selecting the first
6348         runtime version supported by an executable, get a list of all
6349         supported versions and select the one for which an mscorlib exists
6350         (since even if the runtime supports a given version, it doesn't mean
6351         that the framework for that version is installed).
6352         Modified get_runtimes_from_exe to support this behavior.
6353         In supported_runtimes, added information about additional system
6354         assembly versions.
6355         
6356         * assembly.c: Added support for more than one system assembly version
6357         per runtime version. Updated the assembly list.
6358         In mono_assembly_remap_version, removed the initial version check,
6359         since we don't know to which version we need to compare until we
6360         get the version set on which the assembly is based.
6361         Moved the code for loading corlib into the new method
6362         mono_assembly_load_corlib(), so it can be used by the initialization
6363         code.
6364         
6365         * domain-internals.h: Updated data structures and added declaration
6366         for mono_assembly_load_corlib.
6367
6368 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6369
6370         * reflection.c (resolve_object): Fix the creation of the signature in 
6371         the SignatureHelper case.
6372
6373         * assembly.c (mono_assembly_remap_version): Fix binary search.
6374         
6375 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
6376  
6377         * class.c: Added inheritance check when a method is overloaded (from a
6378         virtual method or when implementing an interface) and when a class is
6379         inherited. Added functions to set a failure for a class and to 
6380         retreive the exception from a failure.
6381         * class-internals.h: Added fields to MonoClass to keep the exception
6382         information status for inheritance (or other exceptions) to be thrown
6383         later (i.e. not at load time).
6384         * object.c: Throw the inheritance SecurityException when a type is to 
6385         be created with either class or method inheritance violations.
6386         * reflection.c|h: Fix when getting declsec from a class. Removed 
6387         unrequired code for class. Improved sanity in parameter naming.
6388         * security-manager.c|h: Added functions to check for class and method
6389         inheritance.
6390
6391 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
6392
6393         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6394         and has_finalize in dynamic types as well.
6395
6396 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
6397
6398         * culture-info-table.h : fixed currency format for en-GB (and so on).
6399
6400 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6401
6402         * gc.c: ensure the GC handles never have 0 as a value.
6403
6404 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6405
6406         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6407         a pointer to a struct to unmanaged code. Fixes #72625.
6408
6409 2005-02-16  Martin Baulig  <martin@ximian.com>
6410
6411         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6412
6413 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
6414
6415         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6416
6417 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6418
6419         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6420
6421         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
6422         UnmanagedFunctionPointerAttribute, use it for determining calling convention
6423         etc. Fixes #71471.
6424
6425         * reflection.c (mono_custom_attrs_get_attr): New helper function.
6426
6427         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6428
6429 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6430
6431         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6432         changes to make the current context a field in MonoThread.
6433
6434 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
6435
6436         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6437         the last change.
6438         
6439         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6440         extracted from mono_marshal_get_native_wrapper.
6441
6442         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6443         to create wrappers around native functions.
6444
6445         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
6446         delegates for arbitrary function pointers. Fixes #71472.
6447
6448 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6449
6450         * threads.c: cleaned up the code a little.
6451
6452 2005-02-15  Martin Baulig  <martin@ximian.com>
6453
6454         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6455         the data table.
6456
6457         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6458         allocate larger chunks if needed.
6459
6460 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6461
6462         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6463         in by mistake.
6464
6465 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6466
6467         * domain.c: keep the domains in an array and ensure the domain ids
6468         are kept small, so they can be used as indexes to domain-specific data
6469         with a small memory overhead.
6470
6471 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
6472
6473         * icall.c: Handle byref types in Type icalls. Fixes #72544.
6474
6475 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6476
6477         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6478
6479 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
6480
6481         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6482
6483         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6484         values.
6485
6486         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6487         
6488 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
6489
6490         * domain-internals.h: add the hashtable here.
6491
6492         * class-internals.h: Remove `info' from MonoMethod
6493
6494         * domain.c: Add a new hashtable, jit_trampoline_hash
6495
6496 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6497
6498         * object.c: don't set the value of static fields
6499         (fixes bug#72494).
6500
6501 2005-02-11  Martin Baulig  <martin@ximian.com>
6502
6503         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6504         (mono_debug_add_method): Silently ignore the method if it's too big.
6505         (mono_debug_add_type): Likewise.
6506
6507 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6508
6509         * threads.c, appdomain.c: remove #ifdefs from the code.
6510
6511 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
6512
6513         * metadata-internals.h: Added flags to MonoAssembly to cache the most
6514         common security informations. This allows us to stay in unmanaged code
6515         when doing LinkDemand and it's special cases (except for the first 
6516         time for initialization). The flags a very much used with --security.
6517         * reflection.c|h: Added code to get declarative security attributes 
6518         for LinkDemand and InheritanceDemand. This required to refactor the
6519         existing code for Demand.
6520         * security-manager.c|h: Added new method fields for the special cases
6521         of LinkDemand.
6522
6523 2005-02-10  Martin Baulig  <martin@ximian.com>
6524
6525         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6526         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6527
6528 2005-02-10  Martin Baulig  <martin@ximian.com>
6529
6530         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6531         debugging code; this is almost a complete rewrite.
6532
6533         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6534
6535 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6536
6537         * domain.c, object.h: expose mono_string_equal () and 
6538         mono_string_hash ().
6539         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6540         it's implemented in managed code.
6541
6542 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6543
6544         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6545         lo leak objects between appdomains.
6546
6547 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6548
6549         * assembly.c: old compilers compilation fix from 
6550         robertj@gmx.net (Robert Jordan).
6551
6552 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
6553
6554         * class-internals.h: Little reminder for the future.
6555
6556         * debug-helpers.c: Fix up wrapper_type_names
6557
6558 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6559
6560         * image.c, metadata-internals.h: when loading an image from a file,
6561         mmap all of it and use the same codepaths as when using a
6562         in-memory image: the code is simpler and we use less memory
6563         (both writable and readonly).
6564
6565 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6566
6567         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6568         API to alloc runtime data structures that need to be tracked by the
6569         GC and contain pointers.
6570         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6571         make the code more readable and eventually use a different GC.
6572
6573 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
6574
6575         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6576         for out arguments.
6577         
6578 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
6579
6580         * object.c: In release_type_locks(), don't release the cctor lock
6581         if it has already been released. This fixes a crash in the
6582         thread5 test.
6583
6584 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6585
6586         * gc.c, marshal.c, icall.c: register a delegate for finalization
6587         only when the native function pointer has been allocated for it.
6588
6589 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6590
6591         * object.c: cleaned up some code, allocate objects that are
6592         pointer free with the atomic malloc variant. Allocate memory
6593         for static data from the mempool if it's pointer-free.
6594         Allocate the bounds array at the end of the array data, when needed.
6595         * object-internals.h, object.h: move a private function in a private
6596         header.
6597         * class.c: handle missing case in tracking references in fields.
6598
6599 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6600
6601         * class.c, class-internals.h: keep track if a type has
6602         reference fields in either the instance or static fields.
6603
6604 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
6605
6606         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6607         and renamed to MonoRuntimeInfo. Added fields to store the expected
6608         framework assembly version. Changed mono_get_framework_version and
6609         mono_get_runtime_version for a single mono_get_runtime_info method.
6610         
6611         * assembly.c: Added method to remap system assembly versions to the
6612         current executing runtime version. Removed old mapping code.
6613         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6614         
6615         * icall.c, reflection.c: Track api changes.
6616
6617 2005-02-06  Miguel de Icaza  <miguel@novell.com>
6618
6619         * loader.c (method_from_memberref): Improve error reporting,
6620         produce the class name instead of the typeref/typedef index. 
6621
6622 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
6623
6624         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6625
6626 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6627
6628         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6629         stdcall and charset name mangling.  Reorganize the code and add
6630         some tracing stuff.
6631
6632 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6633
6634         * monodiet.c: More iters!
6635
6636         * marshal.c: Iter usage.
6637
6638         * icall.c: Iter usage.
6639
6640         * object.c: Use iters.
6641
6642         * debug-helpers.c: More iters
6643
6644 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6645
6646         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6647         under win32.
6648
6649 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
6650
6651         * mono-debug-debugger.c: use iters
6652
6653         * class.c, class-internals.h: mono_class_setup_events is static
6654         now
6655
6656         * All callers: use iters
6657
6658 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
6659
6660         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6661         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6662
6663 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6664
6665         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6666
6667         * marshal.h: Add prototypes for ldfld/stfld_remote.
6668
6669         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6670         this is called during startup.
6671         
6672 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6673
6674         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6675         MonoThreadsSync struct private in monitor.c. Changed the way
6676         MonoThreadsSync is allocated so it's faster and there is no
6677         need to keep track of it with a finalizer and it uses less memory.
6678         This also finally allows us to allocate mono objects as ptrfree when
6679         there are no reference fields.
6680
6681 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6682
6683         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6684         disappearing link to the GC interface and use them to simplify
6685         the gchandles code.
6686
6687 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
6688
6689         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6690         stfld_remote which call mono_load/store_field_new. This allows methods
6691         calling ldfld/stfld wrappers to be AOTed.
6692
6693         * console-io.c: Include sys/filio.h under solaris.
6694         
6695         * console-io.c: Include curses.h if needed correctly.
6696
6697 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6698         
6699         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6700         method->klass as well.
6701
6702         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6703
6704         * class.c (mono_class_init): Switch on lazy initialization of 
6705         methods.
6706
6707         * class.c (mono_class_get_finalizer): Handle the case when the 
6708         finalizer is inherited.
6709
6710 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6711
6712         * console-io.c: <curses.h> is needed by term.h on solaris.
6713
6714 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
6715
6716         * icall.c, class-internals.h, monodiet.c, class.c: Remove
6717         mono_class_setup_properties where possible. Remove this ftn from
6718         the header file, and make it static.
6719
6720 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
6721
6722         * loader.c: Add missing setup_... call.
6723
6724         * class.c: Add missing setup_... calls.
6725
6726         * class.c (mono_class_init): Switch on lazy initialization of 
6727         the generic vtable.
6728         
6729         * class.c (mono_class_init): Fix generics broken by the recent changes.
6730
6731         * monodiet.c (handle_type): Add missing setup_... calls.
6732
6733         * class.c: Back out garbage in previous patch.
6734         
6735         * class.c: Add missing setup_... calls.
6736
6737         * class.c (mono_class_get_method_from_name_flags): Avoid calling
6738         mono_class_setup_methods () if possible.
6739
6740         * class-internals.h (MonoClass): Add 'has_cctor' flag.
6741
6742         * class-internals.h (MonoCachedClassInfo): New structure.
6743
6744         * class.c: Initialize properties and events fields of MonoClass lazily.
6745
6746         * class.c: Add infrastructure for lazily initializing the methods and
6747         vtable fields of MonoClass. Not yet used.
6748
6749         * class.c (mono_class_get_finalizer): New helper function.
6750
6751         * class.c: Add infrastructure for loading some class related data from
6752         an AOT file.
6753
6754         * object.c: Add infrastructure for initializing the vtable from data
6755         in the AOT file.
6756
6757         * gc.c (run_finalize): Use mono_class_get_finalizer ().
6758
6759         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6760         appropriate initialization function before accessing parts of the
6761         MonoClass structure.
6762
6763         * marshal.c: Fix warnings.
6764         
6765         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6766
6767         * mono-debug-debugger.c (get_exception_message): Use 
6768         mono_class_get_method_from_name_flags ().
6769
6770 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
6771
6772         * reflection.c, appdomain.c: Replace a few manual searches that
6773         Zoltan missed. (Paolo approved this part of my initial patch).
6774
6775 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6776
6777         * profiler.c: disable recording statistical events at report time.
6778
6779 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6780
6781         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6782         to byteswap arrays of enum values, too (bug #72080).
6783
6784 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
6785
6786         * appdomain.c (set_domain_search_path): Allow this to be called if
6787         domain->setup is not yet set.
6788
6789         * loader.c (mono_method_get_index): New helper function.
6790
6791         * loader.c reflection.c: Use mono_method_get_index ().
6792
6793         * class.c (mono_class_get_method_from_name_flags): New helper method.
6794
6795         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6796         this.
6797
6798         * class.c (mono_class_get_cctor): New helper method.
6799
6800         * string-icalls.c object.c class.c marshal.c reflection.c: Use
6801         mono_class_get_method () to look up methods.
6802
6803 2005-02-01  Miguel de Icaza  <miguel@novell.com>
6804
6805         * console-io.c: Fix the build, this should work on Windows.
6806
6807 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
6808
6809         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6810         be set to null to keep things valid
6811
6812 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6813
6814         * icall.c: added Console 2.0 icalls.
6815         * Makefile.am: added console-io.[ch]
6816         * console-io.[ch]: internal calls for Console 2.0 API.
6817
6818 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6819
6820         * class.c: make sure we consider all the interfaces
6821         when calculating max_interface_id (bug found by
6822         Jeroen Frijters running ikvm).
6823
6824 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
6825
6826         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6827         valuetype fields to null.
6828
6829         * object.c (set_value): Ditto. Fixes #71669.    
6830
6831 2005-01-31  Martin Baulig  <martin@ximian.com>
6832
6833         * metadata.c (mono_metadata_has_generic_params): New public
6834         function; checks whether something is a generic method.
6835
6836 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6837
6838         * appdomain.c: fix infinite recursion when adding assemblies.
6839
6840 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
6841
6842         * object.c: Fix small typo to return all items for Environment.
6843         GetCommandLineArgs.
6844
6845 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6846
6847         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6848         reflection.c: more domain and assembly-unload related fixes
6849         and memory leaks plugs.
6850
6851 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
6852
6853         * 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.
6854
6855 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
6856
6857         * loader.c (mono_method_signature): Make this method lazy
6858         (mono_get_method_from_token): Don't computate the signature here.
6859
6860         Doing this saves quite a bit of memory. I got 90 kb on starting up
6861         monodoc. It should also save some disk reads on startup.
6862
6863         * *: MonoMethod->signature might be NULL now. You *MUST* use
6864         mono_method_signature.
6865
6866 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
6867
6868         * object.c (mono_runtime_get_main_args): Return an array from the
6869         current domain here. Fixes #71938.
6870
6871 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6872
6873         * monitor.c: formatting changes to comply with the
6874         mono coding style and remove #ifdefs from the code.
6875
6876 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6877
6878         * metadata.c, private.h: remove some unneeded data
6879         and use a more compact representation for table schemas.
6880
6881 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6882
6883         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
6884         to get a better distribution in hash tables.
6885         * *.c: use mono_aligned_addr_hash() where appropriate.
6886         * assembly.c: make var static.
6887
6888 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
6889
6890         * domain-internals.h: Put MonoJitInfo on a diet.
6891
6892         * domain.c: Fix a warning.
6893
6894 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6895
6896         * gc.c: rework the gc handles code to reuse handles
6897         when freed.
6898
6899 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6900
6901         * domain.c: fixed long standing bug in mono_string_equal() which
6902         was brought to light with the ldstr changes.
6903
6904 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
6905
6906         * reflection.c: Remove warning by adding missing include for marshal.h
6907
6908 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6909
6910         * domain.c, object.c: change the ldstr_table to hold
6911         MonoString* as keys: makes the runtime isinterned lookup
6912         faster and simplifies memory management.
6913
6914 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
6915  
6916         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
6917         possible to add imperative security checks before calling the icall.
6918         * reflection.c: Return security attributes on the original MonoMethod
6919         (and not the wrapped one). This fix permissions on icalls.
6920
6921 2005-01-25  Dick Porter  <dick@ximian.com>
6922
6923         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
6924         the check for mktime() support actually test the mktime() return
6925         value.  "Fixes" bug 71682, though the output is still different to
6926         MS.
6927
6928 2005-01-25  Martin Baulig  <martin@ximian.com>
6929
6930         * class.c (mono_class_is_assignable_from): Make this work for
6931         generic instances.
6932
6933 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
6934
6935         * marshal.c (mono_string_utf8_to_builder)
6936         (mono_string_builder_to_utf16): We might not have ownership of the
6937         string. In thise case, we need to create a new buffer.
6938
6939         * object-internals.h (mono_stringbuilder_capacity): sb->str might
6940         be null, in which case, use the default capacity.
6941
6942 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6943
6944         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
6945         GC events to the profiler.
6946
6947 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6948
6949         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
6950         if you don't want the GC to run.
6951
6952 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
6953
6954         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
6955         start providing a GC API and keeping different implementations in
6956         their own file.
6957         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
6958
6959 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
6960
6961         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
6962         mmap rather than allocating a huge buffer.
6963         (mono_debug_close_mono_symbol_file): Free the buffer allocated
6964         above.
6965
6966 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
6967
6968         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
6969         and CheckExecutionRights.
6970         * reflection.c|h: Keep the index of the declarative security to be 
6971         used, instead of the pointer, when AOT compiler is used. Also add 
6972         class initialization when requesting demands.
6973         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
6974         CheckExecutionRights. Both properties are now FALSE by default, and
6975         unmodifiable, unless the --security option is used.
6976
6977 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6978
6979         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
6980         reflection.c: properly refcount images and assemblies, many leaks fixed.
6981
6982 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6983
6984         * threadpool.c: increase the timeout for threads in the thread pool to
6985         10s.  Fixes bug #67159.
6986
6987 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
6988
6989         * class-internals.h: Sun's compiler insists on explicit
6990         signed on bit fields to handle then correctly.
6991
6992 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
6993
6994         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
6995         Make the size of the array fit only the number of invalid path
6996         chars that we have.
6997
6998         * class.c (_mono_class_get): Improve the error reporting when a
6999         class referenced is not found, to assist debugging. 
7000
7001 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7002
7003         * threads.c: fix off-by-one error.
7004         * domain.c: free data allocated in the domain.
7005
7006 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7007
7008         * reflection.c (mono_method_body_get_object): Fill out exception info
7009         as well.
7010
7011         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7012         structure.
7013         
7014 2005-01-19  Martin Baulig  <martin@ximian.com>
7015
7016         * loader.c (mono_get_method_constrained): Make this work again.
7017
7018 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7019
7020         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7021         guint16 to match the managed side.
7022
7023         * reflection.c (mono_reflection_body_get_object): Fill out local
7024         variables array.
7025
7026         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7027         as well.
7028
7029         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7030         'local_var_sig_token'.
7031
7032 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7033
7034         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7035         System.Drawing.
7036
7037         * reflection.c (mono_method_body_get_object): Handle abstract and
7038         runtime methods.
7039
7040 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7041
7042         * marshal.c, loader.c, class-internals.h, reflection.c:
7043         store the emthod data for a wrapper in an array instead of a list.
7044
7045 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7046
7047         * marshal.c: change the code to allocate memory more
7048         conservatively for method wrappers.
7049
7050 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7051
7052         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7053         fields from MonoClass to the marshal info structure where they belong.
7054
7055 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7056
7057         * class.c, object.c, class-internals.h, marshal.c: rearrange
7058         some fields and tweak some types to lower memory usage.
7059
7060 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7061
7062         * threads.c (signal_thread_state_change): Handle the case when the
7063         target thread is the current thread.
7064
7065         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7066
7067         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7068         emit_ptr_to_object_conv. 
7069
7070         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7071         marshalling. Fixes #71352.
7072
7073 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7074
7075         * metadata.h, blob.h: move table enum to blob.h so it can be included
7076         in any header.
7077         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7078         cut the size of MonoImage/MonoDynamicImage.
7079
7080 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7081
7082         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7083
7084 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7085
7086         * reflection.c, reflection.h, icall.c: add a function to check
7087         if an attribute type is defined for a metadata object.
7088
7089 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7090
7091         * object-internals.h: Added some needed fields from StringBuilder class.
7092         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7093
7094 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7095
7096         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7097         threads before shutting down the runtime.
7098
7099         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7100
7101 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7102
7103         * object-internal.h, threads.c: implement stacksize and 
7104         parameterized thread start functionality (requires
7105         matching corlib). Marked broken code for later removal.
7106
7107 2005-01-12  Martin Baulig  <martin@ximian.com>
7108
7109         * class-internals.h (MonoGenericClass): Moved the `initialized'
7110         flag to MonoDynamicGenericClass, removed `init_pending'.
7111         (MonoGenericInst): Added `is_reference' flag.
7112
7113 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7114
7115         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7116         inside the MSDOS header. Fixes #71201.
7117
7118         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7119         gc thread.
7120         (mono_domain_finalize): Ditto.
7121
7122 2005-01-12  Martin Baulig  <martin@ximian.com>
7123
7124         * class.c (mono_get_shared_generic_class): Use the cache for
7125         non-dynamic generic classes.
7126
7127         * class-internals.h (mono_class_create_generic_2): Removed
7128         function prototype, this function is now static inside class.c.
7129
7130         * class.c (mono_class_create_generic_2): Made this static, only
7131         call it from mono_class_init() and mono_class_setup_parent().
7132         (collect_implemented_interfaces_aux): Call mono_class_init() on
7133         the interfaces we collect.
7134         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7135
7136 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7137
7138         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7139         it a real thread handle.
7140
7141         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7142         MonoJitExceptionInfo, since each catch clause needs its own variable.
7143         
7144 2005-01-11  Dick Porter  <dick@ximian.com>
7145
7146         * image.c (mono_pe_file_open): New variant on mono_image_open()
7147         that does not set up the CLI metadata; used for FileVersionInfo so
7148         it can get the data for windows binaries too.
7149         
7150         * process.c (process_read_string_block): Don't read off the end of
7151         the StringTable block.
7152
7153         These both fix bug 70766.
7154
7155 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7156
7157         * gc.c: set some fields to NULL at GC cleanup time.
7158         * threads.c: if we quit the main thread, call exit ().
7159
7160 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7161
7162         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7163
7164 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7165
7166         * threads.h, threads.c, object.c: added accessor and settor for
7167         main_thread. Handle it specially when exiting from it: wait
7168         for other foreground threads to exit.
7169
7170 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7171
7172         * process.c, verify.c: remove some bloat.
7173
7174 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7175
7176         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7177         the calling convention to cdecl under win32.
7178
7179 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7180
7181         * object.c (mono_object_get_size): New function to get the size of
7182         an object instance.
7183
7184         * profiler.c (simple_allocation): Use above.
7185
7186 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7187
7188         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7189         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7190         get an appdomain by it's id and we can't assume the root's id is 0).
7191         * domain-internals.h: Change the function prototype to match.
7192         * icall.c: Change the icall table for AppDomain.
7193
7194 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7195
7196         * locales.c (string_invariant_compare_char): Only compute
7197         GUnicodeTypes in the case where we need them.  Test for ordinality
7198         first and return if so.
7199
7200         From the commit:
7201
7202                 /*
7203                  * FIXME: here we must use the information from c1type and c2type
7204                  * to find out the proper collation, even on the InvariantCulture, the
7205                  * sorting is not done by computing the unicode values, but their
7206                  * actual sort order.
7207                  */
7208
7209 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7210
7211         * loader.c: for P/Invoke methods, allow the "Internal" shared
7212         library name to refer to the calling process symbol namespace.
7213
7214 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7215
7216         * Makefile.am: Add the security manager to the build.
7217         * security-manager.c|h: New. Initialization of the security manager.
7218
7219 2005-01-07  Dick Porter  <dick@ximian.com>
7220
7221         * threads.c: 
7222         * monitor.c: Update thread state during Monitor and WaitHandle
7223         waits.  Fixes bug 71031.
7224
7225 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
7226
7227         * reflection.c (property_encode_signature): Correctly handle when the
7228         property has no methods.
7229
7230 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
7231
7232         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
7233         
7234         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
7235         fields from mb, not rmb. Fixes #71017.
7236
7237         * marshal.c (emit_ptr_to_str_conv): Add support for 
7238         ByValTStr -> string conversion. Fixes #71015.
7239
7240         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
7241
7242         * mempool.c (mono_mempool_contains_addr): New helper function.
7243
7244 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7245
7246         * metadata.c (mono_metadata_compute_size): Fix size calculation of
7247         HasSematics encoded fields.
7248         
7249         * metadata.c (mono_type_to_unmanaged): Improve error message for 
7250         invalid string marshalling.
7251
7252         * metadata.c: Fix warnings.
7253         
7254 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7255
7256         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7257         profiler support.
7258
7259 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
7260
7261         * domain.c object.c domain-internals.h: Revert part of r38077 since the
7262         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7263         tests.
7264
7265 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
7266
7267         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7268         so methods containing these can be AOTed.
7269
7270 2005-01-03  Martin Baulig  <martin@ximian.com>
7271
7272         * loader.c (find_method): Removed the hack for generic instances.
7273         (method_from_memberref): If our parent is a generic instance, pass
7274         its generic type definition to find_method() and then inflate the
7275         method.
7276         (mono_get_method_constrained): Pass the generic type definition to
7277         find_method() and inflate the method later.
7278
7279         * class-internals.h (MonoStats): Added `generic_class_count'.
7280
7281         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7282         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7283
7284         * reflection.c (mono_custom_attrs_from_params): Don't ignore
7285         generic type definitions.
7286
7287 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
7288
7289         * loader.c icall.c: Fix warnings.
7290
7291 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
7292
7293         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7294         blittable types. Fixes #70864.
7295
7296 2004-12-29  Martin Baulig  <martin@ximian.com>
7297
7298         * icall.c
7299         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7300
7301         * reflection.c (mono_method_get_object): Create a
7302         "System.Reflection.MonoGenericMethod" for inflated methods; don't
7303         call mono_get_inflated_method().
7304
7305         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7306
7307 2004-12-27  Martin Baulig  <martin@ximian.com>
7308
7309         * class-internals.h (MonoMethod): Added `is_inflated' flag.
7310         (MonoMethodInflated): Added `inflated' field.
7311
7312         * class.c (mono_class_inflate_generic_method): Don't really
7313         inflate the method here; just set the `is_inflated' flag in the
7314         MonoMethod.
7315         (mono_class_get_inflated_method): Actually inflate the method here
7316         if it's not already inflated; we use the MonoMethodInflated's new
7317         `inflated' field as a cache.
7318
7319 2004-12-26  Martin Baulig  <martin@ximian.com>
7320
7321         * class.c
7322         (inflate_generic_class): Moved some code out of inflate_generic_type().
7323         (mono_class_inflate_generic_method): If we're already inflated,
7324         inflate the context and use the declaring method; ie. make sure
7325         the declaring method of an inflated method is always the generic
7326         method definition.
7327         (mono_class_create_from_typedef): Create
7328         `class->generic_container->context->gclass'.
7329
7330 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
7331
7332         * metadata-internals.h, marshal.c, reflection.c: More
7333         MonoGHashTable->GHashTable.
7334
7335         * domain-internals.h, class.c: Change MonoGHashTable's into
7336         GHashTables for some cases where no gc stuff is used
7337
7338         All users: update apis
7339
7340 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7341
7342         * metadata.c (builtin_types): Make this `const'. Makes this get
7343         put into the shareable section.
7344         (mono_metadata_init): Casts to make gcc happy.
7345
7346 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
7347
7348         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7349
7350 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
7351
7352         * icall.c: Added an internal call to retrieve the position and length
7353         of assembly-level declarative security attributes (RequestMinimum, 
7354         RequestOptional and RequestRefuse). This is used by the Assembly class
7355         to re-create the corresponding permission sets.
7356
7357 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7358
7359         * marshal.c: fix the stelemref wrapper to be type correct
7360         (and faster).
7361
7362 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
7363
7364         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7365         to do key & 0x7fffffff. Hashtable already does this. It just
7366         results in longer code.
7367
7368 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
7369
7370         * appdomain.c: Bump corlib version.
7371         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7372         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7373         * reflection.c|h: Add functions to get declarative security infos
7374         (blob position and length) for assemblies, classes and methods.
7375
7376 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7377
7378         * reflection.c: sort the constant table (bug #70693).
7379
7380 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7381
7382         * object-internals.h, threads.c, domain.c: add accessors for
7383         the MonoThread and MonoDomain tls keys.
7384
7385 2004-12-18  Martin Baulig  <martin@ximian.com>
7386
7387         * class.c (inflate_generic_type): If we're inflating a generic
7388         instance, set `ngclass->context->container = context->container';
7389         ie. the container we inflated into.
7390
7391         * metadata.c (mono_metadata_parse_generic_param): Reflect above
7392         inflate_generic_type() changes.
7393
7394 2004-12-17  Martin Baulig  <martin@ximian.com>
7395
7396         * class-internals.h
7397         (MonoGenericClass): Replaced `MonoType *generic_type' with
7398         `MonoClass *generic_class'.  Removed `dynamic_info'; if
7399         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7400         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7401
7402 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
7403
7404         * exception.c (mono_exception_from_token): New helper function.
7405
7406 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
7407
7408         * assembly.c (mono_assembly_load_with_partial_name): Call 
7409         mono_assembly_loaded before invoking the preload hooks. Fixes
7410         #70564.
7411
7412         * object-internals.h (MonoThread): Change culture_info and 
7413         ui_culture_info into an array.
7414
7415         * threads.c: Cache culture info objects from more than one appdomain.
7416
7417         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
7418         current UI culture.
7419
7420 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
7421
7422         * threads.h threads.c appdomain.c: Clear the culture_info field of
7423         all threads during unloading if they point to an object in the dying
7424         appdomain.
7425
7426 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
7427
7428         * culture-info.h (TextInfoEntry): New struct
7429         * object-internals.h: sync with managed
7430         * locales.c: fill the `text_info_data' field
7431         * culture-info-tables.h: update
7432
7433 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7434
7435         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7436         collector.
7437
7438 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
7439
7440         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7441         (ves_icall_ModuleBuilder_getMethodToken): Ditto
7442
7443 2004-12-12  Martin Baulig  <martin@ximian.com>
7444
7445         * mono-debug-debugger.c (write_type): If we're an enum and the
7446         builtin types have already been initialized, call mono_class_init().
7447
7448 2004-12-11  Martin Baulig  <martin@ximian.com>
7449
7450         * metadata.c (mono_metadata_load_generic_params): Added
7451         `MonoGenericContainer *parent_container' argument; automatically
7452         compute `container->is_method'; pass the correct owner to
7453         get_constraints().      
7454
7455         * reflection.c (compare_genericparam): Sort the GenericParam table
7456         according to increasing owners. 
7457
7458 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7459
7460         * profiler.c: allow disabling the default profiler.
7461
7462 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7463
7464         * decimal.c, icall.c: allow disabling System.Decimal support.
7465
7466 2004-12-09  Marek Safar <marek.safar@seznam.cz>
7467
7468         * reflection.c: Add support for null attribute arguments.
7469
7470 2004-12-09  Martin Baulig  <martin@ximian.com>
7471
7472         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7473         names to get rid of compiler warnings.
7474
7475 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7476
7477         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
7478         mono_marshal_load_type_info (). Fixes #69625.
7479         (mono_marshal_get_ptr_to_struct): Likewise.
7480
7481 2004-12-08  Martin Baulig  <martin@ximian.com>
7482
7483         * mono-debug.h: Bumped version number to 47.
7484
7485         * mono-debug-debugger.c
7486         (mono_debugger_event_handler, mono_debugger_event): Take two
7487         guint64 arguments insteed of a gpointer and a guint32.  
7488
7489 2004-12-08  Martin Baulig  <martin@ximian.com>
7490
7491         * debug-mono-symfile.h
7492         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7493         `address' to `native_offset'.
7494
7495 2004-12-08  Martin Baulig  <martin@ximian.com>
7496
7497         * class.c (mono_class_create_from_typespec): Only inflate if we
7498         either have `context->gclass' or `context->gmethod'.
7499
7500 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
7501
7502         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7503
7504         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7505
7506         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7507
7508         * reflection.c (mono_assembly_get_object): Remove the workaround put
7509         in for the release.
7510         
7511         * appdomain.c: Use the corlib_internal field from MonoAssembly.
7512
7513         * appdomain.c: Bump corlib version.
7514
7515         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7516         be visible in other appdomains.
7517
7518 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
7519
7520         * threads.c: Interlocked inc and dec for longs were messed up,
7521         use a KISS based impl for this. Fixes 70234
7522
7523 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
7524
7525         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7526
7527 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7528
7529         * icall.c: fix to follow policy not to allow struct
7530         arguments in icalls.
7531
7532 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7533
7534         * process.c: make the patch that handles spaces in file paths work
7535         on mono/windows too.
7536
7537 2004-12-06  Martin Baulig  <martin@ximian.com>
7538
7539         * class.c (mono_class_create_generic): Call
7540         mono_class_setup_supertypes() if we're dynamic.
7541         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7542
7543 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
7544
7545         * object-internals.h: Add new fields to MonoThread.
7546
7547         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7548
7549         * icall.c threads-types.h threads.c: Add new icalls.
7550
7551         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7552
7553         * object-internals.h (MonoReflectionAssembly): Sync object layout with
7554         managed side.
7555
7556         * appdomain.c: Bump corlib version.
7557
7558         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7559         internal assemblies. Fixes #69181.
7560
7561 2004-12-05  Martin Baulig  <martin@ximian.com>
7562
7563         * class.c (mono_class_inflate_generic_signature): Make this a
7564         no-op if `context' is NULL or we don't have any type parameters;
7565         also copy `sentinelpos'.        
7566
7567 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
7568
7569         * image.c: Add unbox_wrapper_cache.
7570
7571         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7572
7573         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7574         function generator.
7575         
7576         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7577         Fixes #70173.
7578
7579         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7580         
7581 2004-12-04  Martin Baulig  <martin@ximian.com>
7582
7583         * loader.c (mono_method_get_signature_full): New public function;
7584         like mono_method_get_signature(), but with an additional
7585         `MonoGenericContext *' argument.
7586
7587         * class.c (mono_class_inflate_generic_signature): Formerly known
7588         as inflate_generic_signature(); make this public.
7589
7590 2004-12-04  Martin Baulig  <martin@ximian.com>
7591
7592         * metadata.c
7593         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7594         instead of a `MonoGenericContainer *'.  
7595         (mono_metadata_parse_array_full): Likewise.
7596         (mono_metadata_parse_signature_full): Likewise.
7597         (mono_metadata_parse_method_signature_full): Likewise.
7598         (mono_metadata_parse_generic_inst): Likewise.
7599         (mono_metadata_parse_generic_param): Likewise.
7600         (mono_metadata_parse_mh_full): Likewise.
7601         (mono_type_create_from_typespec_full): Likewise.
7602
7603 2004-12-03  Martin Baulig  <martin@ximian.com>
7604
7605         * class-internals.h (MonoGenericContainer): Replaced the
7606         `MonoGenericContext * pointer with a `MonoGenericContext'
7607         structure and made it the first element.
7608
7609 2004-12-03  Martin Baulig  <martin@ximian.com>
7610
7611         * class.c
7612         (inflate_generic_type): Set the `context->container' when creating
7613         a new MonoGenericContext.
7614         (mono_class_inflate_generic_method): Likewise.
7615         (mono_class_create_from_typespec): Just use `context->container'
7616         to get the container.
7617
7618         * loader.c (method_from_methodspec): Set `context->parent' from
7619         `context->container' - and if that's a method container, use its
7620         parent.  Also set the `context->container' when creating a new
7621         MonoGenericContext.
7622         (mono_get_method_from_token): Use just `context->container' to get
7623         the container.
7624
7625         * metadata.c (do_mono_metadata_parse_generic_class): Also set
7626         `gclass->context->container'.
7627
7628         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7629         the `context->container' when creating a new MonoGenericContext.
7630
7631 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
7632
7633         * reflection.c (compare_genericparam): Sort params with identical
7634         owner by their number. Fixes gen-111 on sparc.
7635
7636 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7637
7638         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7639         around the domain changes.
7640
7641         * appdomain.c (mono_domain_unload): Handle the case when the thread
7642         calling Unload is itself being aborted during unloading. Fixes #70022.
7643
7644         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7645
7646         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
7647         checkpoint_func as an icall so it gets a wrapper.
7648         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7649         in the cross-appdomain wrappers too.
7650
7651         * threads.c (mono_thread_has_appdomain_ref): Make this public.
7652
7653         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7654
7655         * reflection.c: Fix some memory leaks.
7656         
7657 2004-12-02  Martin Baulig  <martin@ximian.com>
7658
7659         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7660
7661         * metadata.c (generic_class_cache): New static hashtable.
7662         (mono_metadata_lookup_generic_class): New public method.
7663
7664 2004-12-02  Martin Baulig  <martin@ximian.com>
7665
7666         * class.c (mono_class_create_from_typedef): Call
7667         mono_class_setup_parent() and mono_class_create_mono_type() before
7668         parsing the interfaces.
7669
7670 2004-12-02  Martin Baulig  <martin@ximian.com>
7671
7672         * metadata.c (generic_inst_cache): New static hashtable.
7673         (mono_metadata_lookup_generic_inst): New public function.
7674         (mono_metadata_inflate_generic_inst): New public function.
7675         (mono_metadata_parse_generic_inst): New public function.
7676         (do_mono_metadata_parse_generic_class): Use the new
7677         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7678         since this'll also use the cache.
7679
7680         * reflection.c (mono_reflection_bind_generic_method_parameters):
7681         Use mono_metadata_lookup_generic_inst() to use the new cache.
7682
7683         * class.c (inflate_mono_type): Use
7684         mono_metadata_inflate_generic_inst() to inflate a generic
7685         instance; this'll also use the new cache.
7686
7687         * loader.c (method_from_methodspec): Use
7688         mono_metadata_parse_generic_inst() and
7689         mono_metadata_inflate_generic_inst() rather than parsing it
7690         manually, so we can use the new cache.
7691
7692 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
7693
7694         * threads.c (wait_for_tids): Do not incorrectly free threads when 
7695         the wait times out.
7696
7697 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7698
7699         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7700         iter->args based on whether parameters are passed in registers (i.e.
7701         MONO_ARCH_REGPARMS is defined)
7702
7703 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
7704
7705         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7706         the exception message. Fixes #70070.
7707         (method_from_methodspec): Fix warnings.
7708
7709 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7710
7711         * process.c: (complete_path) return the path quoted
7712
7713 2004-12-01  Martin Baulig  <martin@ximian.com>
7714
7715         * class-internals.h (MonoGenericInst): New structure.
7716         (MonoGenericClass): Replaced `type_argc', `type_argv' and
7717         `is_open' with `MonoGenericInst *inst'.
7718         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7719         `is_open' with `MonoGenericInst *inst'.
7720
7721 2004-11-30  Martin Baulig  <martin@ximian.com>
7722
7723         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7724
7725         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7726         to `generic_class_cache'.
7727
7728         * metadata.c
7729         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7730         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7731         (mono_generic_inst_is_valuetype): Renamed to
7732         mono_generic_class_is_valuetype().
7733
7734         * class-internals.h
7735         (MonoGenericInst): Renamed to MonoGenericClass.
7736         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7737         (MonoClass): Renamed `generic_inst' to `generic_class'.
7738         (MonoGenericContext): Renamed `ginst' to `gclass'.
7739
7740         * object-internals.h
7741         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7742
7743         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7744         mono_reflection_generic_class_initialize().
7745
7746         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7747         now known as "System.Reflection.MonoGenericClass".
7748         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7749
7750 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
7751
7752         * class-internals.h: Added a flag field to MonoClass to cache the
7753         declarative security attributes actions associated with the class.
7754         * domain-internals.h: Added booleans to MonoJitInfo to cache the
7755         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7756         applicable to the JITted method.
7757         * reflection.c|h: Added functions to extract (as flags) which security
7758         actions are available (declaratively) for a method, class or assembly.
7759         * metadata.c|h: Added functions to search the declarative security
7760         table in the metadata.
7761         
7762 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
7763
7764         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7765         EXPORTEDTYPES are already in the class name cache, so there is no
7766         need to add extra code here to look at them. Just removes a bit of
7767         cruft.
7768
7769         (ves_icall_System_Environment_get_TickCount): No need for #if
7770         WINDOWS. We already have the code in io-layer.
7771
7772 2004-11-28  Martin Baulig  <martin@ximian.com>
7773
7774         * loader.c
7775         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7776         Fixes gen-112.cs.
7777
7778 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
7779
7780         * assembly.c (do_mono_assembly_open): Instead of having a
7781         conditional WITH_BUNDLE, incorporate support for bundles here, by
7782         having a global `bundles' variable holding a pointer to the actual
7783         bundles. 
7784
7785         (mono_register_bundled_assemblies): New API call used by the
7786         bundle code. 
7787
7788         See mkbundle.1 for details.
7789         
7790 2004-11-27  Martin Baulig  <martin@ximian.com>
7791
7792         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7793         the vtable for generic methods.
7794
7795 2004-11-26  Martin Baulig  <martin@ximian.com>
7796
7797         * metadata.c
7798         (mono_metadata_generic_method_hash): New public function.
7799         (mono_metadata_generic_method_equal): Likewise.
7800
7801         * class-internals.h
7802         (MonoGenericContainer): Added `GHashTable *method_hash'.
7803
7804         * reflection.c (ReflectionMethodBuilder): Added
7805         `MonoGenericContainer *generic_container'.
7806         (reflection_methodbuilder_to_mono_method): Don't create a new
7807         MonoGenericContainer each time we're called.
7808         (mono_reflection_bind_generic_method_parameters): Use
7809         `container->method_hash' to cache the results so we don't create a
7810         different method if we're called several times with the same
7811         arguments.
7812
7813         * loader.c (method_from_methodspec): Use the new
7814         `container->method_hash' here, too.
7815
7816 2004-11-26  Martin Baulig  <martin@ximian.com>
7817
7818         * class.c (inflate_generic_signature): Correctly compute
7819         `res->has_type_parameters'.
7820         (mono_class_vtable): Use the `has_type_parameters' flag to
7821         determine whether we're a generic method.
7822
7823         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7824
7825 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
7826
7827         * object.c (mono_runtime_run_main): Fix a small memory leak.
7828
7829 2004-11-25  Martin Baulig  <martin@ximian.com>
7830
7831         * class.c (set_generic_param_owner): Fixed the loop.
7832
7833 2004-11-25  Martin Baulig  <martin@ximian.com>
7834
7835         * object.c (mono_class_vtable): Don't create any JIT wrappers for
7836         generic methods.
7837
7838 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
7839
7840         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7841         names. Fixes #69787.
7842
7843 2004-11-24  Martin Baulig  <martin@ximian.com>
7844
7845         * class.c (mono_class_create_generic_2): If we don't have a
7846         `ginst->parent', inflate `gklass->parent' to get our parent.
7847
7848 2004-11-24  Martin Baulig  <martin@ximian.com>
7849
7850         * reflection.c (compare_genericparam): Correctly sort the
7851         GenericParam table; fixes #69779.
7852
7853 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
7854
7855         * reflection.c: When writing a PE file, don't create a huge
7856         buffer in memory. Just write the arrays we have to the file.
7857         This reduces memory usage.
7858
7859         * metadata-internals.h: MonoDynamicStream pefile is no longer used
7860         globally.
7861
7862 2004-11-17  Martin Baulig  <martin@ximian.com>
7863
7864         * class.c (mono_class_init): Don't setup `class->parent' for
7865         dynamic instances; moved this to mono_class_generic_2().
7866         (mono_class_create_generic): Also set `klass->inited' for dynamic
7867         generic instances.
7868         (mono_class_create_generic_2): Don't do anything for dynamic
7869         generic instances.  Set `klass->parent' here and also call
7870         mono_class_setup_parent() here. 
7871
7872         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7873         `MonoType *parent' argument; set `ginst->parent' before calling
7874         mono_class_create_generic_2(), so we set the correct parent.
7875
7876 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7877
7878         * reflection.c: allow getting attributes from ModuleBuilder
7879         (used by ikvm).
7880
7881 2004-11-17  Martin Baulig  <martin@ximian.com>
7882
7883         * class.c (mono_class_create_from_typedef): If a type parameter is
7884         inherited from an outer class, set its owner to that class.
7885
7886 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
7887
7888         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
7889           for (int*) written size. This fixes bug #69592.
7890
7891 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
7892
7893         * icall.c: Added IsAuthenticodePresnet internal call.
7894         * image.c|h: New function that check a MonoImage for an Authenticode
7895         signature in the certificate PE data directory.
7896         * security.c|h: New internal call to ask the runtime if an 
7897         Authenticode signature seems referenced in the PE header.
7898
7899 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
7900
7901         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
7902
7903         * reflection.c (mono_image_create_pefile): Free the assembly streams
7904         after writing out the assembly file.
7905
7906         * object.c (mono_runtime_run_main): Fix small memory leak.
7907
7908         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
7909         property access modifiers. Fixes #69389.
7910
7911 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7912
7913         * domain.c, object.c, object-internals.h, domain-internals.h,
7914         object.h, marshal.c: keep dynamic code info per domain.
7915
7916 2004-11-15  Martin Baulig  <martin@ximian.com>
7917
7918         * class.c (mono_type_get_name_recurse): Put type arguments in
7919         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
7920         see bug #68387.
7921
7922 2004-11-15  Martin Baulig  <martin@ximian.com>
7923
7924         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
7925         (mono_class_setup_vtable): When computing `the_cname' for a
7926         generic instance, don't include the namespace since we'd otherwise
7927         add it twice.
7928
7929 2004-11-15  Martin Baulig  <martin@ximian.com>
7930
7931         * class.c (mono_class_create_generic): Changed return type to void.
7932         (mono_class_create_generic_2): New public function; setup
7933         `class->method', `class->field' and `class->interfaces' here
7934         instead of in mono_class_init().
7935
7936         * class.h (mono_class_create_generic): Moved to class-internals.h.
7937
7938 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
7939
7940         * reflection.c (mono_image_create_pefile): take a file HANDLE.
7941         rather than writing to memory, write to this file. Right now,
7942         we are just writting into a buffer, and copying that. However
7943         we can avoid the buffer later.
7944
7945         (mono_dynamic_stream_reset): new function
7946
7947         * icall.c, object-internals.h: update for the above.
7948
7949 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
7950
7951         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
7952         have been using gc'd memory. First it is slower, unlikely
7953         the comment in the source code said, secondly, it increases
7954         our footprint to do it in the gc.
7955
7956         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
7957         the method so that it does not have to copy to managed code.
7958
7959 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
7960
7961         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
7962
7963 2004-11-12  Martin Baulig  <martin@localhost>
7964
7965         * reflection.c (mono_image_create_token): Allow generic method
7966         definitions here, since they may appear in an `.override'; see
7967         gen-98/gen-99 for an example.
7968
7969 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
7970
7971         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
7972         #69365.
7973
7974         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
7975         descriptive.
7976
7977 2004-11-11  Martin Baulig  <martin@ximian.com>
7978
7979         * class.c (mono_class_setup_vtable): In an explicit interface
7980         implementation, the method name now includes the arity.
7981
7982 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
7983
7984         * object.c (mono_array_full_copy): Fix warning.
7985
7986 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
7987
7988         * appdomain.c: Removed look_for_method_by_name(). Use the new method
7989         mono_class_get_method_from_name() instead.
7990         
7991         * class-internals.h: Added two new types of wrappers. 
7992         Added MonoRemotingTarget enum. Added new trampoline function type, which
7993         takes an additional MonoRemotingTarget value as parameter, so it is
7994         possible to request a trampoline for a specific target.
7995         
7996         * class.c: Added new mono_class_get_method_from_name() method.
7997         
7998         * class.h: In MonoRemoteClass, we can have now to vtables, one for
7999         general remoting sinks and one specific for cross domain calls.
8000         
8001         * debug-helpers.c: Added new wrapper names.
8002         
8003         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8004         of a remote class.
8005         
8006         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8007         
8008         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8009         with several other methods (mono_marshal_get_xappdomain_dispatch,
8010         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8011         and others) can generate a fast remoting wrapper for cross domain calls.
8012         More information can be found in docs/remoting.
8013         Other changes: Removed mono_find_method_by_name, and used
8014         mono_class_get_method_from_name instead.
8015         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8016         is stored in the remoting invoke hashtable.
8017         
8018         * marshal.h: published the new method for getting the xdomain wrapper,
8019         and also added a method for getting the adequate wrapper for a given
8020         method and target.
8021         
8022         * object-internals.h, object.c: Added a couple of methods for capying and
8023         cloning arrays.
8024         Modified mono_install_remoting_trampoline, which takes the new remoting
8025         trampoline that has a remoting target as parameter.
8026         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8027         will return the most suitable vtable for the target.
8028         Added mono_remote_class_vtable, which returns the vtable of a remote class
8029         (which can be the normal remoting vtable or the xdomain vtable).
8030         
8031         * threads.c: the xdomain invoke and dispatch wrappers must also be
8032         protected against interruptions.
8033
8034 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8035
8036         * icall.c: use memmove in BlockCopyInternal when the source and
8037         destination arrays are the same.
8038
8039 2004-11-09  Martin Baulig  <martin@ximian.com>
8040
8041         * class-internals.h (MonoGenericContainer): Removed `method' and
8042         `signature', replaced them with `is_method' and `is_signature'
8043         flags.  Added `context'.
8044
8045         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8046         instead of a `MonoGenericContainer *'.
8047
8048         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8049         for dynamic type parameters.
8050         (mono_metadata_load_generic_params): Setup `container->context'.
8051
8052         * reflection.c (mono_reflection_setup_generic_class): Setup
8053         `tb->generic_container->context'.
8054         (do_mono_reflection_bind_generic_parameters): Use
8055         mono_class_inflate_generic_type() to correctly inflate types,
8056         rather than using our own hack just for MONO_TYPE_VAR.
8057
8058 2004-11-09  Martin Baulig  <martin@ximian.com>
8059
8060         * class.c (mono_class_inflate_generic_method): Small fix; don't
8061         crash here.
8062
8063         * icall.c
8064         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8065         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8066         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8067         (ves_icall_Type_BindGenericParameters): Likewise.
8068         (ves_icall_Type_get_IsGenericInstance): Likewise.
8069         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8070         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8071         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8072         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8073
8074 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8075
8076         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8077         assembly versions and public key tokens. Fixes #69113.
8078
8079 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8080
8081         * metadata.c: fix bug introduced with the type cache changes
8082         on 2004-11-06.
8083
8084 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8085
8086         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8087         the MonoClass pointer instead of the token in exception clauses.
8088         * reflection.c: updates for the above and make the code not depend
8089         on the structure of MonoExceptionClause.
8090
8091 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8092
8093         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8094         Add support for dynamic assemblies. Fixes #69114.
8095
8096         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8097
8098 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8099
8100         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8101         since most only those methods use it. the code member of
8102         MonoMethodPInvoke was dead, so that can be removed too. Also,
8103         remove inline_count (again, not used), and move slot so that it
8104         can share bits with some other flags. This saves 8 bytes in the
8105         structure and gives us about 50 kb back for mcs helloworld.cs
8106
8107         * *.[ch]: Do naming changes for the above.
8108
8109         * loader.c (mono_method_get_header): Lazily init the header
8110         on first access.
8111         (mono_get_method_from_token): don't init the header here
8112         (mono_free_method): the header may never be allocated
8113
8114         Overall, this saves 150 kb of unmanaged allocations
8115         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8116         memory at runtime.
8117         
8118         * loader.c, loader.h (mono_method_get_header): new accessor.
8119
8120         * *.[ch]: use the above method. Prepares us to lazily load
8121         the header.
8122
8123         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8124         three warnings, which are actual bugs (see 69206).
8125
8126         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8127         unused. Saves a cool 4 bytes / method.
8128
8129 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8130
8131         * metadata.c (builtin_types): Add types for System.Object here.
8132         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8133         for a class or valuetype from klass->this_arg or klass->byval_arg.
8134
8135         On mcs for a hello world, this gets us down from 21836 MonoType's
8136         to 14560.
8137
8138         (mono_metadata_free_type): Account for the above change.
8139
8140 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8141
8142         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8143         exception instead of asserting if name is null.
8144         (ves_icall_System_AppDomain_GetData): Ditto.
8145
8146 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8147
8148         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8149         EnumBuilder.
8150
8151         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8152         Return NULL when the domain does not have entry_assembly set.
8153
8154         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8155         Add a 'resource_modules' argument.
8156         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8157
8158         * reflection.c (mono_reflection_create_runtime_class): Move setting
8159         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8160         for enums too.
8161
8162         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8163         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8164         Throw an ArgumentNullException if 'ptr' is null.
8165
8166         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8167         assemblies here. Fixes #69020.
8168
8169 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8170
8171         * reflection.c (build_compressed_metadata): Fix the previous patch for
8172         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8173         the stack.
8174
8175 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8176
8177         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8178         the cultures is false. Fixes #69090.
8179
8180         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8181         detected by valgrind.
8182         
8183         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8184         TypeResolve multiple times for the same type. Fixes #65577.
8185
8186 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8187
8188         * marshal.c: Avoid using ldftn to call managed functions. It is
8189         much slower than just a call.
8190
8191         * reflection.c (mono_module_get_object): free the basename we
8192         allocate here from glib.
8193         
8194         * reflection.c (ensure_runtime_vtable): make sure to free
8195         overrides.  Also, we were allocating an array of MonoMethod not an
8196         array of MonoMethod*.
8197
8198         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8199
8200         * image.c (mono_image_close): free image->guid here.
8201
8202 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8203
8204         * reflection.c: Fix some spec conformance issues with the PE file
8205         structures so mcs compiled apps run on the Net 2.0 beta.
8206
8207 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8208
8209         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8210         Implement this. Fixes #67264.
8211
8212         * debug-helpers.h debug-helpers.c marshal.c: Move 
8213         mono_find_method_by_name to debug-helpers.c.
8214
8215 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8216
8217         * object.c (mono_release_type_locks): type_initialization_hash is
8218         a GHashTable.
8219
8220         * reflection.c object.c object-internals.h: Fix warnings.
8221
8222         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
8223         without accessors. Fixes #61561.
8224
8225         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
8226         application base from the root domain if not set. Fixes #65641.
8227         (mono_runtime_init): Fix warning.
8228
8229 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8230
8231         * appdomain.c: call mono_thread_pool_init.
8232         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
8233         of worker threads based on the number of CPUs and the environment
8234         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
8235         for non-windows (windows) systems.
8236
8237 2004-10-27  Chris Toshok  <toshok@ximian.com>
8238
8239         * mono-debug-debugger.c (write_class): don't call mono_class_init
8240         here, as even with the check for (!klass->init_pending), we get
8241         into a situation where we're hitting cycles in class
8242         initialization.  Fixes #68816.
8243
8244 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
8245
8246         * image.c: Avoid overwriting values in the loaded_images_hash when an
8247         assembly is loaded multiple times. Fixes #61152.
8248
8249         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
8250         so multiple satellite assemblies for the same name can be loaded.
8251         Fixes #68259.
8252
8253         * mono_domain_assembly_preload: Actually return the loaded assembly, 
8254         not NULL.
8255
8256         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
8257         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8258
8259         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8260         pending finalizers are not invoked after the appdomain has been 
8261         unloaded. Fixes #67862.
8262
8263 2004-10-22  Martin Baulig  <martin@ximian.com>
8264
8265         * mono-debug-debugger.c
8266         (mono_debugger_runtime_invoke): Don't box valuetypes.
8267
8268 2004-10-22  Chris Toshok  <toshok@ximian.com>
8269
8270         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8271         don't hide private methods.
8272
8273 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
8274
8275         * icall.c: Allows the runtime to "share" (when known) the public key
8276         token of an assembly. This avoid the need to recalculate the token 
8277         (from the public key) in managed code.
8278
8279 2004-10-21  Chris Toshok  <toshok@ximian.com>
8280
8281         * debug-helpers.c (append_class_name): argh, revert last patch.
8282         
8283 2004-10-21  Chris Toshok  <toshok@ximian.com>
8284
8285         * debug-helpers.c (append_class_name): use '+' as the delimiter,
8286         not '/', so that it matches what the debugger uses to look up
8287         methods.
8288
8289 2004-10-21  Martin Baulig  <martin@ximian.com>
8290
8291         * mono-debug-debugger.c (mono_debugger_throw_exception): New
8292         public method; this is called each time an exception is thrown and
8293         allows the debugger to use exception catch points.
8294
8295 2004-10-21  Martin Baulig  <martin@ximian.com>
8296
8297         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8298         the stack pointer and the exception object in some struct and pass
8299         that to the debugger.
8300
8301 2004-10-21  Chris Toshok  <toshok@ximian.com>
8302
8303         * mono-debug-debugger.c (do_write_class): add instance/static
8304         event support.  We don't expose "raise" or "other" yet.
8305         (event_is_static): new method.
8306
8307 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
8308
8309         * mono-debug-debugger.c
8310         (mono_debugger_handle_exception): Remove
8311         bogus return value for fussy compilers.
8312
8313 2004-10-20  Martin Baulig  <martin@ximian.com>
8314
8315         * mono-debug-debugger.c
8316         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8317         (mono_debugger_handled_exception): Likewise.
8318
8319 2004-10-20  Martin Baulig  <martin@ximian.com>
8320
8321         * mono-debug-debugger.h (MonoDebuggerEvent): Added
8322         MONO_DEBUGGER_EVENT_EXCEPTION.
8323
8324         * mono-debug-debugger.c (mono_debugger_handle_exception): New
8325         public function to send the debugger a notification for an
8326         exception and inform it about a catch/finally clause.
8327
8328 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
8329
8330         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8331         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8332         fix 2.95 build. 
8333
8334         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8335
8336 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
8337
8338         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8339         marshalled as [In,Out]. Fixes #58325.
8340
8341 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
8342
8343         * reflection.c (mono_method_body_get_object): Implement some fields.
8344
8345 2004-10-12  Martin Baulig  <martin@ximian.com>
8346
8347         * reflection.c (mono_reflection_bind_generic_parameters): Small
8348         fix, correctly retrieve our parent from a generic instance.
8349
8350 2004-10-12  Martin Baulig  <martin@ximian.com>
8351
8352         * metadata.c (mono_metadata_generic_param_equal): We always have
8353         an owner.
8354
8355         * class.c
8356         (mono_class_from_generic_parameter): We need to have an owner.
8357         (my_mono_class_from_generic_parameter): Likewise.
8358
8359         * reflection.c (mono_reflection_setup_generic_class): Renamed to
8360         mono_reflection_create_generic_class() and added a new
8361         mono_reflection_setup_generic_class().  
8362         (mono_reflection_initialize_generic_param): If we're a nested
8363         generic type and inherited from the containing class, set our
8364         owner to the outer class.
8365
8366 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
8367
8368         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8369
8370         * reflection.c (mono_method_body_get_object): New function to create
8371         a MethodBody object.
8372
8373         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8374
8375 2004-10-11  Martin Baulig  <martin@ximian.com>
8376
8377         * metadata.c (_mono_metadata_type_equal): Renamed to
8378         do_mono_metadata_type_equal() and made static.
8379
8380 2004-10-11  Martin Baulig  <martin@ximian.com>
8381
8382         * appdomain.c: Bump corlib version number to 28.
8383
8384 2004-10-10  Martin Baulig  <martin@ximian.com>
8385
8386         * class-internals.h
8387         (MonoGenericInst): Added `MonoGenericContainer *container'.
8388         (MonoGenericMethod): Likewise.
8389         (MonoGenericContext): Likewise.
8390         (MonoGenericParam): Added `MonoGenericContainer *owner'.
8391
8392         * metadata.c
8393         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8394         (do_mono_metadata_parse_generic_inst): Likewise.
8395         (mono_metadata_parse_type_full): New public method.  This is the actual
8396         mono_metadata_parse_type() implementation - with an additional
8397         `MonoGenericContainer *' argument.
8398         (mono_metadata_parse_array_full): Likewise.
8399         (mono_metadata_parse_signature_full): Likewise.
8400         (mono_metadata_parse_method_signature_full): Likewise.
8401         (mono_metadata_parse_mh_full): Likewise.
8402         (mono_type_create_from_typespec): Likewise.
8403         (mono_metadata_interfaces_from_typedef_full): New public method;
8404         this is similar to the other _full() methods, but we take a
8405         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8406         (mono_metadata_parse_generic_param): Take an additional
8407         `MonoGenericContainer *' argument and lookup the MonoGenericParam
8408         from that container.
8409         (mono_metadata_generic_param_equal): New static method to compare
8410         two type parameters.
8411         (_mono_metadata_type_equal): New static method; takes an
8412         additional `gboolean signature_only' argument - if true, we don't
8413         compare the owners of generic parameters.
8414         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8415         with a TRUE argument - do a signature-only comparision.
8416
8417         * loader.c: Use the new _full() methods and pass the
8418         MonoGenericContainer to them.
8419
8420         * object-internals.h (MonoReflectionTypeBuilder): Added
8421         `MonoGenericContainer *generic_container' field.
8422         (MonoReflectionMethodBuilder): Likewise.
8423
8424 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
8425
8426         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8427         case initial images of dynamic assemblies.
8428
8429         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8430
8431         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8432
8433         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8434         length of event->other array.
8435         (typebuilder_setup_events): Ditto.
8436
8437         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8438         'assembly_by_name' and add an 'assemblies' list.
8439
8440         * assembly.h assembly.c: Add a new search hook for determining whenever
8441         an assembly is already loaded. Use this instead of searching in the
8442         loaded_assemblies list.
8443
8444         * domain.c appdomain.c: Implement the new search hook so loaded 
8445         assemblies are now scoped by appdomain. Fixes #67727.
8446
8447 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
8448
8449         * threads.c (mono_thread_attach): Initialize synch_lock field so
8450         mono_thread_detach works again.
8451
8452         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8453         'lib' too. Fixes #63130.
8454
8455 2004-10-06  Jackson Harper  <jackson@ximian.com>
8456
8457         * culture-info-tables.h: regenerated.
8458
8459 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
8460
8461         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
8462         implemented by other interfaces in the result. Fixes #65764.
8463         
8464         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8465         Handle unloadable modules without crashing.
8466
8467         * image.c (load_modules): Revert the previous patch since modules must
8468         have a fixed index inside the array.
8469         
8470         * image.c (load_modules): Don't include native modules in the modules
8471         array.
8472
8473 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
8474
8475         * reflection.h: Add param_defaults field.
8476
8477         * reflection.c: Add support for parameter defaults in dynamic methods.
8478         Fixes #64595.
8479
8480         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8481         an empty string when a type has no namespace. Fixes #64230.
8482
8483 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
8484
8485         * tabledefs.h: Added "internal" security actions to support non-CAS
8486         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
8487         Note: they do not seems to be used anymore in 2.0 (new metadata format)
8488
8489 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
8490
8491         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8492         constructor of abstract class. Fixes #61689.
8493
8494 2004-10-04  Martin Baulig  <martin@ximian.com>
8495
8496         * class-internals.h (MonoGenericContainer): New type.
8497         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8498         `MonoGenericContainer *generic_container'.
8499         (MonoClass): Replaced `gen_params' and `num_gen_params' with
8500         `MonoGenericContainer *generic_container'.
8501
8502         * metadata.c (mono_metadata_load_generic_params): Return a
8503         `MonoGenericContainer *' instead of a `MonoGenericParam *';
8504         removed the `num' argument.
8505
8506 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
8507
8508         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8509         for dynamic images.
8510
8511         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8512         machine fields.
8513
8514         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8515
8516         * reflection.c: Save pe_kind and machine values into the generated
8517         image file.
8518
8519         * appdomain.c: Bump corlib version number.
8520
8521         * object-internals.h: Reorganize layout of LocalBuilder.
8522
8523         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
8524         New helper function.
8525
8526         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8527         created MonoType for dynamic types. Fixes #66180.
8528
8529 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
8530
8531         * threadpool.c: the ares hashtable needs a critical section around it.
8532         this prevents some nasty segfaults
8533
8534 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
8535
8536         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8537         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8538         bug 67324).
8539         
8540 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8541
8542         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8543         
8544 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
8545
8546         * image.c: Always canonicalize image file names, to avoid loading
8547         the same assembly twice when referenced using a relative path.
8548
8549 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
8550
8551         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8552
8553         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8554
8555         * marshal.c: Fix warnings.
8556
8557 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
8558
8559         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8560         attempting to marshal the delegate_trampoline as the method_addr.
8561         This patch has a static hashtable of marshalled delegates so that 
8562         we can map delegate_trampoline addresses back to delegates.  This
8563         allows a delegate passed to managed code to be passed back into native
8564         code.  Fixes #67039
8565
8566 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8567
8568         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8569
8570         * reflection.c (method_encode_code): Align method headers properly.
8571         Fixes #66025.
8572
8573 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8574
8575         * marshal.c: In the runtime invoke wrapper, reset the abort
8576         exception if it is cached. This avoids the automatic rethrowal of 
8577         the exception after the catch of the wrapper. Also check for pending
8578         interruptions before calling the managed method. This is done using
8579         the new method emit_thread_force_interrupt_checkpoint, since the
8580         normal checkpoint method is ignored when running the invoke wrapper.
8581         * object.c: If the abort exception is rethrown, set the abort_exc
8582         field of the thread, so it will be rethrown aftere every catch.
8583         * threadpool.c: Only run an interruption checkpoint if what has been
8584         requested is a stop of the thread (aborts will be ignored).
8585         * threads.c: By default, a thread will now never be interrumped while
8586         running the runtime invoke wrapper (this ensures that runtime_invoke
8587         will always return to the caller if an exception pointer is provided).
8588         There is a new special method mono_thread_force_interruption_checkpoint()
8589         to force an interruption checkpoint even if running a protected
8590         wrapper, which is used by the same runtime invoke wrapper to do a check
8591         at a safe point.
8592
8593 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
8594
8595         * object.c, object-internals.h: Implemented mono_release_type_locks,
8596         which releases the cctor locks held by a thread.
8597         * threads.c, threads.h: In thread_cleanup, release cctor locks held
8598         by a thread. Added mono_thread_exit() method to be used to safely stop
8599         a thread.
8600
8601 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8602
8603         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8604         Move null check before dereference.  Avoid indexing beyond the end
8605         of the 'modules' array.
8606
8607 2004-09-28  Raja R Harinath  <rharinath@novell.com>
8608
8609         * metadata-internals.h (MonoImage): Add module_count field.
8610         * image.c (load_modules): Set image->module_count.
8611         (mono_image_load_file_for_image): Use image->module_count.
8612         * reflection.c (mono_image_load_module): Append to image->modules array 
8613         of dynamic assembly.
8614         (mono_module_get_object): Fix loop to actually increment index.
8615         Use image->module_count.
8616         * assembly.c (mono_assembly_load_references): Use image->module_count.
8617         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8618         Likewise.
8619
8620 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
8621
8622         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
8623         Avoid assert on generic types.
8624
8625 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
8626
8627         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8628
8629         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8630
8631         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
8632         function to convert a MarshalSpec structure to its managed counterpart.
8633
8634         * reflection.c: Fix warnings.
8635         
8636         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8637         field.
8638
8639         * icall.c (mono_create_icall_signature): Fix build.
8640
8641 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
8642
8643         * icall.c: Add MakePointType icall.
8644
8645         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8646         warnings.
8647
8648 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8649
8650         * threadpool.c: reuse allocated slots in the queue.
8651
8652 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
8653
8654         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8655
8656         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8657
8658         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8659         previous change.
8660
8661         * tabledefs.h: Add constants for pinvoke attributes BestFit and
8662         ThrowOnUnmappableChar.
8663
8664         * icall.c (ves_icall_Type_GetPacking): New icall.
8665
8666 2004-09-24  Martin Baulig  <martin@ximian.com>
8667
8668         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8669
8670 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8671
8672         * appdomain.c:
8673         (mono_domain_set): allow setting a domain that is being unloaded.
8674         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8675         being unloaded.
8676
8677 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8678
8679         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8680         the GetCustomAttributes icall.
8681
8682 2004-09-23  Martin Baulig  <martin@ximian.com>
8683
8684         * object-internals.h (MonoReflectionGenericParam): Replaced
8685         'has_ctor_constraint', `has_reference_type' and `has_value_type'
8686         with `guint32 attrs'.
8687
8688 2004-09-23  Martin Baulig  <martin@ximian.com>
8689
8690         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8691
8692 2004-09-23  Martin Baulig  <martin@ximian.com>
8693
8694         * object-internals.h (GenericParameterAttributes): New enum.
8695
8696 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
8697
8698         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8699         
8700         * class.c (init_events): Fill out event->other field.
8701
8702         * class.c: Fix warnings.
8703
8704         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8705
8706 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8707
8708         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8709         walk which doesn't supply the IL offset.
8710
8711 2004-09-22  Martin Baulig  <martin@ximian.com>
8712
8713         * reflection.c (mono_reflection_setup_internal_class): If we're
8714         System.ValueType, System.Object or System.Enum, set
8715         `klass->instance_size' and create the vtable.
8716         (mono_reflection_create_internal_class): If we're an enum type,
8717         get the base class from our current corlib.
8718
8719 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
8720
8721         * reflection.h (MonoResolveTokenError): New type.
8722
8723         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8724         icall.
8725
8726         * icall.c: Add an 'error' argument to the ResolveToken icalls.
8727
8728 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
8729
8730         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8731         Support also calling constructors, but only for already allocated objects.
8732
8733 2004-09-17  Geoff Norton <gnorton@customerdna.com>
8734
8735         * reflection.c (type_get_qualified_name): If the klass is null
8736         return the typename to avoid a NullRefEx.
8737         (encode_cattr_value): Get the qualified name of the boxed type,
8738         not the underlying enumtype.  Fixes #62984.
8739
8740 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
8741
8742         * marshal.c: Fix problems with previous checkin.
8743
8744 2004-09-21    <vargaz@freemail.hu>
8745
8746         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8747         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8748
8749         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8750
8751 2004-09-21  Geoff Norton <gnorton@customerdna.com>
8752
8753         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8754         should only return a type for pointers, arrays, and passbyref types.
8755         Fixes bug #63841.
8756
8757 2004-09-21  Martin Baulig  <martin@ximian.com>
8758
8759         * domain.c (mono_debugger_check_runtime_version): New public
8760         function.
8761
8762         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
8763
8764 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
8765
8766         * reflection.c: Added missing sort to the declarative security 
8767         attributes table. MS implementation stops seeing the attributes if the
8768         token number regress in the table (as shown by ildasm and permview).
8769
8770 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
8771
8772         * object-internals.h (MonoReflectionModule): Add 'token' field.
8773         
8774         * reflection.c (mono_reflection_get_token): Add support for Module
8775         and Assembly.
8776         (mono_module_get_object): Set 'token' field.
8777         (mono_module_file_get_object): Set 'token' field.
8778
8779         * icall.c: Add new Assembly and Module icalls.
8780
8781         * appdomain.c: Bump corlib version.
8782
8783 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
8784
8785         * loader.h loader.c class.h class.c: Add helper functions for obtaining
8786         tokens of metadata objects.
8787
8788         * reflection.h reflection.c (mono_reflection_get_token): New function
8789         to obtain the token of a metadata object.
8790
8791         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8792
8793 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
8794
8795         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8796         
8797         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8798
8799 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
8800
8801         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8802         * object-internals.h: Added 3 MonoArray* members to MonoReflection
8803         AssemblyBuilder to access the permissions set in the class lib.
8804         * reflection.c: Added security attributes encoding step in 
8805         mono_image_build_metadata.
8806         * tabledefs.h: Added new security actions defined in 2.0:
8807         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8808
8809 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8810
8811         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8812         macro parameter.
8813
8814 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
8815  
8816         * locales.c: nullify the ICU_collator member of CompareInfo when it is
8817           finalized. There where random SIGSEVs at program termination, when
8818           an object being finalized was trying to do a string comparison and
8819           the current culture was already finalized.
8820  
8821 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8822
8823         * threads.c: call thread_cleanup before finishing the thread if we get
8824         there.
8825
8826 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
8827
8828         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8829         assemblies from the parent. Fixes #65665.
8830
8831 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
8832
8833         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8834         modifiers.
8835
8836 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
8837
8838         * reflection.h: add prototype for mono_get_dbnull_object
8839         * reflection.c: add prototypes for get_default_param_value_blobs 
8840         and mono_get_object_from_blob for fussier compilers
8841
8842 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
8843  
8844         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8845         false deadlock checks in class initialization.
8846  
8847 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
8848
8849         * image.c (mono_image_addref): Fix comment.
8850
8851         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8852         possible.
8853
8854 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
8855
8856         * reflection.c (mono_param_get_objects): Modified to return
8857         ParameterInfo.DefaultValue object.
8858
8859         (get_default_param_value_blobs):
8860         (mono_get_object_from_blob):
8861         (mono_get_dbnull_object): New helper routines. 
8862
8863         * object.c (mono_get_constant_value_from_blob): New helper routine
8864         carved out from get_default_field_value ()
8865
8866         * object-internals.h (mono_get_constant_value_from_blob): Added
8867         function declaration.
8868
8869 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
8870
8871         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
8872         referenced assemblies. Fixes #62135.
8873
8874         * exception.h exception.c (mono_get_exception_file_not_found2): New
8875         helper function.
8876
8877 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * class.h class.c: Add mono_type_get_underlying_type ().
8880
8881 2004-09-09  Geoff Norton <gnorton@customerndna.com>
8882
8883         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
8884         Fix GetTypes() to support dynamically created assemblies.
8885
8886 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
8887
8888         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
8889         
8890         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
8891         previous patch.
8892
8893         * reflection.h reflection.c loader.c: Allow dynamic construction of
8894         pinvoke methods. Fixes #65571.
8895         
8896         * reflection.c (mono_reflection_get_type): Revert previous change since
8897         it causes regressions.
8898
8899 2004-09-08  Martin Baulig  <martin@ximian.com>
8900
8901         * class.c (class_compute_field_layout): Don't call
8902         mono_class_layout_fields() for open generic instances.
8903
8904 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
8905         * threads.c appdomain.c: fix typo in GC macro
8906
8907 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8908
8909         * threads.c: don't call mono_thread_detach() in start_wrapper(),
8910         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
8911
8912 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
8913
8914         * image.c (mono_image_close): Applied patch from 
8915         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
8916         assembly is loaded multiple times from data.
8917         
8918         * image.c (mono_image_open): Fix warning.
8919
8920 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8921
8922         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
8923         once. Fixes #58334.
8924         
8925         * reflection.c (mono_reflection_create_runtime_class): Initialize
8926         klass->nested_classes. Fixes #61224.
8927
8928 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8929
8930         * threads.c: sched_yield() on exit, to allow threads to quit.
8931
8932 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8933
8934         * object.c (mono_unhandled_exception): Remove leftover debug code.
8935
8936 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
8937
8938         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
8939
8940 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
8941
8942         * marshal.c (emit_marshal_array): Really null terminate string arrays.
8943         
8944         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
8945
8946 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8947
8948         * marshal.c (emit_marshal_array): Null terminate string arrays.
8949         
8950         * marshal.c (raise_auto_layout_exception): Fix warning.
8951
8952         * reflection.c (mono_param_get_objects): Initialize the default value
8953         with DBNull.Value, not null. Fixes #62123.
8954
8955 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
8956
8957         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
8958         throw an exception with a cute explanation.
8959
8960 2004-09-06  Dick Porter  <dick@ximian.com>
8961
8962         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
8963         Close the new process's thread handle, as we don't use it.  The
8964         handle stays around forever otherwise.
8965
8966 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8967
8968         * object.c (arith_overflow): Fix warning.
8969
8970         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
8971         calling conventions in method refs. Fixes #65352.
8972
8973         * reflection.c: Fix warnings.
8974
8975 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8976
8977         * icall.c: Add a new icall for Array.Clear
8978
8979 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
8980
8981         * object.c: When allocating an array, we have to throw
8982         an overflow exception if any of the lengths are < 0.
8983
8984 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8985
8986         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
8987         properly. Also move implementation of string array marshalling to 
8988         managed code. Fixes #42316.
8989
8990 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8991
8992         * assembly.c: provide more information when loading an assembly fails.
8993
8994 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8995
8996         * filewatcher.c: don't expect the development fam package to be
8997         installed.
8998
8999 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9000
9001         * marshal.c: Make a copy of the signature cookie since it will be
9002         freed by the caller.
9003         
9004         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9005
9006         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9007
9008         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9009         marshal specs.
9010
9011         * marshal.c: More refactoring.
9012         
9013         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9014         smaller functions.
9015
9016 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9017
9018         * object.c: In mono_message_invoke, fill the output parameter array after
9019           calling the managed method (it was done before the call). This fixes
9020           bug #59299.
9021
9022 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9023
9024         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9025         as well.
9026
9027 2004-09-02  Martin Baulig  <martin@ximian.com>
9028
9029         * class.c (mono_class_instance_size): Don't allow generic type
9030         definitions or open generic instances.
9031         (mono_class_array_element_size): If we're a value type, call
9032         mono_class_instance_size() on the original class.
9033
9034         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9035         handle generic instances.
9036
9037         * mono-debug-debugger.c (write_type): Handle generic instances
9038         like classes.
9039
9040 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9041
9042         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9043         the allocation request fails. Fixes #65089.
9044
9045         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9046         
9047         * object.c (mono_runtime_free_method): New function to free a dynamic
9048         method.
9049
9050         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9051         delegate trampoline.
9052
9053         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9054         with hasthis as dynamic,
9055
9056         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9057
9058         * domain.c (mono_jit_info_table_remove): New function to remove an
9059         entry from the jit info table.
9060
9061         * class-internals.h (MonoMethod): Add 'dynamic' field.
9062
9063         * loader.c: Fix warnings.
9064
9065 2004-09-01  Martin Baulig  <martin@ximian.com>
9066
9067         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9068         instead of mono_debugger_lock() because the latter one is a no-op
9069         unless running in the debugger.
9070
9071 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9072
9073         * class.c (class_compute_field_layout): Classes with auto-layout or
9074         reference fields are not blittable.
9075         
9076 2004-09-01  Dick Porter  <dick@ximian.com>
9077
9078         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9079         mono_image_get_filename() to get the assembly location.
9080
9081         * icall.c:
9082         * metadata.h: Fix compile warnings
9083
9084 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9085
9086         * class.c (class_compute_field_layout): System.Object is blittable.
9087
9088         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9089         as in/out. Fixes #59909.
9090
9091 2004-09-01  Martin Baulig  <martin@ximian.com>
9092
9093         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9094         mono_metadata_generic_inst_is_valuetype() if we're a generic
9095         instance to check whether our underlying type is a reference type.
9096
9097 2004-09-01  Martin Baulig  <martin@ximian.com>
9098
9099         * metadata.c (mono_type_size): If we're a generic instance, call
9100         mono_class_value_size() for value types.
9101
9102 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9103
9104         * marshal.c: Implement more custom marshalling functionality. Fixes
9105         #64915.
9106
9107 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9108
9109         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9110
9111 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9112
9113         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9114
9115         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9116
9117         * icall.c: Fix some warnings.
9118
9119         * threads.c (abort_appdomain_thread): Fix unref errors.
9120         (mono_thread_current): Fix THREAD_DEBUG define.
9121
9122 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9123
9124         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9125
9126         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9127
9128 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9129
9130         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9131         string arrays.
9132
9133 2004-08-28  Martin Baulig  <martin@ximian.com>
9134
9135         * metadata.c
9136         (mono_metadata_generic_inst_is_valuetype): New public function.
9137
9138         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9139         mono_metadata_generic_inst_is_valuetype() if we're a generic
9140         instance to check whether our underlying type is a valuetype.
9141
9142 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9143
9144         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9145         #63768.
9146
9147 2004-08-25  Martin Baulig  <martin@ximian.com>
9148
9149         * loader.c (mono_get_method_from_token): Abstract methods can also
9150         be generic and thus have type parameters.
9151
9152         * metadata-internals.h
9153         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9154
9155         * reflection.c (mono_image_get_generic_param_info): Don't create a
9156         metadata row, just add an entry to the `gen_params' array.
9157         (build_compressed_metadata): Sort the `gen_params' array and then
9158         actually create the metadata.
9159
9160 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9161
9162         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9163
9164 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9165
9166         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9167
9168 2004-08-24  Martin Baulig  <martin@ximian.com>
9169
9170         * class.cs (mono_class_is_subclass_of): Like an interface, a
9171         generic instance also derives from System.Object.
9172
9173 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9174
9175         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9176         custom modifiers to be in any order. Fixes #61990.
9177
9178 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9179
9180         * object.c: Register mono_object_new_fast icall.
9181         
9182         * object.c (mono_class_get_allocation_ftn): Return to calling
9183         mono_object_new_fast, since it seems faster to compute the object 
9184         size in unmanaged code than passing it as a parameter.
9185
9186         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9187
9188         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9189         this function with Boehm as the oom handler, so we don't have to check
9190         the result of GC_malloc.
9191
9192         * object.c: Remove checks for oom.
9193
9194         * object.h object.c (mono_class_get_allocation_ftn): New function to
9195         return the icall which can be used to allocate an instance of a given
9196         class. 
9197
9198         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9199
9200         * class-internals.h: Add 'enabled' field.
9201
9202 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9203
9204         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9205
9206 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9207         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9208         value 0x0010.
9209
9210 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9211
9212         * appdomain.c: use the Tls function for appdomain too,
9213         at Zoltan's request. Actually return in mono_context_get
9214
9215         * appdomain.c, profiler.c, threads.c: use __thread
9216
9217 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9218
9219         * appdomain.c threads.c: Call GC_CreateThread on windows.
9220
9221         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
9222         multiple libraries since this don't work on windows.
9223
9224 2004-08-18  Martin Baulig  <martin@ximian.com>
9225
9226         * class-internals.h
9227         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
9228         MonoMethodHeader.
9229
9230         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
9231         MonoMethodNormal since we also need it for abstract and interface
9232         methods.
9233
9234         * reflection.c
9235         (build_compressed_metadata): Sort the GenericParam table.
9236         (mono_image_create_token): Added `gboolean create_methodspec'
9237         argument; this is false when generating a MethodImpl token.
9238         (reflection_methodbuilder_to_mono_method): Abstract and interface
9239         methods may also have generic parameters.
9240
9241 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
9242
9243         * appdomain.c: thread local alloc
9244
9245 2004-08-17  Martin Baulig  <martin@ximian.com>
9246
9247         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
9248
9249         * icall.c
9250         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
9251         argument.
9252
9253         * class.c (mono_type_get_full_name): New public function.
9254         (mono_type_get_name): Don't include the type arguments.
9255
9256 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
9257
9258         * Makefile.am: Build static versions of libmetadata and libmonoruntime
9259         for inclusion into the mono executable.
9260
9261 2004-08-16  Martin Baulig  <martin@ximian.com>
9262
9263         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9264         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9265
9266 2004-08-14  Martin Baulig  <martin@ximian.com>
9267
9268         * class.c (dup_type): Also copy the `byref' field.
9269
9270 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
9271
9272         * reflection.c (create_dynamic_mono_image): Revert the last change 
9273         since it breaks bootstrap.
9274
9275 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
9276
9277         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9278
9279         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9280         not free them with g_free.
9281
9282 2004-08-11  Martin Baulig  <martin@ximian.com>
9283
9284         * reflection.c (mono_reflection_setup_internal_class): Also call
9285         mono_class_setup_mono_type() if we already have a `tb->type.type'.
9286
9287 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
9288
9289         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
9290         called during default (first) AppDomain creation. Keep track of
9291         Evidence when loading assemblies.
9292
9293 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9294
9295         * opcodes.c, opcodes.h: reduce runtime relocations.
9296
9297 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9298
9299         * culture-info.h, locales.c: fixes and chages to sue the new
9300         optimized format of the locale data.
9301         * culture-info-tables.h: regenerated.
9302
9303 2004-08-06  Geoff Norton <gnorton@customerdna.com>
9304         
9305         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9306
9307 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
9308
9309         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9310         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9311         * domain-internals.h: icall declaration.
9312         * icall.c: icall registration.
9313         * object-internals.h: New fields in MonoAssembly for CAS.
9314
9315 2004-08-05  Duncan Mak  <duncan@ximian.com>
9316
9317         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9318         CEE_LDELEM_ANY.
9319
9320 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9321
9322         * reflection.c: fix to deal with object[] arrays in custom ctors
9323         (bug #62550).
9324
9325 2004-08-05  Martin Baulig  <martin@ximian.com>
9326
9327         * class.c (mono_class_array_element_size): Added support for
9328         generic instances and correctly handle "recursive" types.
9329
9330 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
9331
9332         * assembly.c: Fix warnings.
9333
9334 2004-08-04  Martin Baulig  <martin@ximian.com>
9335
9336         * class.c
9337         (mono_type_get_name_recurse): Added `gboolean include_arity'
9338         argument specifying whether or not we should include the generic
9339         arity in the type name.
9340         (_mono_type_get_name): New static function.
9341         (mono_class_setup_vtable): If we're a generic instance, don't
9342         include the generic arity in the names of explicit method
9343         implementations.        
9344
9345 2004-08-03  Martin Baulig  <martin@ximian.com>
9346
9347         * class.c (mono_type_get_name_recurse): Enclose the generic type
9348         arguments in `<', '>'.
9349
9350 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9351
9352         * gc.c: make GC warning messages use the trace API, they are just
9353         noise to most of the users.
9354
9355 2004-08-03  Martin Baulig  <martin@ximian.com>
9356
9357         * debug-mono-symfile.c (read_string): Correctly read the string.
9358
9359 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
9360
9361         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9362         
9363         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9364         icalls.
9365         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9366
9367 2004-07-30  Martin Baulig  <martin@ximian.com>
9368
9369         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9370         Reflect latest symbol writer changes.   
9371
9372 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9373
9374         * object.c: always create an object if null is passed
9375         to Invoke() where a valuetype is expected.
9376
9377 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
9378
9379         * marshal.c (mono_marshal_init): make managed
9380         signatures match native ones better for 64bits.
9381
9382 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9383
9384         * appdomain.c: hack to build correctly the private bin path on windows.
9385         Fixes bug #61991.
9386
9387 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
9388
9389         * assembly.c: Load mscorlib from the correct framework directory
9390           (mono/<version>/mscorlib.dll).
9391         * appdomain.h: Added prototypes for new functions.
9392         * internals.h: Added some prototypes.
9393         * domain.c: When initializing the runtime, get from the executable and
9394           the configuration files the runtime version that the app supports.
9395           Added support methods for reading app.exe.config. Added list of versions
9396           supported by the JIT. Added two new methods: mono_init_from_assembly,
9397           which initializes the runtime and determines the required version from
9398           the provided exe file, and mono_init_version, which initializes
9399           the runtime using the provided version.
9400         * icall.c: Get machine.config from version-specific directory.
9401         * reflection.c: When generating an image, embed the version number
9402           of the current runtime.
9403
9404 2004-07-28  Dick Porter  <dick@ximian.com>
9405
9406         * socket-io.c
9407         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9408         returned sockaddr size before creating the remote address object.
9409         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9410         61608.
9411
9412 2004-07-28  Dick Porter  <dick@ximian.com>
9413
9414         * locales.c (string_invariant_compare_char): Fix invariant char
9415         compares between upper and lower cases.  Fixes bug 61458.
9416
9417 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
9418         
9419         * marshal.c: actually cache stelem.ref wrappers.
9420         
9421 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9422
9423         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
9424         sections and remove the mono_cli_rva_map () function.
9425
9426 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9427
9428         * debug-mono-symfile.c: fix one more endianess issue, from a patch
9429         by Geoff Norton (<gnorton@customerdna.com>).
9430
9431 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9432
9433         * class.c: fix class loads for pointer types (typeof(int) !=
9434         typeof(int*)).
9435
9436 2004-07-27  Martin Baulig  <martin@ximian.com>
9437
9438         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9439         reading the debugging information from an external ".mdb" file.
9440
9441 2004-07-24  Martin Baulig  <martin@ximian.com>
9442
9443         * reflection.c (mono_image_get_type_info): Only write a class
9444         layout entry if we actually have a size or a packing size.
9445
9446 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9447
9448         * reflection.c (type_get_fully_qualified_name): 
9449         insert cast to get type checking of ?: with non-gcc compilers
9450
9451 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
9452
9453         * rand.c: use g_getenv for both lookups of
9454         MONO_EGD_SOCKET
9455
9456 2004-07-17  Martin Baulig  <martin@ximian.com>
9457
9458         * reflection.c (mono_reflection_bind_generic_method_parameters):
9459         Set `gmethod->reflection_info'.
9460
9461 2004-07-17  Martin Baulig  <martin@ximian.com>
9462
9463         * class.c (mono_class_create_from_typedef): Insert the newly
9464         created class into the hash table before computing the interfaces
9465         since we could be called recursively.
9466
9467 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
9468
9469         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9470         function to implement stelem.ref in managed code
9471         * class-internals.h, debug-helpers.c: a new wrapper type
9472         for the above.
9473
9474 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9475
9476         * gc.c: allow GC handles to work even when no GC is compiled in.
9477         Fix part of bug #61134 (GetAddrOfPinnedObject).
9478
9479 2004-07-13  Peter Williams  <peter@newton.cx>
9480  
9481         * process.c (complete_path): Make sure we don't attempt to execute
9482         directories.
9483  
9484 2004-07-12  Geoff Norton <gnorton@customerdna.com>
9485
9486         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
9487           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
9488           and will add/subtract the hour if needed
9489
9490 2004-07-12  Martin Baulig  <martin@ximian.com>
9491
9492         * reflection.c (mono_field_get_object): If we have
9493         `field->generic_info', take the attributes from
9494         `field->generic_info->generic_type'.    
9495
9496 2004-07-12  Martin Baulig  <martin@ximian.com>
9497
9498         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9499         This function must be called before initializing the runtime.
9500         (mono_debug_init_1): New function; call this after initializing
9501         the runtime, but before loading the assembly.  It tells the
9502         debugger to load corlib and the builtin types.
9503
9504         * mono-debug-debugger.c: Did some larger changes in the debugging
9505         code; support recursive class declarations, make sure we actually
9506         add all classes.
9507
9508 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9509
9510         * debug-helpers.c: undo my previous patch and fixed the real issue in
9511         ../mini/exceptions-x86.c
9512
9513 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9514
9515         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9516         when no HOME env. variable was set and a NullRef was thrown in a .cctor
9517         called from other .cctors.
9518
9519 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
9520
9521         * loader.c: Removed the mono_loader_wine_init hack now that we are
9522         doing a managed version of Windows.Forms.
9523
9524 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
9525
9526         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9527         threadpool.c, threads.c: remove static data from rootset.
9528
9529 2004-07-09  Dick Porter  <dick@ximian.com>
9530
9531         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9532         Don't do any more processing if the matched length was 0.  It was
9533         increasing the size of the string before.  Fixes bug 61167.
9534
9535 2004-07-09  Dick Porter  <dick@ximian.com>
9536
9537         * socket-io.h:
9538         * socket-io.c
9539         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9540         Add support for SO_PEERCRED if its available.
9541
9542 2004-07-09  Peter Bartok <pbartok@novell.com>
9543         * loader.c: winelib.exe.so error message is now only displayed if
9544         MONO_DEBUG is set. To help us avoid questions when people are trying
9545         out the new Managed.Windows.Forms.
9546
9547 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
9548
9549         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
9550         for isinst and castclass wrappers.
9551
9552         * class-internals.h icall.c: Move registration and lookup of JIT icalls
9553         to libmetadata from the JIT, so they could be used by the marshalling
9554         code and the interpreter.
9555
9556         * marshal.c: Register marshalling related JIT icalls here instead of
9557         in mini.c. Use CEE_MONO_ICALL instead of the family of 
9558         CEE_MONO_PROC<x> opcodes to call marshalling functions.
9559
9560         * metadata.h: Remove unneeded marshalling conversions.
9561
9562         * opcodes.c: Update for new opcodes.
9563         
9564 2004-07-08  Martin Baulig  <martin@ximian.com>
9565
9566         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9567         (mono_debug_get_domain_data): Make this function static.
9568
9569 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9570
9571         * gc.c, object.h: add nice GC handle API for embedders.
9572
9573 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
9574
9575         * reflection.c: more changes for the new api
9576
9577         * object.c: When we reflect on a field w/ a constant value, it
9578         will not have a memory location, so we must access metadata. Also,
9579         allow easier reading of strings so that we can read them from
9580         the constant data.
9581
9582         * class.c (mono_class_layout_fields): no need for literal fields here.
9583
9584         * class-internals.h: api changes for const fields
9585
9586         * icall.c (ves_icall_get_enum_info): use new apis for const fields
9587
9588 2004-07-06  Martin Baulig  <martin@ximian.com>
9589
9590         * mono-debug.h: Increment version number to 44.
9591
9592         * mono-debug.c (mono_debug_add_wrapper): The second argument is
9593         now a gpointer, rewrote this whole method.
9594
9595         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9596         function.  Add information about the wrapper in a new "misc table".
9597
9598         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9599         for the new misc table.
9600
9601 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
9602
9603         * metadata-internals.h image.c: Add a cache for helper signatures.
9604
9605         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9606
9607 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
9608
9609         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9610         delegates from a delegate. Fixes #61033.
9611         
9612         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9613         marshalling of stringbuilder arrays. Fixes #59900.
9614
9615 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
9616
9617         * icall.c: Add EnumBuilder:setup_enum_type icall.
9618
9619 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
9620
9621         * icall.c: Added a new icall for the property version of
9622         OffsetOfStringData.
9623
9624 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
9625
9626         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9627         it has a constant size across platforms.
9628
9629         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9630         stack trace.
9631
9632 2004-06-29  Martin Baulig  <martin@ximian.com>
9633
9634         * mono-debug.c (mono_debug_add_method): Protect the whole function
9635         in mono_debugger_lock(), not just parts of it.
9636
9637 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9638
9639         * reflection.c: make sure padding bytes in heaps are zeroed.
9640
9641 2004-06-24  David Waite  <mass@akuma.org>
9642
9643         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9644         image.c, loader.c, locales.c, marshal.c, metadata.c,
9645         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9646         string-icalls.c, threads.c: change to C90-style comments from C99 /
9647         C++ -style
9648
9649 2004-06-24  Dick Porter  <dick@ximian.com>
9650
9651         * threads.c
9652         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9653         return createdNew.  Fixes bug 60412.
9654
9655         * threads-types.h: 
9656         * icall.c: Add createdNew parameter to CreateMutex icall
9657
9658 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9659
9660         * reflection.c, object-internals.h: save default value in params.
9661
9662 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9663
9664         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9665         no need to build a new path combining that with the application base.
9666         Fixes bug #60442.
9667
9668 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9669
9670         * reflection.c: fixed minor standard compliance issues.
9671
9672 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9673
9674         * reflection.c: fixed issue with encoding some custom attributes
9675         (arrays in properties and fields, bug #60411).
9676
9677 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9678
9679         * reflection.c: fix start address when copying the public key token.
9680
9681 2004-06-23  Martin Baulig  <martin@ximian.com>
9682
9683         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9684         the `exc' object in a static object to put it into the GC's root set.
9685
9686 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9687
9688         * reflection.c: make mono_reflection_setup_internal_class ()
9689         callable a second time to setup a new parent class.
9690
9691 2004-06-23  Dick Porter  <dick@ximian.com>
9692
9693         * threads.c: Check for WAIT_IO_COMPLETION return values.
9694
9695 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
9696
9697         * appdomain.c: Removed the g_free on the public key token. Now copy 
9698         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9699         * assembly.c: Added public key token string value when loading 
9700         assemblies. Fix bug #60439.
9701         * icall.c: Added missing informations (like public key) in 
9702         GetReferencedAssemblies. Fix #60519.
9703         * image.h: Changed definition for public key token from const char*
9704         public_tok_value to guchar public_key_token [17];
9705         * reflection.c: Updated for changes to public key token.
9706
9707 2004-06-22  Lluis Sanchez Gual
9708
9709         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
9710         for the field in base classes.
9711
9712 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9713
9714         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9715         mark headers as not supported, they are installed only for use by the
9716         debugger.
9717
9718 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9719
9720         * *.c, *.h: avoid namespace pollution in public headers.
9721
9722 2004-06-21  Martin Baulig  <martin@ximian.com>
9723
9724         * exception.c (mono_get_exception_security): It's in
9725         "System.Security", not in "System".
9726
9727         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9728         the exception classes.
9729
9730 2004-06-21  Martin Baulig  <martin@ximian.com>
9731
9732         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9733         Protect the exception object from being finalized.
9734
9735 2004-06-21  Martin Baulig  <martin@ximian.com>
9736
9737         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9738         public function.
9739
9740 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
9741
9742         * reflection.c: Load the assembly in mono_reflection_type_from_name,
9743         if it was not loaded before. Fix parts of #60439.
9744
9745 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9746
9747         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9748         code that was broken since Ben's change: wrappers are now
9749         dependent on the method signature only again.
9750
9751 2004-06-21  Martin Baulig  <martin@ximian.com>
9752
9753         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9754         added interface support.
9755
9756 2004-06-21  Martin Baulig  <martin@ximian.com>
9757
9758         * class.c (mono_vtable_get_static_field_data): New public method.
9759
9760 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
9761
9762         * filewatcher.c : Windows build fix to be compliant with API changes.
9763
9764 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9765
9766         * class.h, class.c: more accessors.
9767         * metadata.h, metadata.c: prepare for hiding MonoType and
9768         MonoMethodSignature: people should use the accessors from now on
9769         outside of the tree.
9770
9771 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9772
9773         * *.c, *.h: more API cleanups.
9774
9775 2004-06-18  Jackson Harper  <jackson@ximian.com>
9776
9777         * assembly.c: Trace loading assemblies.
9778         * loader.c: Trace loading native libraries.
9779         * mono-config.c: Trace loading config files.
9780         
9781 2004-06-18  Dick Porter  <dick@ximian.com>
9782
9783         * locales.c: Tell ICU the lengths of strings, it can cope with
9784         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
9785
9786 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9787
9788         * image.c: swapped name/filename;
9789
9790 2004-06-18  Martin Baulig  <martin@ximian.com>
9791
9792         * mono-debug-debugger.c (write_class): Write the parent class at
9793         the end of the header.
9794
9795 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9796
9797         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9798
9799 2004-06-17  Raja R Harinath  <rharinath@novell.com>
9800
9801         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
9802         (bundle_obj): New conditional define.
9803         (BUILT_SOURCES): Remove.
9804         ($(bundle_srcs)): Make parallel-make safe.
9805         (libmonoruntime_la_LIBADD): Make unconditional.
9806         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
9807         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9808
9809 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
9810
9811         * culture-info-tables.h: It was inconsistent with the latest
9812           supp info files.
9813
9814 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
9815
9816         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9817         be loaded.
9818
9819         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9820         with gcc 2.95.
9821
9822 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9823
9824         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9825         cleaned up public header threads.h.
9826
9827 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9828
9829         * Makefile.am, *.c, *.h: more API cleanups.
9830
9831 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9832
9833         * Makefile.am: removed monosn from compilation.
9834         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9835         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9836         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9837         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9838         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9839         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9840
9841 2004-06-15  Jackson Harper  <jackson@ximian.com>
9842
9843         * assembly.c: Make locales lower case when searching the GAC for
9844         assemblies. gacutil will always make locales lowercase when
9845         installing so this effectively makes them case insensitive.
9846         
9847 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
9848
9849         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9850         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9851           parameter which allows to choose whether the wait can be interrupted or 
9852           not. Also added the method mono_monitor_enter(), which locks the monitor
9853           using an infinite wait and without allowing interruption.
9854           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9855           interrupted.
9856         * object.h: Added new fields in MonoThread. suspend_event holds the event
9857           used to susped/resume the thread. synch_lock is the lock object to use for
9858           modifying the thread state.
9859         * threads.c: Use the new synch_lock object for locking, instead of "this",
9860           which can generate deadlocks.
9861           Moved thread state change in Thread.Sleep and Thread.Join from managed
9862           to unmanaged code. This avoids a deadlock when the thread was suspended
9863           just after acquiring the thread lock.
9864           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9865           Implemented Thread.Suspend using an event instead of ThreadSuspend,
9866           which is not fully implemented in the io-layer.
9867         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9868
9869 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9870
9871         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9872         threads-types.h: more API cleanups.
9873
9874 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9875
9876         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9877         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9878         threadpool.c, threads.c: first pass at the exported API cleanup.
9879
9880 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9881
9882         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
9883
9884 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9885
9886         * icall.c: added internalGetHome.
9887
9888 2004-06-14  Dick Porter  <dick@ximian.com>
9889
9890         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
9891         possible to return successfully when '.' or '..' were the only
9892         entries in a directory, but were skipped.  The MonoIOStat was not
9893         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
9894         Fixes bug 59574.
9895
9896 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9897
9898         * reflection.c: make binaries run on .Net 1.1 by default.
9899
9900 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9901
9902         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
9903
9904 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
9905
9906         * marshal.c: keep track of struct size with explicit layout
9907         (bug #59979).
9908
9909 2004-06-12  Martin Baulig  <martin@ximian.com>
9910
9911         * mono-debug-debugger.c: Comment out a debugging g_message().
9912
9913 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9914
9915         * reflection.c, reflection.h: do not free custom attrs that are cached.
9916         * icall.c: use braces to make code clearer.
9917
9918 2004-06-11  Martin Baulig  <martin@ximian.com>
9919
9920         * class.h (MonoInflatedField): New type.
9921         (MonoClassField): Replaced `MonoType *generic_type' with
9922         `MonoInflatedField *generic_info'.
9923
9924         * icall.c
9925         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
9926
9927 2004-06-11  Martin Baulig  <martin@ximian.com>
9928
9929         * reflection.c (mono_image_create_method_token): Correctly encode
9930         varargs methods.
9931
9932 2004-06-11  Martin Baulig  <martin@ximian.com>
9933
9934         * metadata.c (mono_metadata_parse_method_signature): When parsing
9935         a MethodDef which has VarArgs, also set sentinelpos if we don't
9936         have any parameters.
9937
9938 2004-06-11  Martin Baulig  <martin@ximian.com>
9939
9940         * verify.c (mono_method_verify): In CEE_CALL, use
9941         mono_method_get_signature() to get the method's signature, unless
9942         we're a PInvoke method.
9943
9944 2004-06-10  Jackson Harper  <jackson@ximian.com>
9945
9946         * assembly.c: Use <path>/lib/mono/gac for the extra paths
9947         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
9948         logical name as the supplied path is just a prefix to the gac not
9949         the direct path to it.
9950         
9951 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
9952
9953         * reflection.c: make the token for a created method match
9954         the token of the MethodBuilder it was created from
9955         (IKVM requires this behaviour now).
9956
9957 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
9958
9959         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
9960         reflection.c, socket-io.c: leak fixes.
9961
9962 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9963
9964         * icall.c: handle sentinel pos in vararg methods in position different
9965         from 0.
9966
9967 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9968
9969         * culture-info-tables.h: freshly generated.
9970
9971 2004-06-09  Martin Baulig  <martin@ximian.com>
9972
9973         * loader.c (mono_get_method_constrained): Call `mono_class_init
9974         (constrained_class)'.   
9975
9976 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
9977
9978         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
9979         any methods. Fixes #59629.
9980
9981 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
9982
9983         * culture-info-tables.h: reflecting locale-builder updates.
9984
9985 2004-06-08  Dick Porter  <dick@ximian.com>
9986
9987         * object.h:
9988         * locales.c: Fixed compile warnings, including a real bug in
9989         CompareInfo_internal_compare.
9990         
9991 2004-06-08  Dick Porter  <dick@ximian.com>
9992
9993         * locales.c
9994         (ves_icall_System_Globalization_CompareInfo_internal_index):
9995         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9996         Double-check the resuls of usearches, because ICU currently
9997         ignores most of the collator settings here.  Fixes bug 59720.
9998         
9999 2004-06-08  Dick Porter  <dick@ximian.com>
10000
10001         * locales.c
10002         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10003         Fix memory leak and segfault-causing typo.  No idea how this one
10004         lasted so long without being noticed.
10005
10006 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10007
10008         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10009         any methods. Fixes #59629.
10010
10011 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10012
10013         * assembly.c:
10014         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10015         own the critical section before). Removed dead code (that's done
10016         in the preload hook).
10017
10018         (mono_assembly_load_with_partial_name): call the preload hook.
10019
10020 2004-06-08  Martin Baulig  <martin@ximian.com>
10021
10022         * metadata.c (mono_metadata_signature_alloc): Default
10023         `sentinelpos' to -1.
10024
10025         * reflection.c (mono_image_get_array_token): Likewise.
10026
10027 2004-06-08  Martin Baulig  <martin@ximian.com>
10028
10029         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10030
10031         * metadata.c (mono_metadata_parse_method_signature): When parsing
10032         a MethodDef which has VarArgs, set sentinelpos.
10033
10034         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10035         `gint16' since we're using -1 for non-varargs methods.
10036
10037         * reflection.c
10038         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10039         (method_encode_signature): Added varargs support.
10040         (method_builder_encode_signature): Likewise.
10041         (mono_image_get_varargs_method_token): New static method.
10042         (mono_image_create_method_token): New public method; this is
10043         called via an icall instead of mono_image_create_token() when
10044         calling a varargs method.       
10045
10046 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10047
10048         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10049
10050 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10051
10052         * culture-info-tables.h : Reflecting the latest locale-builder that
10053           fixed empty array representation ({} to {0}).
10054
10055 2004-06-07  Jackson Harper  <jackson@ximian.com>
10056
10057         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10058         looking up extra gac paths. This allows MONO_GAC_PATH to act
10059         exactly like a prefix.
10060         
10061 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10062
10063         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10064         type name before modifying it. Fixes #59405.
10065
10066 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10067
10068         * culture-info.h: added fields for "all datetime patterns".
10069         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10070           _construct_datetime_format ()): fill xxx_patterns fields.
10071         * object.h: added fields for "all datetime patterns" to
10072           MonoDateTimeFormatInfo.
10073         * culture-info-tables.h: reflecting locale-builder updates.
10074
10075 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10076
10077         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10078         the event has no add and remove methods. Fixes #59629.
10079
10080 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10081
10082         * object.c: Fixed possible integer overflow when allocating large
10083         strings.
10084
10085 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10086
10087         * culture-info-tables.h: reflecting locale-builder updates.
10088
10089 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10090
10091         * culture-info-tables.h: reflecting locale-builder updates.
10092
10093 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10094
10095         * culture-info-tables.h: reflecting locale-builder updates.
10096
10097 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10098
10099         * threads.c: Made Thread.Sleep abortable.
10100
10101 2004-06-02  Martin Baulig  <martin@ximian.com>
10102
10103         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10104
10105         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10106
10107 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10108
10109         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10110
10111 2004-05-30  Jackson Harper  <jackson@ximian.com>
10112
10113         * reflection.c: Do not hardcode assembly versions or public key
10114         tokens anymore. All of this except the corlib section was dead
10115         code anyways.
10116         
10117 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10118
10119         * object.c (mono_runtime_invoke_array): Automatically create boxed
10120         objects for byref valuetypes if needed. Fixes #59300.
10121         
10122         * object.c (mono_method_return_message_restore): Handle 
10123         MONO_TYPE_OBJECT as well.
10124
10125 2004-05-28  Jackson Harper  <jackson@ximian.com>
10126
10127         * reflection.c: The modified type encoding was causing build
10128         problems. Reverted for now.
10129         
10130 2004-05-28  Jackson Harper  <jackson@ximian.com>
10131
10132         * reflection.c/h: Take an assembly ref so that we dont create
10133         fully qualified names when encoding types in the same assembly as
10134         the custom attribute being emitted.
10135         * appdomain.c: Increment version number.
10136         
10137 2004-05-26  Duncan Mak  <duncan@ximian.com>
10138
10139         * icall.c
10140         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10141         Set the full version number (major, minor, build, revision).
10142
10143 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10144
10145         * marshal.c (emit_struct_conv): increment src/dst after blit
10146         (mono_marshal_get_managed_wrapper,
10147         mono_marshal_get_native_wrapper): make sure we have marshalling
10148         info before marshalling params (info computation affects
10149         blittable)
10150
10151         * class.c (class_compute_field_layout): correctly deal with
10152         blittable
10153         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10154         value types (as per what windows dows by default)
10155         (mono_class_setup_mono_type): System.ValueType is blittable
10156         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10157         blittable
10158
10159         * marshal.c (mono_marshal_load_type_info): flag types  as
10160         non-blittable if the native layout doesn't match the managed
10161         layout
10162
10163 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10164
10165         * appdomain.c: don't add stuff in the private search path that is
10166         above the application base. If application base is not set, there's
10167         no private search path.
10168
10169 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10170
10171         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10172         byref struct arguments in native->managed marshalling.
10173
10174 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10175
10176         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10177         cache methods using signature (special case for methods
10178         that are value type or string class)
10179         
10180         * image.c (mono_image_close): clean up allocated GSList's
10181         in runtime_invoke_cache.
10182
10183 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10184
10185         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10186         there's no MONO_CFG_DIR environment variable defined.
10187
10188 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10189
10190         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10191
10192 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10193
10194         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10195           is interrumped.
10196         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10197           before waiting for it, and call CloseHandle after the wait to unref it.
10198           This will make sure that handles are not disposed too early.
10199
10200 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10201
10202         * appdomain.c:
10203         * appdomain.h:
10204         * icall.c: removed
10205         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10206         needed now.
10207
10208         * object.c: se the application_base only for the domain that runs
10209         Main. Fixes bug #59216,
10210
10211 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10212
10213         * appdomain.c:
10214         * object.c: only the domain in which Main is run have
10215         SetupInformation.ConfigurationFile set, so moved a few lines from
10216         appdomain.c to object.c.
10217
10218 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10219
10220         * appdomain.c: we tried to load [name].(dll|exe), but according
10221         to bug #57710, we must also try [culture]/[name].(dll|exe) and
10222         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
10223         There's a test case attached to bug #58922.
10224
10225 2004-05-27  Dick Porter  <dick@ximian.com>
10226
10227         * icall.c:
10228         * file-io.c: Implemented icalls for locking and unlocking regions
10229         in a file.
10230         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
10231         FALSE on error (fixes both compiler warning and real bug.)
10232
10233 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
10234
10235         * culture-info-tables.h: reflecting locale-builder updates.
10236
10237           (Added missing ChangeLog entry for 05/26)
10238
10239 2004-05-27  Jackson Harper  <jackson@ximian.com>
10240
10241         * locales.c: Fix some cut and paste errors.
10242         
10243 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10244
10245         * mono-config.c: set the correct path for config. directory on windows.
10246
10247 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10248
10249         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
10250           on win32.
10251
10252 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10253
10254         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
10255         from pinvoke functions.
10256         
10257         * marshal.c (mono_ftnptr_to_delegate): Implement this.
10258
10259 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10260
10261         * culture-info-tables.h: reflecting locale-builder updates.
10262
10263 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
10264
10265         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10266         #59086.
10267
10268 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
10269
10270         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10271         * icall.c: Modified icalls for RNG.
10272         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
10273         Windows (CryptoAPI).
10274
10275 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10276
10277         * locales.c: Fix build.
10278
10279 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10280
10281         * culture-info-tables.h: reflecting locale-builder updates.
10282
10283 2004-05-25  Jackson Harper  <jackson@ximian.com>
10284
10285         * locales.c: When creating the current culture use the $LANGs
10286         specific culture. So DateTimeFormat and NumberFormat entries are created.
10287         
10288 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
10289
10290         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10291         a char array as parameter.
10292
10293 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
10294
10295         * image.c: In mono_image_open(), always use an absolute path name to
10296           look for already loaded images.
10297
10298 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
10299
10300         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10301         missing in the windows build (like older cygwin include files).
10302
10303 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
10304
10305         * icall.c: Fixed check for possible integer overflow in Buffer_
10306         BlockCopy icall. Replaced comments style // by /* */.
10307
10308 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
10309
10310         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10311         
10312         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10313         check after MONO_VTADDR. Fixes pinvoke2.exe.
10314
10315         * marshal.h marshal.c metadata.h: Add beginnings of support for
10316         ftnptr -> delegate marshalling.
10317
10318 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
10319
10320         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10321         * threads.c: Fix warnings.
10322
10323 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
10324
10325         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10326         * icall.c: Registered icalls for Suspend and Resume.
10327         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10328           Thread.Abort.
10329         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10330         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10331         * process.c: Use WaitForSingleObjectEx.
10332         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
10333           checkpoints.
10334         * threads.c, threads.h: Make use of new Ex wait methods. Improved
10335           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10336           for Suspend and Resume. Added new mono_thread_stop, used for stoping
10337           background threads. Added basic support for Abort in Windows.
10338           Start new threads using a managed delegate invoke wrapper. This wrapper
10339           has an interruption checkpoint that is needed since an interruption
10340           can be requested before the thread leaves the unmanaged code that starts 
10341           the thread.
10342         * marshal.c: Added interruption checkpoint after every native call, and
10343           also before managed calls for wrappers called from unmanaged code to
10344           go into managed code.
10345         * object.h: Added new field in MonoThread to keep track of interruption
10346           requests.
10347
10348 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
10349
10350         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10351         calls.
10352
10353 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10354
10355         * appdomain.c:
10356         * assembly.c:
10357         * gc.c:
10358         * locales.c:
10359         * mono-config.c:
10360         * rand.c: getenv -> g_getenv (windows!)
10361
10362         * process.c: complete_path is also used on non-windows platforms.
10363
10364 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10365
10366         * icall.c: new signature for Process_Start.
10367
10368         * process.[ch]: new signature for Process_Start. If we're on windows
10369         and UseShellExecute is false, we have to search for the program by
10370         ourselves if we don't get a full path.
10371
10372 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
10373
10374         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
10375         marshalling and call CleanUpNativeData if needed. Fixes #58646.
10376
10377 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10378
10379         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10380         Fixes bug #58373.
10381
10382 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10383
10384         * process.c: use double quotes to quote program name and arguments on
10385         windows. Fixes bug #58575.
10386
10387 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10388
10389         * file-io.c: don't return "." and ".." when using windows Find*File.
10390
10391 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
10392
10393         * marshal.c: Don't pass wrappers to message init because method 
10394         addressed used to lookup metadata. part of remoting[2|3] fix.
10395
10396 2004-05-15  Jackson Harper  <jackson@ximian.com>
10397
10398         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10399         path is essentially the same as MONO_PATH except that it points to
10400         GACs instead of lib directories.
10401         * loader.h: The user gac is gone so we dont need function to
10402         enable/disable it.
10403         * mono-config.c: user gac option is now gone.
10404         
10405 2004-05-15  Jackson Harper  <jackson@ximian.com>
10406
10407         * culture-info.h: Make defines more consistent, add calendar data
10408         to the culture info table.
10409         * culture-info-tables.h: Add basic calendar data. Basically
10410         everyone gets default gregorian until all the data is
10411         updated.
10412         * locales.c: Use the new consistent defines. Set calendar data for
10413         culture info objects.
10414         * object.h: add a field for calendar data to CultureInfo
10415         
10416 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
10417
10418         * image.c: image->runtime_invoke_cache is keyed on signatures now.
10419         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10420         a signature.
10421         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10422         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10423         an extra param that is the pointer of the method to invoke. The IL for
10424         the invoke method is no longer specific to the method, but to the
10425         signature of the method. Thus, we can share the same code for multiple
10426         methods. This reduces the number of methods that have to be compiled.
10427
10428 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
10429
10430         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10431
10432         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10433
10434         * icall.c: Optimize Buffer.BlockCopy.
10435
10436 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10437
10438         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10439         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10440         quote). Changed them to "MMMM yyyy".
10441
10442 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
10443
10444         * rand.c
10445         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
10446
10447 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
10448
10449         * reflection.h: Updated after changes to managed structures.
10450
10451         * appdomain.c: Bump corlib version.
10452
10453 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10454
10455         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10456         windows.
10457
10458 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10459
10460         * Makefile.am: link to ../os/libmonoos.la on windows.
10461
10462         * assembly.c:
10463                 -If MONO_DEBUG, warn about non-existing directories in
10464                 MONO_PATH.
10465                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10466                 compile time variable.
10467                 -Removed init_default_path and call mono_set_rootdir from
10468                 libmonoos.a instead (windows only).
10469
10470         * assembly.h: declare mono_assembly_getrootdir().
10471
10472         * domain.c:
10473         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10474
10475         * loader.c: s/getenv/g_getenv/
10476
10477 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
10478
10479         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10480
10481         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10482
10483         * metadata.h: Add new marshalling conversions.
10484
10485         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10486         function.
10487
10488         * reflection.c (mono_reflection_get_type): Lookup the type in all
10489         modules of a multi-module assembly. Fixes #58291.
10490
10491 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
10492
10493         * threads.c: Before aborting a background, set the StopRequested
10494         state.  This avoids throwing the Abort exception.
10495         In mono_thread_manage, don't continue with the shutdown until all
10496         aborted threads have actually stopped.
10497
10498 2004-05-10  Jackson Harper  <jackson@ximian.com>
10499
10500         * locales.c: Remove the modifier from culture names.
10501         
10502 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10503
10504         * Makefile.am: monosn is not installed any more. It has been deprecated
10505         in favor of sn.
10506
10507 2004-05-07  Jackson Harper  <jackson@ximian.com>
10508
10509         * locales.c
10510         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10511         Fix array construction, add bailout if the length is 0.
10512
10513 2004-05-07  Dick Porter  <dick@ximian.com>
10514
10515         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10516         machine doesn't have a DNS entry.  Patch by Urs Muff
10517         (umuff@quark.com), fixes bug 57928.
10518
10519 2004-05-06  Jackson Harper  <jackson@ximian.com>
10520
10521         * reflection.c: Handle null PublicTokens properly. alloc mem for
10522         assembly names culture so we dont crash when freeing it.
10523         
10524 2004-05-06  Jackson Harper  <jackson@ximian.com>
10525
10526         * assembly.c: Check the usergac when loading with partial names.
10527         
10528 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10529
10530         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
10531         does nothing for now (not required for Linux/Windows) but the class
10532         library can call it (and a newer or modified runtime could need it).
10533         * icall.c: Registred icall.
10534
10535 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10536
10537         * loader.c: prints a message on module loading error we set MONO_DEBUG
10538         environment variable.
10539
10540 2004-05-05  Jackson Harper  <jackson@ximian.com>
10541
10542         * appdomain.c: Handle PublicKeyToken=null properly.
10543         
10544 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
10545
10546         * environment.c|h: Added icall ves_icall_System_Environment_
10547         GetOSVersionString to get the current OS version as a string.
10548         * icall.c: Registred icall.
10549
10550 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
10551
10552         * object.c: in mono_object_get_virtual_method(), take into account that
10553         non-virtual methods don't have a slot in the vtable. Check needed when
10554         the object is a proxy.
10555
10556 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
10557
10558         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10559         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10560
10561         * object.c (mono_class_compute_gc_descriptor): Fix warning.
10562
10563         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10564         passed when a valuetype is expected.
10565
10566         * object.c (mono_unhandled_exception): Only set the exit code if the
10567         exception happens in the main thread. Fixes thread5.exe.
10568
10569         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10570         invalid names. Fixes #58047.
10571
10572 2004-05-03  Jackson Harper  <jackson@ximian.com>
10573
10574         * assembly.c: This line was committed accidently and is unneeded.
10575         
10576 2004-05-03  Jackson Harper  <jackson@ximian.com>
10577
10578         * icall.c: Add new icall for Assembly::LoadWithPartialName
10579         * assembly.c/.h: new function that probes the GAC to load partial
10580         assembly names by Paolo Molaro.
10581         
10582 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10583
10584         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10585         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10586         (type_get_fully_qualified_name): Added PublicKeyToken when building a
10587         full type name.
10588
10589 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10590
10591         * appdomain.c: fixed check for 'neutral' culture and removed warning.
10592         * reflection.c: fix bug when parsing a full type name and Version is not
10593         the last thing in the string.
10594
10595 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
10596
10597         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10598         crashes when it is freed.
10599
10600 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10601
10602         * assembly.c: print the compat warning to stderr.
10603
10604 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
10605
10606         * assembly.c (mono_assembly_load_references): Add a compatibility
10607         hack to run old applications that might be still referencing the
10608         3300-based assemblies, only do this for System.xxx.
10609
10610 2004-05-01  Jackson Harper  <jackson@ximian.com>
10611
10612         * appdomain.c: If the culture is neutral we set it to "".
10613         
10614 2004-04-29  Jackson Harper  <jackson@ximian.com>
10615
10616         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10617
10618 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10619  
10620         * string-icalls.c: added low overhead function for copying chars
10621         * icall.c: added needed icall for the above function
10622  
10623 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10624
10625         * icall.c: fix return value of get_global_assembly_cache.  Implemented
10626         Environment.GetLogicalDrives.
10627
10628 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
10629
10630         * rand.c: try and talk to egd or prngd
10631         for random bytes if opening devices fail.
10632
10633 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
10634
10635         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10636         alignment for the type using the native alignment of its members 
10637         instead of using klass->min_align.
10638
10639         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10640
10641 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10642
10643         * file-io.c:
10644         * socket-io.c: added check for sys/aio.h.
10645
10646 2004-04-28  Dick Porter  <dick@ximian.com>
10647
10648         * threads.c: Don't abort a thread thats already aborting, when
10649         terminating everything.
10650
10651 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10652
10653         * icall.c: added 2 new async calls for Socket.
10654
10655         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10656         IO on *nix systems.
10657
10658         * threadpool.c: removed unused variable.
10659
10660 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
10661
10662         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10663
10664 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10665
10666         * locales.c: put back string_invariant_tolower () and
10667         string_invariant_toupper ().
10668
10669 2004-04-26 David Waite <mass@akuma.org>
10670
10671         * file-io.h:
10672         * socket-io.h:
10673         * threads.h:
10674         * unicode.h: remove comma from end of enumeration declarations
10675
10676 2004-04-26 David Waite <mass@akuma.org>
10677
10678         * debug-mono-symfile.h:
10679         * decimal.c:
10680         * mono_debug.h:
10681         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10682
10683
10684 2004-04-26  Jackson Harper  <jackson@ximian.com>
10685
10686         * appdomain.c: Increment version number.
10687         
10688 2004-04-26  Jackson Harper  <jackson@ximian.com>
10689
10690         * appdomain.c: Set assembly references public token value when
10691         PublicKeyToken is specified, not the hash_value. Free public token
10692         values when free assembly name data. Previously the public key
10693         token was hex decoded, however we are using hex encoded public key
10694         tokens, so this is not neccasary.
10695         * assembly.c: Lookup assemblies in the gac if their public token
10696         value is set. Add function to allow enabling user gac
10697         lookups. Specify whether or not the assembly was loaded from the
10698         GAC. Compare full assembly names when checking the cache for
10699         assemblies (Temporarily disabled see comment in code). Remove
10700         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10701         specifies trace-loader they get extra info to stdout on the
10702         loading of assemblies.
10703         * image.h: Add a field for an assembly references public token
10704         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10705         whether an assembly has been loaded from the GAC.
10706         * image.c: Remove a corlib -> mscorlib name mapping.
10707         * loader.h: Add function to enable/disable the user gac.
10708         * mono-config.c: Check if the usergac is enabled in the config
10709         file.
10710         * icall.c: New icall to determine whether or not an assembly has
10711         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10712         * tabldefs.h: Add constant for assemblyref flag that specifies a
10713         full public key is used instead of a public token.
10714         * reflection.c: Remove mscorlib -> corlib mappings. Set
10715         PublicTokenValue instead of hash value. This value is a hex
10716         string so it does not need to be expanded.
10717
10718 2004-04-26  Martin Baulig  <martin@ximian.com>
10719
10720         * mono-debug-debugger.c (mono_debugger_initialize): Set
10721         `mono_debugger_initialized' before calling mono_debug_lock().
10722
10723 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
10724
10725         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10726           InternalToUpper/InternalToLower.
10727         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10728           removed invariant culture shortcut.  This is now done in managed code.
10729         * locales.c: (string_invariant_toupper/tolower) removed.
10730
10731 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10732
10733         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10734         Added Poll internal call.
10735
10736         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10737         call for Poll. Select was too heavy for polling a single socket.
10738
10739         * threadpool.[ch]: added mono_threadpool_cleanup.
10740         * threads.c: use it. Don't use Thread_Abort on windows.
10741
10742 2004-04-23  Martin Baulig  <martin@ximian.com>
10743
10744         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10745
10746 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
10747
10748         * icall.c: Registred new icalls for key pair protection and added an
10749         icall for Environment.GetFolderPath on Windows.
10750         * security.c|h: Added new icalls for key pair protection.
10751
10752 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10753
10754         * socket-io.c: don't display the non-supported family warning for known
10755         families. Now this is not displayed on windows when checking support
10756         for IPv4/IPv6.
10757
10758 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10759
10760         * class.c: don't display the layout warning for static fields.
10761
10762 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
10763
10764         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10765         * locales.c, locales.h: Added new icalls for culture-specific
10766         Char.ToLower and Char.ToUpper.
10767
10768 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10769
10770         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10771         by David Waite.
10772
10773 2004-04-20  Martin Baulig  <martin@ximian.com>
10774
10775         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10776         of the type name before passing it to mono_reflection_type_from_name().
10777
10778 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
10779
10780         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10781         encodings here. Fixes #56965.
10782
10783 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
10784
10785         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10786         fix test on strstr result not that I can see anything that
10787         relies on the result.
10788
10789 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
10790
10791         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10792         Fixes #57081.
10793
10794         * marshal.c (mono_marshal_get_string_encoding): New helper function.
10795
10796         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10797         function to determine which marshalling to use for strings. Fixes
10798         #56965.
10799
10800         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10801
10802         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10803
10804 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
10805
10806         * icall.c: #include mono-config.h
10807
10808 2004-04-15  Jackson Harper  <jackson@ximian.com>
10809
10810         * culture-info-tables.h: Fix date formats for en-US culture.
10811         
10812 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
10813
10814         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
10815         ThreadPool.SetMinThreads.
10816         * threadpool.c: Implemented ThreadPool.GetMinThreads and
10817         ThreadPool.SetMinThreads.
10818
10819 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10820
10821         * mono-config.c: also load the .config file in the directory
10822         where the assembly was found.
10823
10824 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10825
10826         * assembly.c: load per-assembly config files.
10827         * icall.c: decrapified code to get the config dir and moved to
10828         mono-config.c.
10829         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10830         per-assembly config files. When doing a dll map lookup give precedence
10831         to the per-assembly data.
10832
10833 2004-04-14  Martin Baulig  <martin@ximian.com>
10834
10835         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10836         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10837         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10838
10839         * mono-debugger-debugger.c: While the debugger is locked, remember
10840         whether the symbol tables have changes and send one single
10841         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10842
10843 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
10844
10845         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10846
10847         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
10848         function.
10849
10850         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10851         account when marshalling string arrays. Fixes #56965.
10852
10853 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
10854
10855         * icall.c: Add new icalls mapping for security.
10856         * security.c|h: Add internal calls for WindowsIdentity,
10857         WindowsImpersonationContext and WindowsPrincipal.
10858
10859 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
10860
10861         * class.c: Added comment to ensure the System.MonoDummy class
10862         is removed when no longer necessary
10863
10864 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
10865
10866         * appdomain.c: Pass arguments to the bootstraping exceptions to
10867         minimize JITed methods at boot
10868
10869         * metadata.c (mono_exception_from_name_two_strings): Allow for the
10870         second string to be null.
10871
10872         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10873         Change the protocol to minimize the JIT methods at startup.  Now
10874         it Returns the internal codepage, if the value of "int_code_page"
10875         is 1 at entry, and we can not compute a suitable code page
10876         number, returns the code page as a string.
10877
10878 2004-04-13  Jackson Harper  <jackson@ximian.com>
10879
10880         * culture-info-tables.h: Fix number of decimal digits for all
10881         english locales.
10882
10883 2004-04-13  Jackson Harper  <jackson@ximian.com>
10884
10885         * icall.c: Clairfy out of sync error message. It is not always
10886         your corlib that is out of sync.
10887
10888 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
10889
10890         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
10891         properties when only the set accessor is overriden. Fixes #55874.
10892
10893 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
10894
10895         * assembly.c (mono_assembly_load_references): Make this thread safe.
10896         Fixes #56327.
10897
10898 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
10899
10900         * monosn.c: Add missing initialization calls.
10901
10902 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
10903
10904         * locales.c:
10905         ves_icall_System_Globalization_CultureInfo_construct_number_format
10906         Fix g_assert so it compiles on fussier compilers re int/ptr
10907         mismatch
10908
10909 2004-04-08  Dick Porter  <dick@ximian.com>
10910
10911         * socket-io.h:
10912         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
10913         53992.  Also rearrange the code so that the internal calls return
10914         an error value and exceptions are thrown from managed code.
10915
10916         * icall.c: Add type info to the socket icalls.
10917
10918 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10919
10920         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
10921         owes me a beer.
10922
10923 2004-04-07  Martin Baulig  <martin@ximian.com>
10924
10925         * class.c (mono_class_from_generic_parameter): Don't default
10926         `klass->parent' to `mono_defaults.object_type'.
10927
10928 2004-04-07  Martin Baulig  <martin@ximian.com>
10929
10930         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10931         `param->pklass->reflection_info'.       
10932
10933 2004-04-07  Jackson Harper  <jackson@ximian.com>
10934
10935         * culture-info-tables.h: Fix date separator symbol.
10936         
10937 2004-04-07  Martin Baulig  <martin@ximian.com>
10938
10939         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
10940         from System.Type to System.MonoType.
10941
10942 2004-04-07  Martin Baulig  <martin@ximian.com>
10943
10944         * reflection.h
10945         (MonoReflectionGenericParam): Added `has_reference_type' and
10946         `has_value_type' fields.
10947
10948         * reflection.c (mono_image_get_generic_param_info): Encode the
10949         correct flags if we have the `class' or `struct' constraint.
10950
10951 2004-04-07  Martin Baulig  <martin@ximian.com>
10952
10953         * reflection.h
10954         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
10955
10956 2004-04-07  Jackson Harper  <jackson@ximian.com>
10957
10958         * appdomain.c: Revert extra patches, just wanted to bump the
10959         version number.
10960         
10961 2004-04-07  Jackson Harper  <jackson@ximian.com>
10962
10963         * Makefile.am: Add culture-info private headers.
10964         * icall.c: Add new icalls for contructing locales.
10965         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
10966         * locales.h: Declare new culture info construction methods.
10967         * object.h: Add new fields used to avoid the CultureMap to
10968         MonoCultureInfo.
10969         * culture-info.h: Definition of structs used in the culture info
10970         tables.
10971         * culture-info-tables.h: Autogenerated tables that contain culture
10972         info data. This file was generated with the locale-builder tool.
10973         * appdomain.c: Incement corlib version number.
10974         
10975 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
10976
10977         * appdomain.c: (mono_runtime_init) move mono_thread_init
10978         to before mono_object_new calls so critical sections
10979         are initialized before use.
10980
10981 2004-04-07  Martin Baulig  <martin@ximian.com>
10982
10983         * icall.c
10984         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
10985         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
10986         (ves_icall_MonoGenericParam_initialize): Removed.
10987         (monogenericparam_icalls): Removed.
10988         (generictypeparambuilder_icalls): Added new table for
10989         System.Reflection.Emit.GenericTypeParameterBuilder.
10990
10991         * reflection.c
10992         (mono_reflection_define_generic_parameter): Removed.
10993         (mono_reflection_initialize_generic_parameter): This is now called
10994         from GenericTypeParameterBuilder's .ctor.
10995
10996 2004-04-06  Martin Baulig  <martin@ximian.com>
10997
10998         * class.c (mono_class_init): Don't inflate nested classes in a
10999         generic instance.
11000         (mono_type_get_name_recurse): Include the generic arguments for
11001         generic instances and generic type declarations.
11002         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11003         (_mono_class_get_instantiation_name): Removed.
11004         (mono_class_create_generic): Always use `gklass->name' as our name.
11005
11006         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11007
11008         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11009         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11010         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11011         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11012         closed generic methods here.
11013
11014         * reflection.c
11015         (mono_reflection_generic_inst_get_nested_types): Removed.
11016         (inflate_mono_method): Copy the generic parameters from the
11017         MonoMethodHeader into out MonoGenericMethod.
11018
11019 2004-04-06  Martin Baulig  <martin@ximian.com>
11020
11021         * row-indexes.h
11022         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11023
11024         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11025
11026         * reflection.c (build_compressed_metadata): If we have any entries
11027         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11028         set the header version to 1.1.
11029
11030 2004-04-06  Martin Baulig  <martin@ximian.com>
11031
11032         * class.c (mono_class_init): If we're a generic instance,
11033         initialize our nested classes, too.
11034         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11035         suffix. 
11036
11037 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11038
11039         * process.c: quote the argument passed to the shell on windows.
11040
11041 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11042
11043         * threads.c (mono_alloc_special_static_data): Allow this to be
11044         called during startup.
11045
11046 2004-04-02  Martin Baulig  <martin@ximian.com>
11047
11048         * icall.c
11049         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11050
11051 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11052
11053         * icall.c: Fix build.
11054
11055 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11056
11057         * Makefile.am: Added security.c|h.
11058         * icall.c: Added icall for get_UserName;
11059         * security.c: New file for security related icalls. Added function
11060         get_UserName for System.Environment (fix #56144).
11061         * security.h: New. Header file for security.c
11062
11063 2004-04-02  Dick Porter  <dick@ximian.com>
11064
11065         * icall.c: Deleted the icalls that were obsoleted some time ago
11066         by the ICU string code, and which were mixed into the icall
11067         rearranging.  Fixes bug 55969.
11068
11069         * string-icalls.h: 
11070         * string-icalls.c: Deleted the code that those icalls reference.
11071
11072 2004-04-01  Martin Baulig  <martin@ximian.com>
11073
11074         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11075
11076         * class.c (mono_class_from_generic_parameter): Don't set 
11077         TYPE_ATTRIBUTE_INTERFACE.
11078         (my_mono_class_from_generic_parameter): Likewise.
11079
11080 2004-04-01  Martin Baulig  <martin@ximian.com>
11081
11082         * loader.c (find_method): Added an optional `MonoClass *ic'
11083         argument to search in a specific interface.
11084         (mono_get_method_constrained): New public function.
11085
11086 2004-04-01  Martin Baulig  <martin@ximian.com>
11087
11088         * reflection.c (mono_image_get_generic_field_token): Use the
11089         `handleref' cache here.
11090
11091 2004-04-01  Martin Baulig  <martin@ximian.com>
11092
11093         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11094
11095         * reflection.c (create_generic_typespec): Use the `typespec' hash
11096         here, not the `typeref' one.    
11097
11098 2004-04-01  Martin Baulig  <martin@ximian.com>
11099
11100         * class.c (mono_class_inflate_generic_type): Moved the
11101         functionality into a new static inflate_generic_type() which
11102         returns NULL if it didn't do anything.  Only increment the
11103         `mono_stats.inflated_type_count' if we actually inflated
11104         something.
11105         (mono_class_get_full): Check the classes type to see whether we
11106         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11107
11108 2004-04-01  Jackson Harper  <jackson@ximian.com>
11109
11110         * reflection.c: Set culture for assembly references.
11111         
11112 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11113
11114         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11115
11116 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11117
11118         * assembly.c:
11119         (do_mono_assembly_open): the critical section also covers
11120         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11121
11122 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11123
11124         * threads.c:
11125         (mono_manage_threads): abort the background threads when finishing.
11126         Fixes bug #47232.
11127
11128 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11129
11130         * gc.c: only close the done_event handle if there was no timeout.
11131         C-ified comments.
11132
11133 2004-03-30  Martin Baulig  <martin@ximian.com>
11134
11135         * icall.c (icall_entries): It's called "System.Activator", not
11136         "System.Activation".    
11137
11138 2004-03-30  Martin Baulig  <martin@ximian.com>
11139
11140         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11141         (mono_class_create_from_typespec): Likewise.
11142
11143 2004-03-30  Martin Baulig  <martin@ximian.com>
11144
11145         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11146         `has_ctor_constraint' and `initialized'.
11147
11148 2004-03-30  Martin Baulig  <martin@ximian.com>
11149
11150         * reflection.c (encode_new_constraint): New static function to add
11151         the constructor constraint attribute to a type parameter.
11152         (encode_constraints): Call encode_new_constraint() if necessary.
11153
11154         * reflection.h
11155         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11156
11157         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11158         
11159 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11160
11161         * reflection.c, icall.c: add support for pinning variables. 
11162
11163 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11164
11165         * marshal.c (mono_marshal_get_managed_wrapper):
11166         init bool local with zero rather than null.
11167
11168 2004-03-29  Martin Baulig  <martin@ximian.com>
11169
11170         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11171         the "official" behavior here.
11172         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11173
11174 2004-03-29  Martin Baulig  <martin@ximian.com>
11175
11176         * icall.c: Reflect latest API changes.
11177
11178 2004-03-29  Martin Baulig  <martin@ximian.com>
11179
11180         * loader.c (mono_get_method_from_token): Also call
11181         mono_metadata_load_generic_params () for abstract and interface
11182         methods; replace the type arguments in the method signature with
11183         the ones which are loaded from the metadata.
11184
11185 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11186
11187         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11188         of the lock is not the current thread. MS.NET don't do it, in spite of
11189         what the documentation says. See bug #56157.
11190
11191 2004-03-28  Martin Baulig  <martin@ximian.com>
11192
11193         * class.c (mono_class_init): Don't call init_properties() and
11194         init_events() for generic instances; set `prop->parent' when
11195         inflating properties.
11196
11197         * reflection.c (mono_generic_inst_get_object): Call
11198         `mono_class_init (ginst->klass)'.
11199         (mono_type_get_object): Only create a MonoGenericInst if your
11200         generic type is a TypeBuilder.
11201         (do_mono_reflection_bind_generic_parameters): Only set
11202         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11203
11204 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11205
11206         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11207         Fixes #56091.
11208
11209 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11210
11211         * icall.c: added Kill_internal icall.
11212         * process.[ch]: added Kill_internal icall.
11213
11214 2004-03-25  Martin Baulig  <martin@ximian.com>
11215
11216         * class.h (MonoStats): Added `generic_instance_count',
11217         `inflated_method_count', `inflated_type_count' and
11218         `generics_metadata_size'.       
11219
11220 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11221
11222         * reflection.c: no warnings now.
11223
11224 2004-03-25  Martin Baulig  <martin@ximian.com>
11225
11226         * class.c (mono_class_get_full): New public function; does a
11227         mono_class_get(), but also takes a `MonoGenericContext *'.
11228
11229         * loader.c (mono_field_from_memberref): Renamed to
11230         `field_from_memberref', made static and added `MonoGenericContext *'
11231         argument.
11232         (mono_field_from_token): Added `MonoGenericInst *' argument.
11233         (method_from_memberef): Likewise.
11234         (mono_get_method_from_token): Likewise.
11235         (mono_get_method_full): New public function; does a
11236         mono_get_method(), but also takes a `MonoGenericContext *'.
11237
11238         * verify.c (mono_method_verify): Get the method's generic context
11239         and pass it to mono_field_from_token(), mono_get_method_full() and
11240         mono_class_get_full().
11241
11242 2004-03-25  Martin Baulig  <martin@ximian.com>
11243
11244         * class.c (mono_class_inflate_generic_type): Take a
11245         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
11246         `MonoGenericMethod *'.
11247
11248 2004-03-25  Martin Baulig  <martin@ximian.com>
11249
11250         * loader.h (MonoMethodInflated): Store the MonoGenericContext
11251         instead of the MonoGenericMethod here.
11252
11253 2004-03-25  Martin Baulig  <martin@ximian.com>
11254
11255         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
11256         each time we create a new MonoGenericInst, we also create a new
11257         context which points back to us.
11258
11259         * class.c (inflate_method): Use `ginst->context' instead of
11260         creating a new context.
11261
11262         * loader.c (method_from_memberref): Use
11263         `klass->generic_inst->context' instead of creating a new context.
11264
11265 2004-03-25  Martin Baulig  <martin@ximian.com>
11266
11267         * class.h (MonoGenericContext): New struct.
11268         (MonoGenericMethod): Removed `generic_inst'.
11269
11270         * class.c (mono_class_inflate_generic_method): Take a
11271         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11272
11273 2004-03-25  Martin Baulig  <martin@ximian.com>
11274
11275         * loader.h (MonoMethodInflated): New typedef.
11276
11277         * metadata.h (MonoMethodSignature): Removed `gen_method', make
11278         `generic_param_count' consume just 30 bits, added `is_inflated'
11279         and `has_type_parameters' flags (one bit each).
11280
11281         * class.c (mono_class_inflate_generic_method): Create a
11282         MonoMethodInflated instead of a MonoMethodNormal and set
11283         `is_inflated' in the method signature.
11284
11285         * class.h (MonoGenericMethod): Removed `generic_method'.
11286
11287 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
11288
11289         * image.c: Make sure the name of a MonoImage is always an absolute path.
11290           This fixes bug #54415.
11291
11292 2004-03-24  Martin Baulig  <martin@ximian.com>
11293
11294         * class.c (mono_class_setup_vtable): If we're a generic instance,
11295         use our generic type's vtable size.
11296
11297 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
11298
11299         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11300         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
11301         problems.
11302
11303 2004-03-23  Martin Baulig  <martin@ximian.com>
11304
11305         * class.h (MonoDynamicGenericInst): Added `int count_events' and
11306         `MonoEvent *events'.
11307
11308         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11309         (typebuilder_icalls): Added "get_event_info"; calls
11310         mono_reflection_event_builder_get_event_info(). 
11311
11312         * reflection.c (mono_reflection_generic_inst_initialize): Added
11313         `MonoArray *events'.
11314         (mono_reflection_event_builder_get_event_info): New function.
11315
11316 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
11317
11318         * object.h: add mono_type_initialization_init
11319
11320         * object.c (mono_runtime_class_init): 
11321         implement class constructor synchronization rules
11322         to cope with threading issues.  
11323         add mono_type_initialization_init
11324
11325         * appdomain.c (mono_runtime_init): call 
11326         mono_type_initialization_init
11327
11328         * class.h: removing initializing field from MonoVTable
11329
11330 2004-03-23  Martin Baulig  <martin@ximian.com>
11331
11332         * class.c (my_mono_class_from_generic_parameter): Use
11333         `param->name' if it's not NULL. 
11334
11335 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
11336
11337         * class.c: do not insert non-virtual methods in the vtable.
11338         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11339         that means the method is non-virtual. This never would have
11340         happened before.
11341
11342 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
11343
11344         * profiler.c: Added lock for accessing coverage_hash.
11345
11346 2004-03-22  Martin Baulig  <martin@ximian.com>
11347
11348         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11349         `method->method->signature->generic_param_count != 0' to make it
11350         work for interface methods.
11351
11352 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11353
11354         * process.c: quote the string passed to the shell using g_shell_quote.
11355
11356 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11357
11358         * threads.c:
11359         (mono_threads_manage): don't remove the finalizer thread and self
11360         from the threads hash table so that mono_thread_manage can be called
11361         more than once.
11362
11363 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11364
11365         * process.c: quote the arguments when UseShellExecute is true. Fixes
11366         bug #55790.
11367
11368 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11369
11370         * threads.c: set mono_thread_detach as a cleanup routine for every
11371         thread. This way it's always executed upon thread termination, either
11372         aborted or finished normally. No more xsp hangs!
11373
11374 2004-03-17  Martin Baulig  <martin@ximian.com>
11375
11376         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11377         `int count_nested' and a `MonoType **nested'.
11378
11379         * reflection.c (mono_reflection_bind_generic_parameters): Moved
11380         most of the functionality into a new static
11381         do_mono_reflection_bind_generic_parameters() and don't take a
11382         `MonoType *nested_in' argument any more.  Don't compute nested
11383         types here.
11384         (mono_reflection_generic_inst_get_nested_types): New public method
11385         to get nested types.
11386
11387         * class.c (mono_class_create_generic): Set `klass->nested_in' if
11388         we're a nested class.
11389
11390         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11391         mono_reflection_generic_inst_get_nested_types() to compute the
11392         nested types.
11393
11394 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11395
11396         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11397         descriptive error message under windows.
11398         
11399 2004-03-17  Martin Baulig  <martin@ximian.com>
11400
11401         * class.c (dup_type): Added `const MonoType *original' argument;
11402         copy the attrs from the original type.
11403
11404 2004-03-17  Martin Baulig  <martin@ximian.com>
11405
11406         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11407         `m->generic_inst_cache' here.
11408
11409 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
11410
11411         * exception.h exception.c: Add stack_overflow_exception.
11412
11413 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11414
11415         * threadpool.c:
11416         (overlapped_callback): call SetEvent *after* invoking the callback.
11417         No need to call CloseHandle.
11418
11419 2004-03-16  Martin Baulig  <martin@ximian.com>
11420
11421         * reflection.c (mono_image_get_fieldref_token): Take a
11422         `MonoReflectionField *' instead of a `MonoClassField *' and a
11423         `MonoClass *'; store the `MonoReflectionField *' in the hash.
11424
11425 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11426
11427         * appdomain.c: don't add the culture to the filename we're looking for
11428         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11429
11430 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11431
11432         * locales.c: don't ignore symbols when doing case insensitive compares.
11433         Thanks Dick! Fixes bug #54046.
11434
11435         * threads.c: surround 'threads' usage with enter/leave in
11436         mono_thread_manage.
11437
11438 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
11439
11440         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
11441         implicitly marshalled as [Out]. Fixes #55450.
11442
11443         (mono_marshal_get_runtime_invoke): Zero out the result if there is
11444         an exception.
11445
11446 2004-03-16  Martin Baulig  <martin@ximian.com>
11447
11448         * class.c (mono_class_from_generic_parameter): Use the actual
11449         parameter name. 
11450
11451 2004-03-16  Martin Baulig  <martin@ximian.com>
11452
11453         * reflection.c (type_get_signature_size): New static function.
11454         Compues the size of the type in a method signature.
11455         (method_get_signature_size): New static function; calls
11456         type_get_signature_size() to compute the actual size of the
11457         method's signature.
11458         (method_encode_signature): Use method_get_signature_size() to get
11459         the signature's size rather than using `nparams * 10'.
11460
11461 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11462
11463         * file-io.h: define here WapiOverlapped on windows. I don't want the
11464         regular OVERLAPPED one.
11465
11466         * file-io.c:
11467         * threadpool.c: somehow, BindIoCompletionCallback is not found.
11468         Disabling AIO on windows.
11469
11470 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11471
11472         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11473         bug #55385.
11474
11475 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11476
11477         * appdomain.c: upgraded corlib version.
11478
11479         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11480         and BeginWrite. Allow opening files for asynchrnous operations.
11481
11482         * file-io.h: new struct that maps FileStreamAsyncResult.
11483         * icall.c: added new icalls.
11484         * process.[ch]: support setting child process environment variables
11485         and use the SHELL or COMSPEC when UseShellExecute is true.
11486
11487         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11488         callback for async. IO is here and also BindHandle.
11489
11490         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11491         from here.
11492
11493 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
11494
11495         * reflection.c (create_custom_attr): Allow len == 0.
11496
11497         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11498         computation on big-endian machines.
11499
11500 2004-03-13  Martin Baulig  <martin@ximian.com>
11501
11502         * class.h (MonoGenericInst): Added `int count_ifaces'.
11503
11504         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11505         `ginst->count_ifaces' instead `klass->interface_count' since we
11506         may get called before the vtable is created.
11507
11508         * loader.c (mono_method_get_param_names): If we're a generic
11509         instance, return and don't initialize the class.
11510
11511         * reflection.c (mono_reflection_setup_generic_class): Don't call
11512         ensure_runtime_vtable().
11513         (mono_reflection_bind_generic_parameters): Set
11514         `ginst->count_ifaces'.
11515
11516 2004-03-11  Jackson Harper <jackson@ximian.com>
11517
11518         * icall.c:
11519         * unicode.c:
11520         * unicode.h: Remove unused System.Char icalls.
11521         
11522 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
11523
11524         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11525         code when we P/Invoke the first library in Windows.Forms, instead
11526         of when we first open the assembly.
11527
11528         * assembly.c: Drop the lookup from here.
11529
11530 2004-03-10  Martin Baulig  <martin@ximian.com>
11531
11532         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11533         class for properties, fields and events.  Finally fixes #54945.
11534
11535 2004-03-10  Martin Baulig  <martin@ximian.com>
11536
11537         * metadata.c (mono_metadata_class_equal): New static function;
11538         checks whether two generic instances or two generic parameters are
11539         equal.
11540         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11541         compare classes.        
11542
11543 2004-03-10  Martin Baulig  <martin@ximian.com>
11544
11545         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11546
11547         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11548         argument and write it into the `reflection_info' field.
11549
11550         * icall.c
11551         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11552         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11553
11554 2004-03-09  Jackson Harper  <jackson@ximian.com>
11555
11556         * char-conversions.h: use 8 bits for numeric data its all we need
11557         * icall.c: numeric data is only 8 bits now.
11558
11559 2004-03-09  Martin Baulig  <martin@ximian.com>
11560
11561         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11562
11563         * class.c (init_properties, init_events): Initialize the new
11564         `parent' field.
11565
11566         * reflection.c (typebuilder_setup_properties): Likewise.
11567         (typebuilder_setup_events): Likewise.
11568
11569         * reflection.h (MonoEventInfo): Replaced `parent with
11570         `declaring_type' and `reflected_type'.
11571
11572         * icall.c (ves_icall_get_property_info): Distinguish between
11573         declaring and reflected type.
11574         (ves_icall_get_event_info): Likewise.
11575
11576 2004-03-09  Martin Baulig  <martin@ximian.com>
11577
11578         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11579         (ves_icall_Type_GetField): Correctly set field->klass.
11580
11581 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
11582
11583         * loader.h: Fix warning.
11584
11585 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
11586
11587         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11588         library routine if present.  Notice that it will still continue
11589         executing even if its missing, for those working on the Gtk#
11590         edition of Windows.Forms.
11591
11592         * assembly.c (do_mono_assembly_open): If loading the
11593         System.Windows.Forms call mono_loader_wini_init.
11594
11595 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
11596
11597         * class.h: Added MonoRemoteClass struct.
11598         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11599         function for MonoStrings.
11600         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11601         Added internal call for getting the proxy type.
11602         * marshal.c: Get the type of transparent proxies from its remote_class.
11603         Added methods that generate the IL for type checks and casts:
11604         mono_marshal_get_isinst, mono_marshal_get_castclass, 
11605         mono_marshal_get_proxy_cancast.
11606         * marshal.h: Declaration of the previous new methods.
11607         * object.c: Added new moethods for creating and updating MonoRemoteClass
11608         instances: mono_remote_class, mono_upgrade_remote_class, 
11609         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11610         * verify.c: FIx transparent_proxy_fields layout.
11611         * appdomain.c: Bump corlib version.
11612
11613 2004-03-04  Jackson Harper  <jackson@ximian.com>
11614
11615         * icall.c: Add icall to access char conversion tables.
11616         * char-conversions.h: Character conversion tables.
11617         * Makefile.am: Add char-conversions.h private header file.
11618         
11619 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
11620
11621         * appdomain.c (unload_thread_main): Increase unloading timeout to
11622         10 sec as a temporary workaround for Nant problems.
11623
11624 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
11625
11626         * gc.c: Add checks for GC_enable and GC_disable.
11627
11628         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11629         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
11630         (bug #54988).
11631         
11632 2004-02-27  Martin Baulig  <martin@ximian.com>
11633
11634         * reflection.c (mono_reflection_bind_generic_parameters): Take a
11635         `MonoReflectionType *' instead of a `MonoType *'.
11636
11637 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
11638
11639         * gc.c (run_finalize): Avoid finalizing the object representing the
11640         finalizer thread.
11641         (finalizer_thread): Fix warning.
11642
11643 2004-02-25  Martin Baulig  <martin@ximian.com>
11644
11645         * class.c (_mono_class_get_instantiation_name): Added `int offset'
11646         argument for nested types.
11647         (mono_class_create_generic): Added support for nested generictypes.
11648
11649         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11650         `GList *nested'.
11651
11652         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11653
11654         * reflection.c (method_encode_signature): Increase the minimum
11655         value of `size' from 10 to 11.
11656         (mono_reflection_bind_generic_parameters): Take `int type_argc'
11657         and `MonoType **types' arguments instead of the `MonoArray
11658         *types'; added `MonoType *nested_in'.  Recursively instantiate
11659         nested classes. 
11660
11661 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
11662
11663         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
11664         stack_overflow_ex members which are used by exception handling.
11665
11666         * appdomain.c (mono_runtime_init): Initialize the new members.
11667
11668         * gc.c (mono_gc_enable): New helper function.
11669         * gc.c (mono_gc_disable): New helper function.
11670
11671 2004-02-23  Martin Baulig  <martin@ximian.com>
11672
11673         * icall.c: I must have been really stupid - make it actually work
11674         this time ;-)
11675
11676 2004-02-23  Martin Baulig  <martin@ximian.com>
11677
11678         * loader.c (method_from_memberref): Only inflate the method if
11679         it's in another klass.
11680
11681 2004-02-23  Martin Baulig  <martin@ximian.com>
11682
11683         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11684         (mono_class_init): If we're a generic instance and an interface,
11685         compute `class->interface_id'; also create `class->interfaces'
11686         here and inflate them.
11687
11688         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11689         `ginst->is_open'.
11690         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11691
11692         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11693
11694 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
11695
11696         * reflection.c (method_encode_code): Improved the error message
11697         generated by the exception.
11698
11699 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11700
11701         * icall.c: Martin did not do what he said in the ChangeLog for
11702         2004-02-18, but put back the changes for properties and events.
11703         Commenting those changes out again and adding comment to bug #54518.
11704         
11705         * process.c: removed warning.
11706
11707 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
11708
11709         * marshal.c (emit_struct_conv): Print an error message instead of
11710         asserting when a type does not have the StructLayout attribute.
11711
11712 2004-02-20  Martin Baulig  <martin@ximian.com>
11713
11714         * reflection.c (mono_type_get_object): Also use the cache for
11715         generic instances.
11716         (mono_reflection_bind_generic_parameters): Always compute
11717         `ginst->ifaces'.        
11718
11719 2004-02-20  Martin Baulig  <martin@ximian.com>
11720
11721         * class.h (MonoGenericMethod): Removed `klass'.
11722
11723         * class.c (mono_class_inflate_generic_method): Added `MonoClass
11724         *klass' argument.
11725
11726 2004-02-20  Martin Baulig  <martin@ximian.com>
11727
11728         * reflection.c (method_encode_methodspec): Actually use the
11729         uninflated signature for the memberref.
11730
11731 2004-02-20  Martin Baulig  <martin@ximian.com>
11732
11733         * class.h (MonoGenericMethod): Removed `declaring'.
11734
11735         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11736         is NULL, compute it here.
11737
11738 2004-02-20  Martin Baulig  <martin@ximian.com>
11739
11740         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11741
11742         * metadata.c (mono_metadata_generic_inst_hash): New method.
11743         (mono_metadata_generic_inst_equal): New method.
11744
11745         * reflection.c (mono_reflection_bind_generic_parameters): Use the
11746         `klass->image->generic_inst_cache' cache to avoid creating
11747         duplicate MonoGenericInst's.
11748
11749         * class.c (mono_class_inflate_generic_type): Use the cache.
11750
11751 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11752
11753         * object.c: fixed gc descriptor calculation for embedded valuetypes.
11754
11755 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11756
11757         * icall.c: added Socket.WSAIoctl icall.
11758
11759         * socket-io.[ch]: implemented
11760         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11761
11762 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
11763
11764         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11765
11766 2004-02-18  Urs C Muff  <umuff@quark.com>
11767
11768         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11769         this work on PPC and other big-endian architectures.
11770
11771         * debug-mono-symfile.h: Prepended the names of all the `guint32'
11772         fields with an underscore to make sure they're only accessed by
11773         the read32() macro.
11774
11775 2004-02-18  Martin Baulig  <martin@ximian.com>
11776
11777         * icall.c: Put the klass->refclass changes back for methods and
11778         fields, but not for properties and events.  We're currently not
11779         distinguishing between DeclaringType and ReflectedType for
11780         properties and events, that's what caused the regressions.
11781
11782 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11783
11784         * object.c:
11785         (mono_async_result_new): the handle can be NULL.
11786
11787         * threadpool.c: Use an event instead of a semaphore, don't initialize
11788         it until needed. This saves quite a few semaphores from being created
11789         when using the threadpool.
11790
11791 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
11792
11793         * object.c (mono_string_is_interned_lookup): Fix interning of long
11794         strings. Fixes #54473.
11795
11796         * domain.c (ldstr_equal): Optimize if the two strings are equal.
11797
11798         * icall.c: Revert the klass->refclass changes since they introduce
11799         regressions (bug #54518).
11800
11801 2004-02-18  Martin Baulig  <martin@ximian.com>
11802
11803         * class.c (mono_class_init): If we're a generic instance and don't
11804         come from a TypeBuilder, inflate our members here.
11805         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11806         (mono_class_create_generic): New public method.
11807         (mono_class_initialize_generic): Removed.
11808         (get_instantiation_name): Renamed to
11809         _mono_class_get_instantiation_name() and made it public.
11810
11811 2004-02-18  Martin Baulig  <martin@ximian.com>
11812
11813         * class.c (mono_class_inflate_generic_type): Clear the new
11814         instance's `nginst->klass' when inflating a generic instance.
11815         (mono_class_is_subclass_of): Added (basic) support for generic
11816         instances.
11817
11818 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11819
11820         * appdomain.h, domain.c: use a MonoCodeManager instead of a
11821         MonoMempool to hold compiled native code.
11822
11823 2004-02-17  Martin Baulig  <martin@ximian.com>
11824
11825         * class.h (MonoDynamicGenericInst): Added `count_properties' and
11826         `properties'.
11827
11828         * reflection.c (mono_reflection_generic_inst_initialize): Added
11829         `MonoArray *properties' argument.
11830
11831         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
11832
11833 2004-02-17  Martin Baulig  <martin@ximian.com>
11834
11835         * icall.c (ves_icall_Type_GetFields): Renamed to
11836         ves_icall_Type_GetFields_internal() and added a
11837         `MonoReflectionType *rtype' argument; pass it to
11838         mono_field_get_object() to set the field's "reflected" type.
11839         (ves_icall_Type_GetConstructors): Likewise.
11840         (ves_icall_Type_GetEvents): Likewise.
11841         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11842         argument; pass it to mono_method_get_object() to set the method's
11843         "reflected" type.       
11844
11845 2004-02-17  Martin Baulig  <martin@ximian.com>
11846
11847         * class.h (MonoDynamicGenericInst): New type.
11848         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11849
11850         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11851         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11852         (ves_icall_MonoGenericInst_GetFields): New interncall.
11853
11854         * class.c (mono_class_from_generic): Don't call
11855         mono_class_initialize_generic() if this is a dynamic instance;
11856         ie. it's being created from a TypeBuilder.
11857         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11858         `class->byval_arg.type'.
11859
11860         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11861         to `inflate_method' and made static.
11862         (mono_reflection_inflate_field): Removed.
11863         (mono_reflection_generic_inst_initialize): New public method.
11864
11865         * reflection.h (MonoReflectionGenericInst): Removed `methods',
11866         `ctors' and `fields'; added `initialized'.
11867
11868 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
11869
11870         * debug-helpers.c (mono_method_full_name): Fix output for empty
11871         namespaces.
11872
11873 2004-02-12  Martin Baulig  <martin@ximian.com>
11874
11875         * class.h (MonoClassField): Added `MonoType *generic_type'.
11876
11877         * reflection.c (mono_image_get_fieldref_token): Added support for
11878         instantiated generic types.
11879         (field_encode_inflated_field): Removed.
11880         (mono_image_get_inflated_field_token): Removed.
11881         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
11882
11883         * reflection.h (MonoReflectionInflatedField): Removed.
11884
11885 2004-02-12  Martin Baulig  <martin@ximian.com>
11886
11887         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
11888         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
11889
11890         * reflection.c (mono_image_get_methodspec_token): Take a
11891         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
11892         (mono_image_create_token): Check whether we have a
11893         `method->signature->gen_method' and call
11894         mono_image_get_methodspec_token() if appropriate.
11895         (inflated_method_get_object): Removed.
11896         (mono_reflection_bind_generic_method_parameters): Return a
11897         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
11898         (mono_reflection_inflate_method_or_ctor): Likewise.
11899
11900         * reflection.h (MonoReflectionInflatedMethod): Removed.
11901
11902 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
11903
11904         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
11905         for custom valuetype marshalling.
11906
11907         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
11908
11909 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11910
11911         * icall.c: fixed WSAGetLastError_internal name.
11912
11913 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
11914
11915         * threads.c (mono_thread_attach): Allow this to be called multiple
11916         times for a thread.
11917         
11918         * threads.c (build_wait_tids): Do not wait for ourselves.
11919
11920         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
11921         appdomain list is empty.
11922
11923         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
11924         memory returned by mono_string_builder_to_utf16, since it points into
11925         managed memory. Thanks to Bernie Solomon for noticing this.
11926
11927         * icall.c: Add AppDomainSetup icalls.
11928
11929         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
11930
11931         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
11932         types.
11933
11934         * reflection.c (reflection_methodbuilder_to_mono_method): Save
11935         custom attributes to the method_aux struct. Also fix array indexes etc.
11936
11937         * loader.c (mono_method_get_param_names): Make dynamic case work again.
11938         
11939 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
11940
11941         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
11942         (both static and runtime) and reduce startup time.
11943
11944 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
11945
11946         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
11947         AsAny marshalling conversion instead of crashing.
11948
11949         * marshal.c: Fix warnings.
11950
11951 2004-02-09  Martin Baulig  <martin@ximian.com>
11952
11953         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
11954
11955         * reflection.h (MonoReflectionInflatedMethod): Removed the
11956         `declaring' field, it's now in the unmanaged MonoGenericMethod.
11957
11958         * reflection.c (method_encode_methodspec): Removed the `method'
11959         argument; we get it from `gmethod->declaring'.
11960         (inflated_method_get_object): Removed the `declaring' argument.
11961
11962 2004-02-09  Martin Baulig  <martin@ximian.com>
11963
11964         * class.h (MonoGenericMethod): New type.
11965         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
11966         `generic_method'.
11967
11968         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
11969         a `MonoGenericMethod *gen_method' one.
11970
11971         * class.c (mono_class_inflate_generic_type): Take an additional
11972         `MonoGenericMethod * argument.  This is only non-NULL if we're
11973         inflating types for a generic method.   
11974         (mono_class_inflate_generic_signature): Renamed to
11975         inflate_generic_signature() and made static; take a
11976         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11977         (inflate_generic_header): Take a `MonoGenericMethod *' argument
11978         instead of a `MonoGenericInst *' one.
11979         (mono_class_inflate_generic_method): Likewise.
11980
11981         * reflection.c (encode_generic_method_sig): Take a
11982         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11983         (method_encode_methodspec): Likewise.
11984         (inflated_method_get_object): Likewise. 
11985
11986         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
11987         field with a `MonoGenericMethod *gmethod' one.  
11988
11989 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
11990
11991         * class.h (mono_class_has_parent): add parens to expansion
11992         so you can ! this.
11993
11994 2004-02-08  Martin Baulig  <martin@ximian.com>
11995
11996         * image.h (MonoImage): Removed `generics_cache'.
11997
11998         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
11999         instead of a `MonoType *' argument; removed the `inflate_methods'
12000         argument.  Don't inflate methods here.
12001
12002         * loader.c (find_method): If it's a generic instance, call
12003         mono_class_init() on the `sclass->generic_inst->generic_type'.
12004
12005         * metadata.c (mono_type_size): Make this work on uninitialized
12006         generic instances; call it on the `ginst->generic_type's class.
12007
12008         * reflection.c (mono_reflection_bind_generic_parameters): Call
12009         mono_class_from_generic() to create the `ginst->klass'.
12010
12011 2004-02-08  Martin Baulig  <martin@ximian.com>
12012
12013         * class.h (MonoClass): Changed type of `generic_inst' from
12014         `MonoType *' to `MonoGenericInst *'.
12015
12016 2004-02-08  Martin Baulig  <martin@ximian.com>
12017
12018         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12019         mono_type_get_object(), this is now creating a `MonoGenericInst'
12020         for MONO_TYPE_GENERICINST.
12021         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12022         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12023
12024         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12025         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12026         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12027         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12028         and reflected type.
12029
12030         * reflection.h (MonoReflectionInflatedMethod): Removed
12031         `declaring_type' and `reflected_type'.
12032
12033 2004-02-08  Martin Baulig  <martin@ximian.com>
12034
12035         * class.h (MonoGenericInst): Added `MonoType *parent' and
12036         `MonoType **ifaces'.
12037
12038         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12039         `parent' and `interfaces'.
12040
12041         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12042         `MonoType *' argument and return a `MonoType *'.
12043
12044         * icall.c
12045         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12046         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12047
12048 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12049
12050         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12051         valuetype marshalling.
12052
12053 2004-02-06  Martin Baulig  <martin@ximian.com>
12054
12055         * class.c
12056         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12057         (my_mono_class_from_generic_parameter): Likewise.
12058
12059 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12060
12061         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12062         contents of the symbol files lazily.
12063
12064         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12065
12066         * threads.h threads.c icall.c: New icalls for getting and setting the
12067         threads name.
12068
12069 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12070
12071         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12072         Raise an exception when the domain is not found.
12073
12074 2004-02-03  Martin Baulig  <martin@ximian.com>
12075
12076         * reflection.c (mono_image_get_methodspec_token): Use the
12077         uninflated signature; fixes gen-33.
12078
12079 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12080
12081         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12082         the finalizer code can use thread functionality.
12083
12084         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12085         the finalizer thread.
12086
12087         * threads.c: Make some functions more robust.
12088
12089         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12090
12091         * metadata.h: Add new marshalling conventions.
12092
12093         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12094         stringbuilder marshalling. Fixes #53700.
12095
12096         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12097
12098         * reflection.c (mono_image_get_type_info): Save declarative security
12099         info.
12100
12101         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12102         unmanaged fields as well.
12103
12104         * appdomain.c: Bump corlib version.
12105
12106 2004-02-01  Martin Baulig  <martin@ximian.com>
12107
12108         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12109         method type arguments.  
12110
12111 2004-01-30  Duncan Mak  <duncan@ximian.com>
12112
12113         * marshal.h: Add prototype for
12114         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12115         and
12116         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12117         fix the build.
12118
12119 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12120
12121         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12122         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12123
12124 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12125
12126         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12127         custom marshalling of valuetypes.
12128
12129         * marshal.c: Fix some warnings.
12130
12131 2004-01-29  Martin Baulig  <martin@ximian.com>
12132
12133         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12134         for generic method parameters.
12135
12136         * reflection.c (method_encode_methodspec): Write the uninflated
12137         signature into the methodspec table.
12138         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12139         is always the uninflated method.
12140         (reflection_methodbuilder_to_mono_method): Copy the generic
12141         parameters from the MethodBuilder into `header->gen_params'.
12142
12143 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12144
12145         * class.c (mono_class_from_generic_parameter): Fix warning.
12146
12147 2004-01-27  Martin Baulig  <martin@ximian.com>
12148
12149         * class.c (mono_class_from_generic_parameter): Don't create
12150         `klass->methods' here.  
12151
12152 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12153
12154         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12155         extension since it does not work with libraries named lib<FOO>.dll.so.
12156
12157 2004-01-25  Martin Baulig  <martin@ximian.com>
12158
12159         * class.c (mono_class_inflate_generic_type): Added support for
12160         MONO_TYPE_GENERICINST.
12161
12162         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12163         inflate methods on open constructed types.      
12164
12165 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12166
12167         * object.c: fire ProcessExit event in the root AppDomain after running
12168         Main. Fixes bug #53299.
12169
12170 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12171
12172         * socket-io.c: include the new socket-wrappers.h header.
12173         Use the wrappers instead of the unix socket functions to make the code
12174         more clear.
12175
12176 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12177
12178         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12179
12180         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12181         Fixes #22532.
12182
12183 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12184
12185         * reflection.c (mono_image_create_pefile): Handle the case when the
12186         entry point is not a MethodBuilder.
12187
12188         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12189         field to ReflectionMethod since it is not allways a builder.
12190
12191         * reflection.c (type_get_fully_qualified_name): New helper function to
12192         return the fully qualified name of a type.
12193
12194         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12195         type name for custom marshallers.
12196
12197         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12198
12199         * class.c (mono_class_setup_vtable): If a parent class already 
12200         implements an interface, use the implementing methods from that class.
12201         Fixes #53148.
12202
12203 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12204
12205         * threadpool.c: just return instead of ExitThread to allow for thread
12206         clean up earlier.
12207
12208 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12209
12210         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12211         when closing resource modules.
12212
12213         * reflection.c (mono_image_create_pefile): Handle the case when the
12214         entry point is not a MethodBuilder.
12215
12216         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12217         field to ReflectionMethod since it is not allways a builder.
12218
12219 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
12220
12221         * marshal.c (mono_marshal_get_managed_wrapper): 
12222         mono_marshal_alloc takes native int so CONV_I
12223         the arg for 64bits.
12224
12225 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
12226
12227         * reflection.c (fixup_cattrs): New function to fixup the methoddef
12228         tokens in the cattr table. Fixes #53108.
12229
12230 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12231
12232         * loader.c: don't trim ".dll" before looking up in the config file.
12233         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
12234
12235 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
12236
12237         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
12238         Return the module which contains the resource as well.
12239         (ves_icall_System_Reflection_Module_Close): New icall.
12240
12241         * appdomain.c: Bump corlib version number.
12242
12243         * image.c (mono_image_addref): New public function.
12244
12245         * assembly.c: Call mono_image_addref.
12246
12247         * reflection.c (mono_module_get_object): Increase reference count of 
12248         the image.
12249
12250         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12251         Fixes #22532.
12252
12253         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
12254         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
12255         proper exceptions on DllImport problems.
12256
12257 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12258
12259         * class.c, metadata.c: eliminate CSIZE macro.
12260
12261 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
12262
12263         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12264         * object.h: Added async_callback field in MonoAsyncResult.
12265         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12266         * verify.c: Added async_callback in MonoAsyncResult layout.
12267
12268 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
12269
12270         * reflection.c (mono_reflection_get_custom_attrs): Add support
12271         for Modules.
12272
12273 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12274
12275         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
12276         marshalling.
12277         (mono_marshal_method_from_wrapper): Add null pointer check.
12278
12279 2004-01-16  Martin Baulig  <martin@ximian.com>
12280
12281         * debug-mono-symfile.h: Set version number to 36 and reflect
12282         latest symbol writer changes.
12283
12284 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
12285
12286         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12287         multi-dimensional arrays.
12288         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12289         (mono_class_from_mono_type): Use bounded_array_class_get.
12290         
12291         * class.c (mono_bounded_array_class_get): New function which takes
12292         a 'bounded' bool argument to distinguish vectors from one dimensional
12293         arrays.
12294
12295         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
12296         bounded_array_class_get if the array has bounds.
12297
12298         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12299         Search modules loaded using AssemblyBuilder:AddModule as well.
12300
12301 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12302
12303         * appdomain.c: increased corlib version.
12304         * filewatcher.c: removed g_print.
12305         * icall.c:
12306         (get_property_info): only allocate what is actually requested.
12307         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12308
12309 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12310
12311         * Makefile.am: added filewatcher.[ch]
12312         * filewatcher.[ch]: FileSystemWatcher runtime support.
12313         * icall.c: added new FSW icalls.
12314
12315 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12316
12317         * string-icalls.c: fix stringbuilder regression as suggested by
12318         Iain McCoy <iain@mccoy.id.au>.
12319
12320 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
12321
12322         * process.c (process_read_stringtable_block): Recognize '007f' as
12323         a language neutral stringtable block.
12324
12325 2004-01-12  Patrik Torstensson
12326
12327         * object.h (MonoStringBuilder) : Changed layout to support our
12328         new stringbuilder class.
12329         * marshal.c: Change marshalling to support the new layout of 
12330         string builder.
12331         * appdomain.c: increased version number because new layout of
12332         string builder.
12333
12334 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
12335
12336         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12337         assembly name as an string instead of an AssemblyName, since it is
12338         easier to extract info from it.
12339
12340         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12341         the culture subdirectories too. Fixes #52231.
12342
12343 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12344
12345         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12346         It takes 2 new parameters with an optional name for the method to look
12347         for and case ignoring info.
12348
12349         * threadpool.c: removed unused variable.
12350
12351 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12352
12353         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12354         It takes 2 new parameters with an optional name for the property to look
12355         for and case ignoring info.
12356         Fixes bug #52753.
12357
12358 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
12359
12360         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12361         Fix #52451.
12362
12363 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12364
12365         * appdomain.c:
12366         * assembly.c: escape the uri before passing it to g_filename_from_uri.
12367         Fixes bug #52630.
12368
12369 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
12370
12371         * reflection.c: Add support for more than one unmanaged resource.
12372
12373         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12374         in field->def_value, as done in all other cases.
12375
12376         * reflection.c (mono_reflection_get_custom_attrs): Add support for
12377         TypeBuilders.
12378
12379         * reflection.c (mono_reflection_create_runtime_class): Remove 
12380         errorneous assignment to klass->element_class, since it is already
12381         done in mono_reflection_setup_internal_class.
12382
12383 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12384
12385         * gc.c: added missing LeaveCriticalSection.
12386         * icall.c: indented a couple of lines.
12387         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12388         if we call EndInvoke inside a callback. Fixes bug #52601.
12389
12390 2004-01-07  Martin Baulig  <martin@ximian.com>
12391
12392         * mono-debug-debugger.h
12393         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12394
12395 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
12396
12397         * appdomain.c: Use messages in NotImplementedException.
12398
12399         * exception.c (mono_get_exception_not_implemented): Now this takes
12400         a message argument.
12401
12402         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12403         exception instead of g_asserting an aborting when something is not
12404         implemented.
12405
12406         Add some inline docs.
12407
12408 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
12409
12410         * reflection.h: Update after changes to object layout.
12411
12412         * reflection.c: Implement saving of unmanaged aka win32 resources.
12413
12414         * appdomain.c: Bump version number.
12415
12416         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
12417         Handle missing domains gracefully.
12418
12419 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
12420
12421         * file-io.c : On Windows, there are much more invalid_path_chars.
12422
12423 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12424
12425         * class.h, object.c: prepare for GetType () speedup.
12426
12427 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
12428
12429         * profiler.c: workaround for --profile null reference exception on
12430           cygwin. Patch by Patrik Torstensson.
12431
12432 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
12433
12434         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12435         make work for unaligned access.
12436
12437 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12438
12439         * class.c: small cleanup (class->fields [i] -> field).
12440         * image.c: check address of metadata is valid.
12441
12442 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
12443
12444         * assembly.h assembly.c (mono_assembly_loaded): New public function to
12445         search the list of loaded assemblies.
12446
12447         * reflection.c (mono_reflection_type_from_name): Use 
12448         mono_assembly_loaded instead of mono_image_loaded.
12449
12450         * reflection.c: Fix warnings.
12451
12452 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
12453
12454         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
12455         is dynamic. This is needed since an assembly can contain both dynamic and
12456         non-dynamic images.
12457
12458         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
12459         assembly->dynamic.
12460
12461         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12462
12463         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12464         to store modules loaded using AddModule.
12465
12466         * reflection.c (mono_image_fill_file_table): Generalize this so it works
12467         on Modules.
12468
12469         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12470
12471         * reflection.c (mono_image_fill_export_table_from_module): New function to
12472         fill out the EXPORTEDTYPES table from a module.
12473
12474         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12475         into a separate function. Also handle loaded non-dynamic modules.
12476
12477         * reflection.c (mono_image_basic_init): Fix memory allocation.
12478
12479         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12480
12481         * assembly.c (mono_assembly_load_references): Make this public.
12482
12483 2003-12-19  Martin Baulig  <martin@ximian.com>
12484
12485         * class.c (mono_class_initialize_generic): Made this static, take
12486         a `MonoGenericInst *' instead of a `MonoClass *'.
12487         (mono_class_from_generic): Call mono_class_initialize_generic()
12488         unless we're already initialized or being called from
12489         do_mono_metadata_parse_generic_inst().
12490
12491         * class.h (MonoGenericInst): Added `initialized' and
12492         `init_pending' flags.
12493
12494         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12495         `mono_class_init (gklass)' or mono_class_initialize_generic()
12496         here; set `generic_inst->init_pending' while parsing the
12497         `type_argv'.
12498
12499 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
12500
12501         * locales.c: include string.h for memxxx prototypes
12502
12503 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
12504
12505         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12506         constructor when accessing literal fields.
12507
12508 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
12509
12510         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12511
12512         * reflection.c (assembly_add_resource_manifest): New function to fill
12513         the MANIFESTRESOURCE table.
12514
12515         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12516
12517         * reflection.h: Update to changes in class layout.
12518
12519         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
12520         Reenable call to mono_runtime_is_shutting_down ().
12521
12522         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12523         determine if the runtime is shutting down.
12524
12525 2003-12-16  Jackson Harper <jackson@ximian.com>
12526
12527         * icall.c: comment out call to mono_runtime_is_shutting_down to
12528         fix build.
12529         
12530 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
12531
12532         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12533         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12534
12535 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
12536
12537         * reflection.c: move definition of swap_with_size
12538         to before its first call
12539
12540 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
12541
12542         * appdomain.c (mono_runtime_is_shutting_down): New public function.
12543
12544         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12545         icall.
12546
12547         * object.c: Fix warnings.
12548
12549         * icall.c (ves_icall_Type_Get...): Only consider inherited static
12550         members if FlattenHierarchy is set.
12551
12552         * reflection.c (mono_image_add_decl_security): New function to emit
12553         declarative security.
12554
12555         * reflection.h reflection.c: Add support for declarative security.
12556
12557         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12558         
12559 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
12560
12561         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12562         
12563         * appdomain.c verify.c: Moved corlib version checking into its own
12564         function in appdomain.c since it needs to create vtables etc.
12565
12566 2003-12-13  Patrik Torstensson <p@rxc.se>
12567
12568         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
12569         instead of unwrapped server.
12570
12571 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
12572
12573         * verify.c (check_corlib): Fix field index.
12574
12575 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
12576
12577         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12578         GetGacPath icall.
12579
12580 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
12581
12582         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12583         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12584         cope with sizeof(size_t) != sizeof(guint32).
12585
12586 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12587
12588         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12589         in case of failure.
12590
12591 2003-12-10  Mark Crichton <crichton@gimp.org>
12592
12593         * icall.c: removed the GetNonZeroBytes.  We now handle this case
12594         in managed code.
12595
12596         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
12597
12598 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12599
12600         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12601         marked as deleted.
12602
12603 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
12604
12605         * verify.c (check_corlib): Handle the case when the version field is 
12606         initialized by a static constructor.
12607
12608 2003-12-08  Patrik Torstensson  <p@rxc.se>
12609
12610     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12611
12612 2003-12-08  Martin Baulig  <martin@ximian.com>
12613
12614         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12615         a MonoReflectionGenericParameter, also take the parameter index
12616         and name as arguments.
12617         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12618         (ves_icall_MonoGenericParam_initialize): New interncall.
12619         (ves_icall_Type_make_byref_type): New interncall.
12620
12621         * reflection.h (MonoReflectionGenericParam): Derive from
12622         MonoReflectionType, not just from MonoObject.  Added `refobj' and
12623         `index' fields.
12624
12625         * reflection.c (mono_reflection_define_generic_parameter): Create
12626         and return a new MonoReflectionGenericParam; don't initialize the
12627         constraints here.
12628         (mono_reflection_initialize_generic_parameter): New public method;
12629         initializes the constraints and creates the `param->pklass'.
12630
12631 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
12632
12633         * reflection.h reflection.c: Use the new fields 'num_types', 
12634         'num_fields' and 'num_methods' to track the number of types etc.
12635
12636         * verify.c (check_corlib): Check corlib version number.
12637
12638 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
12639
12640         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12641         function works on all methods.
12642
12643 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
12644
12645         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12646         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12647         the custom_type_info flag of the transparent proxy.
12648         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12649         objects that supports IRemotingTypeInfo.
12650         * object.h: Added custom_type_info field in transparent proxy.
12651
12652 2003-12-06  Martin Baulig  <martin@ximian.com>
12653
12654         * class.c (mono_class_create_from_generic): Removed.
12655         (mono_class_from_generic): Check `ginst->klass' before doing
12656         anything else.  This is important to fully support "recursive"
12657         generic types.
12658
12659         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12660         empty `generic_inst->klass' before doing anything else.
12661
12662 2003-12-06  Dick Porter  <dick@ximian.com>
12663
12664         * verify.c: 
12665         * object.h:
12666         * icall.c:
12667         * locales.c: Use C structs to access class fields.  Don't do a
12668         conversion between MonoString and UChar because both are
12669         platform-endian UTF-16.  Compare now takes startindex and count
12670         parameters.  Add a char overload for IndexOf.  Speed up the
12671         invariant string IndexOf.
12672
12673 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
12674
12675         * Makefile.am (monosn_LDADD): Fix parallel build.
12676
12677 2003-12-04  Martin Baulig  <martin@ximian.com>
12678
12679         * icall.c
12680         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12681         (ves_icall_Type_make_array_type): New interncall.       
12682
12683 2003-12-04  Martin Baulig  <martin@ximian.com>
12684
12685         * locales.c: also change it in the !HAVE_ICU case.
12686
12687 2003-12-04  Dick Porter  <dick@ximian.com>
12688
12689         * icall.c:
12690         * locales.c: construct_compareinfo is now in CompareInfo, not
12691         CultureInfo.
12692
12693 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
12694
12695         * image.c (mono_image_load_file_for_image): Cache loaded images in the
12696         image->files array.
12697
12698         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12699         table as well.
12700
12701         * assembly.c (mono_assembly_load_references): Only load references
12702         once.
12703
12704         * class.c (mono_class_from_name): Avoid linear search of the 
12705         EXPORTEDTYPE table.
12706
12707         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12708
12709 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
12710
12711         * image.h (MonoImage): Add 'field_cache' field.
12712
12713         * loader.c (mono_field_from_token): Cache field lookups.
12714         
12715         * reflection.c (mono_module_get_object): Fix name property.
12716
12717         * icall.c (ves_icall_get_enum_info): Update after changes to 
12718         mono_metadata_get_constant_index ().
12719
12720         * icall.c: Get rid of get_type_info icall, use a separate icall for
12721         each type property to avoid needless memory allocations. Fixes #51514.
12722
12723         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12724         to avoid needless binary searches.
12725
12726         * class.c (class_compute_field_layout): Move the initialization of
12727         field->def_value to mono_class_vtable ().
12728
12729         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12730         non-corlib types.
12731
12732         * object.c (mono_object_allocate): Make it inline.
12733
12734         * object.c (mono_object_allocate_spec): Make it inline.
12735         
12736 2003-12-02  Dick Porter  <dick@ximian.com>
12737
12738         * locales.c (create_NumberFormat): NumberFormatInfo construction.
12739         Patch by Mohammad DAMT (mdamt@cdl2000.com).
12740
12741 2003-12-01  Dick Porter  <dick@ximian.com>
12742
12743         * threads.c: Fix signature and call in CreateMutex and
12744         CreateEvent.
12745
12746 2003-12-01  Dick Porter  <dick@ximian.com>
12747
12748         * icall.c: 
12749         * locales.c: Implement string compares and searching
12750
12751         * object.h: Add extra Thread field
12752
12753 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
12754
12755         * reflection.c (fixup_method): Add support for MonoCMethod.
12756
12757 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
12758
12759         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12760
12761         * reflection.c (assembly_name_to_aname): Allow extra characters in
12762         assembly names. Fixes #51468.
12763
12764 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
12765
12766         * exception.c (mono_exception_from_name_domain): New helper function.
12767
12768         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12769         exception object in the correct domain.
12770
12771         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
12772         formatting + make a copy a the input data.
12773
12774         * loader.c (mono_get_method_from_token): Methods which contain
12775         native code do not have entries in the ImplMap.
12776
12777         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12778         Thanks to Gonzalo for spotting this.
12779         
12780         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12781         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12782
12783         * assembly.h (mono_assembly_load_from): Split the second part of 
12784         assembly loading into a new public function.
12785
12786         * exception.h (mono_get_exception_bad_image_format): New function.
12787
12788 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
12789
12790         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
12791         Enumerate all modules inside a dynamic assembly. Fixes #51293.
12792         
12793         * icall.c: Add new icall for creating dynamic methods.
12794
12795         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12796
12797         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12798
12799         * reflection.c (mono_reflection_create_dynamic_method): New icall to
12800         create a dynamic method.
12801
12802         * reflection.c (resolve_object): New helper function.
12803
12804         * reflection.c: Generalize ReflectionMethodBuilder and the functions
12805         which manipulate it so they can also work on dynamic methods.
12806
12807         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
12808         creating the MonoReflectionMethodAux structure if it is not needed.
12809         
12810         * reflection.h verify.c: Update after changes to object layout.
12811
12812         * reflection.c (method_builder_encode_signature): Fix compilation on
12813         gcc 2.95.x.
12814
12815 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
12816
12817         * appdomain.h: Added support for context static fields. Added static_data
12818           field to MonoAppContext and renamed thread_static_fields to a more
12819           generic special_static_fields in MonoAppDomain, since it can now contain
12820           context static fields.
12821         * domain.c: Updated hashtable name.
12822         * object.c: Replaced field_is_thread_static() for a more generic
12823           field_is_special_static() which also checks for context static attribute.
12824           In mono_class_vtable(), added support for static context fields.
12825         * threads.c: Changed methods that manage thread static fields to more
12826           generic methods so they can be reused both for thread and context static
12827           data.
12828         * threads.h: Declared some new methods.
12829
12830 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
12831
12832         * reflection.h: Update after changes to the managed types.
12833
12834         * reflection.c (encode_custom_modifiers): New helper function.
12835
12836         * reflection.c (method_encode_signature): Emit custom modifiers.
12837
12838         * reflection.c (field_encode_signature): Emit custom modifiers.
12839
12840 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
12841
12842         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12843
12844         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
12845         implementation.
12846
12847         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
12848         icall.
12849
12850         * object.c (mono_field_get_value_object): New function.
12851
12852         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12853         specific.
12854
12855 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
12856
12857         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12858         return a preallocated out-of-memory exception instance.
12859
12860         * object.c (out_of_memory): Use the new function.
12861
12862         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12863         flag is before the custom modifiers. Fixes #49802.
12864
12865 2003-11-16  Martin Baulig  <martin@ximian.com>
12866
12867         * class.c (mono_class_is_open_constructed_type): Implemented the
12868         MONO_TYPE_GENERICINST case.
12869
12870 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
12871
12872         * assembly.c (mono_assembly_fill_assembly_name): New function to
12873         fill out the MonoAssemblyName structure.
12874         (mono_assembly_open): Use the new function.
12875
12876         * icall.c (fill_reflection_assembly_name): New helper function.
12877
12878         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12879         new function.
12880
12881         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
12882
12883 2003-11-15  Martin Baulig  <martin@ximian.com>
12884
12885         * class.c (mono_class_is_open_constructed_type): New public
12886         function; checks whether a type is an open constructed type,
12887         ie. whether it still contains type parameters.
12888         (mono_class_inflate_generic_type): If we're a type parameter and
12889         the inflated type is also a MONO_TYPE_(M)VAR, return the original
12890         type.
12891
12892         * class.h (MonoGenericInst): Added `guint32 is_open'.
12893
12894         * loader.c (method_from_methodspec): Check whether we're an open
12895         or closed constructed type and set `ginst->is_open'.
12896
12897         * reflection.c (mono_reflection_bind_generic_parameters): Check
12898         whether we're an open or closed constructed type and set
12899         `ginst->is_open'.
12900         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
12901         from open constructed types.
12902
12903 2003-11-15  Martin Baulig  <martin@ximian.com>
12904
12905         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12906         a generic instance (instead of a generic type declaration) with
12907         unbound generic parameters, bind them to our actual types.
12908
12909 2003-11-14  Martin Baulig  <martin@ximian.com>
12910
12911         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
12912
12913         * reflection.c (mono_reflection_bind_generic_parameters): If we're
12914         an interface type, populate `res->interfaces' with instantiated
12915         versions of all the interfaces we inherit.
12916
12917 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
12918
12919         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
12920         when MONO_PATH is set but doesn't contain the install dir.
12921
12922 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12923
12924         * icall.c:
12925         (ves_icall_Type_GetInterfaces): don't return an interface twice when
12926         it's also implemented in base classes. Fixes bug #50927.
12927
12928 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
12929
12930         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
12931         if this method is called from a finalizer. Fixes #50913.
12932
12933 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
12934
12935         * threads.c: Implement VolatileRead/VolatileWrite
12936
12937         * icall.c: Add new icalls for VolatileRead/VolatileWrite
12938
12939 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12940
12941         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
12942         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
12943         2.95.3.
12944
12945         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
12946         from Peter Ross (pro@missioncriticalit.com).
12947         
12948 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
12949
12950         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
12951
12952 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12953
12954         * assembly.c (mono_assembly_load_references): Disable check because it
12955         triggers on older corlibs which lots of people have.
12956
12957 2003-11-12  Jackson Harper  <jackson@ximian.com>
12958
12959         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
12960         load corlib.dll if mscorlib.dll is not found.
12961         * assembly.h: Remove corlib name define.
12962         * class.c:
12963         * domain.c:
12964         * image.c: Change corlib name to mscorlib.
12965         
12966 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
12967
12968         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
12969
12970 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
12971
12972         * appdomain.h: Added loader_optimization here to sync with the C#
12973         code, and add disallow_binding_redirects field.
12974
12975 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
12976
12977         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
12978
12979         * reflection.c (mono_image_build_metadata): Fix crash on modules
12980         with no types.
12981
12982         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
12983
12984         * icall.c (ves_icall_get_method_info): Return callingConvention as
12985         well.
12986
12987         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
12988         namespaces from the EXPORTEDTYPE table as well.
12989
12990         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
12991         from all modules inside the assembly.
12992         
12993 2003-11-11  Martin Baulig  <martin@ximian.com>
12994
12995         * reflection.c (mono_reflection_bind_generic_parameters): Make
12996         this work for interfaces.
12997
12998 2003-11-11  Martin Baulig  <martin@ximian.com>
12999
13000         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13001
13002 2003-11-11  Martin Baulig  <martin@ximian.com>
13003
13004         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13005         "MonoInflatedMethod" and "MonoInflatedCtor".
13006
13007 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13008
13009         * reflection.c (resolution_scope_from_image): Use the assembly table
13010         from the manifest module, since other modules don't have it.
13011
13012         * debug-helpers.c (mono_type_full_name): New helper function.
13013
13014         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13015
13016         * image.c (mono_image_load_file_for_image): New public function which
13017         is a replacement for the load_file_for_image in class.c.
13018
13019         * assembly.c (mono_assembly_load_module): A wrapper for the function
13020         above which does assembly association and reference loading too.
13021
13022         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13023
13024 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13025
13026         * appdomain.c: not all of the attributes for the full assembly name
13027         are required and the order doesn't matter. Fixes bug #50787.
13028
13029 2003-11-10  Dick Porter  <dick@ximian.com>
13030
13031         * locales.c: Use platform-endian UTF16
13032
13033 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13034
13035         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13036         
13037 2003-11-10  Martin Baulig  <martin@ximian.com>
13038
13039         * metadata.c
13040         (mono_metadata_load_generic_params): Make this actually work.
13041
13042         * reflection.c (mono_reflection_bind_generic_parameters): If our
13043         parent is a generic instance, pass all the `types' to it, no
13044         matter whether it has the same number of type parameters or not.
13045
13046 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13047
13048         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13049
13050         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13051         assignment code to this function so it gets called recursively for all
13052         modules.
13053
13054         * image.c (load_modules): Remove the assembly assignment since it is
13055         now done by mono_assembly_load_references.
13056         
13057         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13058         Add 'module' argument.
13059         (mono_module_get_types): New helper function.
13060         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13061
13062 2003-11-08  Martin Baulig  <martin@ximian.com>
13063
13064         * class.c (mono_class_inflate_generic_method): Interface method
13065         don't have a header.
13066
13067         * reflection.c (mono_image_get_methodspec_token): Take an
13068         additional `MonoGenericInst *' argument instead of reading it from
13069         the header; this is necessary to support interfaces.
13070         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13071         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13072         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13073         argument.
13074
13075         * reflection.h (MonoReflectionInflatedMethod): Added
13076         `MonoGenericInst *ginst'.
13077
13078 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13079
13080         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13081
13082 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13083
13084         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13085
13086 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13087
13088         * reflection.c 
13089         (reflection_methodbuilder_from_method_builder):
13090         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13091         initialize a ReflectionMethodBuilder structure.
13092         (mono_image_get_methodbuilder_token):
13093         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13094         tokens which point to types in another module inside the same assembly.
13095
13096         * reflection.c: Use the new helper functions.
13097         
13098         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13099
13100         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13101         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13102
13103         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13104         neccesary.
13105
13106         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13107         current module. Emit the manifest only for the main module.
13108
13109         * reflection.c (mono_image_create_token): Add assertion when a 
13110         memberref needs to be created.
13111
13112         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13113
13114         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13115         larger buffer for the custom attribute blob. Fixes #50637.
13116         
13117 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13118
13119         * threadpool.c: notify listener on async processing handles after
13120         invoking the async callback. Thanks to Zoltan.
13121
13122 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13123
13124         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13125         avoid code duplication.
13126
13127         * reflection.h (MonoDynamicImage): New type which is currently unused,
13128         but will be used through the ref.emit code in place of 
13129         MonoDynamicAssembly.
13130
13131         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13132         object layout.
13133
13134         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13135         a MonoDynamicImage instead of just a MonoImage.
13136         
13137         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13138         icalls to ModuleBuilder but keep their semantics, so they will work
13139         with moduleb->assemblyb. This will change later.
13140         
13141 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13142
13143         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13144         object layout.
13145
13146         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13147         main module, since it is now done by the managed code.
13148
13149 2003-11-03  Martin Baulig  <martin@ximian.com>
13150
13151         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13152         `ginst->klass' here.
13153         (method_encode_methodspec): Don't use the `ginst->generic_method's
13154         klass if it's a generic instance, use `ginst->klass' in this case.
13155
13156 2003-11-03  Martin Baulig  <martin@ximian.com>
13157
13158         * reflection.c (mono_image_get_generic_method_param_info):
13159         Removed, use mono_image_get_generic_param_info() instead.
13160         (mono_image_get_type_info): Write the GenericParam table before
13161         the Method table.  This is neccessary because in the GenericParam
13162         table, type parameters of the class (ie. '!0' etc.) must come
13163         before the ones from its generic methods (ie. '!!0' etc).
13164
13165 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13166
13167         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13168
13169 2003-11-02  Martin Baulig  <martin@ximian.com>
13170
13171         * reflection.c (create_generic_typespec): Take a
13172         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13173         the generic parameters from it.
13174
13175 2003-11-02  Martin Baulig  <martin@ximian.com>
13176
13177         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13178         instead of a `MonoClassField *' since we just need the type.
13179         (create_generic_typespec): New static function.  Creates a
13180         TypeSpec token for a generic type declaration.
13181         (mono_image_get_generic_field_token): New static function.
13182         (mono_image_create_token): If we're a FieldBuilder in a generic
13183         type declaration, call mono_image_get_generic_field_token() to get
13184         the token.
13185
13186 2003-11-02  Martin Baulig  <martin@ximian.com>
13187
13188         * reflection.h
13189         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13190         `MonoReflectionGenericInst *declaring_type' and
13191         `MonoReflectionGenericInst *reflected_type' fields.
13192
13193         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13194         `MonoReflectionGenericInst *declaring_type' and a
13195         `MonoReflectionGenericInst *reflected_type' argument instead of a
13196         single `MonoReflectionGenericInst *type' one.  Set
13197         `res->declaring_type' and `res->reflected_type' from them.
13198         (mono_reflection_inflate_field): Likewise.      
13199
13200 2003-11-02  Martin Baulig  <martin@ximian.com>
13201
13202         * class.c (mono_class_setup_vtable): Don't store generic methods
13203         in the vtable.  
13204
13205 2003-11-02  Martin Baulig  <martin@ximian.com>
13206
13207         * reflection.h (MonoReflectionGenericInst): Added
13208         `MonoReflectionType *declaring_type'.
13209
13210         * reflection.c (mono_reflection_bind_generic_parameters): Use
13211         `if (tb->parent)' instead of `klass->parent'.
13212
13213 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13214
13215         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13216         with an empty ASSEMBLY table.
13217
13218         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13219         variable in the inner and outer loops.
13220
13221 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
13222
13223         * metadata.h (mono_metadata_make_token): Put parentheses around macro
13224         argument.
13225
13226         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
13227         
13228         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
13229         icalls. Instead, do everything in managed code. This is needed since
13230         it is hard to restore the original domain etc. in unmanaged code in the
13231         presence of undeniable exceptions.
13232
13233         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
13234         New icalls to push and pop appdomain refs.
13235
13236 2003-10-31  Martin Baulig  <martin@ximian.com>
13237
13238         * class.c (inflate_generic_type): Renamed to
13239         mono_class_inflate_generic_type() and made it public.
13240
13241         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
13242         New interncall.
13243
13244         * loader.c (mono_field_from_memberref): Also set the retklass for
13245         typespecs.
13246
13247         * fielder.c (mono_image_get_inflated_field_token): New static
13248         method; creates a metadata token for an inflated field.
13249         (mono_image_create_token, fixup_method): Added support for
13250         "MonoInflatedField".
13251         (fieldbuilder_to_mono_class_field): New static function.
13252         (mono_reflection_inflate_field): New public function.
13253
13254         * reflection.h
13255         (MonoReflectionGenericInst): Added `MonoArray *fields'.
13256         (MonoReflectionInflatedField): New typedef.     
13257
13258 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
13259
13260         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13261         for Solaris and other platforms without s6_addr16
13262
13263 2003-10-30  Martin Baulig  <martin@ximian.com>
13264
13265         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13266         argument instead of two.
13267         (mono_class_inflate_generic_signature): Likewise.
13268         (inflate_generic_header): Likewise.
13269         (mono_class_inflate_generic_method): Likewise.  In addition, if
13270         `ginst->klass' is set, it becomes the new `method->klass'.
13271
13272         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13273         field.
13274
13275         * reflection.c (encode_generic_method_sig): Write a 0xa as the
13276         first byte. [FIXME]
13277         (method_encode_methodspec): If we have generic parameters, create
13278         a MethodSpec instead of a MethodRef.
13279         (fixup_method): Added support for "MonoInflatedMethod" and
13280         "MonoInflatedCtor".
13281         (mono_image_create_token): Added support for "MonoInflatedMethod"
13282         and "MonoInflatedCtor".
13283         (inflated_method_get_object): New static function; returns a
13284         managed "System.Reflection.MonoInflatedMethod" object.
13285         (mono_reflection_bind_generic_method_parameters): Return a
13286         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13287         (mono_reflection_inflate_method_or_ctor): Likewise.
13288         (mono_image_get_generic_method_param_info): Initialize unused
13289         fields to zero.
13290         (mono_image_get_generic_param_info): Likewise.
13291
13292         * reflection.h (MonoReflectionInflatedMethod): New public
13293         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
13294         "S.R.MonoInflatedCtor" classes.
13295
13296         * loader.c (method_from_memberref): If we're a TypeSpec and it
13297         resolves to a generic instance, inflate the method.
13298
13299 2003-10-28  Dick Porter  <dick@ximian.com>
13300
13301         * object.c (mono_runtime_run_main): Convert command-line arguments
13302         into utf8, falling back to the user's locale encoding to do so.
13303
13304 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
13305
13306         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13307         at this time.
13308
13309         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13310
13311         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13312         up icalls at method definition time. Partially fixes #33569.
13313
13314 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
13315
13316         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13317         marshalling of arrays. Fixes #50116.
13318
13319         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13320
13321         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13322         points to a vtable in the dying appdomain.
13323
13324         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13325         listeners into unmanaged code inside the lock.
13326
13327         * object.c (mono_class_vtable): Turn off typed allocation in non-root
13328         domains and add some comments.
13329
13330 2003-10-25  Martin Baulig  <martin@ximian.com>
13331
13332         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13333
13334         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13335
13336         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13337         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13338         currently parsing.  Create the generic class and store it in
13339         `generic_inst->klass' before parsing the type arguments.  This is
13340         required to support "recursive" definitions; see mcs/tests/gen-23.cs
13341         for an example.
13342         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13343         to support recursive typespec entries.
13344
13345         * class.c (mono_class_setup_parent): If our parent is a generic
13346         instance, we may get called before it has its name set.
13347         (mono_class_from_generic): Splitted into
13348         mono_class_create_from_generic() and mono_class_initialize_generic().
13349
13350 2003-10-25  Martin Baulig  <martin@ximian.com>
13351
13352         * icall.c (ves_icall_Type_BindGenericParameters): Return a
13353         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13354         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13355         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13356
13357         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13358         (create_typespec): Likewise.
13359         (mono_reflection_bind_generic_parameters): Return a
13360         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13361         (mono_reflection_inflate_method_or_ctor): New public function.
13362
13363         * reflection.h (MonoReflectionGenericInst): New typedef.        
13364
13365 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
13366
13367         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13368         inside the domain lock. Fixes #49993.
13369         
13370         * object.c (mono_class_vtable): When typed allocation is used, 
13371         allocate vtables in the GC heap instead of in the mempool, since the
13372         vtables contain GC descriptors which are used by the collector even
13373         after the domain owning the mempool is unloaded.
13374
13375         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13376
13377         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13378         reflect what it does. Also invalidate mempools instead of freeing
13379         them if a define is set.
13380
13381         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13382         of the appdomain.
13383         
13384         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13385         hold the finalizable objects in this domain.
13386
13387         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13388         appdomain.
13389
13390         * appdomain.c (mono_domain_set): New function to set the current
13391         appdomain, but only if it is not being unloaded.
13392
13393         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13394         appdomain which is being unloaded.
13395         
13396         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13397         unloading of the root appdomain.
13398
13399         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13400         icall to execute a method in another appdomain. Intended as a 
13401         replacement for InternalSetDomain, which can confuse the code 
13402         generation in the JIT.
13403
13404         * appdomain.c (mono_domain_is_unloading): New function to determine
13405         whenever an appdomain is unloading.
13406
13407         * appdomain.c (mono_domain_unload): New function to correctly unload
13408         an appdomain.
13409
13410         * assembly.c (mono_assembly_load_references): Check that an assembly
13411         does not references itself.
13412
13413         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13414         domain manually, it asks the finalizer thread to do it, then waits for
13415         the result. Also added a timeout.
13416
13417         * icall.c: Register the new icalls.
13418
13419         * threads.h threads.c: Export the mono_gc_stop_world and 
13420         mono_gc_start_world functions.
13421         
13422         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
13423         function to fill out the mempool with 0x2a.
13424
13425 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
13426
13427         * reflection.h (MonoReflectionMethodAux): New structure to store
13428         information which is rarely used, thus is not in the MonoMethod
13429         structure.
13430
13431         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13432         store the aux info.
13433
13434         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13435         and marshalling info into the aux structure.
13436
13437         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13438         from the aux structure.
13439
13440         * loader.c (mono_method_get_param_names): Retrieve the param names from
13441         the aux structure.
13442         
13443 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
13444
13445         * exception.h exception.c: Add AppDomainUnloadedException && fix 
13446         warning.
13447
13448 2003-10-21  Dick Porter  <dick@ximian.com>
13449
13450         * socket-io.c
13451         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13452         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13453
13454 2003-10-21  Martin Baulig  <martin@ximian.com>
13455
13456         * reflection.c (mono_reflection_bind_generic_parameters):
13457         `klass->parent' is NULL for interfaces.
13458
13459 2003-10-21  Martin Baulig  <martin@ximian.com>
13460
13461         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13462
13463 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
13464
13465         * exception.c (mono_exception_from_name_msg): New helper function for
13466         creating exceptions and initializing their message field.
13467
13468         * exception.c: Simplify functions using the new helper.
13469
13470         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13471         New function.
13472
13473         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13474         mono_raise_exception, since otherwise gcc doesn't generate the function
13475         epilog for raise_exception, confusing the stack unwinding in the JIT.
13476         Fixes #45043.
13477
13478         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13479         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13480         Fixes #49499.
13481
13482 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13483
13484         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13485         utf8.
13486
13487 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
13488
13489         * icall.c: Removed GetUninitializedObject method because
13490           AllocateUninitializedClassInstance does the same.
13491
13492 2003-10-18  Martin Baulig  <martin@ximian.com>
13493
13494         * class.c (inflate_generic_signature): Renamed to
13495         mono_class_inflate_generic_signature() and made it public.
13496         (my_mono_class_from_generic_parameter): New static function; if we
13497         don't already have the generic parameter's MonoClass, create a
13498         very simple one which is just used internally in the runtime and
13499         not passed back to managed code.
13500
13501         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13502
13503         * metadata.h (MonoMethodSignature): Moved the
13504         `MonoGenericParam *gen_params' to the MonoMethodHeader.
13505         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13506
13507         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13508         ves_icall_MonoMethod_GetGenericArguments(); this is now an
13509         interncall on the MonoMethod class, not on MethodInfo.
13510         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13511         calling mono_reflection_bind_generic_method_parameters() directly.
13512
13513         * loader.c (mono_method_get_signature): If this is a MethodSpec;
13514         return the already computed `method->signature'.
13515         (method_from_methodspec): New static function to load a method
13516         from a MethodSpec entry.
13517         (mono_get_method_from_token): Call the new method_from_methodspec()
13518         for MethodSpec tokens.  
13519         (mono_get_method_from_token): If we're a generic method, load the
13520         type parameters.
13521
13522         * reflection.c (mono_image_get_memberref_token): Allow
13523         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13524         table.
13525         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13526         (mono_image_create_token): First check whether it's a generic
13527         method (so we'd need to create a MethodSpec), then do the other
13528         two alternatives.
13529         (mono_reflection_bind_generic_method_parameters): Return a
13530         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13531         called directly from the interncall.
13532
13533 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
13534
13535         * reflection.c (load_public_key): Move loading of the public key
13536         into managed code.
13537
13538         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13539
13540         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13541         fields.
13542
13543         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13544         culture, hash_alg and public_key. Fixes #49555.
13545
13546 2003-10-17  Martin Baulig  <martin@ximian.com>
13547
13548         * class.h (MonoGenericInst): Moved this declaration here and added
13549         `MonoMethod *generic_method'.
13550
13551         * icall.c
13552         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13553         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13554
13555         * metadata.c (mono_metadata_type_equal): Two types of
13556         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13557         index; ie. don't compare the address of the `MonoGenericParam'
13558         structure.
13559         (mono_metadata_load_generic_params): Removed the `MonoMethod
13560         *method' argument.
13561
13562         * metadata.h (MonoGenericInst): Moved declaration to class.h.
13563         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13564
13565         * reflection.c (method_encode_signature): Encode the number of
13566         generic parameters.
13567         (encode_generic_method_sig): New static function.
13568         (method_encode_methodspec): New static function; creates an entry
13569         in the MethodSpec table for a generic method.
13570         (mono_image_get_methodspec_token): New static function.
13571         (mono_image_create_token): Call mono_image_get_methodspec_token()
13572         for generic methods.
13573         (mono_reflection_bind_generic_method_parameters): New public
13574         function.  Instantiates a generic method.
13575
13576 2003-10-16  Martin Baulig  <martin@ximian.com>
13577
13578         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13579         *gen_params' here from MonoMethodHeader.
13580
13581         * metadata.c (mono_metadata_parse_method_signature): If we have
13582         generic parameters, initialize `method->gen_params' and then set
13583         the correct `type->data.generic_param' in all the parameters.
13584
13585 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
13586
13587         * threads.c (mono_threads_get_default_stacksize): New function to 
13588         return the default stacksize.
13589
13590         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13591         termination of the finalizer thread, since the previous method had
13592         race conditions. Fixes #49628.
13593
13594         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13595         as for the other managed threads.
13596
13597 2003-10-16  Martin Baulig  <martin@ximian.com>
13598
13599         * class.c (inflate_generic_signature): Copy `generic_param_count'
13600         and `gen_params'.
13601
13602         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13603         New interncall.
13604
13605         * metadata.c (mono_metadata_parse_method_signature): Actually set
13606         the `method->generic_param_count' here.
13607         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13608
13609 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
13610
13611         * object.h: Add a new field to TypedRef to simplify the implementation
13612         of the REFANY opcodes in the JIT.
13613
13614         * icall.c: Make use of the new field.
13615
13616         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13617         dynamically.
13618
13619 2003-10-15  Martin Baulig  <martin@ximian.com>
13620
13621         * class.c (mono_class_from_gen_param): Renamed to
13622         mono_class_from_generic_parameter() and moved most of the
13623         functionality from mono_reflection_define_generic_parameter()
13624         here; ie. we create a "real" class here.
13625         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13626         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13627         previously been called.
13628
13629         * class.h (MonoGenericParam): Moved the declaration of this struct
13630         here from metadata.h and added `MonoMethod *method'.
13631
13632         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13633         interncall.
13634
13635         * loader.c (mono_get_method_from_token): If we have any generic
13636         parameters, call mono_metadata_load_generic_params() to read them
13637         from the MONO_TABLE_GENERICPAR.
13638
13639         * metadata.c (mono_metadata_load_generic_params): Added
13640         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13641
13642         * metadata.h (MonoMethodSignature): Replaced
13643         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13644         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13645
13646         * reflection.c (mono_reflection_define_generic_parameter): Moved
13647         most of the functionality into the new
13648         mono_class_from_generic_parameter(); set the `method' field if
13649         we're a method parameter.       
13650
13651 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
13652
13653         * marshal.c (emit_struct_conv): if native size is 0
13654         emit no code.
13655
13656 2003-10-14  Martin Baulig  <martin@ximian.com>
13657
13658         * icall.c: The generics API has changed in the spec since it was
13659         added to System.Type; these modifications make it match the spec
13660         again.
13661         (ves_icall_Type_GetGenericParameters): Renamed to
13662         `ves_icall_Type_GetGenericArguments'.
13663         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13664         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13665         `ves_icall_MonoType_get_HasGenericArguments'.
13666         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13667         `ves_icall_MonoType_get_IsGenericParameter'.
13668         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13669         this is no interncall anymore.
13670         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13671         `ves_icall_TypeBuilder_get_IsGenericParameter'.
13672
13673 2003-10-14  Martin Baulig  <martin@ximian.com>
13674
13675         * reflection.c (mono_reflection_bind_generic_parameters): Also
13676         inflate generic methods if we're reading the class from IL.
13677
13678 2003-10-13  Martin Baulig  <martin@ximian.com>
13679
13680         * reflection.c (mono_reflection_define_generic_parameter): This
13681         method isn't called directly from the icall anymore; take a
13682         `MonoReflectionAssemblyBuilder *' so we can use this for type and
13683         method generic parameters.
13684         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13685         (method_builder_encode_signature): Encode generic parameters.
13686         (mono_image_get_method_info): Write generic params to the
13687         MONO_TABLE_GENERICPARAM table.
13688
13689         * reflection.h (MonoReflectionMethodBuilder): Added
13690         `MonoArray *generic_params'.
13691
13692         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13693
13694         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13695         wrapper for mono_reflection_define_generic_parameter().
13696         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
13697
13698 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
13699
13700         * marshal.h: Add missing function to fix build.
13701
13702         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
13703         the SetLastError pinvoke attribute.
13704
13705         * marshal.c (mono_marshal_set_last_error): New helper function called
13706         by the generated code.
13707         
13708         * marshal.c (mono_mb_emit_branch): New helper function.
13709
13710         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13711
13712         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13713         classes as parameters and return values of delegates. Fixes #29256. 
13714
13715 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
13716
13717         * locales.c: use gint32 in non HAVE_ICU case
13718
13719 2003-10-11  Martin Baulig  <martin@ximian.com>
13720
13721         * mono-debug.c (mono_debug_add_method): Added a workaround for
13722         bug #48591.
13723
13724 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
13725
13726         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13727         delegates passed to native code must use the STDCALL calling 
13728         convention. Fixes #35987.
13729
13730 2003-10-10  Martin Baulig  <martin@ximian.com>
13731
13732         * class.c (inflate_generic_type): If we're inflating for a generic
13733         type instance (and not for a generic method), return
13734         MONO_TYPE_MVAR unchanged.
13735
13736 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13737
13738         * string-icalls.c: Join ignores null strings in the source array.
13739         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13740         * threads.c: GetAvailableTheads is slightly more accurate.
13741
13742 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
13743
13744         * threads.h threads.c : add mono_threads_set_default_stacksize
13745         and pass default to CreateThread calls.
13746
13747 2003-10-09  Dick Porter  <dick@ximian.com>
13748
13749         * icall.c:
13750         * locales.h:
13751         * locales.c: Internal calls for constructing CultureInfo and
13752         related objects from libicu (if its available.)
13753
13754 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
13755
13756         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13757
13758 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13759
13760         * threadpool.c: added an argument to async_invoke_thread that is the
13761         item to process, pass the MonoAsyncResult to the thread start function
13762         when creating a new thread. This way we don't need to acquire any lock
13763         when we're creating a new thread. Readded a semaphore for faster
13764         response times (instead of that Sleep i added).
13765
13766 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
13767
13768         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13769         get daylight change dates better on Windows, fix handling
13770         of platforms without tm_gmtoff.
13771
13772 2003-10-06  Martin Baulig  <martin@ximian.com>
13773
13774         * class.c (inflate_generic_method): Renamed to
13775         mono_class_inflate_generic_method() and made public.
13776         (mono_class_init): Don't inflate the generic methods here.
13777         (mono_class_from_generic): Added `gboolean inflate_methods'
13778         argument.  Inflate the methods here.
13779
13780         * loader.c (mono_method_get_param_names): Ignore instances of
13781         generic types for the moment.
13782
13783         * reflection.c (fixup_method): Added support for inflated methods.
13784         (mono_image_create_token): Use mono_image_get_methodref_token()
13785         for inflated methods.
13786         (mono_custom_attrs_from_param): Ignore instances of generic types
13787         for the moment.
13788         (mono_reflection_bind_generic_parameters): New public function.
13789         Moved all the functionality from
13790         ves_icall_Type_BindGenericParameters() here and added support for
13791         dynamic types.
13792         (mono_reflection_define_generic_parameter): Initialize
13793         `klass->methods' here.
13794
13795         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13796         functionality into mono_reflection_define_generic_parameter().
13797         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13798         TypeBuilder, return that TypeBuilder.
13799
13800 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13801
13802         * appdomain.c: removed mono_delegate_semaphore.
13803
13804         * threadpool.c:
13805         (mono_thread_pool_add): moved hash table creation inside and the thread 
13806         creation outside of the critical region.
13807         (mono_thread_pool_finish): removed obsolete code.
13808         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13809         continue or exit the thread depending on the queue.
13810
13811 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
13812
13813         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13814         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13815         handle more bool marshalling options
13816
13817 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
13818
13819         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13820         arrays of structs. Also add a more descriptive error message when
13821         a structure member is marshalled as LPArray.
13822
13823 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
13824
13825         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13826         marshalling arrays of complex types. Fixes #29098. Also remove an
13827         usused and incomplete function.
13828
13829 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13830
13831         * gc.c: report heap_size - free_bytes as total memory allocated
13832         (bug#49362).
13833
13834 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
13835
13836         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
13837         fix timezone handling problems on Windows.
13838         
13839         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13840         asserts when the year is outside the range handled by ms the functions.
13841
13842         * class.c (setup_interface_offsets): If the class is an interface,
13843         fill out its interface_offsets slot.
13844
13845 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13846
13847         * threadpool.c: mark threadpool threads as background.
13848
13849 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
13850
13851         * decimal.c - define DECINLINE to nothing if not using GCC
13852
13853 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
13854
13855         * assembly.c: More refcount fixes.
13856
13857 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13858
13859         * string-icalls.c: if we're not trimming, return the same string.
13860         When not splitting, don't create a new string.
13861
13862 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13863
13864         * image.c:
13865         (mono_image_open): increment the ref_count inside the critical section.
13866
13867 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
13868
13869         * image.c (mono_image_open): Fix reference counting bug.
13870
13871 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
13872
13873         * marshal.c (mono_marshal_type_size) struct alignment changed for 
13874         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
13875         64bits. Avoid leak in mono_marshal_get_native_wrapper when
13876         mono_lookup_pinvoke_call throws.        
13877
13878 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
13879
13880         * reflection.c (mono_reflection_parse_type): Fix #49114.
13881
13882         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
13883         temporary workaround for cygwin header problem.
13884
13885         * object.c (mono_object_isinst): Synchronize this with the code
13886         generated by the JIT for casts.
13887
13888 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
13889
13890         * reflection.c (encode_type): Fix #38332.
13891
13892 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
13893
13894         * marshal.c (mono_marshal_method_from_wrapper): New function to return
13895         the original method from the wrapper method.
13896
13897 2003-09-25  Martin Baulig  <martin@ximian.com>
13898
13899         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
13900         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
13901         (ves_icall_Type_get_IsGenericInstance): New interncall.
13902
13903 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
13904
13905         * object.c: fix cast warning in big endian code.
13906
13907 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
13908
13909         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
13910         
13911 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13912
13913         * assembly.c: don't call check_env from mono_assembly_load. It's
13914         already done once in mono_assemblies_init and may cause headaches when
13915         multiple threads are loading assemblies.
13916
13917 2003-09-19  Martin Baulig  <martin@ximian.com>
13918
13919         * reflection.c (mono_reflection_define_generic_parameter): Don't
13920         allocate `klass->methods', set `klass->flags' to
13921         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
13922
13923 2003-09-18  Martin Baulig  <martin@ximian.com>
13924
13925         * class.c (mono_class_init): Don't create `class->methods' if it's
13926         already initialized.
13927
13928         * metadata.c (mono_metadata_load_generic_params): Make this
13929         actually work.
13930
13931         * reflection.c (mono_reflection_define_generic_parameter): Set
13932         parent class and interfaces from the constraints.
13933
13934         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
13935         to keep this struct in sync with the declaration in TypeBuilder.cs.
13936
13937 2003-09-17  Martin Baulig  <martin@ximian.com>
13938
13939         * metadata.h (MonoType): Replaced the data's `int type_param'
13940         field with `MonoGenericParam *generic_param'.
13941         (MonoGenericParam): Added `MonoClass *klass'.
13942
13943         * class.c (mono_class_from_gen_param): Removed the
13944         `MonoImage *image' and `int type_num' arguments.
13945
13946         * metadata.c (mono_metadata_parse_generic_param): New static
13947         method; creates a MonoGenericParam which just contains the index.
13948         (do_mono_metadata_parse_type): Call
13949         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
13950         MONO_TYPE_MVAR.
13951
13952         * reflection.c (mono_image_typedef_or_ref): Generic type
13953         parameters may be in the same assembly, but never use a typedef
13954         for them.
13955         (mono_reflection_define_generic_parameter): We're now creating a
13956         "real" class for the type parameter; it's now safe to call
13957         mono_class_from_mono_type() on the class'es type, it'll do the
13958         right thing.
13959
13960 2003-09-16  Martin Baulig  <martin@ximian.com>
13961
13962         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
13963         `symfile->range_entry_size' and `symfile->class_entry_size' here;
13964         the `symfile' data structure must be fully initialized before it
13965         gets added to the table.
13966
13967 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
13968
13969         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
13970
13971         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
13972         class init trampolines.
13973
13974 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
13975
13976         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
13977         to the built-in profiler to turn off time and allocation profiling
13978         respectively.
13979
13980 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
13981
13982         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
13983         g_direct_equal.
13984
13985         * debug-helpers.c (mono_method_full_name): Print the wrapper type
13986         in human readable form.
13987
13988 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
13989
13990         * reflection.c icall.c: Fixed warnings.
13991
13992         * image.c (load_class_names): Use a temporary hash table to hold the
13993         namespaces in order to avoid doing many string comparisons.
13994
13995         * image.h: Fix typo.
13996
13997         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
13998         Pass NULL instead of g_direct_equal to the GHashTable constructor 
13999         since the NULL case is short-circuited inside g_hash_table_lookup, 
14000         leading to better performance.  
14001
14002         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14003         obtain the first custom attribute for a given index. Depends on the
14004         CustomAttribute table being sorted by the parent field.
14005
14006         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14007         for better performance.
14008
14009 2003-09-07  Martin Baulig  <martin@ximian.com>
14010
14011         * class.c (mono_class_init): If we're a generic instance, inflate
14012         all our methods instead of loading them from the image.
14013         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14014
14015 2003-09-07  Martin Baulig  <martin@ximian.com>
14016
14017         * mono-debug-debugger.c: Added support for constructors.
14018
14019 2003-09-06  Martin Baulig  <martin@ximian.com>
14020
14021         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14022         New interncall.
14023
14024         * reflection.c (mono_reflection_setup_generic_class): Call
14025         ensure_runtime_vtable() to create the vtable.
14026
14027 2003-09-05  Martin Baulig  <martin@ximian.com>
14028
14029         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14030         MONO_TYPE_MVAR.
14031
14032 2003-09-04  Martin Baulig  <martin@ximian.com>
14033
14034         * reflection.c (mono_reflection_define_generic_parameter): Generic
14035         parameters start with zero.
14036
14037 2003-09-04  Martin Baulig  <martin@ximian.com>
14038
14039         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14040
14041         * reflection.h (MonoReflectionGenericParam): New typedef.
14042         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14043         the generic parameters from the managed TypeBuilder.
14044
14045         * reflection.c (mono_reflection_define_generic_parameter): New function.
14046         (mono_reflection_create_runtime_class): Encode generic parameters.
14047         (mono_reflection_setup_generic_class): New function; this is
14048         called after adding adding all generic params to the TypeBuilder.
14049         (encode_type): Added MONO_TYPE_VAR.
14050
14051 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14052
14053         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14054         here from the JIT.
14055
14056         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14057         load hook.
14058
14059 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14060
14061         * reflection.h reflection.c class.h class.c: Delete duplicate 
14062         definition of mono_type_get_name () from reflection.c and export the
14063         one in class.c.
14064
14065         * class.c: Class loading fixes from Bernie Solomon 
14066         (bernard@ugsolutions.com).
14067
14068         * reflection.c: Endianness fixes from Bernie Solomon 
14069         (bernard@ugsolutions.com).
14070         
14071 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14072
14073         * assembly.h assembly.c: Define a file format version for AOT
14074         libraries.
14075         
14076         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14077
14078         * appdomain.h (MonoJitInfo): New field to determine whenever the
14079         code is domain neutral.
14080         
14081 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14082
14083         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14084
14085 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14086
14087         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14088         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14089         Avoid caching the result since strings must be domain specific. Fixes
14090         #48050.
14091
14092 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14093
14094         * marshal.c (mono_marshal_init): Make this callable multiple times
14095         since it is hard to find a correct place to call it.
14096
14097         * object.c (mono_runtime_class_init): Execute static constructors in
14098         the correct appdomain.
14099
14100         * image.c (build_guid_table): Handle the case when multiple images have
14101         the same GUID.
14102
14103 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14104
14105         * icall.c: added a couple of icalls for System.Web.
14106
14107 2003-08-28  Martin Baulig  <martin@ximian.com>
14108
14109         * icall.c (ves_icall_Type_BindGenericParameters): Use
14110         `klass->generic_inst' instead of `&klass->byval_arg' in the
14111         mono_type_get_object() call.  The returned type must be
14112         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14113
14114 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14115
14116         * NOTES: New file.
14117
14118         * object.c (mono_class_proxy_vtable): Make it thread safe.
14119
14120         * pedump.c: Fix warning.
14121
14122         * object.c appdomain.h: Get rid of metadata_section. 
14123         It is no longer needed and it was causing deadlocks with domain->lock.
14124
14125         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14126
14127 2003-08-26  Martin Baulig  <martin@ximian.com>
14128
14129         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14130
14131 2003-08-26  Martin Baulig  <martin@ximian.com>
14132
14133         * pedump.c (main): Call mono_metadata_init(),
14134         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14135         and mono_loader_init().
14136
14137 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14138
14139         * loader.h: Add missing include to fix build.
14140
14141         * image.h: mono_image_load_references is no more.
14142
14143         * assembly.c: Reworked assembly loading to make it really thread safe.
14144         After these changes, the assembly returned by mono_assembly_open is
14145         fully initialized, i.e. all its references assemblies are loaded.
14146
14147         * assembly.c (mono_image_load_references): Renamed to 
14148         mono_assembly_load_references, and made private, since clients no
14149         longer need to call it.
14150
14151         * class.c: Removed calls to mono_assembly_load_references, since it was
14152         a source of deadlocks.
14153
14154         * loader.h loader.c class.h class.c: Protect data structures using a 
14155         new lock, the loader lock.
14156
14157         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14158         GPtrArrays only when needed.
14159
14160         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14161         into empty structures by mcs. Fixes pinvoke7.cs.
14162         
14163         * domain.c (mono_init): Call a new initialization function.
14164
14165         * appdomain.c (mono_runtime_init): Call the new initializer function
14166         of the marshal module.
14167
14168         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14169         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14170
14171         * marshal.h marshal.c: Added locks around the wrapper caches to make
14172         this module thread safe.
14173
14174         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14175         this argument. Fixes pinvoke1.exe.
14176
14177 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14178
14179         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14180         enumeration of values. Removed fields to store remote call output values in
14181         MonoAsyncResult. Not needed any more.
14182         * object.c: Initialize call_type and async_result fields in mono_message_init.
14183         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14184         dispatching the message.
14185         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14186         async call to finish. To do it use a message with EndInvoke call type.
14187
14188 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14189
14190         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14191         determines whenever a method has marshalling info.
14192
14193 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14194
14195         * assembly.c: fix the build on windows.
14196
14197 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14198
14199         * object.cs: Fixed bug #47785.
14200
14201 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14202
14203         * string-icalls.c (StringReplace): If their are no occurances of
14204         the old string found return a reference to the supplied
14205         string. This saves some memory and matches MS behavoir.
14206         
14207 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14208
14209         * socket-io.c: fixed compilation for systems that define AF_INET6
14210         and don't define SOL_IP/SOL_IPV6.
14211
14212 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14213
14214         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14215         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14216
14217         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14218
14219         * domain.c: Make this module thread safe.
14220
14221         * domain.c (mono_init): Call new initialization function.
14222
14223         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
14224         reference types too. Fixes #38812.
14225
14226         * image.c (mono_image_init): Fixed warnings.
14227
14228         * class.c (mono_class_from_typeref): Handle assembly load failure
14229         correctly.
14230
14231         * appdomain.c (add_assemblies_to_domain): Handle the case when
14232         the references of an assembly are not yet loaded.
14233
14234         * metadata.c image.c assembly.c: Moved initialization of global
14235         variables to a separate function called at startup since lazy 
14236         initialization of these variables is not thread safe.
14237         
14238         * image.c assembly.c: Made this module thread safe by adding locks in 
14239         the appropriate places.
14240
14241         * domain.c (mono_init): Call the new initialization functions of the
14242         three modules.
14243
14244 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
14245
14246         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
14247           make a direct call. It is proxy's work to make the call asynchronous.
14248           mono_delegate_end_invoke(): If the targe is a proxy, just collect
14249           the return values.
14250         * object.cs: mono_method_call_message_new(): read AsyncResult and
14251           state object from parameters list, if this info is requested.
14252         * object.h: Added fields to store remote call output values in
14253           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
14254
14255 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14256
14257         * object.h: add needed fields to MonoThread.
14258         * threads.c, threads.h: allow registering a function to cleanup data
14259         allocated per thread by the JIT.
14260
14261 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14262
14263         * loader.h: portability fix by Bernie Solomon
14264         * <bernard@ugsolutions.com>.
14265
14266 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
14267
14268         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
14269         return a MonoArray. This simplifies the code and also ensures that
14270         the cache allways contains an object reference as a value.
14271
14272         * icall.c (ves_icall_get_parameter_info): Simplified using the new
14273         function.
14274
14275 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14276
14277         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14278         fixes a problem with byte ordering when getting the address family for
14279         a socket.
14280
14281 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
14282
14283         * .cvsignore: Added monosn.
14284
14285         * reflection.h reflection.c loader.c: Added support for parameter
14286         marshalling to dynamically created types. Fixes #47295.
14287
14288 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14289
14290         * rand.c: remove useless warnings.
14291
14292 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14293
14294         * class.c: implemented ldtoken for methods and fieldrefs.
14295
14296 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14297
14298         * threadpool.c: when mono_async_invoke was called, no one took care of
14299         monitoring the queue. So if the method invoked took some time and we
14300         got new async invoke requests after 500 ms (the thread created waited
14301         that long in WaitForSingleObject), the new async invoke was not called
14302         until the previous one finished.
14303
14304         This is fixed now. Thanks to Totte for helping with it.
14305
14306 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14307
14308         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14309
14310 2003-08-11  Martin Baulig  <martin@ximian.com>
14311
14312         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14313
14314 2003-08-06  Martin Baulig  <martin@ximian.com>
14315
14316         * mono-debug-debugger.c: Added support for static fields,
14317         properties and methods.
14318
14319 2003-08-06  Martin Baulig  <martin@ximian.com>
14320
14321         * mono-debug-debugger.c: Don't store the MonoString's vtable to
14322         make this work for applications with multiple application domains.
14323
14324 2003-08-04  Martin Baulig  <martin@ximian.com>
14325
14326         * mono-debug-debugger.c: Completely reworked the type support; the
14327         most important thing is that we're now just using one single
14328         `MonoType' instance per type.
14329
14330 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14331
14332         * mono-endian.h, mono-endian.c, icall.c: Added icall
14333         ves_icall_System_Double_AssertEndianity to assert double word endianity
14334         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14335
14336 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14337
14338         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14339         support, icalls and fixes.
14340
14341 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
14342
14343         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14344         classes that are a punctuation character in .NET is not the same a
14345         g_unichar_ispunct.
14346
14347 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14348
14349         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14350
14351 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
14352
14353         * icall.c: Add new MemCopy internalcall.
14354         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14355         Simplified code; It is not necessary to handle all the cases here,
14356         as the C# code takes care of it.  Only handle the case of the name
14357         resource embedded into the assembly.
14358
14359         Changed signature to return the data pointer and the size of the
14360         data. 
14361
14362 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
14363
14364         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14365         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14366
14367 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14368
14369         * socket-io.c: ignore EINTR error in select.
14370
14371 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14372
14373         * class.h, class.c: removed unused subclasses field in MonoClass.
14374
14375 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
14376
14377         * icall.c: improve fix of get_base_definition(). If the parent class
14378           doesn't have the mehod, look at the parent of the parent.
14379         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14380           to check if a parameter is an in or out parameter
14381           (PARAM_ATTRIBUTE_IN is not set by default).
14382           mono_method_return_message_restore(): Use mono_class_value_size to
14383           get the size of a value type. mono_type_stack_size (parameterType)
14384           does not return the correct value if parameterType is byRef.
14385           mono_load_remote_field(), mono_load_remote_field_new(),
14386           mono_store_remote_field(), mono_store_remote_field_new():
14387           raise exception if the remote call returns an exception.
14388
14389 2003-07-28  Martin Baulig  <martin@ximian.com>
14390
14391         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14392         method.  This is a wrapper around mono_runtime_invoke() which
14393         boxes the instance object if neccessary.
14394
14395 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14396
14397         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14398         metadata.h, row-indexes.h, verify.c: first cut of generics support.
14399
14400 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14401
14402         * icall.c: disable mcs bug workaround.
14403
14404 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
14405
14406         * object.c (mono_runtime_class_init): Take the metadata_section
14407         mutex before obtaining the domain mutex.
14408
14409         * appdomain.h: Added definition of metadata_section mutex here. 
14410
14411         * object.c: define metadata_mutex here.
14412
14413 2003-07-24  Ravi Pratap  <ravi@ximian.com>
14414
14415         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14416         fixed.
14417
14418 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
14419
14420         * reflection.c: Fix bug #46669
14421
14422 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14423
14424         * exception.c:
14425         * exception.h:
14426         * icall.c:
14427         * object.h: fill in the type name for TypeLoadException.
14428
14429 2003-07-23  Ravi Pratap  <ravi@ximian.com>
14430
14431         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14432         relationship between TypeBuilders while compiling corlib) and bug
14433         45993 (Array types returned from the runtime while compiling
14434         corlib were from the loaded corlib).
14435
14436 2003-07-22  Martin Baulig  <martin@ximian.com>
14437
14438         * mono-debug-debugger.c: Reworked the type support a bit more;
14439         distinguish between types and classes.
14440
14441 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14442
14443         * icall.c: add IsArrayImpl icall.
14444
14445 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
14446
14447         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14448         initializing real_size only once. Also fix bug #46602.
14449
14450 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
14451
14452         * object.c: Renamed mono_metadata_section to metadata_section.
14453
14454 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
14455
14456         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14457           empty array if the type is an array. Fixed.
14458           ves_icall_MonoMethod_get_base_definition: if the base method
14459           is abstract, get the MethodInfo from the list of methods of
14460           the class.
14461         * reflection.c: ParameterInfo.PositionImpl should be zero-based
14462           and it was 1-based. Fixed in mono_param_get_objects.
14463
14464 2003-07-20  Martin Baulig  <martin@ximian.com>
14465
14466         * mono-debug.h: Set version number to 31.
14467         (mono_debug_init): Added `MonoDomain *' argument.
14468
14469         * mono-debug-debugger.c: Reworked the type support; explicitly
14470         tell the debugger about builtin types; pass the `klass' address to
14471         the debugger.
14472
14473 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14474
14475         * image.c: Allow new metadata tables to be loaded without a
14476         warning. Also update the warning message to give the new constant value.
14477                 
14478 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14479
14480         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14481         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
14482         array type representation changes.
14483
14484 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14485
14486         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14487         on Environment.Exit () call.
14488
14489 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14490
14491         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14492         requires a matching corlib.
14493
14494 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14495
14496         * Changelog: My editor decided to add a CR to each line. Sorry about that.
14497           Committed again without the CRs.
14498         
14499 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
14500
14501         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14502           getting it from the "this" socket instance. Did not work
14503           if the socket is a subclass of Socket.
14504           Also fixed bug #35371.
14505
14506 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14507
14508         * metadata.c: fixed size for TypedByRef.
14509         * loader.c: when searching for a method, consider the vararg amrker.
14510         * unicode.c, decimal.c: constify some arrays.
14511
14512 2003-07-15  Dick Porter  <dick@ximian.com>
14513
14514         * socket-io.c: Fixed compilation for gcc < 3.2.
14515
14516         Fixed compilation for machines that don't have AF_INET6 (thanks to
14517         Bernie Solomon <bernard@ugsolutions.com> for that part.)
14518
14519         Fixed compile warnings.
14520         
14521         Fixed formatting and line endings.
14522
14523 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
14524
14525         * socket-io.h:
14526         * socket-io.c: Added IPv6 support.
14527
14528 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
14529
14530         * class.c (mono_class_is_assignable_from): New function to implement
14531         the is_assignable_from logic. Used by mono_object_isinst, 
14532         Type::IsAssignableFrom () and the interpreter.
14533
14534         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14535         Object, even interfaces.
14536         
14537         * object.c (mono_object_isinst): Implement in terms of 
14538         is_assignable_from.
14539
14540         * icall.c (ves_icall_type_is_assignable_from): New icall.
14541
14542 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
14543
14544         * domain.c (foreach_domain): fix compiler warning.
14545
14546 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
14547
14548         * image.c (load_metadata_ptrs): use g_strndup because strndup is
14549         not available on all plattforms
14550
14551 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
14552
14553         * image.h image.c: Store the metadata version string in MonoImage.
14554         * icall.c: New icall to retrieve the image version.
14555         * reflection.c (create_dynamic_image): Fill in the image version field
14556         * reflection.c (build_compressed_metadata): Use the image version
14557         from the image structure.
14558
14559 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14560
14561         * appdomain.c: modified comment.
14562         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14563         That will be its last iteration when mono_gc_cleanup is called from
14564         mono_runtime_cleanup and before the domain is unloaded.
14565
14566         Fixes bug #45962.
14567
14568 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
14569
14570         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14571         attributes.
14572
14573 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14574
14575         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14576         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14577         Bernie Solomon <bernard@ugsolutions.com>.
14578
14579 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14580
14581         * object.c, object.h: provide mono_object_new_fast() for faster
14582         allocation in some special cases.
14583
14584 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14585
14586         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14587         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14588
14589 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14590
14591         * threadpool.c: fix leaks.
14592
14593 2003-07-01  Dick Porter  <dick@ximian.com>
14594
14595         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14596         using MonoGHashTables.  Fixes threadpool bug posted to list.
14597
14598 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14599
14600         * image.h, image.c: added support to load an assembly from a byte array.
14601         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
14602         assembly bundle support.
14603
14604 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
14605
14606         * threadpool.c (mono_thread_pool_add): keep a reference to the
14607         AsyncResult to prevent GC
14608
14609 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14610
14611         * class.c: leak fix.
14612
14613 2003-06-25  Dick Porter  <dick@ximian.com>
14614
14615         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14616         for the async object, the WaitHandle object will close the handle.
14617         Fixes bug 45321.
14618
14619 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14620
14621         * class.c: in mono_array_class_get (), lookup from the hash with the
14622         same type we insert: this works around a bug in
14623         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14624         lluis. The real fix will have to wait for after the release.
14625
14626 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14627
14628         * icall.c: fix memory leak when getting type members.
14629
14630 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14631
14632         * reflection.c: added more pubtoken special cases.
14633
14634 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14635
14636         * class.c: handle field offset correctly when class size
14637         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14638
14639 2003-06-20  Martin Baulig  <martin@ximian.com>
14640
14641         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14642         *image' field.
14643
14644 2003-06-20  Martin Baulig  <martin@ximian.com>
14645
14646         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14647
14648 2003-06-20  Martin Baulig  <martin@ximian.com>
14649
14650         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
14651         just distinguish between variables in registers and variables at
14652         an offset relative to a register.
14653
14654 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14655
14656         * icall.c: #ifdef out latest changes until mcs is fixed.
14657
14658 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14659
14660         * icall.c: return members in metadata order.
14661
14662 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14663
14664         * icall.c: avoid infinite loop in GetTimeZoneData.
14665
14666 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14667
14668         * icall.c: added Marshal.Prelink/All icalls.
14669
14670 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14671
14672         * object.c, object.h: fix warnings and do some overflow checking
14673         when creating arrays.
14674
14675 2003-06-17  Dick Porter  <dick@ximian.com>
14676
14677         * file-io.h:
14678         * file-io.c: File attributes need to be tweaked slightly when
14679         passed from the managed to the w32 world.
14680
14681 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14682         * profiler.h profiler-private.h profiler.c: Rework last patch
14683         based on suggestion by Paolo.
14684         
14685 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
14686
14687         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
14688         instruction level coverage data collection.
14689         * profiler.h profiler.c (: Added new callback function which can be
14690         used by the profiler to limit which functions should have coverage
14691         instrumentation.
14692         * profiler.c (mono_profiler_load): Call g_module_build_path to
14693         generate the file name of the profiler library.
14694
14695 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14696
14697         * profiler.c, profiler.h, profiler-private.h: added basic block 
14698         coverage profiling API.
14699
14700 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
14701
14702         * reflection.c (mono_reflection_create_runtime_class): Add support
14703         for events in dynamically generated code.
14704
14705         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14706         not allocated.
14707
14708 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14709
14710         * icall.c: when getting timezone info, return reasonable values if we
14711         can't get the actual data.
14712
14713 2003-06-14  Dick Porter  <dick@ximian.com>
14714
14715         * threads.c (start_wrapper): Remove the reference to the thread
14716         object in the TLS data, so the thread object can be finalized.
14717         This won't be reached if the thread threw an uncaught exception,
14718         so those thread handles will stay referenced :-( (This is due to
14719         missing support for scanning thread-specific data in the Boehm GC
14720         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14721
14722 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14723
14724         * reflection.c: ensure streams and tables are first allocated with
14725         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14726
14727 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14728
14729         * icall.c: fixed GetElementType for byrefs (bug# 44792).
14730
14731 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
14732
14733         * reflection.c (mono_reflection_create_runtime_class): Add support for
14734         properties to dynamically created classes.
14735         * reflection.c: Fix a few places where non-MonoObjects were inserted
14736         into the tokens hashtable.
14737
14738 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14739
14740         * object.c: some support to handle out of memory exceptions.
14741
14742 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
14743
14744         * marshal.c (mono_marshal_get_native_wrapper): support reference
14745         return types
14746
14747 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14748
14749         * object.h, object.c: more portability stuff from Bernie Solomon.
14750         Unexport mono_object_allocate(). Added mono_object_unbox ().
14751         Set exitcode when an unhandled exception is thrown.
14752
14753 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
14754
14755         * marshal.c (mono_marshal_get_native_wrapper): use custom
14756         marshaler for return types.
14757
14758 2003-06-10  Dick Porter  <dick@ximian.com>
14759
14760         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14761         ip_mreq is available
14762
14763 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14764
14765         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14766         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14767         by Bernie Solomon <bernard@ugsolutions.com>.
14768
14769 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
14770
14771         * gc.c (mono_gc_init): Avoid error message on shutdown when
14772         GC_DONT_GC=1 is used.
14773
14774         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
14775         New icall to return the GUID of a module.
14776
14777 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14778
14779         * class.c: ensure instance size always includes the parent's size
14780         even whem class size is set explicitly (fixes bug#44294).
14781
14782 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14783
14784         * profiler.h, profiler.c: made the simple profiler thread-safe,
14785         get more accurate timing info. Allow the loading of an
14786         externally-developed profiler module.
14787
14788 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
14789
14790         * marshal.c (mono_marshal_get_native_wrapper): improved
14791         class/byref arguments.
14792         (mono_marshal_get_native_wrapper): better string marshaling support.
14793
14794 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14795
14796         * class.c: ensure .pack and .size are handled correctly and
14797         simplified layout of static fields.
14798
14799 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
14800
14801         * appdomain.c
14802         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14803
14804         * loader.c (mono_lookup_pinvoke_call): look for modules in the
14805         current directory (fix bug 44008)
14806
14807 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
14808
14809         * marshal.c (mono_marshal_get_native_wrapper): started support for
14810         custom marshalers.
14811         (mono_delegate_to_ftnptr): consider marshalling specifications
14812
14813 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14814
14815         * reflection.c, reflection.h: emit custom marshal info.
14816
14817 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14818
14819         * object.c: free the GError.
14820         * icall.c: added CloseEvent_internal.
14821         * threads.[ch]:
14822         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14823         call.
14824
14825 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
14826
14827         * loader.c (mono_method_get_signature): Add support for dynamic
14828         assemblies.
14829
14830 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14831
14832         * reflection.c: fixed bug #43905.
14833
14834 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14835
14836         * class.c, domain.c, icall.c, metadata.h, object.h: support for
14837         handling TypedReference and ArgIterator.
14838         * loader.c, loader.h: added function to get signature at call site.
14839
14840 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14841
14842         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
14843         data readonly. Buglets and warning fixes. Some MethodSpec support.
14844
14845 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14846
14847         * class.h, class.c, object.c: remove relative numbering support.
14848
14849 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
14850
14851         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14852         free the string, until we get a chance to fix Gtk#
14853
14854 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14855
14856         * marshal.c: revert last patch.
14857
14858 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14859
14860         * icall.c: updates for new mono_class_vtable() not calling
14861         the type constructor anymore.
14862
14863 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14864
14865         * object.h, object.c: separate vtable creation from type
14866         initialization. Make running the .cctor thread safe.
14867
14868 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
14869
14870         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14871
14872 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
14873
14874         * loader.c (mono_get_method): consider calling convention
14875
14876 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14879         to return the invisible global type for a module.
14880
14881         * reflection.c (mono_image_build_metadata): Emit global fields too.
14882
14883 2003-05-20  Peter Williams  <peterw@ximian.com>
14884
14885         * loader.c (mono_lookup_internal_call): Add a few newlines.
14886
14887 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
14888
14889         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
14890         literal strings.
14891
14892         * appdomain.c (set_domain_search_path): Recalculate search path when
14893         AppDomainSetup.PrivateBinPath changes.
14894
14895         * object.c (mono_class_compute_gc_descriptor): It turns out some
14896         parts of the class libs (like System.Thread) holds pointers to
14897         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
14898         to treat native int a pointer type here.
14899         
14900 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
14901
14902         * appdomain.h, domain.c: add hashtable for jump target resolution.
14903
14904 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
14905
14906         * reflection.h reflection.c icall.c: Added new icalls 
14907         GetManifestResourceInfoInternal, GetModulesInternal and support
14908         infrastructure.
14909
14910 2003-05-16  Dick Porter  <dick@ximian.com>
14911
14912         * icall.c:
14913         * file-io.h:
14914         * file-io.c: Implement System.IO.MonoIO::GetTempPath
14915
14916 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
14917
14918         * object.c: mono_store_remote_field: little fix to previous patch.
14919
14920 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14921
14922         * class.c: add constructors to array classes.
14923         * icall.c: special case array construction for InternalInvoke (),
14924
14925 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
14926
14927         * class.h class.c reflection.c object.c: Added support for field
14928         defaults in dynamically generated classes.
14929
14930 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
14931
14932         * reflection.c: properly encode charset for ddlimport.
14933
14934 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
14935
14936         * threads.c: allow compiling without GC.
14937
14938 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14939
14940         * appdomain.h, object.c, object.h, threads.c, threads.h: added
14941         handling of thread static data.
14942
14943 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14944
14945         * reflection.h, reflection.c: added mono_custom_attrs_free ().
14946
14947 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
14948
14949         * class.c (mono_array_class_get): always set the serializable flags
14950         (mono_array_class_get): always set the SEALED attribute for array types
14951
14952 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
14953
14954         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
14955         attributes (fix for bug 42021).
14956
14957 2003-05-12  Dick Porter  <dick@ximian.com>
14958
14959         * gc.c: Don't run finalizers when the finalizer thread is
14960         finishing up, because the default domain has already been
14961         destroyed.
14962
14963 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
14964
14965         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
14966         value is null, we should throw an exception.   This is slightly
14967         different than the other conventions used for the constructor.
14968
14969 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14970
14971         * socket-io.c: fixed windows build.
14972
14973 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14974
14975         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
14976
14977 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
14978
14979         * object.c (mono_string_new_wrapper): Compatibility fix for MS
14980         compilers.
14981
14982 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
14983
14984         * class.c (mono_class_layout_fields): Add experimental GC aware
14985         auto layout facility. Requires class library changes to work correctly.
14986
14987         (mono_class_setup_vtable): Avoid overriding explicit interface
14988         method implementations. Fixes iface3.exe test.
14989
14990         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
14991         object reference.
14992         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
14993         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
14994
14995         * metadata.h: Add new type classification macro which determines
14996         whenever the type holds an object reference.
14997
14998 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
14999
15000         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15001
15002 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15003
15004         * gc.c (finalizer_thread): Work around a GC bug.
15005
15006 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15007
15008         * marshal.c (emit_struct_conv): allow unions
15009
15010         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15011
15012 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15013
15014         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15015
15016 2003-05-06  Martin Baulig  <martin@ximian.com>
15017
15018         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15019
15020 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15021
15022         * socket-io.c:
15023         (Select_internal): allow NULLs, don't create arrays if not needed.
15024         Coupled with Socket.cs changes.
15025
15026         * threadpool.c:
15027         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15028         register a finalizer for it that will close the semaphore handle. This
15029         fixes the leak and make Lupus' test run with > 4080 loops.
15030
15031 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15032
15033         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15034         Jerome Laban (bug #42287)
15035
15036 2003-05-02  Martin Baulig  <martin@ximian.com>
15037
15038         * debug-mono-symfile.h
15039         (MonoSymbolFile): Moved declaration into mono-debug.h.
15040         (MonoDebugMethodJitInfo): Likewise.
15041         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15042         argument.
15043         (_mono_debug_address_from_il_offset): Take a
15044         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15045
15046         * mono-debug.h
15047         (MonoDebugDomainData): New struct.
15048         (mono_debug_get_domain_data): New function.
15049         (mono_debug_add_method): Take an additional `MonoDomain *'
15050         argument.
15051         (mono_debug_source_location_from_address): Likewise.
15052         (mono_debug_il_offset_from_address): Likewise.
15053         (mono_debug_address_from_il_offset): Likewise.
15054
15055 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15056
15057         * reflection.c: one more check for null type in custom attrs.
15058
15059 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15060
15061         * reflection.c: avoid warning (comparison is always false due to limited
15062         range of data type).
15063
15064 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15065
15066         * icall.c: throw an exception in Type.GetField if the argument 'name'
15067         is NULL.
15068
15069 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15070
15071         * reflection.c: fixed handling of enums in named arguments to custom
15072         attributes (bug #42123).
15073
15074 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15075
15076         * reflection.c: use the right array element type and handle
15077         a null for a Type argument, too.
15078
15079 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15080
15081         * reflection.c: handle arrays as arguments to custom attributes.
15082
15083 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15084
15085         * reflection.c: handle a string value in a custom attr
15086         ctor that takes an object.
15087
15088 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15089
15090         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15091         (fix bug #42063)
15092
15093 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15094
15095         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15096
15097 2003-04-27  Martin Baulig  <martin@ximian.com>
15098
15099         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15100         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15101         MONO_DEBUGGER_EVENT_BREAKPOINT.
15102         (mono_breakpoint_trampoline_code): Removed.
15103         (mono_debugger_event_handler): The last argument is now a
15104         `guint32'.
15105         (mono_debugger_insert_breakpoint_full): Removed the
15106         `use_trampoline' argument.
15107         (mono_debugger_method_has_breakpoint): Likewise.
15108         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15109         mono_debugger_breakpoint_callback(); take the method and
15110         breakpoint number as arguments.
15111
15112 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15113
15114         * metadata.c: fix off by one when loading parameters attributes.
15115
15116 2003-04-24  Martin Baulig  <martin@ximian.com>
15117
15118         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15119
15120 2003-04-24  Martin Baulig  <martin@ximian.com>
15121
15122         * mono-debug-debugger.c: Moved all code which interacts with the
15123         Mono Debugger here.
15124
15125         * debug-mono-symfile.c: This code now just deals with the symbol
15126         file itself, the debugger code is now in mono-debug-debugger.c.
15127
15128 2003-04-23  Martin Baulig  <martin@ximian.com>
15129
15130         * mono-debug.c (mono_debug_source_location_from_il_offset):
15131         New method; like mono_debug_source_location_from_address(), but
15132         takes an IL offset instead of a machine address.
15133
15134 2003-04-23  Martin Baulig  <martin@ximian.com>
15135
15136         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15137         `line' field; this is now computed by the debugger.
15138
15139 2003-04-23  Martin Baulig  <martin@ximian.com>
15140
15141         * mono-debug.[ch]: New files.  This is the new debugging interface.
15142
15143         * mono-debug-debugger.[ch]: New files.  Moved all code which
15144         interacts with the Mono Debugger here.
15145
15146 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15147
15148         * domain.c (mono_init): initialize mono_defaults.monitor_class
15149
15150 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15151
15152         * reflection.c (method_encode_code): Add a spicy exception to help
15153         future compiler authors.
15154
15155 2003-04-21  Martin Baulig  <martin@ximian.com>
15156
15157         * icall.c
15158         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15159         Make this work with relative pathnames; g_filename_to_uri() needs
15160         an absolute filename.
15161
15162 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15163
15164         * icall.c: Track name changes in Object and ValueType.
15165
15166 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15167
15168         * metadata.c (mono_type_stack_size): size should be a multiple of
15169         sizeof (gpointer)
15170
15171 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15172
15173         * gc.c:
15174         (internal_domain_finalize): moved into mono_domain_finalize. No need
15175         to create another thread because the finalizers will be run in the
15176         finalizer thread.
15177         
15178         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15179         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15180         to be run (MS does this too).
15181
15182 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15183
15184         * object.c (mono_class_compute_gc_descriptor): Update comment.
15185
15186         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15187
15188         * image.h: Add synchronized wrapper cache.
15189
15190         * image.c (do_mono_image_open): Initialize cache.
15191
15192         * reflection.c (create_dynamic_mono_image): Initialize cache.
15193
15194 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15195
15196         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15197         ves_icall_System_Buffer_ByteLengthInternal.
15198
15199 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15200
15201         * reflection.c: setup klass->nested_in earlier. Allow
15202         a dash in the assembly name.
15203
15204 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15205
15206         * metadata.c (mono_type_to_unmanaged): dont access
15207         type->data.klass for MONO_TYPE_OBJECT
15208         (mono_type_to_unmanaged): consider System.Delegate class
15209
15210 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15211
15212         * class.c: just setup supertypes in the proper place instead of
15213         initializing the full element class for arrays.
15214
15215 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15216
15217         * class.c: ensure the element class of arrays is initialized.
15218         Setup the supertype info for array classes, too.
15219
15220 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
15221
15222         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
15223
15224 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15225
15226         * Makefile.am: re-added -m option when running cygpath. This way,
15227         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
15228         separator.
15229         * mono-config.c: same codepath for locating mono config file for WIN32
15230         and the rest.
15231         * assembly.c: if mono_assembly_setrootdir is called, don't override
15232         the value set.
15233
15234 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15235
15236         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
15237         MONO_ASSEMBLIES variable.
15238
15239 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
15240
15241         * icall.c: added Assembly::GetNamespaces() icall.
15242
15243 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15244
15245         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
15246
15247 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
15248
15249         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
15250         * object.c: fixed bug in the construction of vtable for proxies
15251
15252 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
15253
15254         * object.c (mono_array_new): Mark mono_array_new as an icall.
15255
15256 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15257
15258         * class.c: fixed test for public method when overriding interfaces.
15259         Closes bug #40970.
15260
15261 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15262
15263         * appdomain.h, domain.c: added mono_domain_foreach() to
15264         be able to access the currently loaded appdomains.
15265         * object.c: make string interning work across sppdomains.
15266         Mark some functions for use as icalls.
15267
15268 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
15269
15270         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15271
15272         * reflection.h reflection.c: Allocate long living data using 
15273         GC_MALLOC_ATOMIC so the collector does not need to scan it.
15274
15275         * reflection.c: Double the allocation size in streams instead of
15276         increasing it, to prevent unneccesary copying on large assemblies.
15277         
15278         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15279         creation if the assembly does not have the Run flag set.
15280
15281 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15282
15283         * class.h: avoid the C++ keywords in header files (Jerome Laban
15284         spotted and fixed this).
15285
15286 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15287
15288         * object.c:
15289         (mono_unhandled_exception): fill in the arguments for the
15290         UnhandledException event. Only trigger that event for the default
15291         domain (as MS does).
15292
15293 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
15294
15295         * object.c: Improve typed allocation stuff based on suggestions from
15296         Paolo. Also turn it on if the GC library supports it.
15297
15298 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15299
15300         * object.c object.h class.h: Added experimental typed allocation
15301         facility using the interfaces in gc_gcj.h.
15302
15303         * os/gc_wrapper.h: Added new include files.
15304         
15305 2003-04-03  Martin Baulig  <martin@ximian.com>
15306
15307         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15308         which is not yet enabled by default.
15309
15310         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15311         functions.
15312         (mono_gc_lock, mono_gc_unlock): New static functions.
15313
15314         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15315         functions; stop/start the world for the garbage collector.  This
15316         is using the windows API; we need to complete the SuspendThread()/
15317         ResumeThread() implementation in the io-layer to make this work on Unix.
15318         (mono_gc_push_all_stacks): New public function; tells the garbage
15319         collector about the stack pointers from all managed threads.
15320
15321 2003-04-03  Martin Baulig  <martin@ximian.com>
15322
15323         * object.h (MonoThread): Added `gpointer stack_ptr'.
15324
15325         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15326
15327 2003-04-03  Martin Baulig  <martin@ximian.com>
15328
15329         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15330
15331 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
15332
15333         * reflection.c (typebuilder_setup_fields): Initialize field.first and
15334         field.last.
15335
15336 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
15337
15338         * loader.c (mono_lookup_internal_call): Report the corlib that is
15339         out of sync.
15340
15341 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
15342
15343         * icall.c (ves_icall_type_GetTypeCode): fixed check for
15344         System.DBNull (it's class not valuetype).
15345
15346 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15347
15348         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
15349         if the array method was already assigned a token (fixes bug#40646).
15350
15351 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
15352
15353         * reflection.c (mono_reflection_get_type): Attempt type resolve even
15354         if no assembly is given.
15355
15356 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
15357
15358         * metadata.h: Added the new tables.
15359
15360         * row-indexes.h: Added definitions for new tables.
15361
15362         * metadata.c: Add schemas for new tables, and add support for
15363         computing the sizes of them.
15364
15365         * class.c: Update for handling the new type cases.
15366
15367 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
15368
15369         * metadata.h (MONO_TYPE_IS_VOID): new macro
15370
15371 2003-03-31  Martin Baulig  <martin@ximian.com>
15372
15373         * threads.h (MonoThreadCallbacks): Added `thread_created'.
15374
15375         * threads.c (mono_thread_new_init): Call `thread_created' in the
15376         mono_thread_callbacks.
15377
15378 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
15379
15380         * loader.h: added marshalbyrefobject_class to mono_defaults
15381         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
15382         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15383           generation of output parameters.
15384           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15385         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15386           contextbound and the target object belongs to the context of the caller.
15387         * object.h: added context and unwrapped_server variables in MonoRealProxy.
15388         * object.c: Implemented support for interfaces and abstract classes
15389           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15390           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15391
15392 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
15393
15394         * class.h class.c (mono_class_is_subclass_of): New function.
15395         
15396         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15397         routines for most common case (calls from ArrayList::ToArray).
15398
15399         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
15400         routine so programs which call Environment::Exit() can be profiled.
15401
15402         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
15403         Added MONO_ARCH_SAVE_REGS.
15404
15405         * icall.c (ves_icall_type_is_subtype_of): Use new function.
15406
15407 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
15408
15409         * blob.h: Add a couple of new MonoType types definitions.
15410
15411         * tabledefs.h: Add a couple of new call convs.
15412
15413 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
15414
15415         * reflection.h (MonoReflectionDynamicAssembly): track changes in
15416         the layout of the class.
15417
15418         * reflection.c (alloc_table): double the size on overflow to avoid
15419         unnecessary copying.
15420
15421         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15422         avoid filling out metadata tables and blobs. Also set mb->ilgen to
15423         null so it can be garbage collected.
15424         
15425 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
15426
15427         * reflection.c (mono_reflection_get_type): Return the resolved type
15428         only if it is in the assembly we searched.
15429
15430         * reflection.c (ensure_runtime_vtable): Initialize method slots.
15431
15432         * class.c (mono_class_setup_vtable): Set the slot of the overriding
15433         method.
15434
15435 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15436
15437         * appdomain.c:
15438         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15439         the right one is 'file:///blah', but MS allows it.
15440         * assembly.c:
15441         (mono_assembly_open): allow 'file://blah'
15442
15443         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15444
15445 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
15446
15447         * socket-io.c: fixes bug #40310.
15448
15449 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
15450
15451         * reflection.c (mono_reflection_parse_type): handle deeply nested
15452         types correctly.
15453
15454         * reflection.c (mono_image_create_token): Use unique token values
15455         since they will be put into a hash table.
15456
15457         * class.c (mono_class_setup_vtable): If a method occurs in more than
15458         one place in the vtable, and it gets overriden, then change the
15459         other occurances too.
15460
15461         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15462         object as return type.
15463
15464 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15465
15466         * icall.c: Deleted "ToString" implementation for double and float
15467         because they are full implemented in managed code.
15468
15469 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15470
15471         * reflection.c, reflection.h: implemented and exported functions
15472         to retrieve info about custom attributes.
15473
15474 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15475
15476         * appdomain.c: moved Uri handling to assembly.c
15477         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15478         work when using a file Uri in *nix and windows.
15479
15480         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15481         GetReferencedAssemblies.
15482
15483 2003-03-18  Dick Porter  <dick@ximian.com>
15484
15485         * icall.c: Rename a couple of internal calls
15486
15487         * threads.c: Set the thread state to Stopped when a thread exits.
15488         Fixes bug 39377.
15489
15490 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
15491
15492         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15493         New icall.
15494
15495         * object.c (mono_class_vtable): fix warning.
15496
15497 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
15498
15499         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15500
15501         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15502         memory.
15503         (method_encode_clauses): Create exception info structures in the right
15504         order.
15505         (mono_reflection_setup_internal_class): Initialize supertypes field.
15506
15507         * class.c object.c: Handle interfaces which implement other interfaces 
15508         correctly.
15509
15510         * class.h class.c: Move the supertypes array initialization code into 
15511         a separate function so it can be used for dynamic types too. Also call
15512         it earlier, in mono_class_init(), since it can be used before the
15513         type is initialized.
15514
15515 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15516
15517         * Makefile.am:
15518         * assembly.c:
15519         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15520
15521         * appdomain.c:
15522         * appdomain.h:
15523         * marshal.c:
15524         * object.c: remove warnings.
15525
15526 2003-03-13  Martin Baulig  <martin@ximian.com>
15527
15528         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15529         (MonoDebugLexicalBlockEntry): New types.
15530
15531         * debug-mono-symfile.c
15532         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15533
15534 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15535
15536         * process.c: ret can be any non-zero value accroding to MS doc.
15537
15538 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
15539
15540         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
15541         fixing a warning for a miss-used prototype, would have cause
15542         random memory corruption.
15543
15544 2003-03-07  Martin Baulig  <martin@ximian.com>
15545
15546         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15547         getting really annoying ....
15548
15549 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
15550
15551         * reflection.c (fixup_method): added support for array methods.
15552
15553 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15554
15555         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
15556         (pointed out by Michael Adams).
15557
15558 2003-03-04  Dick Porter  <dick@ximian.com>
15559
15560         * icall.c: Temporarily reverted the Double and Single ToString()
15561         change, because it broke nunit.
15562
15563 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15564
15565         * object.h, threads.h: make include files compatible with C++
15566         (patch by Jerome Laban <jlaban@wanadoo.fr>).
15567
15568 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15569
15570         * icall.c: Erased ToString helper functions for Double and Single.
15571         Now, that implementations ar all in managed code (Double and Single
15572         Formatters).
15573
15574 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
15575
15576         * appdomain.c: Added method for initializing the default context of
15577         a domain. Added internal call for getting the default context.
15578         * appdomain.h: Added context variable in MonoDomain struct.
15579         * domain.c: mono_domain_set also sets the default context of the domain
15580         * icall.c: Mapped internal method InternalGetDefaultContext.
15581         * object.c: mono_object_get_virtual_method returns always a remoting
15582         wrapper if the object is a transparent proxy.
15583         mono_runtime_invoke_array: when creating an object by calling the
15584         constructor, if the created object is a proxy, then the constructor should
15585         be called using the a remoting wrapper.
15586
15587 2003-03-03  Dick Porter  <dick@ximian.com>
15588
15589         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15590         variable so it compiles on solaris.  Problem spotted by
15591         Christopher Taylor <ct@cs.clemson.edu>
15592
15593 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15594
15595         * appdomain.c:
15596         (get_info_from_assembly_name): don't leak value.
15597
15598         * icall.c:
15599         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15600         result.
15601
15602 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15603
15604         * assembly.c: export mono_image_load_references ().
15605         * class.c: handle function pointers. mono_class_from_name() now
15606         supports nested type names directly.
15607
15608 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
15609
15610         * reflection.h reflection.c: Encode already created dynamic methods 
15611         and fields correctly as a DEF instead of a REF.
15612
15613         * reflection.c: Get rid of the force_ref argument to 
15614         mono_image_typedef_or_ref since it was wrong in the first place.
15615
15616         * string-icalls.c: add error checking to string constructors according
15617         to the MSDN docs.
15618
15619         * reflection.c: Emit types in the order their TypeBuilders were 
15620         created. Previously, a new table index was assigned to each type before
15621         the tables were emitted. This was wrong because the signature blob
15622         might already refer to a type by its original table index.
15623
15624 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
15625
15626         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15627         change.
15628         
15629 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15630
15631         * Makefile.am: make assemblies dir have \ instead of / on windows.
15632
15633 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
15634
15635         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15636         iterate over the NESTEDCLASS table using a linear search since the
15637         table is not guaranteed to be sorted by the secondary key.
15638
15639         * class.c (mono_class_create_from_typedef): fixed up call to
15640         mono_metadata_nesting_typedef.
15641         
15642 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
15643
15644         * marshal.c (mono_string_to_byvalstr): clear the memory as
15645         suggested by Jerome Laban <jlaban@wanadoo.fr>
15646
15647 2003-02-26  Dick Porter  <dick@ximian.com>
15648
15649         * process.c: Cope with padding in .rsrc blocks
15650
15651 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15652
15653         * metadata.h: reverted the filter_len change, it breaks reflection
15654         
15655 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
15656
15657         * metadata.h: added a new field to store the filter_len
15658         
15659
15660 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15661
15662         * reflection.c: handle custom attributes for types and members
15663         created with Reflection.Emit (bug#38422).
15664
15665 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
15666
15667         * reflection.c: define RTSpecialName automatically for constructors for
15668         compatibility with MS.NET.
15669
15670         * reflection.c (mono_reflection_create_runtime_class): initialize
15671         nested_in field of dynamically created classes.
15672
15673 2003-02-22  Martin Baulig  <martin@ximian.com>
15674
15675         * debug-mono-symfile.h: Incremented version number.
15676
15677 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15678
15679         * object.h icall.c process.c: fix warnings.
15680
15681 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
15682
15683         * appdomain.h appdomain.c:
15684         (mono_domain_try_type_resolve): split the 
15685         name_or_tb argument into a name and a tb argument.
15686         (mono_domain_has_type_resolve): new function to check whenever the
15687         application has registered a TypeResolve event handler.
15688         
15689         * icall.c reflection.h reflection.c: move the type resolve logic into
15690         mono_reflection_get_type () so it will be invoked when 
15691         Assembly::GetType () is called.
15692
15693         * reflection.c:
15694         (mono_reflection_get_type): renamed to get_type_internal.
15695         (mono_reflection_get_type): fixed type name generation so it works 
15696         for nested types too.
15697         (mono_reflection_get_type): call has_type_resolve () to avoid the 
15698         costly type name generation if there is no resolve event handler.
15699
15700 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15701
15702         * class.c, image.c: load exported types from file references.
15703
15704 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
15705
15706         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15707           used to cache the managed methods used to create proxies and make 
15708           remote invocation of methods.
15709         * class.h: Added in MonoVTable a flag to indicate that a class needs 
15710           to be remotely created.
15711         * object.c: Modified the method mono_class_vtable(). It now initializes 
15712           the remote flag of the vtable. Modified mono_object_new_specific(), 
15713           so now it checks the remote flag.
15714         * icall.c: Added a couple of internal methods, one for enabling instance 
15715           creation interception for a type, and one for creating objects bypassing
15716           the remote check.
15717
15718 2003-02-18  Martin Baulig  <martin@ximian.com>
15719
15720         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15721         New interncall to get a method's metadata token.
15722
15723         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15724         New interncall for the debugger.
15725
15726 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
15727
15728         * class.c (mono_class_setup_vtable): allocate supertype array
15729
15730 2003-02-18  Martin Baulig  <martin@ximian.com>
15731
15732         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15733
15734 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15735
15736         * reflection.c:
15737         (assembly_name_to_aname): jump over unknown properties (i've found
15738         something like: 'type, assembly, version=xxx, custom=null, public...',
15739         so now will ignore custom=null and still get the rest of the values).
15740
15741 2003-02-17  Dick Porter  <dick@ximian.com>
15742
15743         * threads.c: Have Thread.Start() wait for a semaphore to signal
15744         that the thread has set up all its local data.  This fixes bug
15745         34323, where Abort() raced the new thread's TLS data.
15746
15747         Also removes the handle_store() call from start_wrapper, because
15748         threads are now always created suspended and there is no longer a
15749         race between the parent and child threads to store the info.
15750
15751 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15752
15753         * image.c: explain the #- heap issue in a message, hopefully
15754         avoiding FAQs on mono-list.
15755
15756 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15757
15758         * icall.c:
15759         (GetEntryAssembly): if the domain has not invoked
15760         AppDomain.ExecuteAssembly yet, return the assembly of the default
15761         AppDomain.
15762
15763 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
15764
15765         * class.c (mono_ldtoken): make it work in dynamic assemblies.
15766
15767 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15768
15769         * metadata.c, reflection.c: simple speedup to type hash
15770         and equals code.
15771
15772 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15773
15774         * image.c, image.h, class.c, assembly.c: move module loading
15775         to MonoImage. When loading metadata, consider alignemnet from
15776         the start of metadata, not from the metadata address in memory.
15777
15778 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
15779
15780         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
15781         AssemblyBuilder objects. Factored out custom attribute creation into
15782         a separate function.
15783         (create_custom_attr): new function to create custom attributes.
15784
15785 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
15786
15787         * Makefile.am: Got tired of typing the full pathname to pedump.
15788         Until there is another option, am installing this.
15789
15790 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
15791
15792         * class.c (class_compute_field_layout): always set field->parent 
15793         (mono_ldtoken): use mono_defaults.fieldhandle_class;
15794
15795 2003-02-11  Dick Porter  <dick@ximian.com>
15796
15797         * threads-types.h:
15798         * monitor.c: Rewrote Monitor, making lock much faster and
15799         Pulse/Wait work as specified.  Also uses much fewer handles, and only
15800         creates them as needed.
15801
15802         * exception.c: Added SynchronizationLockException
15803
15804         * threads.c: Deleted old Monitor implementation.  The new one is
15805         in a new file.
15806
15807 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15808
15809         * class.c: handled TypedReference type code. Set the correct size for
15810         class data. Setup interface_offsets for interface classes, too.
15811
15812 2003-02-09  Martin Baulig  <martin@ximian.com>
15813
15814         * debug-mono-symfile.h: Reflect latest symbol writer changes.
15815
15816 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15817
15818         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15819         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15820         * object.c: fixed mono_object_get_virtual_method () for interfaces.
15821         * verify.c: check for code that runs after the end of the method.
15822
15823 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
15824
15825         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15826         "System.Math::Round2".
15827         * sysmath.h: Added Floor, Round and Round2 definitions.
15828         * sysmath.c: Modified certain functions that were not 100% compliant
15829         with MS.NET (math precision) and added the implementation of Floor,
15830         Round and Round2.
15831
15832 2003-02-07  Martin Baulig  <martin@ximian.com>
15833
15834         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15835
15836 2003-02-07  Martin Baulig  <martin@ximian.com>
15837
15838         * debug-mono-symfile.c: Reflected latest symwriter changes.
15839         (mono_debug_create_mono_symbol_file): Removed.
15840         (mono_debug_open_mono_symbol_file): Take an argument which
15841         specifies whether to create a dynamic symbol file.
15842
15843 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
15844
15845         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15846
15847 2003-02-05  Martin Baulig  <martin@ximian.com>
15848
15849         * reflection.c (mono_image_build_metadata): Make this public,
15850         protect it against being called multiple times, don't create
15851         resources and don't build the compressed metadata here.
15852         (mono_image_create_pefile): Do this here.
15853
15854         * icall.c
15855         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15856
15857 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15858
15859         * socket-io.c: fixed bug #36322.
15860
15861 2003-02-06  Piers Haken <piersh@friskit.com>
15862
15863         * appdomain.[ch]:
15864         * class.h:
15865         * debug-mono-symfile.c:
15866         * icall.c:
15867         * loader.c:
15868         * mono-config.c:
15869         * monosn.c:
15870         * reflection.c:
15871         * socket-io.c: warning cleanups
15872
15873 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
15874
15875         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15876         function. works like remoting invoke, but does a check for the Proxy first.
15877
15878 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
15879
15880         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15881
15882 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
15883
15884         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
15885         array of pointers.
15886         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
15887         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
15888
15889         * object.c (mono_store_remote_field_new): used by the new jit
15890         instead of mono_store_remote_field
15891         (mono_load_remote_field_new): used by the new jit
15892         instead of mono_load_remote_field
15893
15894 2003-02-05  Patrik Torstensson
15895
15896         * appdomain.c: changed unload to take the domain id instead
15897         of domain
15898         
15899         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
15900
15901
15902 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15903
15904         * appdomain.c: don't look for assemblies in ApplicationBase if
15905         PrivateBinPathProbe is set.
15906
15907 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15908
15909         * object.c: make the first argument in main_args contain the absolute
15910         path to the assembly. Fixes bug #37511.
15911
15912 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15913
15914         * icall.c: get correct UTC offset for countries not using daylight
15915         time saving. Fixes bug #30030.
15916
15917 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15918
15919         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
15920         and 1 are the family).
15921
15922 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
15923
15924         * icall.c (ves_icall_InternalExecute): removed wrong assertion
15925
15926         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
15927
15928 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
15929
15930         * reflection.c: added support for SignatureHelper tokens, which is
15931         needed by the Calli opcode.
15932
15933         * reflection.h: track changes to SignatureHelper class.
15934
15935         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
15936
15937 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15938
15939         * appdomain.c: fixed loading assemblies from PrivateBinPath.
15940
15941 2003-02-03  Patrik Torstensson
15942         * appdomain.[c|h], domain.c : 
15943          - Added support for getting a domain via domain id
15944          - Support for setting and getting domain from System.AppDomain 
15945            (used in cross appdomain channel)
15946          - Added support for get/set for a MonoAppContext on a thread 
15947            (Context class in System.Runtime.Remoting.Contexts),
15948          - Removed hack in Get/SetData and ExecuteAssembly.
15949         
15950         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
15951         the managed world to get control when a proxy is created.
15952
15953         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
15954         
15955 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
15956
15957         * icall.c
15958         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15959         Populate the codebase field as well.
15960
15961 2003-02-02  Martin Baulig  <martin@ximian.com>
15962
15963         * debug-mono-symfile.c
15964         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
15965         (mono_debug_symfile_add_method): Allow interncalls.
15966
15967 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15968
15969         * icall.c: throw parse exception if strtod fails or the string is empty.
15970
15971 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
15972
15973         * marshal.c: handle object type separately from defined
15974         class types.
15975
15976 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
15977
15978         * marshal.c: handle NATIVE_LPSTR for strings when it's
15979         explicitly specified.
15980
15981 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
15982
15983         * reflection.c, reflection.h, icall.c: setup the reflection
15984         handle cache for ModuleBuilders and AssemblyBuilders.
15985
15986 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
15987
15988         * reflection.c (reflection_methodbuilder_to_mono_method): set
15989         pinvoke flag
15990
15991 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15992
15993         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
15994
15995 2003-01-29  Dick Porter  <dick@ximian.com>
15996
15997         * threads.c: No need for the fake_thread kludge now that Thread
15998         doesn't run a class constructor
15999         
16000 2003-01-29  Dick Porter  <dick@ximian.com>
16001
16002         * threads.c: Use g_direct_hash instead of the rather bogus
16003         g_int_hash
16004
16005 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16006
16007         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16008         (fix pinvoke12.exe)
16009         (mono_marshal_get_struct_to_ptr): generate valid IL code
16010         (mono_marshal_get_ptr_to_struct): generate valid IL code
16011         (*): correctly set sig->pinvoke, we need to memdup the signature
16012         to do that
16013
16014 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16015
16016         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16017         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16018
16019 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16020
16021         * profiler.c: provide more callers information.
16022
16023 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16024
16025         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16026
16027         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16028
16029         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16030
16031 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16032
16033         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16034         exception instead of going into an infinite loop on dates which it 
16035         can't yet handle.
16036
16037         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16038         out-of-range exception if needed.
16039
16040         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16041         an implementation for an interface method and to override an inherited
16042         method at the same time. 
16043         Imagine a scenario when a virtual method is used to override a
16044         virtual abstract method in a parent class, and this same method 
16045         provides an implementation for an method inherited from an interface. 
16046         In this case, the interface resolution code will set im->slot, which 
16047         means that the virtual method override pass will skip this method 
16048         which means a pointer to the abstract method inherited from the parent
16049         will remain in the vtable of this non-abstract class.
16050
16051         * class.c: (mono_class_setup_vtable): continue search for a real 
16052         method if only an abstract method is found.     
16053
16054 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16055
16056         * reflection.c: add size to encoding for ByValStr and ByValArray
16057         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16058
16059 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16060
16061         * class.c (mono_class_setup_vtable): pass the override info as an
16062         argument.
16063
16064         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16065         correctly.
16066         
16067         * reflection.c (ensure_runtime_vtable); add support for method 
16068         overrides.
16069         
16070 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16071
16072         * reflection.c (resolution_scope_from_image): Hack to work to work with
16073         dynamic assemblies.
16074
16075         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16076         added a 'force_ref' argument to force this function to allways return 
16077         a TypeRef. This is needed by mono_image_get_memberref_token ().
16078         
16079 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16080
16081         * reflection.c (mono_image_get_type_info): interfaces really don't have
16082         a parent.
16083
16084         * reflection.c (mono_image_basic_init): fill out missing fields of
16085         image structure.
16086
16087         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16088         dynamic assemblies. This is required so dynamic assemblies show up in
16089         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16090         Type::GetType() etc. This is consistent with MS behaviour.
16091
16092         * image.c image.h reflection.c: add newly created classes to the name 
16093         cache so mono_class_get () will find them.      
16094
16095 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16096
16097         First part of changes to get IKVM.NET running under mono.
16098         
16099         * appdomain.h, appdomain.c: added new function 
16100         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16101         This function will call AppDomain::DoTypeResolve to do the actual work.
16102
16103         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16104         moved existing code dealing with dynamic tokens to a new function 
16105         called mono_reflection_lookup_dynamic_token (). This function will 
16106         raise TypeResolve events when appropriate. Since reflection.c is not 
16107         part of libmetadata, a new hook function called 
16108         mono_lookup_dynamic_token() is added to class.c which will call this.
16109
16110         * assembly.h assembly.c: make the invoke_load_hook function public,
16111         so it can be called for dynamic assemblies.
16112
16113         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16114
16115         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16116         type isn't found.
16117
16118         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16119         MonoGHashTable, since it contains pointers to objects which the GC 
16120         needs to track.
16121
16122         * assembly.c (search_loaded): remove unused variable.
16123         
16124 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16125
16126         * object.c: fixed issue exposed by gcc-generated IL programs
16127         that use RVA data for pointers.
16128
16129 2003-01-25  Martin Baulig  <martin@ximian.com>
16130
16131         * threads.c (start_wrapper): Moved the initialization of
16132         `start_func' above the mono_new_thread_init() call to which we
16133         pass it as argument.
16134
16135 2003-01-24  Martin Baulig  <martin@ximian.com>
16136
16137         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16138         the MonoThread pointer.
16139
16140 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16141
16142         * icall.c: Rename `PowImpl' to Pow.
16143
16144 2003-01-23  Dick Porter  <dick@ximian.com>
16145
16146         * threads.c (start_wrapper): Create a Thread object if needed, so
16147         the Main() thread can do the class initialisation in a subthread
16148         that has been set up to allow managed code execution.
16149
16150         Pass the thread ID instead of the MonoThread pointer to the thread
16151         start and attach callbacks.  This change is required, because the
16152         jit thread start callback must be called _before_ the Thread
16153         object can be created.
16154         
16155         (mono_thread_init): Removed much object creation code that is no
16156         longer needed.  No managed code is called from here now.
16157
16158         * object.c (mono_runtime_exec_managed_code): Create a subthread
16159         for Main, and call back to the runtime to use it.
16160         Set the exit code when Main exits.
16161
16162         * gc.c: Make sure domain finalisation happens in a subthread.
16163         Re-enable threaded GC, fixing bug 31333 (again).
16164
16165         * environment.c: System.Environment internall calls (so far just
16166         ExitCode is here, the others are still in icall.c)
16167
16168         * appdomain.c (mono_runtime_cleanup): All threads running managed
16169         code should have finished before mono_runtime_cleanup() is
16170         reached, so no need to clean up threads.
16171
16172 2003-01-22  Martin Baulig  <martin@ximian.com>
16173
16174         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16175         `gpointer func' arguments.      
16176         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16177         but added `MonoThread *thread' argument.
16178         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16179
16180         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16181         and pass it to the mono_thread_start_cb callback.
16182         (mono_install_thread_callbacks): New public function to install a
16183         set of callbacks which are set by the debugger.
16184         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16185
16186 2003-01-22  Martin Baulig  <martin@ximian.com>
16187
16188         * Makefile.am: Install debug-mono-symfile.h.
16189
16190 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16191
16192         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16193
16194 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16195
16196         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16197         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16198         (mono_array_class_get): correctly set access levels of arrays
16199
16200 2003-01-20      Patrik Torstensson
16201         * image.h (MonoAssemblyName): changed major, minor, build, revision
16202         from signed to unsigned.
16203
16204 2003-01-20  sean kasun <skasun@azstarnet.com>
16205
16206         * reflection.c (load_cattr_value): Now this handles
16207         MONO_TYPE_SZARRAY.  Fixes bug #35629
16208
16209 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16210
16211         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16212         integer value
16213
16214 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16215
16216         * decimal.c: fixed bug #26056.
16217
16218 2003-01-17  Martin Baulig  <martin@ximian.com>
16219
16220         * gc.c: Raise an ExecutionEngineException instead of using g_error().
16221
16222 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16223
16224         * exception.[ch]:
16225         (mono_get_exception_type_initialization): new function.
16226
16227         * object.c: throw a TypeInitializationException when an exception is
16228         thrown invoking the class constructor.
16229
16230 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16231
16232         * reflection.c: fixed attribute reading.
16233
16234 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16235
16236         * icall.c:
16237         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
16238         provided, look for the type in the calling assembly and then in
16239         mscorlib; if the assembly name is provided, only try that one.
16240
16241 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
16242
16243         * object.c: register the vtable before there is a chance it's
16244         queried again recursively.
16245
16246 2003-01-13  Duncan Mak  <duncan@ximian.com>
16247
16248         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
16249         gc-internal.h. 
16250         
16251 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
16252
16253         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
16254
16255 2003-01-11  Martin Baulig  <martin@ximian.com>
16256
16257         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
16258         this to 20 for the release.
16259
16260 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
16261
16262         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16263
16264         * loader.c (mono_method_get_marshal_info): bug fix
16265
16266         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16267         structures with explicit layout
16268
16269 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16270
16271         * profiler.c: made the output more readable (and sorted). 
16272         Added caller information for the allocation profiler.
16273
16274 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
16275
16276         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16277
16278 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16279
16280         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16281         to get value types.
16282         
16283 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16284
16285         * object.c, profiler.h, profiler.c, profiler-private.h:
16286         Added object allocation profiler.
16287
16288 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16289
16290         * reflection.h, reflection.c: handle global methods.
16291         Compress blob entries.
16292
16293 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16294
16295         * marshal.c: fix compilation.
16296
16297 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
16298
16299         * loader.c (mono_method_get_marshal_info): impl.
16300
16301         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16302
16303 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16304
16305         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16306         for reference types.
16307
16308 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16309
16310         * loader.c: fixed off by one error in loaded parameter names.
16311
16312 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
16313
16314         * marshal.c (mono_marshal_get_icall_wrapper): like
16315         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16316         instead of a MonoMethod.
16317
16318 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16319
16320         * decimal.c: fixed bug #36537.
16321
16322 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16323
16324         * marshal.c: throw a missing method exception if a
16325         P/Invoke method is not found.
16326
16327 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16328
16329         * icall.c: allow a null this for constructors.
16330
16331 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16332
16333         * icall.c: raise the proper exceptions if the arguments to the
16334         internal Invoke are incorrect.
16335
16336 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
16337
16338         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16339
16340 2003-01-03  Martin Baulig  <martin@ximian.com>
16341
16342         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16343
16344 2002-12-31  Martin Baulig  <martin@ximian.com>
16345
16346         * debug-mono-symfile.c: Completely rewrote the type section.
16347         Instead of using individual malloc()ed fields, we use one big
16348         continuous memory area and offsets into this area.
16349         See the comments in the source code for details.
16350
16351 2002-12-30  Martin Baulig  <martin@ximian.com>
16352
16353         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16354
16355 2002-12-30  Martin Baulig  <martin@ximian.com>
16356
16357         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16358         line number table in this data blob instead of using an external
16359         pointer.
16360
16361 2002-12-28  Martin Baulig  <martin@ximian.com>
16362
16363         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16364
16365 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
16366
16367         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16368         as a boxed return type.
16369
16370 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
16371
16372         * appdomain.c
16373         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16374         g_build_filename to properly get separators on the filename created.
16375
16376         * object.h: Small change, introduce MonoMarshalByRefObject to
16377         track the layout of that structure in the C# universe as we make
16378         changes there.
16379
16380 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16381
16382         * object.c: removed assert to allow static fields on interfaces.
16383         * loader.c: a TypeSpec may be used for any type, not just arrays.
16384
16385 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16386
16387         * class.c, class.h: added mono_class_array_element_size ().
16388         Ignore static methods in interfaces.
16389
16390 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16391
16392         * threads.c: fixed the build under cygwin.
16393
16394 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16395
16396         * reflection.c: handle nullref constants. Allocate keys for
16397         reflection handles with the GC.
16398
16399 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16400
16401         * threads.c, threads.h: added mono_thread_get_abort_signal()
16402         to get a suitable signal for thread abort.
16403
16404 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16405
16406         * metadata.c: fix handling of ExportedType table.
16407
16408 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16409
16410         * icall.c: added WriteWindowsDebugString internal call.
16411
16412 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16413
16414         * reflection.h: added fields to match C# implementation.
16415
16416 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16417
16418         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16419
16420 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
16421
16422         * gc.h, gc-internal.h: Rename header for GC internal calls to
16423         gc-internal.h from gc.h as to not clash with Boehm GC having its
16424         header installed as <gc.h> in outside include paths.
16425         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16426         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16427
16428 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16429
16430         * icall.c: assign minor, build and revision in FillName.
16431
16432 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
16433
16434         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16435         Added support for running code generated by Reflection.Emit.
16436
16437 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16438
16439         * appdomain.c: check for NULL argument in LoadFrom.
16440
16441 2002-12-10  Dick Porter  <dick@ximian.com>
16442
16443         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16444
16445 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16446
16447         * appdomain.c: fix buglet when building exe file name.  Handle full
16448         assembly name (needed after latest changes to AssemblyName).
16449         * image.c:
16450         (mono_image_close): free some hashtables.
16451
16452 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
16453
16454         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
16455         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
16456         on some systems (redhat 7.3) 
16457
16458 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16459
16460         * threads.c: delete the critical section of a sync block,
16461         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16462
16463 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16464
16465         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16466
16467 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16468
16469         * appdomain.[ch]: handle the assembly preload event to try loading the
16470         assemblies using the paths we have in the current domain.
16471
16472         * assembly.[ch]: created an assembly preload hook that is called to try
16473         loading the assembly by other means that the ones provided here.
16474
16475         * domain.c: initialize the domain search path.
16476
16477         From now on, assemblies (TODO: except corlib and System) are loaded
16478         according to these rules when using mono_assembly_load ():
16479
16480                 1. It tries to load the assembly from the ApplicationBase
16481                 of the current domain appending .dll and .exe (TODO: have to
16482                 try loading from name/name.dll and name/name.exe).
16483
16484                 2. It tries the search path specified in PrivateBinPath for the
16485                 current domain (if any).
16486
16487                 3. Previous behavior.
16488
16489 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16490
16491         * icall.c: implemented GetInterfaceMap() related icall.
16492         * domain.c, loader.h: load MethodInfo in mono_defaults.
16493
16494 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16495
16496         * gc.c: disable the finalizer thread for now, untill all the issues
16497         with it are resolved.
16498
16499 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16500
16501         * string-icalls.c: handle embedded nulls in string ctor when the
16502         length is specified.
16503
16504 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16505
16506         * class.c: look for explicit interface implementation in parent
16507         classes, too.
16508
16509 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
16510
16511         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
16512
16513 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16514
16515         * gc.c: protect handles with a critical section.
16516
16517 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16518
16519         * icall.c:
16520         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16521         parameters. If no assembly specified, try getting the type from all
16522         the assemblies in the current domain, else, load the assembly and get
16523         the type from it.
16524
16525 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16526
16527         * marshal.c: applied patch from Aleksey Demakov that fixes
16528         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16529
16530 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16531
16532         * icall.c: fixed get_location.
16533
16534 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
16535
16536         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16537         declarations to make it work with older gcc. 
16538
16539         * loader.c (mono_get_method): set signature->pinvoke for native calls
16540
16541 2002-11-20  Dick Porter  <dick@ximian.com>
16542
16543         * threads.c (mono_thread_init): Set the main thread's handle
16544
16545 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16546
16547         * gc.c: allow compilation without GC support. Changed to match the
16548         mono coding style.
16549
16550 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16551
16552         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16553
16554 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16555
16556         * reflection.c: set a public key token on the core assemblies.
16557
16558 2002-11-18  Dick Porter  <dick@ximian.com>
16559
16560         * threads.c: Split out some thread initialisation so that other
16561         files can set the start callback function.
16562
16563         * gc.c: Run finalisers in a separate thread, to avoid stack
16564         overflow.  Fixes bug 31333.
16565
16566         * appdomain.c: Set up GC finalisation thread.
16567
16568         * reflection.c: 
16569         * object.c: 
16570         * domain.c: Use gc.h macros for GC_malloc
16571         
16572 2002-11-15  Dick Porter  <dick@ximian.com>
16573
16574         * threadpool.c: 
16575         * threads.c:
16576         * appdomain.c: Removed mono_runtime_init_with_attach(),
16577         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16578         merging the extra parameter with the existing function.  Removed
16579         unneeded code in mono_thread_attach().
16580
16581 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
16582
16583         * image.c (mono_image_loaded_by_guid): a method to get loaded
16584         images by guid. 
16585         (load_metadata_ptrs): we store the guid as string.
16586
16587 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
16588
16589         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16590
16591         * metadata.c (mono_guid_to_string): imported method form Zoltan
16592         Varga (slightly modified)
16593
16594         * assembly.c (mono_assembly_open): load precompiled code
16595
16596         * loader.h (MonoMethod): we store the method token for use in the
16597         aot compiler. 
16598
16599 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16600
16601         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16602         the hook function called when an assembly is loaded.
16603         
16604         * domain.c: Modified file.
16605         (mono_domain_assembly_load): removed hash table insertion of assemblies.
16606
16607         Fixes bug #33196.
16608
16609 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
16610
16611         * reflection.c: Map PEFileKind to the value expected by the WinNT
16612         image loader. 
16613
16614 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16615
16616         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16617         Read until the buffer is filled completely.
16618
16619 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16620
16621         * icall.c: implemented MonoType.InternalGetEvent ().
16622
16623 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16624
16625         * appdomain.c: implemented InitAppDomainSetup. Delayed
16626         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16627         the entry_assembly.
16628
16629         * assembly.c: base_dir is now an absolute path ending with
16630         G_DIR_SEPARATOR.
16631
16632         * icall.c: modified get_location according to the above changes.
16633
16634         * object.c: init AppDomain.SetupInformation for the default domain after
16635         we have the entry assembly.
16636
16637         * domain.c: when unloading a domain, setup = NULL.
16638
16639 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
16640
16641         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16642
16643 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16644
16645         * object.h, object.c: introduced mono_object_get_virtual_method ()
16646         to lookup the method invoked on an object when a callvirt is done on
16647         a method.
16648         * icall.c: make MethodInfo::Invoke() always do a virtual call.
16649
16650 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16651
16652         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16653         current domain when loaded an assembly and failed to load it.
16654
16655         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16656
16657 2002-10-31  Dick Porter  <dick@ximian.com>
16658
16659         * icall.c: 
16660         * file-io.h: 
16661         * file-io.c: Return the error status in a parameter, as the
16662         GetLastError() value has long since been blown away if we try and
16663         look it up in a subsequent internal call invocation.  Delete the
16664         GetLastError() internal call, because it's useless.
16665
16666 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
16667
16668         * class.[ch]: added cast_class to fix bug 29517
16669
16670 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16671
16672         * marshal.c: create valid IL code in the filter clause:
16673         the new JIT is less forgiving:-)
16674
16675 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16676
16677         * icall.c: removed get_property internal call.
16678
16679 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
16680
16681         * appdomain.h domain.c: Added an ID to appdomains.
16682         
16683         * threads.c threads.h icall.c: Implement icall
16684         Thread:GetDomainID(), and remove unused icall 
16685         CurrentThreadDomain_internal.
16686
16687 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16688
16689         * icall.c: Don't recurse through the base types in GetConstructor.
16690         Fixes bug #32063. 
16691
16692 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16693
16694         * mempool.h, mempool.c: added mono_mempool_empty() and
16695         mono_mempool_stats().
16696
16697 2002-10-23  Dick Porter  <dick@ximian.com>
16698
16699         * file-io.c: 
16700         * file-io.h: 
16701         * icall.c: Added MonoIO.GetFileType internal call
16702
16703 2002-10-17  Dick Porter  <dick@ximian.com>
16704
16705         * appdomain.c (mono_runtime_cleanup): Don't signal the async
16706         delegate semaphore before waiting for all threads to finish,
16707         because new threads can also call async delegates.  Fixes bug
16708         32004.
16709
16710         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16711         of 3 seconds, in case another async job is queued.  (This part is
16712         needed because the bug fix reintroduced the 3s exit lag.)  This
16713         makes the mono_runtime_shutdown flag superfluous.
16714
16715 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16716
16717         * reflection.c: include ehader size in method section headers.
16718         Really check for suplicated modules entries.
16719
16720 2002-10-17  Martin Baulig  <martin@gnome.org>
16721
16722         * debug-mono-symfile.c: Added back support for locals.
16723
16724 2002-10-14  Martin Baulig  <martin@gnome.org>
16725
16726         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16727         MONO_TYPE_VOID.
16728
16729 2002-10-14  Martin Baulig  <martin@gnome.org>
16730
16731         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16732         mono_class_get() instead of looking in the class cache. 
16733
16734 2002-10-13  Martin Baulig  <martin@gnome.org>
16735
16736         * debug-mono-symfile.c: Set version number to 28, include the
16737         signature in method names.
16738
16739 2002-10-13  Martin Baulig  <martin@gnome.org>
16740
16741         * debug-mono-symfile.h: Set version number to 27.
16742
16743 2002-10-11  Martin Baulig  <martin@gnome.org>
16744
16745         * gc.c: Don't register/unregister NULL pointers as disappearing links.
16746
16747 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16748
16749         * metadata.c, metadata.h: added helper function to allocate signatures.
16750
16751 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16752
16753         * icall.c: added internal call to get the location of machine.config.
16754
16755 2002-10-08  Martin Baulig  <martin@gnome.org>
16756
16757         * debug-mono-symfile.c: Ignore classes with a pending init for the
16758         moment.
16759
16760 2002-10-03  Dick Porter  <dick@ximian.com>
16761
16762         * threads.c: Freebsd pthread_t is a pointer
16763
16764 2002-10-03  Dick Porter  <dick@ximian.com>
16765
16766         * socket-io.c: Implemented GetHostName_internal
16767
16768 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16769
16770         * mono-config.c:
16771         (mono_config_parse_file): don't leak the text.
16772
16773 2002-10-02  Martin Baulig  <martin@gnome.org>
16774
16775         * debug-mono-symfile.c: Added support for methods.
16776
16777 2002-10-01  Martin Baulig  <martin@gnome.org>
16778
16779         * debug-mono-symfile.c: Don't emit methods and line numbers for
16780         the dynamic symbol file, just write the type table.  We can easily
16781         have an external helper program which creates a symbol file for an
16782         IL file.        
16783
16784 2002-10-01  Dick Porter  <dick@ximian.com>
16785
16786         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16787         Only add the handle to the cleanup array when we're about to
16788         launch the thread.  Bug 31425 deadlocked when the test was run on
16789         mono under w32.
16790
16791 2002-10-01  Martin Baulig  <martin@gnome.org>
16792
16793         * debug-mono-symfile.c: Added support for properties.
16794
16795 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16796
16797         * reflection.c: unaligned store fix from Mark Crichton
16798         <crichton@gimp.org>.
16799
16800 2002-09-27  Martin Baulig  <martin@gnome.org>
16801
16802         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16803         New interncall.
16804
16805 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16806
16807         * assembly.h, assembly.c: use a sane API to hook into the assembly
16808         loading process instead of a useless special-purpouse hack
16809         (ngen needs a hook, too, for example).
16810
16811 2002-09-27  Dick Porter  <dick@ximian.com>
16812
16813         * threads.c (mono_thread_init): Call GetCurrentProcess() so
16814         io-layer can set up some process handle info.  Not needed on w32,
16815         but doesn't hurt either.
16816
16817         * process.c: Pass the program name in the second parameter to
16818         CreateProcess, so the path is searched.  Include the working
16819         directory. Implemented process name, process enumeration, and some
16820         process detail internal calls.
16821         
16822         * icall.c: Added internal calls for process lookup, and some
16823         process details
16824
16825 2002-09-26  Martin Baulig  <martin@gnome.org>
16826
16827         * assembly.c (mono_install_open_assembly_hook): New global
16828         function to install a function to be invoked each time a new
16829         assembly is loaded.
16830         (mono_assembly_open): Run this callback function if set.
16831
16832         * debug-mono-symfile.c: Put back line numbers for the dynamic
16833         symbol file and also record the .il file as source file.  This
16834         allows us to install the temporary symbol file as `file.dbg' just
16835         like a compiler-generated one.
16836
16837 2002-09-26  Nick Zigarovich <nick@chemlab.org>
16838
16839         * Corrected typo in gc.c (BOHEM vs BOEHM).
16840
16841 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16842
16843         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16844         GetProperties. Also avoid calling g_slist_length in GetProperties and
16845         GetMethods.
16846
16847 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16848
16849         * reflection.c: avoid unaligned stores (bug spotted by
16850         Mark Crichton  <crichton@gimp.org>).
16851
16852 2002-09-25  Martin Baulig  <martin@gnome.org>
16853
16854         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16855         instead of guint64 for addresses and added prologue/epilogue info.
16856
16857 2002-09-25  Martin Baulig  <martin@gnome.org>
16858
16859         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16860         store line number info.  For the dynamic symbol file, we only need
16861         to provide the JIT generated dynamic line number info for the dynamic
16862         symbol file.
16863
16864 2002-09-25  Martin Baulig  <martin@gnome.org>
16865
16866         * debug-mono-symfile.h: Incremented version number.
16867
16868 2002-09-24  Martin Baulig  <martin@gnome.org>
16869
16870         * class.c (mono_debugger_class_init_func): New global function
16871         pointer variable.
16872         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16873         call it.
16874
16875         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16876         function.  This is called via the mono_debugger_class_init_func
16877         hook to add all types to the dynamic type table.
16878         (ves_icall_MonoDebugger_GetType): New interncall to get a class
16879         from its metadata token.
16880
16881         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
16882         New interncall for the debugger.
16883
16884 2002-09-24  Nick Drochak <ndrochak@gol.com>
16885
16886         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
16887         before using it in case it is null.
16888         
16889 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16890
16891         * metadata.c: allow custom modifiers in local var signatures
16892         (bug spotted by Zoltan Varga).
16893
16894 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16895
16896         * class.c: deal with the <Module> class that may have a NULL vtable.
16897         Eliminate warnings.
16898
16899 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16900
16901         * image.c, image.h: more strong name helpers.
16902         * monosn.c: more work: convert pem keys to cryptoapi format.
16903
16904 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16905
16906         * string-icalls.c: speedup IndexOf.
16907
16908 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16909
16910         * icall.c: updates from Zoltan.2.Varga@nokia.com.
16911
16912 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16913
16914         * icall.c: cleanup: use mono_object_domain ().
16915
16916 2002-09-23  Martin Baulig  <martin@gnome.org>
16917
16918         * debug-mono-symfile.c: Improved type support.
16919
16920 2002-09-22  Martin Baulig  <martin@gnome.org>
16921
16922         * debug-mono-symfile.c: Added support for reference types and strings.
16923
16924 2002-09-22  Martin Baulig  <martin@gnome.org>
16925
16926         * debug-mono-symfile.c: Started to work on the type table.
16927
16928 2002-09-21  Martin Baulig  <martin@gnome.org>
16929
16930         * debug-mono-symfile.c: Largely reworked the symbol table format.
16931         The symbol table is now incrementally updated each time a new
16932         method is added.  We're now also using our own magic and version
16933         so that you don't need to recompile all your classes if the
16934         dynamic table changes.
16935         (mono_debug_update_mono_symbol_file): Removed.
16936         (mono_debug_symfile_add_method): New function to add a method.
16937
16938 2002-09-21  Martin Baulig  <martin@gnome.org>
16939
16940         * icall.c
16941         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
16942         New interncall.
16943
16944         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
16945         New interncall to get a method from its metadata token.
16946
16947 2002-09-21  Martin Baulig  <martin@gnome.org>
16948
16949         * debug-mono-symfile.c: Create type table.
16950
16951 2002-09-20  Martin Baulig  <martin@gnome.org>
16952
16953         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
16954
16955 2002-09-20  Martin Baulig  <martin@gnome.org>
16956
16957         * debug-mono-symfile.c: Provide information about params and locals.
16958
16959 2002-09-20  Martin Baulig  <martin@gnome.org>
16960
16961         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
16962         New interncall.
16963
16964         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
16965         interncall to get a method from its metadata token.
16966
16967 2002-09-20  Martin Baulig  <martin@gnome.org>
16968
16969         * debug-mono-symfile.c: Added a few checks for method->header
16970         being non-NULL.  This should never happen, but for the moment
16971         let's use a g_warning() rather than a g_assert().
16972
16973 2002-09-19  Mark Crichton  <crichton@gimp.org>
16974
16975         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
16976         even if support for it isn't present.  Added an #ifdef to fix this.
16977
16978         * socket-io.c: Added checks back for Solaris support.
16979
16980 2002-09-19  Martin Baulig  <martin@gnome.org>
16981
16982         * debug-mono-symfile.c (read_string, write_string): Reflect latest
16983         changes in the symbol file format.
16984
16985 2002-09-18  Martin Baulig  <martin@gnome.org>
16986
16987         * debug-mono-symfile.c: Set version number to 21.
16988
16989 2002-09-18  Dick Porter  <dick@ximian.com>
16990
16991         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
16992         on netbsd.  Fixes bug 30051.
16993
16994 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16995
16996         * reflection.c:
16997         (set_version_from_string): little fix.
16998
16999 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17000
17001         * monosn.c, Makefile.am: added strong name utility.
17002         * reflection.h, reflection.c: implemented delayed signing,
17003         locale, version and hash id assembly attributes.
17004
17005 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17006
17007         * loader.c, metadata.c: load param attributes in signatures.
17008
17009 2002-09-16  Martin Baulig  <martin@gnome.org>
17010
17011         * debug-mono-symfile.c: Added string table with all method names.
17012
17013 2002-09-14  Martin Baulig  <martin@gnome.org>
17014
17015         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17016         fast method lookup.
17017
17018 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17019
17020         * reflection.c: record the public key token of referenced assemblies.
17021
17022 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17023
17024         * image.c, image.h: added functions to get the strong name and the
17025         public key of an assembly.
17026         * pedump.c: use them.
17027
17028 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17029
17030         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17031
17032 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17033
17034         * marshal.c (mono_marshal_get_managed_wrapper): Added
17035         MONO_TYPE_BOOLEAN 
17036
17037 2002-09-11  Martin Baulig  <martin@gnome.org>
17038
17039         * gc.c: Call GC_unregister_disappearing_link() on all links when
17040         finalizing them, this is necessary to aviod a crash in boehm's
17041         finalize handler.
17042
17043 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17044
17045         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17046         nick@chemlab.org.
17047
17048 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17049
17050         * icall.c: implemented MonoType::Module.
17051         * reflection.c, reflection.h: mono_module_get_object () from
17052         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17053
17054 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17055
17056         * icall.c: ignore overridden methods in GetMethods ().
17057         Fix for FieldInfo::SetValue().
17058         * object.c: handle float/double in runtime invoke.
17059
17060 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17061
17062         * object.c: allow a constructor to be called again on an object.
17063
17064 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17065
17066         * class.h, class.c: move field layout code to it's own function and
17067         export it. Get an interface id earlier. Move fields in MonoClass
17068         so they are more cache friendly and align the bitfields.
17069         * loader.c: temporary handle get_param_names() for a runtime method.
17070         * reflection.c, reflection.h: more code to handle runtime creation of
17071         types.
17072
17073 2002-09-09  Martin Baulig  <martin@gnome.org>
17074
17075         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17076         signature with the pinvoke field being set for the actual call.
17077
17078 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17079
17080         * icall.c: removed some unused icalls. Start of map of glib charsets
17081         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17082
17083 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17084
17085         * debug-helpers.c: break infinite loop (found and fixed by
17086         Holger Arnold <harnold@gmx.de>).
17087
17088 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17089
17090         * icall.c: target may be null in create_delegate.
17091
17092 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17093
17094         * marshal.c: handle a boolean return type.
17095
17096 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17097
17098         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17099
17100 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17101
17102         * gc.c: fix weakreferences.
17103
17104 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17105
17106         * icall.c: added icall to get default codepage.
17107
17108 2002-09-03  Dick Porter  <dick@ximian.com>
17109
17110         * threads.h: 
17111         * threads.c: Use MonoThread instead of MonoObject where
17112         apropriate.
17113
17114         Store running thread objects in a hash table, so that we have all
17115         the info to hand when waiting for them to finish
17116         (means we don't need OpenThread() any more, so mingw builds should
17117         be fully functional again.)
17118
17119         * verify.c:
17120         * object.h: Added thread ID to MonoThread
17121
17122 2002-09-03  Martin Baulig  <martin@gnome.org>
17123
17124         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17125
17126 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17127
17128         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17129
17130 2002-09-03  Martin Baulig  <martin@gnome.org>
17131
17132         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17133         argument to store the end address of the disassembled instruction.
17134
17135         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17136         here from debug-symfile.h.
17137         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17138         JIT into this struct.
17139         (MonoSymbolFile): Added `char *image_file' field.
17140         (MonoDebugGetMethodFunc): Removed.
17141         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17142         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17143         (mono_debug_find_method): New method.
17144
17145         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17146         create a full symbol file.
17147         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17148         and static symbol files.
17149         (mono_debug_find_method): The symbol file keeps an internal method hash,
17150         call this to get a MonoDebugMethodInfo from a MonoMethod.
17151
17152         * debug-symfile.[ch]: Removed.
17153
17154 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17155
17156         * image.c (do_mono_image_open): Remove linker version check.
17157
17158 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17159
17160         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17161         wrappers for instance methods.
17162         
17163 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17164
17165         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17166
17167 2002-08-28  Dick Porter  <dick@ximian.com>
17168
17169         * Makefile.am: Export HOST_CC for w32 builds
17170
17171 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17172
17173         * file-io.c process.c: MonoString are null terminated, no
17174         need for mono_string_to_utf16() anymore.
17175
17176 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17177
17178         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17179
17180 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17181
17182         * icall.c, reflection.h: speedup System.MonoType.
17183
17184 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17185
17186         * reflection.c: allow null as the value of a string argument in
17187         custom attributes constructors.
17188
17189 2002-08-27  Martin Baulig  <martin@gnome.org>
17190
17191         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17192         `trampoline_address' field.
17193
17194 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17195
17196         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17197         check (fixes bug #29486) 
17198
17199 2002-08-27  Martin Baulig  <martin@gnome.org>
17200
17201         * debug-mono-symfile.c: Changed the file format in a way that allows us
17202         open it read-only and to use a specially malloced area for all the
17203         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17204         debugging IL code and there is no MCS generated symbol file for it.
17205
17206 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17207
17208         * object.c: added a define for a good string and array
17209         creation speedup (not enabled by default because we need to deal with
17210         the synch stuff).
17211
17212 2002-08-26  Martin Baulig  <martin@gnome.org>
17213
17214         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17215         function to create a dynamic symbol file.  This is used by the
17216         debugger to create a symbol file for IL code on-the-fly.
17217
17218 2002-08-26  Martin Baulig  <martin@gnome.org>
17219
17220         * loader.c (mono_lookup_pinvoke_call): Include the error message
17221         from g_module_error() in the error message.
17222
17223 2002-08-24  Martin Baulig  <martin@gnome.org>
17224
17225         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
17226         function to update the symbol file.  The symbol file is mmap()ed
17227         writable, but private.  This allows us to install the symbol file
17228         together with the assembly.
17229
17230 2002-08-24  Martin Baulig  <martin@gnome.org>
17231
17232         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
17233         but they can read the new symbol file format which mcs is now creating.
17234
17235         * debug-symfile.c (mono_debug_find_source_location): Moved to
17236         debug-mono-symfile.c; this is now operating on the new symbol file.
17237
17238 2002-08-23  Martin Baulig  <martin@gnome.org>
17239
17240         * debug-helpers.c (mono_method_desc_from_method): New function to get
17241         a MonoMethodDesc from a MonoMethod.
17242
17243 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17244
17245         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
17246         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
17247
17248 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17249
17250         * string-icalls.[ch]: make helper methods static.
17251
17252 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17253
17254         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
17255         types to it and to SetValueInternal.
17256
17257         * object.c: Moved handle_enum label to its proper place. This was the
17258         f... bug! ;-)
17259
17260         This time i compiled mcs and gtk-sharp and they both work.
17261
17262 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17263
17264         * icall.c: reverted partially my previous patch until 
17265         object.c:set_value handles enums correcly.
17266
17267 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17268
17269         * icall.c:
17270         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17271         (ves_icall_System_Environment_get_MachineName): removed warning when
17272         compiling under cygwin.
17273
17274 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17275
17276         * object.c: fixed field_get_value() for reference types.
17277
17278 2002-08-22  Dick Porter  <dick@ximian.com>
17279
17280         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17281         Don't free a buffer while it's still needed.  Patch from Jonathan
17282         Liger <Jonathan.liger@wanadoo.fr>
17283
17284 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
17285
17286         * icall.c (ves_icall_System_Environment_get_Platform): Add new
17287         internal call.
17288
17289 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
17290
17291         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17292         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17293
17294         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17295         we call unmanaged code which throws exceptions.
17296
17297 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17298
17299         * appdomain.h: added per-domain entry_assembly.
17300         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17301         arguments.
17302         * icall.c: Assembly::GetEntryAssembly icall.
17303         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17304         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17305
17306 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17307
17308         * appdomain.h, gc.c: added mono_domain_finalize ().
17309
17310 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17311
17312         * object.c:
17313         (mono_print_unhandled_exception): changed g_warning by g_printerr
17314         because g_log has a 1024 characters limit (yeah, i got a big stack
17315         trace). Don't print exception name, that should be in ToString 
17316         returned string.
17317
17318 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17319
17320         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17321         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17322
17323 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17324
17325         * object.c:
17326         (mono_print_unhandled_exception): after previous commit, i realized
17327         that MS calls ToString on the exception. I changed this function to
17328         do that. This way we get stack_trace for free.
17329
17330 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17331
17332         * object.c:
17333         (mono_print_unhandled_exception): invoke Message property instead of
17334         getting 'message' field from Exception. Don't allocate memory for
17335         'trace' and 'message' if not needed.
17336
17337 2002-08-18  Dick Porter  <dick@ximian.com>
17338
17339         * unicode.c: Fix asserts to match Encoder.cs checks
17340
17341 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17342
17343         * marshal.c: fix unaligned store issue and a few wrong
17344         opcode argument types.
17345
17346 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17347
17348         * icall.c: added GetUninitializedObjectInternal internal call.
17349
17350 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
17351
17352         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17353         to the right domain.
17354
17355 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
17356
17357         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17358
17359         * class.c (class_compute_field_layout): set blittable to false for Strings
17360
17361         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17362
17363 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17364
17365         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17366         first chunk of code to create types at runtime. Code to
17367         handle ReflectedType/DeclaringType. Make reflection handles
17368         domain specific.
17369
17370 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17371
17372         * class.c: set correct name in arrays.
17373
17374 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
17375
17376         * appdomain.c (mono_domain_transfer_object): make it work with
17377         valuetypes. bug fixes.
17378
17379 2002-08-12  Dick Porter  <dick@ximian.com>
17380
17381         * object.h: Rename some parameters to avoid c++ keywords (Patch
17382         from Joseph Wenninger <kde@jowenn.at>)
17383
17384 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17385
17386         * icall.c: added icall to implement Assembly.GetFile*.
17387
17388 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17389
17390         * reflection.h, reflection.c: code to embed managed resources.
17391
17392 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17393
17394         * class.c: move all the type size stuff into
17395         class_compute_field_layout().
17396
17397 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17398
17399         * class.c: ensure enums have always the correct instance size.
17400         * unicode.c: remove wrong assert.
17401
17402 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17403
17404         * assembly.c: fix mem corruption issue.
17405         * image.h, image.c: added mono_image_get_resource () to access
17406         managed resources.
17407         * icall.c: implemented Assembly.EntryPoint property and some
17408         Managed Resources related internalcalls.
17409
17410
17411 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17412
17413         * image.c, image.h: impemented mono_image_get_entry_point ().
17414         * appdomain.c: use mono_image_get_entry_point.
17415
17416 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17417
17418         * reflection.c: support the object type argument when loading
17419         custom attributes.
17420
17421 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
17422
17423         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17424         String as return type.
17425
17426 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17427
17428         * reflection.c: fix encoding of named args for custom attrs to match
17429         the ms implementation. Read them back when instantiating custom
17430         attributes.
17431
17432 2002-08-02  Radek Doulik  <rodo@ximian.com>
17433
17434         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17435         by Dietmar as quick fix
17436         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17437         16 as stack size, used on more places as quick fix before Dietmar
17438         will fix it properly
17439
17440 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17441
17442         * object.h, object.c: added accessors for fields and properties.
17443
17444 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17445
17446         * class.c, class.h: made mono_class_get_field_from_name ()
17447         loop on parent types.
17448         Added mono_class_get_property_from_name ().
17449
17450 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17451
17452         * class.c, class.h: move the code to setup the type vtable in its own
17453         function so that it can be reused also for types created at runtime.
17454         Eliminate the "class" identifier from the header file.
17455         * reflection.c: setup the vtable for enums so that we can create
17456         objects for use in SetConstant ().
17457
17458 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
17459
17460         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17461         instead of the delegate itself as this pointer (bug #28383)
17462
17463 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
17464
17465         * marshal.c (mono_marshal_get_managed_wrapper): added return type
17466         conversions.
17467
17468 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17469
17470         * loader.c: don't set the pinvoke bit on icalls.
17471
17472 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
17473
17474         * debug-helpers.c (mono_method_full_name): only print a number to
17475         indicate wrapper type (so that the output is more readable in traces).
17476
17477 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
17478
17479         * class.c (mono_class_init): include method override patch from Paolo
17480
17481 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17482
17483         * icall.c: fixed GetTypeCode().
17484
17485 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
17486
17487         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17488         use real delegate invoke function to make it work with multicast
17489         delegates (fix bug# 28291).
17490
17491 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17492
17493         * object.c: load constant strings.
17494
17495 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17496
17497         * reflection.c: no magic numbers.
17498         * tabledefs.h: security action enum.
17499
17500 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17501
17502         * assembly.c: fix possible memory corruption.
17503
17504 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17505
17506         * reflection.h, reflection.c: added support for linking resources.
17507         * verify.c: check we have an updated corlib.
17508
17509 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
17510
17511         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17512         string arrays.
17513         (mono_marshal_string_array): null terminate unmanaged string arrays.
17514         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17515
17516 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17517
17518         * icall.c: Type.GetType () can now return also types from the
17519         calling assembly.
17520
17521 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17522
17523         * loader.h, loader.c: stack walking support.
17524         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17525         GetCallingAssembly.
17526
17527 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
17528
17529         * marshal.c: added optimisations for blittable types 
17530
17531         * class.c (mono_array_class_get): do not set blittable attribute on arrays
17532         (mono_class_setup_mono_type): set blittable attribute for single
17533         and double.
17534
17535         * marshal.c (mono_string_utf8_to_builder): impl.
17536         (mono_string_builder_to_utf8): impl.
17537         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17538
17539 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
17540
17541         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17542         (mono_marshal_get_managed_wrapper): impl. byref types
17543
17544 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17545
17546         * icall.c:
17547         (search_method): don't display debug message. 
17548
17549 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17550
17551         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17552
17553 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17554
17555         * appdomain.c: set the missing filename when throwing exception.
17556
17557 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
17558
17559         * metadata.c (mono_type_size): code cleanup
17560         (mono_type_stack_size): removed some test code
17561
17562 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
17563
17564         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17565         mono_get_exception_file_not_found now.
17566
17567         * exception.c (mono_exception_from_name_two_strings): New version
17568         that will call a constructor with two string arguments. 
17569         (mono_get_exception_file_not_found): New helper routine, used to
17570         report file-not-found errors.
17571
17572 2002-07-20  Dick Porter  <dick@ximian.com>
17573
17574         * process.h:
17575         * process.c: Pass file handles to CreateProcess
17576         
17577         * icall.c:
17578         * file-io.h:
17579         * file-io.c: Implemented CreatePipe
17580
17581 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17582
17583         * metadata.c (mono_get_param_info): set alignment for value types
17584
17585 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17586
17587         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17588         Constify mono_domain_assembly_open().
17589         * loader.c: handle null namespace in icalls.
17590
17591 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
17592
17593         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17594         (emit_str_to_ptr_conv): marshal object as structs
17595
17596         * metadata.c (mono_type_to_unmanaged): marshal object as structs
17597
17598         * marshal.c (mono_marshal_get_runtime_invoke): support value types
17599
17600 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
17601
17602         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17603         (mono_marshal_get_native_wrapper): we an now return value types
17604
17605 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17606
17607         * verify.c: more checks implemented.
17608
17609 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
17610
17611         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17612         (fix bug #27695)
17613         (mono_marshal_get_native_wrapper): allow byref arguments
17614         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17615         impl. PtrToStringXXX methods
17616         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17617         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17618         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17619         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17620         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17621
17622 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17623
17624         * reflection.c: fix buglet in parsing an assembly name.
17625
17626 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17627
17628         * marshal.c (emit_ptr_to_str_conv): first impl.
17629
17630 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17631
17632         * object.c, class.h: cache the vtable in the class as suggested by
17633         vargaz@freemail.hu (Zoltan Varga).
17634
17635 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17636
17637         * class.h, loader.c: added mono_field_from_token().
17638         * verify.c: first cut of type checking code.
17639
17640 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
17641
17642         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17643
17644 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
17645
17646         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17647         (fix bug #27782)
17648         (mono_marshal_get_remoting_invoke): impl.
17649         (mono_delegate_begin_invoke): impl.
17650         (mono_mb_emit_save_args): impl.
17651         (mono_delegate_end_invoke): impl.
17652         (mono_marshal_get_delegate_begin_invoke):
17653         (mono_marshal_get_delegate_end_invoke):
17654         (mono_marshal_get_delegate_invoke): generate a special name for
17655         those methods (including the signature) and associate them whith
17656         the delegate class. 
17657
17658 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17659
17660         * reflection.[ch]: 
17661         (mono_reflection_type_from_name): now it has a MonoImage parameter
17662         which is used as the default image to search the type in. If the image
17663         is NULL or getting the type from it fails, it defaults to corlib.
17664
17665         * icall.c: changed 1 call to mono_reflection_type_from_name to match
17666         new parameter.
17667
17668 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17669
17670         * reflection.c: update the parameter table index.
17671
17672 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17673
17674         * domain.c: don't include the mark byte in the string hash.
17675
17676 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17677
17678         * icall.cs: icall for Type.GetTypeCode ().
17679         * verify: a couple of fixes and disabled local initialization checks.
17680
17681 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
17682
17683         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17684
17685         * debug-helpers.c (mono_method_full_name): print the type of the
17686         runtime wrapper
17687
17688         * metadata.c (mono_signature_hash): a hash function for signatures
17689         (mono_signature_hash): better hash algorithm
17690
17691         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17692
17693         * debug-helpers.c (mono_method_full_name): this can now generate
17694         method names with signatures
17695
17696         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17697         method dont have this pointers.
17698
17699 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * reflection.c: fixup typebuilder tokens.
17702         * image.c: fix buglet.
17703         * marshal.h: remove whitespace.
17704         * metadata.h, metadata.c: reinstate code that was removed.
17705         * verify.c: handle catch directives and fix another couple of bugs.
17706
17707 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
17708
17709         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17710         (mono_marshal_get_native_wrapper): make it comp. with the old code
17711         (mono_marshal_get_native_wrapper): support boolean
17712         (mono_marshal_get_managed_wrapper): support more types
17713
17714 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
17715
17716         * class.c (class_compute_field_layout): compute class->blittable attribute.
17717
17718 2002-07-09  Dick Porter  <dick@ximian.com>
17719
17720         * threads.c: Make the thread cleaning up cope with threads that
17721         call ExitThread()
17722
17723 2002-07-08  Radek Doulik  <rodo@ximian.com>
17724
17725         * reflection.c (method_encode_code): use non-translated values to
17726         compute finally_start, this fixes exception handling on ppc, yay!
17727
17728         * decimal.h (struct signscale): fix endianess
17729
17730 2002-07-07  Radek Doulik  <rodo@ximian.com>
17731
17732         * reflection.c: swap box_val and not val
17733
17734 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17735
17736         * reflection.c, reflection.h: handle full assembly info in type name.
17737         Handle Type arguments when loading custom attributes.
17738         * icall.c: updated to use new mono_reflection_type_from_name () method.
17739
17740 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17741
17742         * loader.c:
17743         (method_from_memberref): also print assembly name when method not found.
17744
17745 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17746
17747         * icall.c:
17748         (ves_icall_TypeGetProperties): fixed bug #27473. 
17749
17750 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17751
17752         * reflection.c: display image name and token when cannot find the
17753         .ctor for an attribute.
17754
17755 2002-07-05  Martin Baulig  <martin@gnome.org>
17756
17757         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17758
17759 2002-07-04  Dick Porter  <dick@ximian.com>
17760
17761         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17762         compile on mingw.  This will cause mingw builds to not wait for
17763         subthreads to terminate after the main thread does.  I've lodged a
17764         bug with the mingw developers for them to wrap OpenThread().
17765
17766 2002-07-03  Dick Porter  <dick@ximian.com>
17767
17768         * threads.c: Store thread IDs instead of handles, because
17769         GetCurrentThread() returns a pseudohandle and therefore stores
17770         useless values.  mono_thread_cleanup() continues checking the
17771         array of threads until it is empty, to cope with subthreads
17772         spawning new threads after the main thread has finished.
17773
17774         * profiler.h:
17775         * profiler.c:
17776         * profiler-private.h: Pass the thread ID to thread profiler
17777         functions, instead of a handle
17778
17779 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17780
17781         * verify.c: fixes to make it more usable.
17782         * pedump.c: added --verify code to verify IL code in an assembly.
17783
17784 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17785
17786         * reflection.c: turn errors into warnings to allow compiling corlib.
17787
17788 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17789
17790         * reflection.c: add special cases to compile corlib.
17791
17792 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17793
17794         * reflection.c: handle properties with only a set method.
17795
17796 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17797
17798         * opcodes.h: add enum with opcodes in opval order.
17799
17800 2002-07-01  Dick Porter  <dick@ximian.com>
17801         
17802         * object.h:
17803         * object.c (mono_runtime_run_main): Removed unneeded argument
17804
17805 2002-06-28  Martin Baulig  <martin@gnome.org>
17806
17807         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17808
17809 2002-06-27  Dick Porter  <dick@ximian.com>
17810
17811         * threads.c: Store the handle in both the parent thread and in the
17812         subthread, to minimise the time between starting a new thread and
17813         storing its ID.
17814
17815 2002-06-26  Dick Porter  <dick@ximian.com>
17816
17817         * appdomain.c (mono_runtime_cleanup): Close the socket library
17818         after all the threads have finished, not before
17819
17820 2002-06-26  Martin Baulig  <martin@gnome.org>
17821
17822         * debug-symfile.c (mono_debug_find_source_location): Added
17823         `guint32 *line_number' argument.  If it's not NULL, store the line number
17824         there and return the file name without the line number.
17825
17826 2002-06-25  Dick Porter  <dick@ximian.com>
17827
17828         * icall.c:
17829         * process.h:
17830         * process.c: Process forking and other support functions
17831
17832 2002-06-25  Dick Porter  <dick@ximian.com>
17833
17834         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17835         things dont happen when the image is closed.
17836         (mono_image_lookup_resource): Walk the resource section looking
17837         for a particular entry
17838
17839         * cil-coff.h: PE resource section decoding
17840
17841 2002-06-25  Dick Porter  <dick@ximian.com>
17842         
17843         * assembly.h:
17844         * assembly.c: 
17845         (mono_assembly_foreach): Accessor functions to walk the list of
17846         loaded assemblies
17847         (mono_assembly_set_main):
17848         (mono_assembly_get_main): Process methods need to know which
17849         assembly is the "main" one
17850
17851         * object.c (mono_runtime_run_main): Record the main assembly
17852
17853         * debug-helpers.c: Fix typo
17854
17855 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
17856
17857         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17858         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17859
17860 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17861
17862         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17863
17864 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
17865
17866         * image.c (do_mono_image_open): Initialize reference count,
17867         otherwise we leak the MonoImage.
17868
17869 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17870
17871         * reflection.c: small tweak to handle self-hosting.
17872
17873 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17874
17875         * reflection.c: fix type name parse code.
17876
17877 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17878
17879         * reflection.c: break out of the loop.
17880         * image.c: special case corlib.
17881
17882 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17883
17884         * reflection.c: add all the custom attrs at the end to ensure the
17885         ctors have been properly initialized when the attributes are defined
17886         in the current assembly.
17887
17888 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17889
17890         * reflection.c: handle correctly multiple-nested types.
17891
17892 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17893
17894         * row-indexes.h: fix typos.
17895         * reflection.c: adjust for typos and fix method_def_or_ref
17896         encoding in MethodImpl table.
17897
17898 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17899
17900         * reflection.c: fix entry point patching (thanks Serge!).
17901
17902 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
17903
17904         * verify.c: add check for System.Exception
17905
17906 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17907
17908         * image.c, class.c: minifix for code just c&p'ed.
17909         * reflection.c: warning fix.
17910         * object.h, loader.h, domain.c: load also StringBuilder.
17911
17912 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17913
17914         * marshal.h, marshal.c: some support code to handle complex marshaling.
17915
17916 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17917
17918         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
17919         Better signatures with vtable error dump.
17920
17921 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
17922
17923         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
17924
17925 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
17926
17927         * icall.c (ves_icall_Type_GetField): impl.
17928
17929 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17930
17931         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
17932         to retrieve a marshal description blob for a field or param.
17933
17934 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17935
17936         * reflection.h, reflection.c: change order of nested type emission
17937         to avoid table corruption. The NestedTypes table is sorted.
17938         * icall.c: change order of GetConstructor results to workaround mcs bug.
17939
17940 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17941
17942         * reflection.h, reflection.c: handle field and param marshal
17943         information.
17944
17945 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17946
17947         * icall.c, marshal.c marshal.h: more Marshal class implementation.
17948
17949 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17950
17951         * reflection.c: fix call convention.
17952
17953 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17954
17955         * reflection.h, reflection.c: mono_image_get_memberref_token()
17956         takes a type instead of a class, now. Added
17957         mono_image_get_array_token() to create tokens for the special
17958         multi-dim array methods.
17959
17960 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17961
17962         * assembly.c: handle modules (no assembly table). Split
17963         loading references in its own function.
17964         * class.c: handle moduleref resolution scope.
17965         * image.c, image.h: cache module name in image.
17966
17967 2002-06-07  Martin Baulig  <martin@gnome.org>
17968
17969         * reflection.c (mono_image_get_type_info): Only add a class layout entry
17970         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
17971
17972 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17973
17974         * icall.c: more signature fixes that used uint instead of int.
17975
17976 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17977
17978         * reflection.c: fixed signature of field refs.
17979
17980 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17981
17982         * class.c, reflection.c: handle typerefs of nested types
17983         (both on read and when writing files).
17984
17985 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17986
17987         * icall.c: fix method signatures that tried to workaround the previous
17988         typo, d'oh!
17989
17990 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17991
17992         * debug-helpers.c: fix typo.
17993
17994 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17995
17996         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
17997         rewrote the PE/COFF writing code (our programs are understood by the
17998         ms runtime, now).
17999
18000 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18001
18002         * gc.c, gc.h, icall.c: weakreference support.
18003
18004 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18005
18006         * Makefile.am, mono-config.c: use $(sysconfdir).
18007
18008 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18009
18010         * icall.c: changed default precision of Double.ToString() to 15.
18011         Fixed memory leak. Unified with Single.ToString.
18012
18013 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18014
18015         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18016
18017 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18018
18019         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18020         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18021         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18022         and myself.
18023
18024 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18025
18026         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18027
18028 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18029
18030         * reflection.c, socket-io.c: more compilation fixes.
18031
18032 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18033
18034         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18035         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18036         unicode.c: warning and compiler compatibility fixes.
18037
18038 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18039
18040         * class.h, metadata.c: fixed warnings/compilation errors.
18041
18042 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18043
18044         * Makefile.am, mono-config.c, mono-config.h: configuration file
18045         support routines.
18046         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18047         config file. Export methods to insert and lookup mappings.
18048
18049 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18050
18051         * reflection.c: handle types and boxed objects in custom attr
18052         constructors.
18053
18054 2002-05-30  Martin Baulig  <martin@gnome.org>
18055
18056         * debug-symfile.c
18057         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18058
18059 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18060
18061         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18062         to lookup the implmap row for a P/Invoke method.
18063         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18064         P/Invoke method from the runtime on an as needed basis.
18065
18066 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18067
18068         * metadata.c (mono_metadata_parse_signature): impl.
18069
18070 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18071
18072         * class.c: handle .pack directive.
18073
18074 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18075
18076         * object.c: initialize static fields with RVA data.
18077
18078 2002-05-25  Martin Baulig  <martin@gnome.org>
18079
18080         * debug-symfile.c
18081         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18082
18083 2002-05-24  Martin Baulig  <martin@gnome.org>
18084
18085         * debug-symfile.c
18086         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18087         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18088         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18089
18090 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18091
18092         * object.c: special case string ctros in invoke.
18093         * gc.c: silly whitespace changes.
18094
18095 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18096
18097         * threadpool.[ch]: impl. a threadpool that can
18098         be used by mint and mono.
18099
18100 2002-05-22  Martin Baulig  <martin@gnome.org>
18101
18102         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18103         The first argument is now a `MonoReflectionModuleBuilder *', the return
18104         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18105         `methods' field to get the method builder.  The `token' argument is the
18106         unfixed token.
18107
18108         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18109         invalid characters instead of g_assert_not_reached()ing.  This seems
18110         to be the behaviour of mscorlib.
18111
18112 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18113
18114         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18115         Hestilow to fix bug #25104
18116
18117 2002-05-21  Martin Baulig  <martin@gnome.org>
18118
18119         * debug-symfile.c (mono_debug_find_source_location): New function.
18120         Looks up an IL offset in the line number table and returns the source
18121         location as a string.
18122
18123 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18124
18125         * icall.c:
18126         (mono_double_ToStringImpl): changed %f by %g until we have something
18127         better.
18128
18129 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18130
18131         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18132         parameters first in C#.
18133
18134 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18135
18136         * icall.c, reflection.h: added icall to get info about an event.
18137
18138 2002-05-20  Radek Doulik  <rodo@ximian.com>
18139
18140         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18141         endian
18142         (mono_value_box): don't use memcpy for small sizes on
18143         architectures with unaligned access
18144
18145 2002-05-20  Martin Baulig  <martin@gnome.org>
18146
18147         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18148         if `tb->parent == NULL'.
18149         (mono_reflection_create_internal_class): New function.  This is
18150         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18151         for enum types.
18152
18153         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18154         New interncall.
18155
18156 2002-05-19  Martin Baulig  <martin@gnome.org>
18157
18158         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18159         argument to get the length, don't default to the array length.
18160
18161 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18162
18163         * assembly.c (mono_assembly_setrootdir): New function used to
18164         override the MONO_ASSEMBLIES directory.
18165
18166 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18167
18168         * icall.c: ValueType_GetHashCode() initialize local var.
18169
18170 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18171
18172         * reflection.c: sort custom attributes table.
18173
18174 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18175
18176         * reflection.c: support named args in custom attributes (write support).
18177
18178 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18179
18180         * reflection.c: fix finally position calculation.
18181
18182 2002-05-15  Radek Doulik  <rodo@ximian.com>
18183
18184         * reflection.c: fixed endianess at many places
18185
18186         * icall.c (ves_icall_InitializeArray): comment out debug msg
18187
18188 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18189
18190         * object.c (mono_unhandled_exception): new function to handle
18191         unhandled exceptions.
18192         (mono_unhandled_exception): call the UnhandledException event.
18193         (mono_runtime_delegate_invoke): impl.
18194
18195 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18196
18197         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18198         returns the RVA, not the direct pointer to the data. Handle the case
18199         when the class size is fixed.
18200
18201 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18202
18203         * reflection.c: fix some endianess issues.
18204
18205 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18206
18207         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18208
18209         * threads.c (mono_thread_init): added a callback which is invoked
18210         at thread start.
18211
18212 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18213         
18214         * icall.c: make GetHashCode return non-negative values.
18215
18216 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18217
18218         * object.c, icall.c, gc.c: revert to address-based hashcode.
18219
18220 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
18221
18222         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
18223
18224 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18225
18226         * icall.c, class.c: special case <Module>.
18227
18228 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
18229
18230         * icall.c: fix bug in GetNow().
18231
18232 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
18233
18234         * object.c (mono_runtime_class_init): make sure that we call all
18235         static class constructors.
18236
18237 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18238
18239         * reflection.c: sort methodsemantics table.
18240
18241 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18242
18243         * reflection.h, reflection.c: honour init locals setting.
18244
18245 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
18246
18247         * icall.c: copied Double ToStringImpl for Single ToStringImpl
18248
18249 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18250
18251         * reflection.c: support ContructorBuilders in attribute blob creation.
18252
18253 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18254
18255         * reflection.c: some changes to build a binary that can be run
18256         directly in windows.
18257
18258 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18259
18260         * loader.c: print a big message when an icall can't be found.
18261
18262 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18263
18264         * string-icalls.c: fix bug 24248.
18265
18266 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18267
18268         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18269         icall.c, reflection.h: separate assembly loading by pathname and by
18270         assembly name. Use the MONO_PATH env var to search for assemblies.
18271
18272 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18273
18274         * assembly.c, image.h: add some support for assemblies
18275         with multiple modules.
18276         * class.c, class.h: export mono_class_from_typeref().
18277         * loader.c: remove duplicated code and use mono_class_from_typeref(),
18278         instead.
18279
18280 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18281
18282         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18283         documentation says (the ECMA one is correct).
18284
18285 2002-05-02  Dick Porter  <dick@ximian.com>
18286
18287         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18288         Don't name the synchronisation mutex.
18289
18290 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
18291
18292         * rand.c
18293         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18294         Make the prototypes match.
18295         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18296         Same.
18297
18298         * icall.c
18299         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18300         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18301         all systems have tm.tm_zone, so use strftime() with %Z to print
18302         the timezone abreviation into a temp string.
18303
18304         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18305         rather than mono_array_addr() on a MonoString on Big Endian
18306         machines.
18307
18308 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
18309
18310         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18311         fix bug 24041
18312
18313 2002-04-30  Dick Porter  <dick@ximian.com>
18314
18315         * socket-io.c: Cope with SOCKET being an integer rather than a
18316         pointer now.
18317
18318         * threads.c: Added Thread_free_internal, to deal with thread
18319         handle cleanup.  Moved calls to handle_store() and handle_remove()
18320         to start_wrapper(), so each can only be called once.  Allocate
18321         synchronisation blocks with GC_malloc(), and use GC finalisation
18322         to close the handles.
18323
18324         * icall.c: added System.Threading.Thread::Thread_free_internal
18325
18326 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18327
18328         * icall.c: support Environment.Exit, CommandLineArgs().
18329
18330 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18331
18332         * object.c, object.h: added mono_runtime_run_main () and
18333         mono_runtime_get_main_args () for use in System.Environment.
18334
18335 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18336
18337         * gc.c: fix thinko, enable actual finalization since the jit is now
18338         fixed.
18339
18340 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18341
18342         * gc.c, object.c: take into account that an object may be offset wrt the address
18343         returned by GC_malloc().
18344
18345 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18346
18347         * image.c: handle files without entries in the assembly table (modules).
18348
18349 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18350
18351         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
18352         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18353         allowed to be null when it's System.Object class setup.
18354
18355 2002-04-27  Martin Baulig  <martin@gnome.org>
18356
18357         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18358         if `tb->parent == NULL' rather than crashing.
18359
18360 2002-04-28  Nick Drochak  <ndrochak@gol.com>
18361
18362         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
18363         calling acos() where asin() should have been called.
18364
18365 2002-04-26  Martin Baulig  <martin@gnome.org>
18366
18367         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18368         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18369         there's a subdirectory called `System', but we don't want to read that
18370         subdirectory as an assembly.
18371
18372 2002-04-25  Martin Baulig  <martin@gnome.org>
18373
18374         * debug-symfile.c: Reflect latest MonoString changes.
18375
18376 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18377
18378         * rand.c, rand.h: instance method icalls need to have an explicit
18379         this pointer as first argument in the C implementation.
18380
18381 2002-04-25  Nick Drochak <ndrochak@gol.com>
18382
18383         * icall.c: Fix typo in map for GetNonZeroBytes
18384
18385 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18386
18387         * string-icalls.c : String does now passes unit tests without any 
18388         errors, the following changes has been made:
18389         
18390         Implemented replace methods.
18391         Renaming of methods to (try) follow the standard.
18392         Fixed compare ordinal
18393         Made all memory allocated directly to function instead of via icall function.
18394         Small performance fix in is_in_array function
18395                         
18396  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18397
18398         c (mono_string_Internal_ctor_charp_int_int):
18399         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
18400         sindex < 0, throw ArgumentOutOfRangeException instead of
18401         ArgumentNullException.
18402
18403         Added new check for length == 0, however
18404         I need to make it return String.Empty from the C code.
18405         
18406         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18407         that calculate the length for us here.
18408         
18409         (mono_string_Internal_ctor_sbytep_int_int): Replaced
18410         mono_string_new_utf16 with mono_string_new, since value is utf8.
18411
18412 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18413
18414         * object.c: register the object for finalization if needed.
18415         Allocate one more char in the string for the terminating 0 char.
18416
18417 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18418
18419         * class.c, class.h, image.c: check if a type implemenst a destructor.
18420         Use the proper key for array class lookups.
18421         * icall.c: register the icalls in the System.GC class.
18422         * gc.c, gc.h: GC-related functions and icalls.
18423
18424 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18425
18426         * icall.c:
18427         * socket-io.c:
18428         * unicode.c: free some strings gotten from mono_string_to_utf8 and
18429         changed a couple of free () by g_free ().
18430
18431         * decimal.c: one-liner in the comments for decimal2string ().
18432
18433 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18434
18435         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18436
18437 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
18438
18439         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18440         * object.c (mono_runtime_invoke_array) : handle null in params
18441
18442 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18443
18444         * string-icalls.c: fixed bug in split (one off bug)
18445
18446 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18447
18448         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18449         * icalls.c: added String::Equals as internal method
18450
18451 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
18452
18453         * threads.c: fixed bug in the double interlocked functions
18454
18455 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
18456
18457         * threads.c: implemented all of the new interlocked icalls.
18458         * string-icalls.c: fix a bug in insert.
18459         * icalls.c: added the icalls for interlocked, removed old string functions.
18460         
18461 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18462
18463         * loader.c: fix off-by-one error when reading argument names.
18464
18465 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18466
18467         * profiler.c: win32 counter implementation (untested).
18468         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18469         (the latter needs testing and more complete impl. from win32 folks).
18470
18471 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
18472
18473         * object.c: mono_array_new_full workaround mono_array_class_get
18474         problem.
18475
18476 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18477
18478         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18479         * object.h (mono_string_chars): Changed casting type.
18480
18481 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18482
18483         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18484                            method signatures to use gunichar2 instead of gint16.
18485
18486 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
18487
18488         * object.h, object.c: domain-specific versions of mono_object_new and
18489         mono_array_new.
18490
18491 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
18492
18493         * object.c: changed String layout
18494
18495         * string-icalls.c (mono_string_Internal_ctor_chara): added
18496         internal string constructors.
18497
18498 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18499
18500         * threads.c: pass 'this' to the thread start routine.
18501
18502 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18503
18504         * string-icalls.c: fix IndexOf and LastIndexOf. Now
18505         InternalCompareStr don't call twice mono_string_cmp_char for the last
18506         character. Improved performance in mono_string_cmp_char.
18507
18508 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18509
18510         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18511         code into its own library: libmonoruntime.
18512
18513 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
18514
18515         * object.h, object.c: changed array format so that szarrays do not
18516         require a bounds structure.
18517         * icall.c, appdomain.c: support for new szarray format.
18518
18519 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18520
18521         * metadata.c: compare also the retuns type when comparing signatures:
18522         we didn't do this as an optimization since really overloaded methods
18523         must differ also in the arguments, but this doesn't work with
18524         low-level IL code (or when using explicit conversion operators: see
18525         bug#23498 for an example).
18526
18527 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18528
18529         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18530
18531 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18532
18533         * icall.c: make MonoType::GetElementType its own icall.
18534
18535 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18536
18537         * icall.c: remove MonoMethod_get_Name().
18538         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18539         object.
18540
18541 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18542
18543         * string-icalls.c: optimized a few methods.
18544
18545 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
18546
18547         * icall.c: added all new string internal calls
18548         * string-icalls.c: added, new string internal call implementation.
18549         * object.c: added mono_string_new_size for allocating a string a size
18550
18551 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
18552
18553         * object.c (mono_object_isinst): use the same code as in the
18554         optimized x86 version.
18555
18556 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18557
18558         * profiler.c: TSC-based timer code (faster and more accurate).
18559         Not hooked up in configure, yet (set USE_X86TSC to 1).
18560
18561 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18562
18563         * profiler.c, profiler.h: track time spent compiling methods.
18564         * threads.c: track thread creation/destruction.
18565
18566 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18567
18568         * profiler.c, profiler.h, profiler-private.h: profiling interface
18569         and sample implementation. Moved here so that it can be used also by
18570         the jit.
18571
18572 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18573
18574         * reflection.c, reflection.h: keep types and other handles separate in
18575         the hash tables for referred tokens. Add guid for modules.
18576
18577 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18578
18579         * assembly.c: fix bugs found with valgrind.
18580         * metadata.h, metadata.c: added mono_metadata_guid_heap().
18581
18582 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
18583
18584         * threads: added icall support for getting current domain for
18585                    the thread.
18586  
18587 2002-04-13  Martin Baulig  <martin@gnome.org>
18588
18589         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18590         (MonoDebugVarInfo): Added `index' field for register based addresses.
18591         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18592         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18593         `MonoDebugVarInfo *params' and `guint32 this_offset' with
18594         `MonoDebugVarInfo *this_var'.
18595
18596         * debug-symfile.c (relocate_variable): New static function to write
18597         a location description for a local variable or method parameter.
18598
18599 2002-04-12  Martin Baulig  <martin@gnome.org>
18600
18601         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18602         stack offset and begin/end scope address of a local variable.
18603         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18604         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18605         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18606
18607         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18608         Added new relocation types for start/end scope of a local variable.
18609
18610 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18611
18612         * object.h: add mono_object_domain() macro.
18613         * reflection.c: handle typespecs.
18614         * icall.c: MonoMethod::get_Name() implementation.
18615
18616 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18617
18618         * icall.c: String::GetHashCode() icall implementation.
18619
18620 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18621
18622         * icall.c: String::IndexOfAny icall.
18623         * object.c, object.h: make array->max_length more useful.
18624         Intrduced mono_object_class() and mono_string_length() macros.
18625
18626 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18627
18628         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18629         instead of g_unichar_isdigit.
18630
18631 2002-04-11  Nick Drochak  <ndrochak@gol.com>
18632
18633         * icall.c: Implement a simple Double.ToString().
18634
18635 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18636
18637         * appdomain.h: only io-layer.h is supposed to be included.
18638         * icall.c: explicitly import environ. Fix warning.
18639
18640 2002-04-10  Nick Drochak  <ndrochak@gol.com>
18641
18642         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18643                 return true even if it's not Daylight Savings time.
18644                 Only return false for the case where the function isn't
18645                 implemented for a plaform (read Windows).
18646
18647 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18648
18649         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18650         data with a mutex.
18651
18652 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
18653
18654         * mempool.c (mono_mempool_alloc): only use g_malloc when
18655         absolutely necessary.
18656
18657 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18658
18659         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18660
18661         * class.c (mono_class_vtable): use domain mempool to allocate vtable
18662         (mono_class_proxy_vtable): use domain mempool
18663
18664 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18665
18666         * appdomain.h, appdomain.c: split initialization that requires the
18667         execution engine support into mono_runtime_init().
18668
18669 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
18670
18671         * class.c (mono_class_init): don't include vtable inside MonoClass
18672         to save some memory, gather some statistics.
18673         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18674
18675 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18676
18677         * icall.c: internalcall implementation for ValueType.Equals().
18678
18679 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
18680
18681         * object.c (mono_message_init): moved 
18682         (mono_runtime_exec_main): new arch. independent impl.
18683         (mono_runtime_invoke_array): new method - like
18684         mono_runtime_invoke, but you can pass an array of objects.
18685         (mono_remoting_invoke): new arch. independent impl.
18686         (mono_message_invoke): new arch. independent impl.
18687         (mono_runtime_class_init): new arch. independent impl.
18688         (mono_runtime_object_init): new arch. independent impl.
18689
18690 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18691
18692         * metadata.c, object.c, reflection.c: documented the exported
18693         functions.
18694
18695 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18696
18697         * icall.c: simpler code to pass the assembly builder data to corlib.
18698         Implement GetNestedTypes() internalcall.
18699
18700 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18701
18702         * class.c: warn if a type can't be loaded.
18703
18704 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
18705
18706         * image.h: typedef MonoImageOpenStatus
18707         * types.h: removed unused file
18708         
18709 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
18710
18711         * icall.c: Enum_ToObject accepts enum value arguments.
18712
18713 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18714
18715         * class.c: move initialization of properties, events and nested
18716         classes, so that they happen for interfaces, too.
18717
18718 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18719
18720         * icall.c: cleanup some ugly casts in Array_SetValue*.
18721
18722 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18723
18724         * icall.c: the values array fro enums is of the correct type, now.
18725         Implement (correctly) getFullName instead of assQualifiedName for
18726         MonoType.
18727         * reflection.h, reflection.c: added mono_type_get_name ().
18728
18729 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18730
18731         * assembly.c, image.h: for each MonoImage, record from wich assembly
18732         it was loaded.
18733         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18734         Make Type.Assembly work.
18735
18736 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
18737
18738         * debug-symfile.h: use char* instead of gpointer to avoid
18739         unnecessary casts.
18740
18741         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18742
18743         * icall.c (ves_icall_InternalExecute): impl. FielSetter
18744         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18745
18746 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
18747
18748         * icall.c (mono_message_init): impl. (code cleanup)
18749         (ves_icall_InternalExecute): impl. FieldGetter
18750
18751         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18752         defined we call all (non-static)methods through the vtable. 
18753
18754 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18755
18756         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18757         finalizer even though the memory is still referenced (and the chunk of
18758         memory is not freed).
18759
18760 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18761
18762         * assembly.c: fix brokeness.
18763
18764 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18765
18766         * class.c: kill some warnings. Check explicit interface method
18767         implementation also without considering the namespace.
18768         Load also literal strings in static class data.
18769
18770 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
18771
18772         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
18773         (default_assembly_name_resolver): Make the resolver take the
18774         "base" directory where the assembly was originally defined, so we
18775         can load DLLs that are in the same directory as the assembly that
18776         is being referenced.
18777
18778 2002-03-28  Dick Porter  <dick@ximian.com>
18779
18780         * file-io.h: 
18781         * file-io.c:
18782         * socket-io.c: 
18783         * unicode.h: 
18784         * unicode.c: Warning cleanups
18785
18786 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18787
18788         * object.h, reflection.h: use the correct type instead of MonoObject.
18789
18790 2002-03-28  Martin Baulig  <martin@gnome.org>
18791
18792         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18793         (mono_debug_update_symbol_file): Initialize classes if necessary.
18794
18795 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18796
18797         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18798         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18799
18800 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18801
18802         * assembly.h: fix function prototype.
18803         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18804         * mono-endian.h: use const cast.
18805
18806 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18807
18808         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18809
18810 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18811
18812         * loader.c: don't assert when a typeref can't be loaded, give
18813         a chance to the runtime to trow an exception instead.
18814         * loader.h: fix warning.
18815
18816 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
18817
18818         * class.c (mono_class_proxy_vtable): added proxy support
18819
18820 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
18821
18822         * icall.c: removed last of PAL calls, added System.Environment
18823         * file-io.h, file-io.c: MonoIO implementation
18824         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18825
18826 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18827
18828         * appdomain.c: do not use the byte marker in ldstr table lookup.
18829         * debug-helpers.c: allow two ':' to separate class and method name.
18830         * object.c: allocate arrays bounds with the GC, too.
18831         * verify: add a few more checks.
18832
18833 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18834
18835         * reflection.c: output also literal strings. Allocate parameter data
18836         with GC_malloc() (thanks, Martin, for catching this!).
18837
18838 2002-03-26  Martin Baulig  <martin@gnome.org>
18839
18840         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18841         include the `this' offset in the `param_offsets'.
18842
18843 2002-03-25  Martin Baulig  <martin@gnome.org>
18844
18845         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18846         mono_debug_get_class() function to get the classes. Added new
18847         relocation types for arrays and strings.
18848         (mono_debug_get_class): New static function to search in all
18849         referenced assemblies for a metadata token.
18850
18851         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18852
18853 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18854
18855         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18856         hold gc-allocated objects. Make the string heap a stream like the
18857         others. Removed duplicated code when writing stream info.
18858         Added asserts to catch possible buffer overflows. Set the sorted map
18859         for tables that need sorting. Added some documentation.
18860
18861 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18862
18863         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
18864         for interned strings and vtables.
18865
18866 2002-03-24  Martin Baulig  <martin@gnome.org>
18867
18868         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18869         it in the array since it was created with g_slist_prepend().
18870
18871 2002-03-24  Martin Baulig  <martin@gnome.org>
18872
18873         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18874         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18875         (mono_debug_method_from_token): Renamed to
18876         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18877         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18878
18879         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18880         relocation types.
18881
18882         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
18883
18884 2002-03-24  Martin Baulig  <martin@gnome.org>
18885
18886         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
18887         (mono_debug_method_from_token): New func.
18888
18889         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
18890         New interncall, calls mono_debug_local_type_from_signature().
18891         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
18892         calls mono_debug_method_from_token().
18893
18894 2002-03-23  Martin Baulig  <martin@gnome.org>
18895
18896         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
18897         specifies the number of bytes to be converted, not the array size.
18898         Return the number of chars, not the number of bytes.
18899         (ves_icall_iconv_get_chars): The `byteCount' argument
18900         specifies the number of bytes to be converted, not the array size.
18901
18902 2002-03-23  Martin Baulig  <martin@gnome.org>
18903
18904         * reflection.h (MonoReflectionSigHelper): New type.
18905
18906         * reflection.c (mono_reflection_sighelper_get_signature_local),
18907         (mono_reflection_sighelper_get_signature_local): New functions.
18908
18909         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
18910         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
18911         interncalls.
18912
18913 2002-03-23  Martin Baulig  <martin@gnome.org>
18914
18915         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
18916         is_writeable is set.
18917         (mono_raw_buffer_update): New function to write the modified map
18918         back to disk.
18919
18920         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
18921
18922         * debug-symfile.c (mono_debug_update_symbol_file): Call
18923         mono_raw_buffer_update() when done writing.
18924
18925 2002-03-23  Martin Baulig  <martin@gnome.org>
18926
18927         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
18928
18929         * debug-symfile.c: Added support for arguments and local variables.
18930
18931 2002-03-23  Dick Porter  <dick@ximian.com>
18932
18933         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
18934         protected by ifdefs, hence breaking the w32 build.
18935
18936 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18937
18938         * object.c: implement is_interned() the right way.
18939
18940 2002-03-21  Martin Baulig  <martin@gnome.org>
18941
18942         * debug-symfile.[ch]: New files to handle debugging information
18943         files. There's also support to dynamically update these symbol
18944         files to include machine dependent information.
18945
18946 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
18947
18948         * threads.c (mono_thread_create): new function to create thread
18949         from C
18950
18951 2002-03-20  Martin Baulig  <martin@gnome.org>
18952
18953         * icall.c (ves_icall_InternalInvoke): Create a new object if the
18954         method is a constructor.
18955         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
18956         points to ves_icall_InternalInvoke().
18957
18958 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
18959
18960         * file-io.c: Flush shouldn't throw exceptions.
18961
18962 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
18963
18964         * file-io.c: FileStream flush support; FileSetLength now
18965         restores file pointer.
18966
18967 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18968
18969         * class.c: set image for pointer classes.
18970
18971 2002/03/19  Nick Drochak <ndrochak@gol.com>
18972
18973         * sysmath.c: Forgot one.
18974
18975 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
18976
18977         * sysmath.c: Avoid redefining existing names.
18978
18979 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
18980
18981         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
18982         handled by runtime as icall rather than dllimport from libm.so
18983         * file-io.c, file-io.h: fixed handle argument type.
18984
18985 2002-03-18  Dick Porter  <dick@ximian.com>
18986
18987         * reflection.c (mono_image_get_type_info): rename interface to
18988         iface, because of "#define interface struct" on windows.
18989
18990 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
18991
18992         * class.c, class.h: rename and export mono_ptr_class_get().
18993         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
18994         * reflection.c, reflection.h, icall.c: better/saner type name
18995         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
18996         method signatures.
18997
18998 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
18999
19000         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19001
19002         * icall.c (ves_icall_InternalInvoke): impl.
19003
19004 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19005
19006         * reflection.c: output the interface map table, too.
19007
19008 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19009
19010         * class.c (class_compute_field_layout): separate computation of 
19011         static field layout
19012
19013 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19014
19015         * icall.c: added System.Buffer support.
19016         * file-io.c: moved file icalls from PAL to FileStream.
19017
19018 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19019
19020         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19021
19022 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19023
19024         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19025
19026 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19027
19028         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19029
19030 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19031
19032         * debug-helpers.{c,h}: moved here from monograph some useful functions
19033         to locate a method by name/signature in a class or image. Included
19034         also a small and flexible IL disassembler.
19035
19036 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19037
19038         * reflection.c: fixup tokens in methods with small header size, too.
19039
19040 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19041
19042         * object.c (mono_string_to_utf8): remove assert(!error), instead
19043         print a warning. 
19044
19045 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19046
19047         * icall.c: update to the new mono_Array_class_get interface.
19048
19049 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19050
19051         * appdomain.c, object.c: Boehm-GC enable.
19052         * icall.c: make get_data_chunk() support split data requests.
19053         Ensure a class is initialized in more cases. Return only the first
19054         property found in GetProperties() or the compiler gets confused. 
19055         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19056         * reflection.h, reflection.c: add fixup mechanism for field and method
19057         tokens. Initialize assembly->typeref in a single place. Output
19058         properties after events. Support custom attributes for events, too.
19059         Typo fix for paramter custom attrs.
19060
19061 2002-03-07  Martin Baulig  <martin@gnome.org>
19062
19063         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19064
19065 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19066
19067         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19068
19069 2002-03-06  Martin Baulig  <martin@gnome.org>
19070
19071         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19072         non-zero lower bounds. See testcases #F10-#F13.
19073
19074 2002-03-05  Martin Baulig  <martin@gnome.org>
19075
19076         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19077
19078         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19079         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19080         here.
19081         (ves_icall_System_Array_SetValue): Likewise.
19082         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19083         as argument and does the actual work. This function is used when copying a
19084         multi-dimensional array.
19085         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19086         now do all the widening conversions of value types.
19087         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19088
19089 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19090
19091         * class.c: remove some magic numbers and use the smbolic names,
19092         instead. Added init_events() to load event info at class init time.
19093         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19094         and mono_metadata_methods_from_event().
19095         * reflection.h, reflection.c: added support for writing out the evnets
19096         related information.
19097
19098 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19099
19100         * reflection.h, icall.c: use a different method (GetInterfaces)
19101         to gather interface info and add isbyref, isprimitive and
19102         ispointer to the ves_icall_get_type_info() return value.
19103
19104 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19105
19106         * class.h: stared adding support for events.
19107         * icall.c: split find_members implementation. Added debug icall to get
19108         the address of an object.
19109         * reflection.c: handle TypeBuilders in mono_type_get_object().
19110
19111 2002-03-01  Martin Baulig  <martin@gnome.org>
19112
19113         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19114         ArgumentOutOfRangeException(), not an ArgumentException().
19115         (ves_icall_System_Array_GetLowerBound): Likewise.
19116         (ves_icall_System_Array_GetValue): Improved argument checking.
19117         (ves_icall_System_Array_SetValue): Improved argument checking.
19118
19119 2002-03-01  Martin Baulig  <martin@gnome.org>
19120
19121         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19122         called with invalid arguments rather than just dying with g_assert().
19123         (ves_icall_System_Array_SetValue): Likewise.
19124         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19125         raise a NotImplementedException instead.
19126         (ves_icall_System_Array_GetLength): Added argument checking.
19127         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19128
19129 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19130
19131         * object.h (mono_assert): new macros mono_assert and
19132         mono_assert_not_reached
19133
19134 2002-02-28  Martin Baulig  <martin@gnome.org>
19135
19136         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19137         and "System::String::IsInterned" to "System::String::_IsInterned".
19138
19139 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19140
19141         * icall.c: remove hacks for typebuilder. Added icall to create a
19142         modified type from a tybebuilder.
19143         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19144         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19145         to create a backing MonoClass for a TypeBuilder.
19146
19147 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19148
19149         * class.c, class.h: more refactoring of class init.
19150         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19151
19152 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19153
19154         * marshal.c, marshal.h: start of marshaling interface.
19155
19156 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19157
19158         * icall.c: fix order in assembly qualified name icall.
19159
19160 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19161
19162         * class.c: do not free str, since we store it in the hash table.
19163         * reflection.h: add label field to MonoILExceptionInfo.
19164         * reflection.c: handle references to more than one assembly. Handle
19165         case when there isn't a module created in the assembly.
19166
19167 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19168
19169         * class.c: Fix typo. Start refactoring of class init code.
19170
19171 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19172
19173         * appdomain.c: exit with 1 on error.
19174         * class.c: we already have the name in MonoClassField.
19175         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19176         MonoStreamHeader instead of an offset of image->raw_metadata.
19177
19178 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19179
19180         * appdomain.c (mono_init): Be even more descriptive about the error.
19181
19182 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19183
19184         * appdomain.c: give the user an informative message when corlib can't
19185         be loaded.
19186
19187 2002-02-26  Martin Baulig  <martin@gnome.org>
19188
19189         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19190         New icall to get the time zone data.
19191
19192 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19193
19194         * reflection.c: set virtual and raw size of section correctly.
19195         * threads.c: transfer domain information to newly created threads.
19196
19197 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19198
19199         * class.c: when instancing a class in a domain, load the default
19200         vaules for static fields from the constant table. Fix System.Enum to
19201         not be an enum.
19202         * icall.c: implement Object::GetType() internalcall. Implemented
19203         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19204         Fixed checking of binding flags in find_members().
19205         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19206         * reflection.c: handle enumerations when writing to the constant
19207         table. Use a different object cache for types.
19208
19209
19210 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19211
19212         * object.c (mono_object_isinst): fix for arrays
19213
19214         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19215
19216 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19217
19218         * object.c: don't use mprotect ()  and fix intern pool hash table
19219         lookup for big endian systems.
19220
19221 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19222
19223         * icall.c: change type_is_subtype_of () signature.
19224
19225 2002-02-21  Mark Crichton  <crichton@gimp.org>
19226
19227         * rand.c, rand.h: Added random number generator for
19228         System.Security.Cryptography classes.
19229
19230         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
19231
19232         * icall.c: Added System.Security.Cryptography calls.
19233
19234 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19235
19236         * class.c, icall.c, metadata.c: better support for pointer types.
19237         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
19238         * reflection.c: Add support for getting custom attrs for properties
19239         and simplify some code.
19240
19241 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19242
19243         * icall.c: change getToken () and add custom attribute GetBlob()helper
19244         method.
19245         * reflection.h: add custom attrs array to the reflection builder structures.
19246         * reflection.c: encode and emit custom attributes for all the relevant
19247         reflection objects. Cache fieldref and methodref tokens. Change
19248         mono_image_create_token() interface to take a MonoDynamicAssembly.
19249         More complete custom attributes decoder. Load custom attributes for
19250         Assembly, Field, Method and Constructor objects, too. Make the
19251         returned array an Attribute[] one, not object[]. Added
19252         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
19253         custom attribute constructor.
19254
19255 2002-02-20  Dick Porter  <dick@ximian.com>
19256
19257         * icall.c:
19258         * rawbuffer.c:
19259         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19260         problem code out for now).
19261
19262 2002-02-19  Radek Doulik  <rodo@ximian.com>
19263
19264         * object.c (mono_ldstr): use hash table to avoid multiple swapping
19265
19266 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19267
19268         * icall.c: register the GetCustomAttributes method.
19269         * object.c, object.h: add mono_string_new_len ().
19270         * reflection.h, reflection.c: added mono_runtime_invoke(),
19271         mono_install_runtime_invoke(). Added
19272         mono_reflection_get_custom_attrs () to load custom attributes and
19273         create the attribute objects.
19274
19275 2002-02-19  Dick Porter  <dick@ximian.com>
19276         * threads-dummy-types.c:
19277         * threads-dummy-types.h:
19278         * threads-dummy.c:
19279         * threads-dummy.h:
19280         * threads-pthread-types.c:
19281         * threads-pthread-types.h:
19282         * threads-pthread.c:
19283         * threads-pthread.h:  Deleted obsolete files
19284
19285 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
19286
19287         * class.c (mono_class_vtable): runtime init the class when we
19288         allocate static class data.
19289
19290         * icall.c (ves_icall_System_Array_SetValue): check for null values.
19291
19292         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19293         and String - but we will need generic marshalling support in the
19294         future. 
19295         (mono_init): set the domain name in a ms compatible way
19296
19297         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19298         String[].
19299
19300 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
19301
19302         * object.c (mono_array_clone): use alloca() instead of g_malloc  
19303         for sizes
19304
19305         * appdomain.c (mono_domain_unload): impl.
19306
19307 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19308
19309         * appdomain.c, object.c: fix intern pool implementation.
19310         * class.c: fix alignment code.
19311
19312 2002-02-16  Radek Doulik  <rodo@ximian.com>
19313
19314         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19315         and s2 > s1, just copy lower bytes to be compatible with little
19316         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19317         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19318
19319         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19320         force big_endian to be 1 for big endian machines 
19321         (ves_icall_iconv_new_decoder): ditto
19322
19323 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
19324
19325         * socket-io.c (convert_sockopt_level_and_name): If the system
19326         doesn't define SOL_IP or SOL_TCP, get them by hand using
19327         getprotobyname() and caching the values (because this could be a
19328         slow operation).
19329         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19330         Use the appropriate struct when the system does support it. Ie,
19331         not all systems have struct ip_mreqn so use struct ip_mreq when
19332         appropriate.
19333
19334 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19335
19336         * reflection.c: handle finally clauses.
19337
19338 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19339
19340         * socket-io.c: use g_snprintf() instead of snprintf.
19341
19342 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19343
19344         * reflection.c (mono_param_get_objects): Cast second argument to
19345         mono_method_get_param_names to a const char** to silence the
19346         compiler warning.
19347
19348         * appdomain.c (mono_domain_assembly_open): Put parens around the
19349         truth statement in the for-loop.
19350
19351         * unicode.c (iconv_convert): Got rid of a compiler warning about
19352         int i being unused when the system has a new iconv.
19353         (iconv_get_length): Same.
19354
19355         * image.c (load_class_names): Cast the second argument to
19356         g_hash_table_insert() to char* to hush compiler warnings about the
19357         arg being a const.
19358         (mono_image_open): Same here.
19359
19360         * socket-io.c: Don't conditionally include sys/filio.h or
19361         sys/sockio.h here anymore since we now get them from
19362         io-layer/io-layer.h
19363         (inet_pton): If the system doesn't support inet_aton, implement
19364         using inet_addr and also #define INADDR_NONE if it isn't defined
19365         by the system.
19366
19367 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19368
19369         * metadata.c, metadata.h: added function to get packing and size info
19370         of a typedef.
19371         * reflection.h, reflection.c: handle field RVA data. Save info about
19372         the table layout if needed. Assign typedef indexes to all the types
19373         before dumping the info about them to avoid forward reference problems.
19374
19375 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
19376
19377         * socket-io.c (convert_sockopt_level_and_name): ifdef
19378         SO_ACCEPTCONN because it is not defined on my system (old debian)
19379
19380 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19381
19382         * opcode.c: use stddef.h to get NULL.
19383
19384 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
19385
19386         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19387         for FIONBIO, FIONREAD and SIOCATMARK.
19388         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19389         define INADDR_NONE and besides, inet_addr() is deprecated and
19390         should not be used. Use inet_pton() instead - it also has the
19391         added bonus that it can easily handle IPv6 addresses as well.
19392         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19393
19394 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19395
19396         * decimal.c: remove _MSC_VER conditional.
19397
19398 2002-02-13  Dick Porter  <dick@ximian.com>
19399
19400         * socket-io.c: 
19401         * icall.c: Internal calls for Blocking, Select, Shutdown,
19402         GetSocketOption and SetSocketOption
19403
19404 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19405
19406         * assembly.cs: better resolver: use it instead of some kludgy
19407         code.
19408
19409 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19410
19411         * reflection.c: the best way to speed-up the compiler is to avoid
19412         infinite loops.
19413
19414 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
19415
19416         * class.c (mono_class_vtable): changed the object layout
19417         (obj->vtable->class). 
19418         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19419
19420 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19421
19422         * assembly.c: look for assemblies in the assembly dir, too.
19423
19424 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19425
19426         * class.c: fix thinko in mono_class_from_type().
19427
19428 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19429
19430         * exception.h, exception.c: added TypeLoadException.
19431         * object.h, object.c: added mono_array_clone ().
19432         * icall.c: handle throwOnError in AssemblyGetType().
19433         Added Array.Clone().
19434         * opcode.h, opcode.c: use a single value for the opcode val.
19435         Compile fix for non-gcc compilers.
19436
19437 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19438
19439         * opcodes.c, opcodes.h: export interesting info about opcodes.
19440
19441 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
19442
19443         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19444         icalls. 
19445
19446         * class.c (class_compute_field_layout): set element_class for enums
19447         (mono_class_create_from_typedef): set element_class for normal classes
19448
19449         * icall.c (ves_icall_System_Enum_get_value): impl.
19450
19451         * class.c (mono_class_create_from_typedef): do not set valuetype
19452         flag for System.ValueType and System.Enum
19453
19454 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
19455
19456         * unicode.c (iconv_convert): fix big endian problem.
19457
19458 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19459
19460         * class.c: add asserts if we are ever going to scribble over memory.
19461         * socket-io.c: not all systems have AF_IRDA defined.
19462
19463 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
19464
19465         * class.c (class_compute_field_layout): do not consider static
19466         fields to compute alignment
19467
19468 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
19469
19470         * appdomain.c (mono_appdomain_get): impl.
19471         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19472
19473 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19474
19475         * icall.c: ignore "file://" prefix when loading an assembly.
19476
19477 2002-01-23  Dick Porter  <dick@ximian.com>
19478
19479         * socket-io.c:
19480         * icall.c:
19481         * Makefile.am: Added socket support
19482
19483 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19484
19485         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19486         code back.  This should return the assemblies that are loaded by
19487         the runtime on behalf of an application domain. 
19488
19489         The current implementation is still broken, it just returns every
19490         assembly loaded, but until we get real applications domain this
19491         will do.
19492
19493 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
19494
19495         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19496         AppDomain object.
19497
19498 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
19499
19500         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19501         the mono_class_from_name lookup.
19502         (ves_icall_get_parameter_info): ditto.
19503         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19504         method.
19505         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19506
19507 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19508
19509         * class.c: load also nested classes on class init.
19510         System.ValueType instance methods gets passed boxed
19511         values, unless methods in derived classed that get a pointer to the
19512         data.
19513         * icall.c: use better name parsing code in GetType().
19514         * image.c, image.h: add mono_image_loaded ().
19515         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19516         * reflection.c, reflection.h: added mono_reflection_parse_type().
19517
19518 2002-01-22  Veronica De Santis <veron78@interfree.it>
19519
19520         * icall.c : Added mapping of internal calls for Manual and Auto reset events
19521         * threads.c : Added the implementation of internal calls for events
19522         * threads.h : Added prototypes of internal calls for events
19523         
19524 2002-01-21  Radek Doulik  <rodo@ximian.com>
19525
19526         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19527
19528 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
19529
19530         * class.c (mono_class_init): set min_align to 1 (instead of 0)
19531         (mono_class_value_size): use min_align
19532
19533 2002-01-20  Dick Porter  <dick@ximian.com>
19534
19535         * threads.h:
19536         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19537         so it compiles on w32.
19538
19539 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
19540
19541         * metadata.c (mono_type_stack_size): impl.
19542
19543         * class.c (mono_class_get_field): impl. memberref token
19544
19545 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19546
19547         * icall.h : Added the internal calls mapping for CreateMutex_internal
19548                     and ReleaseMutex_internal.
19549         * threads.h : Added the prototype of mutexes internal calls.
19550         * threads.c : Added the implementations of mutexes internal calls.
19551
19552 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19553
19554         * metaparse.h: removed unused file.
19555         * reflection.c, reflection.h: added stream_data_align () function 
19556         to align data in streams and keep stream aligned. Add support for
19557         exception support in method headers.
19558
19559 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19560
19561         * unicode.c: make iconv_convert () return the number of bytess written
19562         in the output buffer.
19563
19564 2002-01-15  Dick Porter  <dick@ximian.com>
19565         * threads.c: Make the runtime's idea of infinite timeouts coincide
19566         with the class library's
19567
19568         Fix a particularly egregious bug in mono_thread_cleanup(). That
19569         code was so utterly bogus it must have been written on a Monday.
19570
19571 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19572
19573         * reflection.h: add subtypes field to TypeBuilder.
19574         * reflection.c: encode constants for literal fields.
19575         Handle subtypes. Fix user string token (and add a zero byte)
19576         at the end.
19577         
19578 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
19579
19580         * class.c (mono_class_init): bug fix: assign slot numbers for
19581         abstract methods.
19582
19583 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19584
19585         * reflection.c: don't try to output a code RVA for abstract methods.
19586         Small fixes for method header format. Output parameter info to the
19587         ParamDef table. Save method overriding info to MethodImpl table.
19588         Fix property support. Allow typedef.extends to be a type in the
19589         building assembly.
19590         * verify.c: fix off-by-one error.
19591
19592 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19593
19594         * class.c: fix mono_class_from_mono_type () for szarray types.
19595         Remove unused cache check in mono_class_from_type_spec().
19596         * icall.c: *type_from_name () functions handle simple arrays and byref.
19597         * reflection.c: handle byref and szarray types. Handle methods without
19598         body (gets P/Invoke compilation working). Handle types and fields in
19599         get_token ().
19600         * reflection.h: add rank to MonoTypeInfo.
19601
19602 2002-01-10  Dick Porter  <dick@ximian.com>
19603
19604         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19605         internal calls
19606
19607 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19608
19609         * icall.c: initialize class in type_from_handle ().
19610         Loop also in parent classes for get_method ().
19611         * reflection.c: properly encode class and valuetype types.
19612         Start on encoding TypeBuilder types. Handle fieldrefs.
19613         Use correct length when registering a user string.
19614         Handle ConstructorBuilder and MonoMethod in get_token ().
19615         Make mono_type_get_object () aware of cached types.
19616         * object.c: back out change to mono_string_new ().
19617
19618 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19619         * object.c: mono_string_new should return a NULL when the string 
19620         passed in is NULL -- not try to deference it.
19621         
19622 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19623
19624         * icall.c: hack to make IsSubType work for TypeBuilders.
19625         * reflection.c: emit constructors before methods.
19626         Retrieve param names in mono_param_get_objects().
19627
19628 2002/01/05  Nick Drochak  <ndrochak@gol.com>
19629
19630         * Makefile.am: fix list of headers and sources so automake 1.5
19631         doesn't complain. Removed \# at end of list.
19632
19633 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19634
19635         * reflection.c: get token for a method ref. Set return type of
19636         constructor to void.
19637         * loader.c: debug message.
19638         * class.c: typo fix.
19639
19640 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19641
19642         * icall.c: fix array init with rank > 1. FindMembers
19643         loops in parent class as well.
19644         * image.c: do not insert nested types in name cache.
19645         * reflection.c: warning fix.
19646         * reflection.h: add override method (for interface impl).
19647
19648 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19649
19650         * metadata.c: fix customattr decoding.
19651
19652 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
19653
19654         * rawbuffer.cs: Added native Win32 implementation, avoids using
19655         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19656
19657 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19658
19659         * class.c: make the low-level routines handle the cache.
19660
19661 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19662
19663         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19664
19665 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19666
19667         * class.c: fix mono_array_element_size() for objects.
19668         * class.h, class.c: add properties to MonoClass and load them
19669         at init time.
19670         * icall.c: check with isinst() when assigning a value to an array
19671         instead of requiring the classes to match exactly.
19672         Implemented icall for System.Type::GetType().
19673         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19674         enums. Handle bindingflags when looking for methods and fields.
19675         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19676         and mono_metadata_methods_from_property().
19677         * reflection.h, reflection.c: added structures for propreties,
19678         parameters and enums. Implemented mono_property_get_object() and
19679         mono_param_get_objects().
19680
19681 2001-12-18  Dick Porter  <dick@ximian.com>
19682
19683         * file-io.c: Use mono_string_to_utf16() instead of
19684         mono_string_chars()
19685
19686         * object.c: Added mono_string_to_utf16(), which copies the non
19687         NULL-terminated MonoString into a new double-null-terminated
19688         buffer.
19689
19690 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
19691
19692         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19693
19694 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
19695
19696         * file-io.c: raise exceptions if handle is invalid.
19697
19698 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19699
19700         * assembly.c: yet another check for mscorlib.
19701         * class.c, class.h: load nesting info for classes.
19702         * icall.c: many new functions to support the Reflection classes.
19703         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19704         * reflection.h, reflection.c: mono_image_create_token(),
19705         mono_assembly_get_object(), mono_type_get_object(),
19706         mono_method_get_object(), mono_field_get_object(): methods to return
19707         objects that parallel the C representation of assemblies, types,
19708         methods, fields.
19709
19710 2001-12-11  Dick Porter  <dick@ximian.com>
19711
19712         * icall.c:
19713         * file-io.c: Internal calls for file IO.
19714
19715 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19716
19717         * tabledefs.h: missing FileAttributes.
19718         * verify.h, verify.c: use is_valid_string () to simplify and check for
19719         valid strings more correctly. Fix warnings and speeling.
19720         Check more tables: Filed, File, ModuleRef, StandAloneSig.
19721         Check code: branches, maxstack, method calls.
19722
19723 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
19724
19725         * object.c (mono_object_allocate): removed static, so that the jit
19726         can allocate value types.
19727
19728         * icall.c (ves_icall_System_DateTime_GetNow): impl.
19729
19730 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19731
19732         * class.c: init enum types right away and register the
19733         token->MonoClass map in mono_class_create_from_typedef ().
19734         * verify.h, verify.c: first cut of the verifier.
19735         * pedump.c: add --verify switch to verify metadata tables.
19736         * tabledefs.h: add some missing enums.
19737
19738 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
19739
19740         * class.c (mono_install_runtime_class_init): impl.
19741         (mono_class_init): renamed mono_class_metadata_init to
19742         mono_class_init, also removed the metadata_inited flag
19743
19744         * object.c (mono_object_isinst): use faster algorithm
19745
19746 2001-11-30  Radek Doulik  <rodo@ximian.com>
19747
19748         * mono-endian.h: reverted last change
19749         added function prototypes
19750
19751         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19752         add mono-endian.c back
19753
19754         * mono-endian.c: returned back, as Paolo pointed out, it's needed
19755         for unaligned access, I've mistaked it with endianess. I am
19756         sorry.
19757         (mono_read16): fix reverted endianess
19758         (mono_read64): ditto
19759         (mono_read32): ditto
19760
19761 2001-11-30  Dick Porter  <dick@ximian.com>
19762
19763         * exception.c: Implement mono_exception_from_name()
19764
19765 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19766
19767         * metadata.h, metadata.c: remove params_size and locals_size and their
19768         calculation from the metadata code: they are only usefult to the
19769         interp.
19770
19771 2001-11-29  Radek Doulik  <rodo@ximian.com>
19772
19773         * object.c (mono_ldstr): swap bytes here, it's probably not the
19774         best place, but works for me now, I'll redo it once I know mono
19775         better, also note that I add PROT_WRITE and don't reset back, also
19776         note that it's only affects big endians, so x86 should be OK
19777
19778         * mono-endian.h (read16): use just glib macros for both endians
19779
19780         * mono-endian.c: removed as glib macros are used in in
19781         mono-endian.h so we don't need to care about endianess for read
19782         macros as glib does that for us already
19783
19784 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19785
19786         * class.h, class.h: take minimum alignment into consideration so
19787         that the fields of a class remain aligned also when in an array.
19788
19789 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19790
19791         * loader.h, loader.c: add mono_method_get_param_names().
19792         * class.c: 0-init class fields.
19793
19794 2001-11-26  Dick Porter  <dick@ximian.com>
19795
19796         * icall.c:
19797         * threads-types.h:
19798         * threads.c: New file that handles System.Threading on all platforms
19799
19800         * object.c: 
19801         * object.h: Remove the synchronisation struct from MonoObject,
19802         replace it with a pointer that gets initialised on demand
19803
19804         * Makefile.am: Replace all the system-specific threading code with
19805         a single file that uses the new wrapper library
19806
19807 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19808
19809         * class.c, class.h: add mono_install_trampoline() so that the runtime
19810         can register a function to create a trampoline: removes the ugly
19811         requirement that a runtime needed to export arch_create_jit_trampoline.
19812         * object.h, object.c: added mono_install_handler() so that the runtime
19813         can install an handler for exceptions generated in C code (with
19814         mono_raise_exception()). Added C struct for System.Delegate.
19815         * pedump.c: removed arch_create_jit_trampoline.
19816         * reflection.c: some cleanups to allow registering user strings and
19817         later getting a token for methodrefs and fieldrefs before the assembly
19818         is built.
19819         * row-indexes.h: updates and fixes from the new ECMA specs.
19820
19821 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19822
19823         * class.h, class.c: add enum_basetype field to MonoClass.
19824         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19825         to get index in the constant table reated to a field, param or
19826         property.
19827         * reflection.h, reflection.c: handle constructors. Set public-key and
19828         version number of the built assembly to 0.
19829         * row-indexes.h: update from new ECMA spec.
19830
19831 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19832
19833         * class.h, class.c: add a max_interface_id to MonoClass.
19834         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19835         since it's used to do that. Added mono_type_type_from_obj().
19836         Make GetType() return NULL instead of segfaulting if the type was not
19837         found. Handle simple arrays in assQualifiedName.
19838         * object.h: add a struct to represent an Exception.
19839         * reflection.c: output call convention in method signature.
19840         Add code to support P/Invoke methods and fixed offsets for fields.
19841
19842 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19843
19844         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19845         the value.
19846         * icall.c: use mono_array_addr instead of array->vector: fixes the
19847         reflection image writing.
19848         * reflection.c: init call convention byte to 0 in method signature.
19849         Encode the property signature. Don't output property-related methods
19850         twice. Really process the properties for a type (don't cast a field to
19851         a property, my mom always told me that).
19852         Fix 64 bit issues in pointer alignment in a different and more
19853         readable way.
19854
19855 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
19856
19857         * loader.h: Removed type class from MonoDefaults, added monotype
19858
19859         * loader.c: Loaded MonoType, removed loading of Type
19860
19861         * icall.c (my_mono_new_object): Now returns a System.MonoType,
19862         and fills in System.Type._impl with a RuntimeTypeHandle rather
19863         than the actual MonoClass *
19864
19865         (ves_icall_type_from_handle): change from type_class to
19866         monotype_class
19867
19868         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19869         implemented
19870
19871         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19872         implemented
19873
19874         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19875
19876         (ves_icall_System_Reflection_Assembly_GetType): implemented
19877
19878         (ves_icall_System_MonoType_assQualifiedName): implemented
19879
19880         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19881
19882 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
19883
19884         * assembly.c (mono_assembly_open): Implement a cache for the
19885         assemblies. 
19886
19887         (mono_assembly_close): only destroy the assembly when the last
19888         reference is gone.
19889         
19890 2001-11-09  Dick Porter  <dick@ximian.com>
19891
19892         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
19893
19894 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
19895
19896         * class.c (mono_class_metadata_init): bug fix: compute the right slot
19897
19898 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19899
19900         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
19901         from Martin Weindel.
19902         * object.h: add mono_string_chars ().
19903
19904 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
19905
19906         * reflection.c (build_compressed_metadata): Eliminates warnings
19907         and uses 64-bit clean code.
19908
19909         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
19910         (mono_type_equal): Change signature to eliminate warnings.
19911
19912 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19913
19914         * icall.c, loader.c: remove the internalcall array constructors.
19915         Changes to match the new MonoArray structure.
19916         * object.h, object.c: an array object doesn't allocate an extra
19917         vector. Add mono_array_new_full () to create jagged arrays easily.
19918
19919 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19920
19921         * metadata.h, metadata.c: add mono_metadata_field_info () to
19922         retreive all the info about a field from vairous tables.
19923         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
19924         * class.h, class.c: augment MonoClassField with more info.
19925         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
19926         policy and load a field's RVA if needed.
19927
19928 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
19929
19930         * class.c (mono_class_metadata_init): create a trampoline for all
19931         virtual functions instead of actually compiling them.
19932
19933 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
19934
19935         * class.h, class.c: include name in MonoClassField.
19936         * class.c: fix fundamental type of System.Object and System.String.
19937         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
19938         tokens in ldtoken.
19939         * icall.c: remove internalcalls for the Reflection stuff that is now
19940         done in C# code.
19941         * loader.c: mono_field_from_memberref () implementation.
19942         * mono-endian.c: thinko (s/struct/union/g).
19943         * object.c, object.h: make the mono_string_* prototypes actually use
19944         MonoString instead of MonoObject.
19945         * reflection.c, reflection.h: updates for changes in the reflection
19946         code in corlib: we use C structures that map to the actual C# classes.
19947         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
19948         fat method header if needed and use the info from the ILGenerator for
19949         methods. Handle fields in types. Misc fixes.
19950
19951 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
19952
19953         * class.c (mono_class_metadata_init): bug fix: always allocate
19954         space for static class data
19955
19956 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
19957
19958         * class.c (mono_compute_relative_numbering): use relative
19959         numbering to support fast runtime type checks.
19960
19961 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
19962
19963         * class.c (mono_class_create_from_typeref): added debugging output
19964         to print class name when MonoDummy is returned instead of real class
19965
19966 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
19967
19968         * class.c (mono_class_metadata_init): interface offset table now
19969         contains pointers into the vtable - this is more efficient for the jit
19970
19971 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
19972
19973         * class.c (mono_class_metadata_init): use a temporary vtable (the
19974         old algorithm only worked for the interpreter, but not for the jit)
19975
19976 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
19977
19978         * loader.c (method_from_memberref): use mono_class_get to get the
19979         class of an array instead of using System.Array directly.
19980         (mono_get_method): also add MEMBERREF methods to the method cache
19981         which usefull for arrays.
19982
19983 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
19984
19985         * pedump.c (arch_compile_method): added to compute vtable entry
19986
19987         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
19988         number of interfaces.
19989         
19990         * class.h: merged MonoArrayClass into MonoClass
19991
19992         * class.c (mono_class_create_from_typedef): compute the vtable size and
19993         allocate space to include the vtable inside MonoClass
19994         (mono_class_metadata_init): initialize the vtable
19995
19996 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
19997
19998         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
19999         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20000         * image.c: endian fixes by Laurent Rioux.
20001         * object.h, object.c: rename MonoStringObject to MonoString and
20002         MonoArrayObject to MonoArray. Change some function names to conform to
20003         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20004         guint16* as first argument, so don't use char*.
20005         Provide macros to do the interesting things on arrays in a portable way.
20006         * threads-pthread.c: updates for the API changes and #include <sched.h>
20007         (required for sched_yield()).
20008         * icall.c: updates for the API changes above.
20009         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20010         platforms that need them.
20011
20012 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20013
20014         * class.c: set the correct type for all the fundamental
20015         type when loading the class.
20016
20017 2001-10-05  Dick Porter  <dick@ximian.com>
20018
20019         * threads-pthread.c (pthread_mutex_timedlock): Simple
20020         compatibility version for C libraries that lack this call.
20021
20022 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20023
20024         * class.c: MonoTypes stored in MonoClass are stored as
20025         fundamental MonoTypes when the class represents a
20026         fundamental type (System.Int32, ...).
20027         The TypeHandle return by ldtoken is a MonoType*.
20028         * icall.c: ves_icall_get_data_chunk () write out all the
20029         PE/COFF stuff. Implement ves_icall_define_method (),
20030         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20031         * image.c: properly skip unknown streams.
20032         * loader.h, loader.c: add type_class to mono_defaults.
20033         * metadata.c, metadata.h: export compute_size () as
20034         mono_metadata_compute_size () with a better interface.
20035         Typo and C&P fixes.
20036         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20037         * reflection.c, reflection.h: many cleanups, fixes, output method
20038         signatures and headers, typedef and typeref info, compress the metadata
20039         tables, output all the heap streams, cli header etc.
20040         * row-indexes.h: typo fixes.
20041
20042 2001-10-04  Dick Porter  <dick@ximian.com>
20043
20044         * object.h: Add a synchronisation mutex struct to MonoObject
20045
20046         * object.c (mono_new_object): Initialise the object
20047         synchronisation mutexes
20048
20049         * icall.c: System.Threading.Monitor internal calls
20050         
20051         * threads-pthread.h:
20052         * threads-pthread.c: System.Threading.Monitor internal calls
20053
20054         * threads-types.h: New file, includes the system-specific thread
20055         structures
20056         
20057         * threads-pthread-types.h:
20058         * threads-pthread-types.c: New files, handle pthread-specific
20059         synchronisation types
20060
20061         * threads-dummy-types.h: 
20062         * threads-dummy-types.c: New files of dummy support for
20063         thread-specific types
20064
20065         * metadata.c:
20066         * image.c:
20067         * pedump.c: include mono-endian.h not endian.h
20068         
20069         * Makefile.am: More threads files.
20070         Name mono-endian.h not endian.h
20071
20072 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20073
20074         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20075         stuff and implement a few more bits.
20076         * icall.c: a field needs to be dereferenced twice. Do not use the same
20077         name for two variables in the same scope.
20078         * image.c, image.h: cleanups.
20079
20080 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20081
20082         * class.c (mono_class_metadata_init): bug fix: compute the right size
20083
20084 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20085
20086         * icall.c: implemented some of the Reflection internalcalls.
20087         * image.c, image.h: start writing out the PE/COFF image.
20088         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20089         that does the reverse than decode_blob_size ().
20090         * object.c: use mono_metadata_encode_value (). Move here
20091         temporary implementation of mono_string_to_utf8 ().
20092         * rawbuffer.c: make malloc_map static.
20093
20094 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20095
20096         * metadata.c: fix type comparison for arrays.
20097         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20098         Added a couple of new classes to monodefaults.
20099         * icall.c: added a couple of Reflection-related internalcalls.
20100         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20101         Added a byval_arg MonoType to MonoClass.
20102
20103 2001-09-28  Dick Porter  <dick@ximian.com>
20104
20105         * icall.c:
20106         * threads-pthread.h: 
20107         * threads-pthread.c: Implemented internal calls for
20108         LocalDataStoreSlot operations.  Applied mutexes around all shared
20109         data.  Reworked the thread creation and Start() operations to
20110         avoid a race condition.
20111         
20112         * threads-dummy.h:
20113         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20114
20115 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20116
20117         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20118
20119 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20120
20121         * class.c, loader.c: warn and return NULL instead of erroring out.
20122         * icall.c: added System.AppDomain::getCurDomain().
20123         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20124
20125 2001-09-25  Dick Porter  <dick@ximian.com>
20126
20127         * threads-pthread.h:
20128         * threads-pthread.c: Implemented timed thread joining and added
20129         System.Threading.Thread::Join_internal internal call
20130
20131         * icall.c: Added System.Threading.Thread::Join_internal internal call
20132
20133         * threads-dummy.h:
20134         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20135
20136 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20137
20138         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20139         mono_string_intern () to implement the semantics of the ldstr opcode
20140         and the interning of System.Strings.
20141         * icall.c: provide hooks to make String::IsIntern and String::Intern
20142         internalcalls.
20143
20144 2001-09-23  Dick Porter  <dick@ximian.com>
20145
20146         * threads-dummy.c: 
20147         * threads-dummy.h: New files of dummy threading routines
20148
20149         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20150         support code based on system specifics
20151
20152         Rename PTHREAD_LIBS to THREAD_LIBS
20153         
20154 2001-09-23  Dick Porter  <dick@ximian.com>
20155
20156         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20157         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20158         internal calls.
20159         (mono_thread_init): Set up a Thread object instance to return when
20160         the main thread calls Thread.CurrentThread
20161         (mono_thread_cleanup): Wait for all subthreads to exit
20162
20163         * icall.c: New internal calls for System.Threading.Thread::Sleep
20164         (including Schedule) and CurrentThread
20165
20166         * threads.h: New file, to insulate thread-specific stuff from the
20167         rest of the code
20168
20169 2001-09-21  Dick Porter  <dick@ximian.com>
20170
20171         * threads-pthread.h: 
20172         * threads-pthread.c: New file, for handling pthreads-style
20173         threading support.  Start() now starts a new thread and executes
20174         the ThreadStart delegate instance.
20175
20176         * icall.c: Added the internalcall for
20177         System.Threading.Thread::Start_internal
20178
20179         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20180
20181 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20182
20183         * loader.c: work around the different signatures for delegates
20184         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20185
20186 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20187
20188         * class.h, class.c: add mono_class_get_field_from_name ().
20189         * *: Fix C comments and other ANSI C issues.
20190
20191 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20192
20193         * endian.h, assembly.c: fix some endianness issues.
20194
20195 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20196
20197         * loader.h, load.c: add delegate_class to mono_defaults.
20198         Handle runtime provided methods in mono_get_method ().
20199
20200 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20201
20202         * loader.c (mono_get_method): use pinvoke for internal call
20203
20204         * icall.c: use pinvoke for internal call
20205
20206         * loader.c (method_from_memberref): set the method name
20207
20208 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20209
20210         * metadata.c: help the compiler generate better code for
20211         mono_class_from_mono_type ().
20212
20213 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20214
20215         * class.c (mono_class_metadata_init): delayed computing of the
20216         class size to mono_class_metadata_init ()
20217
20218 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20219
20220         * class.c, class.h: add an interfaces member to MonoClass.
20221         * image.c, image.h: add assembly_name field to MonoImage
20222         from the assembly table.
20223         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
20224
20225 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20226
20227         * class.c: Handle Array in mono_class_from_mono_type ().
20228         * metadata.c, pedump.c: some endian fixes.
20229
20230 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20231
20232         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
20233         * metadata.c: fix small problem introduced with the latest commit.
20234
20235 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
20236
20237         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
20238         We don't need a MonoMetadata pointer anymore to compare signatures in
20239         mono_metadata_signature_equal (), update callers.
20240         Reduced memory usage an number of allocations for MonoMethodHeader and
20241         MonoMethodSignature.
20242
20243 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
20244
20245         * metadata.c: added compare for szarray.
20246
20247 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
20248
20249         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
20250         and add a couple more types to it and mono_defaults. Give an hint on
20251         classes that need implementing in our corlib and are referenced
20252         in mscorlib.
20253
20254 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
20255
20256         * class.h, class.c: keep track if a class is also an Enum.
20257         * loader.c: Implement a couple more types for use in libffi
20258         marshalling. Gives better diagnostics when failing to dlopen
20259         a library. Set method->klass for P/Invoke methods, too.
20260
20261 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20262
20263         * class.c, class.h: add a MonoType this_arg to MonoClass that
20264         represents a pointer to an object of the class' type that
20265         can be used by the interpreter and later the type cache.
20266         Add best guess alignment info for valuetype objects.
20267
20268 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20269
20270         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20271         into MonoType: one less level of indirection and allocation and
20272         simplifies quite a bit of code. Added cache for MonoTypes that are
20273         used frequently, so that we don't need to allocate them all the time.
20274
20275 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
20276
20277         * class.c (mono_class_create_from_typedef): System.Enum is also a
20278         value type, although it does not derive from System.ValueType
20279         (maybe a bug in the ms compiler?)
20280
20281         * metadata.c (mono_type_size): return the right size for value types
20282
20283         * loader.c (mono_get_method): only initialize method header if not abstract
20284
20285         * class.c (mono_class_from_mono_type): use mono_default values. 
20286
20287 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
20288
20289         * *: use MonoClass pointers instead of <type_tokens>
20290         
20291         * class.h: new flag: metadata_inited.
20292
20293         * class.c (mono_class_metadata_init): impl.
20294         (mono_class_instance_size): impl.
20295         (mono_class_data_size): impl.
20296
20297 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20298
20299         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20300         MonoClass now has the name and name_space fields. 
20301         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20302         mono_get_method () takes and optional MonoClass as argument.
20303         Removed mono_typedef_from_name() and added mono_class_token_from_name()
20304         instead that takes advantage of a map from class names to typedef
20305         tokens in MonoImage.
20306
20307 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20308
20309         * metadata.c: zero is not a valid alignment boundary.
20310         Merge MONO_TYPE_VOID in default decoding code.
20311
20312 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
20313
20314         * image.h: merged MonoMetadata into MonoImage
20315
20316         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20317         identify the type of elements.
20318
20319 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20320
20321         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20322         * cil-coff.h: split MonoMSDOSHeader and add size info.
20323         * image.c: add some consistency checks.
20324         * metadata.c: fix row size computation: one programmer
20325         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20326         add explanation for the locator routine.
20327         Fix decoding of size in method header.
20328         
20329 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
20330
20331         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
20332         (g_concat_dir_and_file): Bring g_concat_dir_and_file
20333         function from gnome-libs.  This uses the right path separator
20334         based on the OS, and also works around a bug in some systems where
20335         a double slash is not allowed. 
20336         (default_assembly_name_resolver): Use g_concat_dir_and_file
20337         (mono_assembly_open): ditto.
20338
20339 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
20340
20341         * metadata.c (mono_metadata_signature_equal): impl.
20342
20343         * *: void is now a realy MonoType (instead of using NULL)
20344         
20345         * metadata.c (do_mono_metadata_parse_type): use
20346         mono_metadata_parse_type to parse void value.
20347
20348 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20349
20350         * metadata.c, metadata.h: in the signature and method header store
20351         only the space required for holding the loca vars and incoming arguments.
20352
20353 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
20354
20355         * metadata.c (do_mono_metadata_parse_type): treat void like any
20356         other type (instead of assigning NULL);
20357
20358 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
20359
20360         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20361
20362 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
20363
20364         * image.c (do_mono_image_open): added a cache for arrays.
20365
20366 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20367
20368         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20369         decode a single column from a row in a metadata table and changes
20370         to take advantage of it in the typedef locator (gives a nice speed up).
20371         Store offset info for function params.
20372
20373 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
20374
20375         * image.h (MONO_IMAGE_IS_CORLIB): removed 
20376
20377 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20378
20379         * assembly.c: how could mono_assembly_close () had ever worked?
20380         * metadata.c, metadata.h: provide offset info for local vars.
20381         Implement mono_type_size () to take care of alignment as well
20382         as size (it was mono_field_type_size in cli/class.c before).
20383
20384 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
20385
20386         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20387
20388         * assembly.h (CORLIB_NAME): set to corlib.dll
20389
20390         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20391
20392 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20393
20394         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20395         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20396         tokentype.h: massive namespace cleanup.
20397
20398 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20399
20400         * metadata.h, metadata.c: decode exception clauses when parsing method header.
20401
20402 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
20403
20404         * metadata.c (mono_metadata_free_type): added check for type !=
20405         NULL (void) before calling mono_metadata_free_type()
20406
20407 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20408
20409         * metadata.h, row_indexes.h: added header with enumerations to use
20410         to index in the columns from tables in metadata and to decode coded
20411         tokens: we should start using this instead of embedding magic numbers
20412         all over the code.
20413
20414 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20415
20416         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20417         Move metadata_t info from cli_image_info_t to MonoImage, where
20418         it's easily accessible. Changed all the uses accordingly.
20419         Added the method and class caches to MonoImage.
20420         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20421         and mono_metadata_decode_value () signature to be more consistent
20422         with the other parse functions (and simplify code). Taken advantage
20423         of zero-length array allocation with GCC. Removed reduntant (and
20424         wrong) MonoFieldType struct and use MonoParam instead. Changed
20425         mono_metadata_parse_field_type () to use common code for parsing.
20426         Added mono_metadata_typedef_from_field () and
20427         mono_metadata_typedef_from_method () to lookup a typedef index from a
20428         field or method token.
20429         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20430
20431 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
20432
20433         * metadata.c (mono_metadata_parse_field_type): Implement. 
20434         (do_mono_metadata_parse_type): Split engine from
20435         mono_metadata_parse_type, so that we can create smaller structures
20436         for things that just have one pointer to the MonoType (look at
20437         the MonoFieldType)
20438
20439 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
20440
20441         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20442         as Jan Gray found out, it is incorrect. 
20443
20444 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
20445
20446         * assembly.c: Implement asssembly loading.  This loads an image
20447         and loads all the referenced assemblies.  Come to think of it, we
20448         could always do lazy loading of the assemblies. 
20449
20450         * image.c (mono_image_open): Keep loaded images in a hashtable.
20451
20452         * image.h (MonoImage): Add reference count.
20453
20454 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
20455
20456         * assembly.c (mono_assembly_open): Keep track of the file name in
20457         case the assembly has no ASSEMBLY table.
20458
20459         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
20460         from get.c here.
20461
20462 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20463
20464         * metadata.c, metadata.h: decode local vars in method header
20465         parse function. Change callers accordingly.
20466
20467 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20468
20469         * metadata.h, cil-coff.h: protect against multiple inclusion.
20470         Added some new structures to hold information decoded from metadata:
20471         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20472         and relevant decoding/free functions.
20473         * metadata.c: implement decoding functions. Add warning for out of bounds
20474         index in mono_metadata_locate(). Implement mono_get_method () to retreive
20475         all the info about a method signature and invocation. Remove check on
20476         uninitialized local var in parse_mh() and fix memory leak.
20477
20478 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
20479
20480         * metadata.h: More macros.
20481
20482         * tokentype.h: New file.
20483
20484 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20485
20486         * assembly.c: added a consistency check and initialize
20487         some structures with g_new0().
20488         * metadata.c: fixed a couple more bugs in table size computation
20489         and add other checks for out-of bound access to metadata.
20490
20491 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20492
20493         * metatada.c: fix bugs computing table sizes. Spew a
20494         warning when index in string heap is out of bounds.
20495
20496 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
20497
20498         * metadata.h: Add a couple of macros to manipulate tokens. 
20499
20500 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20501
20502         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20503         cli_section_tables).
20504
20505 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
20506
20507         * metadata.c (mono_metadata_user_string): New function, provides
20508         access to the UserString heap. 
20509
20510 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
20511
20512         * metadata.c: Add inline documentation.
20513
20514 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
20515
20516         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20517         files. 
20518
20519 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
20520
20521         * typeattr.h: New file, TypeAttribute flags. 
20522
20523 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
20524
20525         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20526         mono_assembly_ensure_section): Section loading code.
20527         (load_section_tables): Load the sections.
20528
20529         * mono/metadata/metadata.c (mono_metadata_locate_token,
20530         mono_metadata_locate): Functions to locate the information
20531         definition given a token or a table and an index.
20532         (mono_metadata_compute_table_bases): New.
20533         (compute_size): New function to compute the sizes of the various
20534         tables.
20535
20536         * mono/metadata/metadata.h: Finish listing the different index
20537         types. 
20538
20539         * mono/metadata/pedump.c: Improve to dump new information.
20540
20541 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
20542
20543         * mono/metadata/metadata.c: Entered all the tables matching
20544         Beta2. 
20545
20546         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
20547
20548
20549