Fix #81830
[mono.git] / mono / metadata / ChangeLog
1 2007-06-08  Raja R Harinath  <rharinath@novell.com>
2
3         Fix #81830
4         * class.c (mono_class_from_generic_parameter): Don't assume a
5         generic container owner exists.  Generic containers from monodis
6         don't have any.
7
8 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
9
10         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
11         * verify.h: new typedefs to returns the non-verifiable status
12         * verify.c: initial implementation of generics, stack merging and object compatibility check
13
14 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15
16         * class.c, image.c, class-internals.h (MonoImage): class_cache is
17         a MonoInternalHashTable again (fixed bug in internal hash table
18         code).
19
20 2007-06-06  Mark Probst  <mark.probst@gmail.com>
21
22         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
23         MonoInternalHashTable again (fixed bug in internal hash table
24         code).
25
26 2007-06-06  Mark Probst  <mark.probst@gmail.com>
27
28         * class.c, image.c, class-internals.h, domain.c,
29         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
30         changes.  Have to figure out what makes them break the SWF
31         regression.
32
33 2007-06-04  Mark Probst  <mark.probst@gmail.com>
34
35         * class.c, image.c, class-internals.h (MonoImage): class_cache is
36         a MonoInternalHashTable now.
37
38 2007-06-04  Mark Probst  <mark.probst@gmail.com>
39
40         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
41         MonoInternalHashTable now.
42
43 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
44
45         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
46         invoke_impl code.
47
48         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
49
50         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
51         dependent trampoline.
52
53         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
54
55         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
56
57 2007-05-29  Robert Jordan  <robertj@gmx.net>
58
59         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
60
61 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
62
63         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
64
65 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
66
67        * marshal.c: Fix interface lookup loops for
68        cominterop_get_com_slot_for_method and 
69        cominterop_get_method_interface. Only need to lookup
70        if type is a class, else use interface type method is on.
71
72        Code is contributed under MIT/X11 license.
73
74 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
75
76         * reflection.c: HasSecurity can be present even if no specially 
77         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
78         SecurityAttribute). Fix CAS regression tests on buildbot.
79
80 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
81
82        * appdomain.c: Add configure checks for header files.
83        * image.c: Add configure checks for header files.
84        * file-io.c: Add configure checks for header files.
85        * debug-mono-symfile.c: Add configure checks for header files.
86        * threadpool.c: Add configure checks for header files.
87        * console-io.c: Add configure checks for header files.
88        * profiler.c: Add configure checks for header files.
89        * rawbuffer.c: Add configure checks for header files.
90        * icall.c: Add configure checks for header files.
91        * rand.c: Add configure checks for header files.
92        * socket-io.c: Add configure checks for header files.
93
94        Code is contributed under MIT/X11 license.
95
96 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
97
98         * reflection.c (mono_custom_attrs_from_builders): Remove the 
99         assertion as it breaks the build.
100         
101         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
102
103         * reflection.c (lookup_custom_attr): Make a copy here too.
104
105         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
106         dynamic images.
107
108         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
109         images.
110
111         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
112         info.
113
114 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
115
116         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
117         (load_cattr_value): Ditto.
118
119 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
120
121         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
122
123 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
124
125         * threads.c: In "start_wrapper", set apartment_state to MTA if
126         apartment_state is Unknown and we're running on 2.0 profile or
127         higher.
128         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
129         to main method, then set apartment_state to Unknown on 1.0 profile,
130         and MTA on 2.0 profile.
131
132 2007-05-16  Jb Evain  <jb@nurv.fr>
133
134         * class-internals.h (MonoDefaults): Add an attribute_class and
135           customattribute_data_class.
136         * domain.c (mono_init_internal): Populate them.
137         * reflection.c: Use them to remove duplicates. Make a vew
138         MonoClass variables `static'.
139
140 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
141
142         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
143         step in implementing IMT, so that all isinst checks now can go
144         through the bitmap.
145         This was needed because vtables for TransparentProxy need to look
146         like the vtable of the "target" class, so they need to point to
147         its interface bitmap directly.
148
149         * object.c: inside "mono_class_create_runtime_vtable" and
150         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
151
152 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
153
154         * object-internals.h
155           culture-info.h : added territory field in MonoCulture and
156           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
157         * locales.c : fill territory field above too.
158         * culture-info-table.h : regenerated.
159
160 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
161
162         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
163         Fixes #81599.
164
165 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
166
167         * object.c: Always initialize apartment, even if 
168         there is no custom attributes on entry point.
169         
170         Code is contributed under MIT/X11 license.
171
172 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
173
174         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
175         * metadata.c: If no encoding is set, check for unicode
176         on class.
177         
178         Code is contributed under MIT/X11 license.
179
180 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
181
182         * threads.c: Handle if mono_thread_current returns NULL 
183         
184         Code is contributed under MIT/X11 license.
185
186 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
187
188         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
189         in start_wrapper. Added mono_thread_init_apartment_state and
190         mono_thread_cleanup_apartment_state.
191         * object.c: Initialize thread apartment state on main thread
192         by checking for STAThreadAttribute on entry point.
193         * object-internals.h: Add apartment_state field to MonoThread.
194         * threads-types.h: Add unmanaged definition of 
195         System.Threading.ApartmentState, MonoThreadApartmentState.
196         
197         Code is contributed under MIT/X11 license.
198         
199 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
200
201         * class.c: Fix windows build.
202         * class-internals.h: Fix windows build.
203         
204         Code is contributed under MIT/X11 license.
205
206 2007-05-08  Robert Jordan  <robertj@gmx.net>
207
208         * process.c (CreateProcess_internal):
209         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
210         .CreateNoWindow was specified. Fixes #81496.
211
212 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
213
214         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
215         step in implementing IMT, replaced it with two compact arrays
216         (interfaces_packed and interface_offsets_packed) and a bitmap that
217         is used for isinst checks (interface_bitmap).
218
219         * class.c: (compare_interface_ids): compare function to pass to
220         bsearch when looking for an interface with a given id.
221         (mono_class_interface_offset): reimplemented using bsearch on
222         interfaces_packed, getting the offset from interface_offsets_packed.
223         (print_implemented_interfaces): utility debugging function.
224         (setup_interface_offsets): reworked to initialize interfaces_packed,
225         interface_offsets_packed and interface_bitmap.
226
227         * object.c: replaced all accesses to "MonoClass.interface_offsets"
228         with uses of interfaces_packed and interface_offsets_packed.
229
230 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
231
232         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
233         mono_class_interface_offset prototype to wrap all accesses to
234         "MonoClass.interface_offsets".
235
236         * class.c: Implemented mono_class_interface_offset, and wrapped all
237         accesses to "MonoClass.interface_offsets".
238
239         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
240         "MonoClass.interface_offsets".
241
242 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
243
244         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
245         GetMethodFromHandle overloads (bug #78637).
246
247 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
248
249         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
250         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
251
252 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
253
254         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
255         #81498.
256
257         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
258         gracefully.
259         (mono_custom_attrs_from_index): Ditto.
260
261         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
262         Fixes #81501.
263
264 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
265
266         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
267         is now allocated from a mempool.
268
269 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
270
271         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
272         caller holds threads_lock, leading to deadlocks. Fixes #81476.
273
274 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
275
276         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
277         mono_loader_clear_error () too late. Fixes #81463.
278
279 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
280
281         * culture-info-table.h : regenerated.
282
283 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
284
285         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
286         is missing.
287
288 2007-04-25  Dick Porter  <dick@ximian.com>
289
290         * Makefile.am: Put the mingw enforced-optimisation back into the
291         PLATFORM_WIN32 section.
292
293 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
294
295         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
296         patch.
297
298         * image.c (mono_image_load_module): New API function to load a module reference.
299
300         * image.c (load_modules): Load modules lazily. Fixes #80812.
301
302         * class.c (mono_class_from_typeref): Use mono_image_load_module.
303         
304         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
305
306         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
307         to mono_image_load_module_dynamic.
308
309 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
310
311         * marshal.c: Fix calling convention for CCW on non-windows
312         platforms. STDCALL on windows, CDECL everywhere else to work 
313         with XPCOM and MainWin COM.
314         
315         Code is contributed under MIT/X11 license.
316
317 2007-04-23  Martin Baulig  <martin@ximian.com>
318
319         Fix #80969.
320
321         * loader.c
322         (method_from_memberref): Added `gboolean *used_context' argument.
323         (mono_get_method_from_token): Likewise.
324         (mono_get_method_full): Don't insert the method in the cache when
325         `used_context' is true.
326
327 2007-04-23  Raja R Harinath  <rharinath@novell.com>
328
329         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
330
331         * reflection.c (mono_reflection_bind_generic_parameters): Don't
332         create new MonoTypes for returned types.
333         * class.c (mono_generic_class_get_class): Export mono-internal.
334         * class-internals.h: Update to changes.
335
336 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
337
338         * threadpool.c, threadpool.h, icall-def.h: patch from
339         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
340
341 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
342
343         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
344         
345         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
346
347         * threads.c (mono_thread_get_stack_bounds): New helper function.
348
349         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
350         Correctly compute stack bounds when attaching. Fixes #81394.
351
352 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
353
354         * reflection.c: fix handling of doubles in custom attributes
355         for the arm-fpa format (bug #81368).
356
357 2007-04-18  Raja R Harinath  <rharinath@novell.com>
358
359         * reflection.c (assembly_add_win32_resources): Mildly relax an
360         bounds check to let the end pointer point just past the end of the
361         allocated buffer.  (may fix #81384)
362
363 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
364
365         * culture-info-table.h : regenerated.
366
367 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
368
369         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
370         the thread is aborted early.
371
372 2007-04-05  Dick Porter  <dick@ximian.com>
373
374         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
375         FindFirstFile()/FindNextFile() to find entries.  This lets the
376         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
377         81038.
378
379         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
380         the parameters of
381         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
382
383 2007-04-04  Martin Baulig  <martin@ximian.com>
384
385         * debug-helpers.c
386         (mono_method_desc_full_match): Add support for nested classes.
387
388 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
389
390         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
391
392 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
393
394         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
395         waiting for too many threads.
396
397 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
398
399         * environment.c: Fix return value check on uname so we can get the 
400         executing version on Solaris operating systems.
401
402 2007-03-28  Jb Evain  <jbevain@gmail.com>
403
404         * class.c (mono_type_get_name_recurse): Complete the
405         fix for the creation of assembly qualified names for
406         pointer types. Fixes #81208.
407
408 2007-03-27  Dick Porter  <dick@ximian.com>
409
410         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
411         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
412         changed.
413
414         * threads.c
415         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
416         the value of ReleaseMutex().
417
418 2007-03-27  Dick Porter  <dick@ximian.com>
419
420         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
421         in little-endian order, not network endian, so must be converted
422         to host endian here.  Fixes bug 80593.
423
424 2007-03-22  Jb Evain  <jbevain@gmail.com>
425
426         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
427         qualified names for pointer types. Fixes #81208.
428
429 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
430
431         * marshal.c: Add support for PreserveSigAttribute. 
432         
433         Code is contributed under MIT/X11 license.
434
435 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
436
437         * process.c: Fix endianness issues. Fixes #81126.
438
439         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
440         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
441
442         * image.c (mono_image_lookup_resource): Make this work on big-endian
443         machines.Change API contract so the caller needs to free the return value.
444         
445         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
446         API change.
447         
448 2007-03-14  Martin Baulig  <martin@ximian.com>
449
450         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
451         mono_type_get_desc() as well.
452
453 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
454
455         * icall.c:  Fix environ access in VS.  
456         
457 2007-03-13  Alp Toker  <alp@atoker.com>
458
459         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
460         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
461         #63841.
462
463 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
464
465         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
466         circular references among dynamic methods. Fixes #81091.
467
468         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
469
470 2007-03-09  Martin Baulig  <martin@ximian.com>
471
472         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
473
474 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
475
476         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
477         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
478         
479         Code is contributed under MIT/X11 license.
480         
481 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
482
483         * loader.c: Reapply patch for bug #79424.
484
485 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
486
487         * metadata.c (mono_type_to_unmanaged): Only convert object to
488         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
489
490 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
491
492         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
493         (and incorrectly set) is_reference field from MonoGenericInst.
494
495 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
496
497         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
498         a little earlier.
499
500         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
501
502         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
503
504 2007-03-05  Miguel de Icaza  <miguel@novell.com>
505
506         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
507         FileOptions.1 value to mean "temporary", map that to
508         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
509
510         Fixes 80688
511
512 2007-03-03  Marek Habersack  <mhabersack@novell.com>
513
514         * appdomain.c: implement MS .Net style shadow copying. Copies of
515         the assemblies are made in a subdirectory of the dynamic base
516         directory, the assembly names are preserved.
517         Copy .mdb and .config files along with the assemblies being shadowed.
518
519 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
520
521         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
522         (emit_marshal_handleref): Ditto.
523
524         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
525         on Visual C++. Fixes #80671.
526
527 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
528
529         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
530         for clone operations.
531
532 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
533
534         * marshal.c: Fix warnings.
535
536 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
537
538         * loader.c: allow case-insensitive matching of the dll name
539         in dllmap handling when prefixed with "i:".
540
541 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
542
543         * threads.c: Fix #ifdef for dummy_apc function for VS.
544
545 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
546
547         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
548
549 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
550         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
551         giving precedence to the methods with a fully qualified name
552         (InterfaceName.MethodName) when building the interface sections
553         of the vtable.
554
555 2007-02-16  Dick Porter  <dick@ximian.com>
556
557         * threadpool.c (append_job): Fix fast-path array handling, so it's
558         less likely the array will grow exponentially when the load is
559         heavy.
560
561 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
562
563         * metadata-internals.h, loader.c: fix dllmap lookup order
564         for non-function maps, too, and prepare for fallback code.
565
566 2007-02-12  Robert Jordan  <robertj@gmx.net>
567
568         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
569         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
570         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
571         GlobalFree. Fixes a part of bug #77075.
572
573 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
574
575         * loader.c: implemented typedef parent in field memberref.
576
577 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
578
579         * marshal.c: Fix warnings and remember to call Release on
580         IUnknown of RCW.
581         
582         Code is contributed under MIT/X11 license.
583
584 2007-02-10  Miguel de Icaza  <miguel@novell.com>
585
586         * class-internals.h: Add MonoHandleRef definition, and
587         handleref_class to mono_defaults. 
588
589         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
590         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
591
592         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
593         (do nothing on this stage)
594         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
595         (emit_marshal_handleref): New method, used for argument handling
596         of HandleRefs. 
597
598 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
599
600         * class.c (mono_class_setup_parent): Lazily init com types.
601         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
602         init com types.
603         * object.c (mono_remote_class_vtable): Lazily init com types.
604         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
605         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
606         * domain-internals.h: Expose mono_init_com_types.
607         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
608         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
609         Add support for COM Callable Wrapper marshalling.
610         * marshal.h: Add icall definitions.
611         * gc.c: Handle freeing of CCWs in finalizer code.
612         
613         Code is contributed under MIT/X11 license.
614
615 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
616
617         * reflection.c: changed all the signature encoding code to use
618         a variable-sized buffer.
619
620 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
621
622         * marshal.c: locking fixes: never take the loader lock
623         or other runtime locks when holding the marshal lock
624         (fixes bug#80664).
625
626 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
627
628         * marshal.c: make the delegate function pointer mapping
629         work for the moving GC.
630
631 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
632
633         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
634         for bug #80618.
635
636 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
637
638         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
639         gmodule.
640
641 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
642
643         * threadpool.c: made the code moving-GC safe.
644
645 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
646
647         * assembly.c, boehm-gc.c, class-internals.h, class.c,
648         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
649         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
650         warning cleanup.
651         * reflection.c: warning cleanup, some threading and moving GC fixes.
652
653 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
654
655         * class.c, loader.c: create the needed Set/Get/Address array methods
656         as well as the .ctors in mono_class_init (), fixes bug #80567.
657
658 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
659
660         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
661         we doesn't decrease its alignment. Should fix the sparc build.
662
663 2007-01-24  Dick Porter  <dick@ximian.com>
664
665         * socket-io.c
666         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
667         Create the returned object if we need to ignore an unsupported
668         socket option.  Fixes a segfault reported by Atsushi.
669
670 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
671
672         * class.c, object.c: restrict GC-tracked fields to
673         UIntPtr fields used inside corlib, so we provide better
674         type info to the GC and also allow broken packing as in
675         bug #80580.
676
677 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
678
679         * sgen-gc.c: removed duplicated function.
680
681 2007-01-19  Miguel de Icaza  <miguel@novell.com>
682
683         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
684         value that means that the value is not supported, but that we
685         should not return a failure, but instead report this as a
686         successful operation.
687
688 2007-01-19  Raja R Harinath  <rharinath@novell.com>
689
690         Fix tests/bug79956.2.il
691         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
692         (mono_generic_class_get_class): If the generic definition in an
693         enum, copy over other fields related to it.
694
695 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
696
697         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
698         genericinst enums (bug #79215).
699
700 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
701         * class.c: Fix bug 80307.
702
703 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
704
705         * image.c: if the file table is not present, try to load
706         all the modules, since we don't have info about them
707         having or not metadata (bug #80517).
708         * assembly.c: allow mono_assembly_load_references () to
709         work for netmodules.
710
711 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
712
713         * image.c, metadata-internals.h, object.c: execute module
714         cctors when running on the 2 runtime if present (bug #80487).
715
716 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
717
718         * icall.c: optimized InitializeArray() on bigendian.
719
720 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
721
722         * icall.c: fix for the broken ARM FPA double format.
723
724 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
725
726         * icall.c: handle endian issues for r4 and r8 types, too, in
727         the InitializeArray() icall.
728
729 2007-01-15  Miguel de Icaza  <miguel@novell.com>
730
731         * loader.c (mono_loader_error_prepare_exception): Clear the error
732         once we have extracted the information from it, do this before we
733         call into the JIT's class loading mechanisms.
734
735         * object.c (mono_class_create_runtime_vtable): Do not clear the
736         loader error before calling mono_class_get_exception_for_failure
737         as the loader error is needed inside
738         mono_class_get_exception_for_failure to throw the error (thinko).
739
740         Fixes #80521
741         
742 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
743
744         * reflection.c: align fields rva data so it's faster to load at
745         runtime.
746
747 2007-01-12  Raja R Harinath  <rharinath@novell.com>
748
749         Prepare to simplify GenericMethod handling.
750         * class-internals.h (mono_method_get_context): New accessor function.
751         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
752         rather than directly accessing '->context' field.
753
754         * class-internals.h (_MonoGenericParam.method): Move ...
755         (_MonoGenericContainer): ... here.  Add into union with klass field.
756         * class.c, icall.c, loader.c, metadata.c, reflection.c:
757         Update to changes.
758
759 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
760
761         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
762         the wrapper type enum and reduce relocations.
763
764 2007-01-12  Raja R Harinath  <rharinath@novell.com>
765
766         * reflection.c (inflate_mono_method): Reuse method instantiation
767         from the generic method, if available.
768
769 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
770
771         * marshal.c (emit_marshal_variant): Fix conv_arg
772         type in last commit, based on whether parameter is byref.
773         
774 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
775
776         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
777         marshalling.
778         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
779         MONO_TYPE_OBJECT back for VARIANT support.
780
781 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
782
783         * marshal.c, marshal.h, icall-def.h: Implement 
784         Marshal.ReAllocCoTaskMem.
785
786 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
787
788         * marshal.c: memory retention fixes: use the proper
789         image cache for runtime_invoke method lookups.
790
791 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
792
793         * mempool.c: added code to help debug mempool allocations.
794
795 2007-01-11  Dick Porter  <dick@ximian.com>
796
797         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
798         support (experimenting with faking it with IP_MTU_DISCOVER for
799         systems that don't have IP_DONTFRAGMENT.)
800         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
801         icall.
802
803         * icall-def.h: new System.Net.Sockets.Disconnect icall.
804
805         * socket-io.h: Add new fields to MonoSocketAsyncResult
806         corresponding to the new ones in Socket.cs.
807
808 2007-01-11  Raja R Harinath  <rharinath@novell.com>
809
810         Fix IronPython regression mentioned in #80249
811         * metadata.c (do_mono_metadata_parse_generic_class): Clear
812         'cached_context' field, since it may have been initialized as a
813         side-effect of metadata parsing.
814
815         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
816         (_MonoGenericClass.cached_class): Move here and rename from lone
817         remaining field of ...
818         (_MonoInflatedGenericClass): ... this.  Remove.
819         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
820         to changes.
821
822         Fix mcs/tests/test-128.cs regression.
823         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
824         2007-01-10 change below.
825         [MONO_TYPE_OBJECT]: Recurse into array case.
826
827 2007-01-11  Raja R Harinath  <harinath@gmail.com>
828
829         * class-internals.h (mono_get_inflated_generic_class): Remove.
830         * class.c (mono_get_inflated_generic_class): Remove.
831         (mono_generic_class_get_class): Rename from
832         mono_class_create_generic.
833         (mono_class_from_mono_type) [GENERICINST]: Use it.
834         * reflection.c, metadata.c: Update to changes.  Use
835         'mono_class_from_mono_type'.
836
837 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
838
839         * reflection.c: use passed type when encoding an array element
840         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
841
842 2007-01-09  Robert Jordan  <robertj@gmx.net>
843
844         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
845         result arguments (someDelegate.EndInvoke (unrelatedAres)).
846         Fixes bug #80392.
847
848 2007-01-09  Raja R Harinath  <rharinath@novell.com>
849
850         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
851
852         * object.c (set_value): Avoid aliasing between type->data.klass
853         and type->data.generic_class.
854
855         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
856
857 2007-01-08  Raja R Harinath  <rharinath@novell.com>
858
859         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
860         between type->data.klass and type->data.generic_class.
861
862 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
863
864         * marshal.c: In MS.NET, StringBuilder objects are not copied by
865         value in out parameters.
866
867 2007-01-08  Raja R Harinath  <rharinath@novell.com>
868
869         Simplify invariant for MonoGenericClass::klass field.
870         * class.c (mono_class_create_generic): Verify 'klass' is null.
871         * metadata.c (do_mono_metadata_parse_generic_class): Don't
872         initialize 'klass' field.
873
874 2007-01-05  Raja R Harinath  <rharinath@novell.com>
875
876         Ongoing work to avoid redundant data and simplify invariants.
877         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
878         'generic_class', and change type to a GenericInst.
879         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
880         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
881
882 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
883
884         * class.c : skip io-layer under PLATFORM_WIN32.
885
886 2007-01-03  Tor Lillqvist  <tml@novell.com>
887
888         Fix #80305: In a bundled executable, look in the bundled exe
889         assembly to determine the runtime version. Add the possibility to
890         bundle also the machine.config file.
891         
892         * assembly.c (mono_assembly_open_from_bundle): Make
893         non-static. Allow being called even if we have no bundled
894         assemblies, and return NULL right away in that case.
895
896         * domain-internals.h: Declare mono_assembly_open_from_bundle()
897         here.
898
899         * domain.c (app_config_parse): Take an assembly exe file name as
900         parameter instead of a config file name. Check for a bundled
901         config file for that assembly by calling
902         mono_config_string_for_assembly_file() (see below) before looking
903         for one in the file system.
904         (get_runtimes_from_exe): Corrsponding change to call of
905         app_config_parse().
906         (get_runtimes_from_exe): Check for bundled assembly exe file first
907         by calling mono_assembly_open_from_bundle(). If no bundled
908         assembly exe file is found, call mono_image_open() as before to
909         look it up in the file system.
910
911         * mono-config.c: Add variable bundled_machinec_onfig.
912         (mono_config_string_for_assembly_file): New function.
913         (mono_config_for_assembly): Move code snippet that looks for a
914         bundled assembly .config file into the above new function. Call
915         it.
916         (mono_register_machine_config, mono_get_machine_config): New
917         functions to set and retrieve
918
919         * assembly.h: Declare mono_register_machine_config().
920
921         * mono-config.h: Declare mono_get_machine_config() and
922         mono_config_string_for_assembly_file().
923
924         * icall.c: No declaration of environ necessary on Win32. It is
925         declared (as a macro expanding to a function call) in stdlib.h.
926         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
927         New internal mono function. Returns the value of
928         mono_get_machine_config() as a Mono string.
929
930         * icall-def.h: Add get_bundled_machine_config().
931
932 2007-01-04  Raja R Harinath  <rharinath@novell.com>
933
934         Remove redundant field
935         * class-internals.h (_MonoGenericContext.container): Remove field.
936         * loader.c (mono_method_get_signature_full): Don't parse a
937         "container" for a signature parse when the signature is inflated
938         immediately.
939         (method_from_methodspec): Likewise, for a generic_inst.
940         * class.c, metadata.c, reflection.c: Update to changes.
941
942 2006-01-04  Raja R Harinath  <rharinath@novell.com>
943
944         * class-internals.h (_MonoGenericClass): Rename 'context' field to
945         'cached_context', and change semantics -- it starts off NULL, and
946         is initialized on demand.
947         * class.c (mono_generic_class_get_context): New accessor to
948         replace 'context' field accesses.
949         (mono_class_get_context): New helper.
950         (*): Update to changes.
951         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
952
953 2007-01-03  Miguel de Icaza  <miguel@novell.com>
954
955         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
956         before the memcpy.   Fixes Marshal2 regression.
957
958 2007-01-02  Jb Evain  <jbevain@gmail.com>
959
960         * blob.h: add a MONO_TYPE_ENUM definition
961         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
962         fix the encoding of arrays of enums in custom attributes.
963
964         Fixes #79666.
965
966 2007-01-01  Miguel de Icaza  <miguel@novell.com>
967
968         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
969         string is null terminated, but only cut the string short if it
970         overflows the buffer.   
971         
972         (mono_string_to_byvalstr): Also fix this routine.   The code here
973         was not properly terminating a string (it was only terminated
974         because of the previous catch-all memset). 
975
976         I left the memset, because I do not know if applications expect
977         the runtime to clear this region. 
978
979         Fixes #79944.
980
981         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
982         Clear the error before returning to unmanaged code to prevent the
983         runtime from being confused later on (fixes  80420).
984         (ves_icall_type_from_name): Always call mono_loader_clear_error
985         after parsing a type that could have failed.
986         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
987
988         * loader.c (mono_loader_clear_error): Fix indentation.
989
990 2006-12-28  Martin Baulig  <martin@ximian.com>
991
992         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
993
994 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
995
996         * reflection.c: patch from Rolf Bjarne Kvinge to fix
997         getting a token for an EnumBuilder.
998
999 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1000
1001         * reflection.c: be more careful in case resource generation
1002         fails to create the data array.
1003
1004 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1005
1006         * sgen-gc.c: write barrier for clone and fix unregister handles.
1007
1008 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1009
1010         * reflection.c: some fixes needed in the generics code for the moving GC.
1011
1012 2006-12-22  Robert Jordan  <robertj@gmx.net>
1013
1014         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1015         account. Fixes bug #80299.
1016
1017 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1018
1019         Fix WaitHandle usage in delegates.
1020         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1021         * object.c (mono_wait_handle_new): Use the property set method to
1022         initialize the handle.
1023         (mono_wait_handle_get_handle): New.
1024         * threadpool.c (mono_async_invoke): Use it.
1025         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1026         Likewise.
1027         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1028
1029 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1030
1031         * marshal.c (emit_marshal): Call emit_marshal_variant and
1032         emit_marshal_com_interface when applicable.
1033         (emit_marshal_variant, emit_marshal_com_interface): Add
1034         methods for this case and remove if's from emit_marshal_object.
1035         
1036 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1037
1038         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1039
1040 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1041
1042         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1043         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1044         and GlobalFree on Windows. Remove FIXME.
1045
1046 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1047
1048         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1049         implementation for managed objects.
1050
1051 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1052
1053         * object.c: implemented code to be used for checking
1054         that no reference field overlaps with non-references.
1055
1056 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1057
1058         * threadpool.c: fix queue code to be compatible with the
1059         moving GC.
1060
1061 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1062
1063         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1064         in structures by throwing ArgumentNullException.
1065
1066         (emit_marshal_safehandle): Also when they are null parameters.
1067
1068         (emit_marshal_safehandle): Add support for ref
1069         SafeHandles parameters
1070
1071 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1072
1073         * profiler.c: updated to use the mono-dl API instead of
1074         gmodule.
1075
1076 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1077
1078         * profiler.c: updated to use the mono-dl dynamic loading
1079         API instead of gmodule.
1080
1081 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1082
1083         * profiler.c: use readlink, older versions of glib don't have
1084         g_file_read_link ().
1085
1086 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1087
1088         * profiler.c: try to detect the path to mono if libc fails to provide
1089         a useful name (bug #80286).
1090
1091 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1092
1093         Fix #80242
1094         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1095         instance, use the generic type definition instead.
1096         (ves_icall_Type_GetNestedTypes): Likewise.
1097         * class.c (mono_class_create_generic): Always set the
1098         nested_classes of a generic instance to NULL, even if the generic
1099         type definition has nested types.
1100
1101 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1102
1103         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1104         and fix on Linux.
1105         
1106 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1107
1108         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1109         my arguments were in the wrong order.   I also fixed the Windows
1110         version which seems to have had the same issue.
1111
1112         (mono_free_bstr): On Unix, this is g_free.
1113         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1114         conversions (for the tests in corlib to pass).
1115
1116 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1117
1118         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1119         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1120         exception if a ref SafeHandle in a struct has changed).
1121         
1122         (emit_struct_conv): Do not perform layout checks for classes
1123         derived from SafeHandle, as those are specially handled. 
1124
1125         (emit_object_to_ptr_conv): Add support for
1126         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1127
1128         (emit_marshal_safehandle): Implement conversion of return values
1129         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1130         
1131         * threads.c: WaitHandle now is compiled with two different handles
1132         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1133         for 2.0.
1134         
1135         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1136         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1137         these routines to cope with both kinds of fields.
1138
1139 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1140
1141         * metadata.c (mono_type_to_unmanaged): Handle the case where
1142         type->data.klass is a SafeHandle, and in that case, return the
1143         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1144         MONO_MARSHAL_CONV_SAFEHANDLE. 
1145
1146 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1147
1148         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1149         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1150         calling emit_marshal_object.
1151
1152         (emit_marshal_safehandle): Implement marshalling of
1153         SafeHandle parameters (no ref support yet).
1154
1155         (MarshalAction): Document the defines as I implement
1156         them for SafeHandle.
1157
1158         (emit_marshal_object): indentation police.
1159
1160         * class-internals.h: Define MonoSafeHandle.
1161         Add safehandle_class to MonoDefaults type.
1162
1163         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1164         list of classes to check for fields. 
1165
1166         * domain.c (mono_init_internal): Add SafeHandle to the list of
1167         mono_defaults loaded.
1168
1169 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1170
1171         Fix #80253
1172         * reflection.c (mono_reflection_bind_generic_parameters): If the
1173         generic type definition is a type builder, ensure that it is fully
1174         initialized before instantiating it.  Kill some dead code.
1175
1176 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1177
1178         * object.c: clear the loader_error () before loading
1179         more metadata stuff (bug #80258).
1180
1181 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1182
1183         * icall.c, icall-defs.h: type modifiers icalls for
1184         parameters and properties.
1185
1186 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1187
1188         * object.c, icall.c: fixed warnings.
1189
1190 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1191
1192         * marshal.c: fixed a couple of leaks and coding style in a few places.
1193
1194 2006-12-08  Dick Porter  <dick@ximian.com>
1195
1196         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1197         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1198         80173.
1199
1200 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1201
1202         * process.c: ProcessStartInfo may have only filename set and
1203         arguments can be NULL.
1204
1205 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1206
1207         * icall.c: fix leak found by Robert Jordan.
1208
1209 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1210
1211         * marshal.c, marshal.h: generate managed method to access an element
1212         of a multi-dimensional array.
1213
1214 2006-11-30  Paolo Molaro (lupus@ximian.com)
1215
1216         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1217
1218 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1219
1220         * icall.c: back out GetFields () fix until the serialization code is
1221         fixed to not depend on the incorrect behaviour.
1222
1223 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1224
1225         * profiler.c: provide defaults if none are set.
1226
1227 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1228
1229         * Makefile.am, attrdefs.h: new public header file with
1230         constants for attributes for use by embedders.
1231
1232 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1233
1234         * icall.c: GetFields () fix for bug #80064.
1235
1236 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1237
1238         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1239         removed long unused icalls.
1240
1241 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1242   
1243         * marshal.c: 
1244                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1245                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1246                 can be generated without a delegate class.
1247                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1248         
1249         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1250
1251 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1252
1253         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1254         #80069.
1255
1256 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1257
1258         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1259         icall-def.h: added icalls needed by System.GC.
1260
1261 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1262
1263         * loader.c: ensure the class in catch clauses is handled
1264         correctly for generics methods (fixes bug#79980).
1265
1266 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1267
1268         * monitor.h, monitor.c: added mono_locks_dump () function
1269         to help debug deadlocks involving managed locks.
1270
1271 2006-11-13  Dick Porter  <dick@ximian.com>
1272
1273         * file-io.c (get_file_attributes): If the file is a symlink try
1274         and get the stat data for the target, but also add the
1275         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1276         the specs for the windows symlink support, but will probably have
1277         to be reworked when I have test data from a vista machine.  Fixes
1278         bug 79887.
1279
1280 2006-11-13  Dick Porter  <dick@ximian.com>
1281
1282         * gc.c (mono_domain_finalize): 
1283         * marshal.c (mono_delegate_begin_invoke): 
1284         * threadpool.c (socket_io_init, mono_thread_pool_init)
1285         (mono_thread_pool_finish): 
1286         * monitor.c (mono_monitor_try_enter_internal): 
1287         * threads.c (mono_thread_resume, mono_thread_init)
1288         (mono_thread_suspend_all_other_threads)
1289         (mono_thread_execute_interruption): 
1290         * appdomain.c (mono_domain_unload): Check for NULL error returns
1291         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1292         75733.
1293
1294 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1295
1296         * process.c
1297         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1298         Only close the handle if the value of the handle is not
1299         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1300         robust.
1301
1302         Improvement for #75733, so that we do not run into this problem. 
1303
1304         
1305         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1306         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1307         internal variables.  Fixes #79462 
1308         
1309
1310 2006-11-09  Dick Porter  <dick@ximian.com>
1311
1312         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1313         Use poll() not select().  Fixes bug 79397.
1314
1315 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1316
1317         Fix #79872
1318         * assembly.c (mono_assembly_load_from_full): Check that the given
1319         image has an assembly manifest.
1320
1321 2006-11-09  Ankit Jain  <jankit@novell.com>
1322
1323         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1324         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1325         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1326
1327 2006-11-07  Dick Porter  <dick@ximian.com>
1328
1329         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1330         Put the old resolver behaviour back for pre-2.0 profiles.
1331
1332 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1333
1334         * threadpool.c: precise GC and locking fixes.
1335
1336 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
1337
1338         * class.c: don't load types that have an explicit unaligned
1339         managed reference. Provide better info in the TypeLoad exception.
1340         Part of the fix for bug #79744.
1341         * object.c: use the correct check for class type load issues.
1342
1343 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1344
1345         * class.c: enforce alignment of fields with managed references
1346         even when Pack=1 is forced by the user (bug #77788).
1347
1348 2006-11-03  Dick Porter  <dick@ximian.com>
1349
1350         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1351         If the address reverse lookup fails, return it as the hostname
1352         anyway.  Fixes bug 79721.
1353
1354 2006-11-03  Dick Porter  <dick@ximian.com>
1355
1356         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
1357         Fix build on Windows.
1358
1359 2006-11-02  Dick Porter  <dick@ximian.com>
1360
1361         * icall-def.h: 
1362         * object-internals.h: 
1363         * exception.c (mono_get_exception_thread_interrupted): 
1364         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
1365         Fixes bug 74525.
1366
1367         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
1368         Check for pending Thread.Interrupt.
1369
1370 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
1371         * loader.c: Fixed bug 79684.
1372
1373 2006-10-27  Dick Porter  <dick@ximian.com>
1374
1375         * file-io.c (get_file_attributes): Force symlinks to directories
1376         to be returned as a regular file.  Fixes bug 79733.
1377 2006-10-26  Dick Porter  <dick@ximian.com>
1378
1379         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
1380         CreateFile to open a directory then we need to set the
1381         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
1382
1383 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
1384
1385         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
1386         friends.
1387
1388 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1389
1390         * sgengc.c: small cleanup of timer code.
1391
1392 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1393
1394         * sgen-gc.c: fix some warnings and start adding support for
1395         complete object removal on domain unload.
1396
1397 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
1398
1399         * assembly.c: build_assembly_name should not consider a version
1400         number without build or revision number invalid. Fixes bug #79715.
1401
1402 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
1403
1404         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
1405         call kernel32 function OutputDebugString directly.
1406         
1407         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1408         
1409 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
1410
1411         * reflection.c: small cleanup, using a function to insert a MonoString
1412         in the string heap.
1413
1414 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
1415
1416         * reflection.c: moving GC fixes.
1417
1418 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
1419
1420         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
1421         all the objects with finalizers belonging to an unloading appdomain.
1422
1423 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
1424
1425         * sgen-gc.c: added ability to allocate even when the nursery is fully
1426         pinned and fixed a couple of bugs.
1427
1428 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1429
1430         * threads.h: Revert the last change for now.
1431
1432         * threads.h (mono_thread_get_pending_exception): Rename this to
1433         mono_thread_get_undeniable_exception ().
1434
1435 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1436
1437         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
1438         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
1439         when fname does not refer to valid assembly. This result in a more
1440         meaningful error message.
1441         * exception.c: added mono_get_exception_bad_image_format2 which 
1442         constructs a BadImageFormatException using the ctor taking a custom
1443         message and the file name. Passing in a NULL msg results in a default
1444         message.
1445         * exception.h: define mono_get_exception_bad_image_format2 function.
1446         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
1447         when file name pointed to an invalid IL image. Use 
1448         mono_get_exception_file_not_found2 to construct FileNotFoundException,
1449         as this results in a more meaningful error message.
1450
1451 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1452
1453         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
1454         #79465.
1455
1456 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
1457
1458         * metadata.c (mono_type_size): Change the align parameter to guint32 for
1459         consistency with the other _size functions.
1460         (mono_type_stack_size): Ditto.
1461
1462         * class.c object.c icall.c: Fix warnings caused by the above change.
1463
1464         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
1465
1466         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
1467
1468         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
1469
1470 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1471
1472         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1473         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1474         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1475         threadpool.h, threads-types.h: mark more internal functions.
1476
1477 2006-10-11  Dick Porter  <dick@ximian.com>
1478
1479         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1480         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1481         reproduce the bug even before applying the fix.)
1482
1483 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1484
1485         * reflection.c: allow retrieving attributes for arguments in generic
1486         methods (bug #79241).
1487
1488 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1489
1490         * debug-mono-symfile.c: properly check fopen () result (found by
1491         coverity).
1492
1493 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1494
1495         * reflection.c: make error message clearer and fixed two
1496         issuelets found by Coverity.
1497
1498 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1499
1500         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1501
1502 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1503
1504         * object-internals.h, gc-internal.h, profiler-private.h:
1505         mark internal functions.
1506
1507 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1508
1509         * reflection.c: put data in the text section.
1510         * icall.c: recognize more types in type_from_typename ().
1511         * process.c, marshal.c: added some GC FIXMEs.
1512
1513 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1514
1515         * loader.c: check for NULL before initializing.
1516
1517 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1518
1519         * gc.c (finalizer_thread): Use a non-alertable wait here.
1520
1521         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1522         until the correct solution is found.
1523
1524 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1525
1526         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1527         modules with no metadata. Fixes #79596.
1528
1529         * image.c (load_metadata_ptrs): Put back the error message when
1530         the #- heap is encountered since the support is not complete yet.
1531
1532 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1533
1534         * gc.c: do not allow the user to SuppressFinalize () a
1535         delegate because it would leak the trampoline if present.
1536
1537 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1538
1539         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1540         PropertyPtr table.
1541
1542 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1543
1544         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1545
1546         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1547
1548         * row-indexes.h: Add definitions for *Ptr tables.
1549
1550         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1551
1552         * metadata.c (mono_metadata_translate_token_index): New helper function to
1553         translate table indexes used in uncompressed metadata.
1554         (mono_metadata_decode_table_row): Ditto.
1555         (mono_metadata_decode_table_row_col): Ditto.
1556
1557         * metadata.c: Add table schema for *Ptr tables.
1558
1559         * class.c loader.c: Use the new helper function to access the affected metadata
1560         tables.
1561         
1562         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1563         #38532.
1564         
1565 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1566
1567         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1568         sequences which can be unbounded in size. Fixes #79583.
1569
1570 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1571
1572         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1573         static initialization.
1574
1575         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1576
1577         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1578
1579         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1580
1581         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1582         ctor fails, i.e. throw the same exception on subsequent accesses.
1583         
1584 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1585
1586         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1587         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1588         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1589         Handle marshalling of interfaces and VARIANTs contained in structs.
1590         
1591         Code is contributed under MIT/X11 license.
1592         
1593 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1596         
1597         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1598         mempool.
1599
1600 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1601
1602         * console-io.c: ignore previous SIGINT handler.
1603
1604 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1605
1606         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1607         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1608         #79460, #79461, #79485.
1609
1610         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1611
1612         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1613         #79217.
1614
1615 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1618         could be generated from it.
1619
1620 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1621
1622         * rand.c: fix read loop to correctly handle EINTR.
1623
1624 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1625
1626         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1627         internal calls are defined to keep methods closer to the declaring
1628         type and allow a significant reduction in runtime relocations and
1629         memory usage.
1630
1631 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1632
1633         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1634         exception message to have FileNotFoundException use the default
1635         assembly load error message. Fixes bug #79426.
1636         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1637
1638 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1639
1640         * threadpool.c: (start_thread_or_queue) use the root domain when
1641         creating the thread instead of the async object one.
1642
1643 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1644
1645         * class.c, object.c, class-internals.h, reflection.c:
1646         for arrays, store element_size inside MonoClass (speedup
1647         for array object creation).
1648
1649 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1650
1651         * icall.c: fixed CodeBase to use the file name and not the module
1652         name (bug #79365).
1653
1654 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1655
1656         * mono-debug.c, mono-debug.h: export find_method as
1657         mono_debug_find_method ().
1658
1659 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1660
1661         * debug-helpers.c, class-internals.h: added a few functions useful
1662         when debugging under gdb.
1663
1664 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1665
1666         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1667         characters that need special handling.
1668
1669 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1670
1671         * mono-config.c: make the os/cpu specification more flexible,
1672         allowing lists and negation.
1673
1674 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1675
1676         * marshal.c: COM Interop fixes. Handle case where method->klass.
1677         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1678         calling convention on non-windows platforms. This is for
1679         compatibility with XPCOM and MainWin COM.
1680         
1681         Code is contributed under MIT/X11 license.
1682         
1683
1684 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1685
1686         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1687         correctly. Fixes #79217.
1688
1689         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1690
1691 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1692
1693         * mono-config.c: allow both an os and cpu attribute for dllmap
1694         and dllentry elemnets to enable a single config file to be used
1695         for multiple architectures.
1696
1697 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1698
1699         * loader.c: MonoLoaderError was cleared too soon on load failure.
1700         Fixes bug #79424.
1701
1702 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1703
1704         * icall.c: use the defining class vtable when accessing a
1705         static field, not a pobblibly derived class.
1706
1707 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1708
1709         * icall.c string-icalls.c: Remove references to unicode.h.
1710
1711         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1712
1713         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1714
1715         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1716         indicating the image where custom marshaller types should be looked up.
1717         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1718         custom marshallers, instead of corlib. Fixes #79425.
1719
1720 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1721
1722         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1723
1724 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1725
1726         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1727         Implement Environment.ProcessorCount.
1728         
1729         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1730         Implement Environment.ProcessorCount.
1731         
1732         * icall.c: 
1733         Add Environment.ProcessorCount icall.
1734         
1735         Patch by Jason McFall.
1736
1737 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1738
1739         * assembly.c: don't append .exe/.dll when the filename already contains
1740         one of those extensions.
1741
1742 2006-09-12  Martin Baulig  <martin@ximian.com>
1743
1744         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1745         to array interfaces.
1746
1747 2006-09-11  Martin Baulig  <martin@ximian.com>
1748
1749         * reflection.c (mono_image_build_metadata): Create the
1750         MethodImpl's after emitting all types and methods, so we don't
1751         need another fixup pass for them.
1752
1753 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1754
1755         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1756         change.
1757
1758 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1759
1760         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1761         unload.
1762
1763 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1764
1765         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1766         args is not set. Fixes #78926.
1767
1768 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1769
1770         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1771
1772         * image.c (load_class_names): Move this to class.c, and rename it to 
1773         'mono_image_init_name_cache'.
1774         (load_modules): Fix a warning.
1775
1776         * class.c icall.c image.c: Initialize image->name_cache lazily.
1777
1778         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1779         on its name using information in the AOT file.
1780
1781         * class.c (mono_class_from_name): Use the new hook function.
1782
1783 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1784
1785         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1786         correctly.
1787
1788         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1789         Fixes #79289.
1790         
1791 2006-09-06  Martin Baulig  <martin@ximian.com>
1792
1793         * icall.c (mono_lookup_internal_call): Small fix.
1794
1795 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1796
1797         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1798         double g_free.
1799
1800 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1801
1802         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1803         when --debug is specified.
1804
1805 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1806
1807         * class.c (setup_generic_array_ifaces): Fix a warning.
1808
1809 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1810
1811         * Temporarily remove the patch to assemly.c that checks the
1812         assembly versions as it breaks our gacutil.
1813
1814 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1815
1816         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1817
1818         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1819         a net 1.0 runtime.
1820
1821         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1822         created using the default ctor. Fixes #79152.
1823         (mono_string_builder_to_utf16): Ditto.
1824
1825 2006-09-01  Martin Baulig  <martin@ximian.com>
1826
1827         Fix handling of the generic array interfaces.
1828
1829         * class-internals.h
1830         (MonoDefaults): Removed `generic_array_class' and added
1831         `generic_ilist' class.
1832
1833         * class.c
1834         (mono_bounded_array_class_get): Add the new generic array interfaces.
1835         (setup_generic_array_ifaces): New static method; create vtable
1836         entries for each method in the generic array interfaces.
1837
1838         * metadata.c
1839         (select_container): Allow "parent-less" generic methods.
1840
1841         * marshal.c
1842         (mono_marshal_get_generic_array_helper): New public method.
1843
1844         * icall.c
1845         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1846         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1847         moved the interncall into System.Array.
1848
1849 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1850
1851         A few more cases of avoiding work on types with ->byref set.
1852         Has the real fix for #79238
1853         * icall.c (is_generic_parameter): New helper.
1854         (ves_icall_Type_GetGenericParameterPosition): Use it.
1855         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1856         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1857         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1858         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1859         reference types.
1860         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1861         reference types.
1862         (ves_icall_Type_get_IsGenericInstance): Likewise.
1863         (ves_icall_Type_get_IsGenericType): Likewise.
1864
1865 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1866
1867         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1868         class if possible.
1869
1870         * mempool.h (mono_mempool_get_allocated): New helper function.
1871
1872         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1873         change.
1874
1875         * mempool.c: Fix warnings and the calculation of stats.
1876
1877         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1878
1879         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1880
1881         * loader.c (mono_get_method_from_token): Update method_count stat.
1882
1883         * class-internals.h (MonoStats): Add some stats.
1884
1885 2006-08-31 Robert Jordan  <robertj@gmx.net>
1886
1887         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1888         with managed variants.
1889         All code is contributed under the MIT/X11 license.
1890         
1891 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1892
1893         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1894         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1895
1896         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1897
1898         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1899         with cycles in classes.
1900
1901         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1902
1903         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1904         missing a [MarshalAs] directive. Fixes #79203.
1905
1906         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1907         klass->marshal_info. Fixes #79217.
1908
1909 2006-08-30  Martin Baulig  <martin@ximian.com>
1910
1911         Committing a patch from Joachim Ante <joe@otee.dk>:
1912         Add support for binary data symbol stores.
1913
1914         * debug-mono-symfile.c
1915         (mono_debug_open_mono_symbol_file): Renamed into
1916         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1917         arguments.
1918
1919         * mono-debug.c
1920         (mono_debug_open_image): Added `raw_contents' and `size' args.
1921         (mono_debug_init_2_memory): New public function.
1922
1923 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1924
1925         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1926
1927 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1928
1929         * appdomain.c: implement support for ShadowCopyFiles.
1930
1931 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1932
1933         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1934         when value is NULL (and should remove CID #51).
1935
1936 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1937
1938         * image.c: moved 2 functions to ../utils.
1939
1940 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1941
1942         * gc.c: cope with the target object of a GC handle being NULL
1943         (bug #78877).
1944
1945 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1946
1947         * class.c: recursively check parent's explicit implementations
1948         of interface methods (fixes bug #79125).
1949
1950 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1951
1952         * filewatcher.c: Avoid warnings when building, do not redefine
1953         constants that are defined.
1954
1955         Remove warnings.
1956
1957 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1958
1959         * image.c: don't fail when the link points to an absolute path.
1960
1961 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1962
1963         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1964         Fix CID #3.
1965
1966 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1967
1968         * image.c (full_path): A new method used to obtain the actual path
1969         of an assembly even in the presence of symbolic links.  
1970
1971         This is necessary for the case where we are running a binary that
1972         has been GACed, but we are using the "published" path name
1973         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1974         file in the GAC.
1975
1976         This was the source of the failure for the `xsp' command with the
1977         recent AppDomain changes, as far as the runtime was concerned,
1978         there were two different assemblies: $prefix/mono/1.0/blah.exe and
1979         $prefix/mono/gac/blah/version/blah.exe.
1980
1981         (do_mono_image_open): use full path
1982
1983 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1984
1985         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
1986
1987 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
1988
1989         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
1990         domain_id is supplied. Fix CID #241 and corlib's unit tests.
1991
1992 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1993
1994         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
1995         small structures. Fixes #78990.
1996
1997 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
1998
1999         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2000
2001         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2002
2003 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2004
2005         * appdomain.c:
2006         * marshal.c: don't load all the assemblies from a domain into newly
2007         created ones. The new domains might have different rules and load
2008         assemblies from different locations. Fixes bug #76757.
2009
2010         Patch by Lluis. Conflicts resolved by Brian Crowell.
2011
2012 2006-08-16  Alp Toker  <alp@atoker.com>
2013
2014         * socket-io.c: First half of the fix for #79084.
2015         Set sa_size to the length of the content, not that of the struct.
2016         Don't add NULL suffix to the content, this should be done in
2017         managed code if needed.
2018
2019 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2020
2021         Fix part of #79012
2022         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2023         mono_metadata_parse_type returns NULL.
2024
2025 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2026
2027         * normalization-tables.h : new file for string normalization data.
2028         * locales.c, locales.h, icall.c :
2029           added load_normalization_resource() for string normalization,
2030           and icall as well.
2031         * Makefile.am : added normalization-tables.h to the sources.
2032
2033 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2034
2035         * marshal.c: Add more helper functions to reduce code duplication and use them
2036         everywhere.
2037
2038 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2039
2040         * marshal.c: Fix non-x86 stdcall warnings.
2041         
2042         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2043         them everywhere.
2044
2045 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2046
2047         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2048         type check on multi-dimensional arrays. Fixes #79000.
2049
2050 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2051
2052         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2053         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2054         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2055         * class-internals.h: add is_com_object to class structure.
2056         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2057         null checks to COM object marshalling. Fix .ctor call on RCW.
2058         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2059         
2060         All code is contributed under the MIT/X11 license.
2061
2062 2006-08-09  Dick Porter  <dick@ximian.com>
2063
2064         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2065         racing mono_monitor_allocator_lock() somewhere, so don't delete
2066         the critical section for now.  Found by running and exiting
2067         monodevelop.
2068
2069 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2070
2071         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2072         (ves_icall_System_ComObject_FindInterface): Ditto.
2073         (ves_icall_System_ComObject_CacheInterface): Ditto.
2074
2075         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2076         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2077
2078 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2079
2080         * threadpool.c: treat pipes from process asynchronous reads as sockets
2081         when reading from them, so we get select/poll or epoll to wait for
2082         data.
2083
2084 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2085
2086         * loader.c: Fix a typo (CID #233) in the null check.
2087
2088 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2089
2090         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2091         Hopefully fixes #78949.
2092         
2093         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2094         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2095         bytes. Fixes #78972.
2096
2097 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2098
2099         * filewatcher.c: we need to set errno here.
2100
2101 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2102
2103         * filewatcher.c: let Win32Exception get the error value.
2104
2105 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2106
2107         * filewatcher.c: translate errno into win32 errors for Win32Exception
2108         to know what happened.
2109
2110 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2111
2112         * threadpool.c: Fix more warnings.
2113
2114         * assembly.c (search_loaded): Fix warnings.
2115
2116         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2117         (mono_async_invoke): Ditto.
2118
2119 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2120
2121         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2122         entries for __ComObject type in addition to ComImport types.
2123         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2124         about hash table.
2125         
2126         All code is contributed under the MIT/X11 license.
2127
2128 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2129
2130         * image.c: avoid tentative loading of modulerefs that contain
2131         no metadata (P/Invoke library names).
2132
2133 2006-07-28  Dick Porter  <dick@ximian.com>
2134
2135         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2136         mono_loader_lock() somewhere, so don't delete the critical section
2137         for now.  Found by running and exiting monodevelop.
2138
2139 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2140
2141         * filewatcher.c: define the inotify syscalls when we're building on
2142         linux and have sys/syscall.h. The build system might not have support
2143         for inotify but the target system might have it.
2144
2145 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2146
2147         * domain.c: Documentation updates.
2148
2149         * loader.c (mono_free_method): Do not release the method
2150         information if we are being profiled, as profilers will use this
2151         information at shut down to present some data to the user.
2152
2153         This is needed so that the profiler does not crash, as the
2154         profiler tends to keep MonoMethods around, and they might become
2155         invalid if we free these.
2156
2157         (mono_get_method_constrained): Return the original CIL stream
2158         method as well, so verification can be performed against it.
2159
2160 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2161
2162         * filewatcher.[ch]: support for inotify file system watcher.
2163         * icall.c: add new internal calls for the inotify file system watcher.
2164
2165 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2166
2167         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2168         #78888.
2169
2170 2006-07-20  Dick Porter  <dick@ximian.com>
2171
2172         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2173         warning.
2174
2175 2006-07-20  Dick Porter  <dick@ximian.com>
2176
2177         * threads.c (start_wrapper): Do the thread cleanup while we still
2178         hold a reference to its object.  Fixes bug 78123.
2179
2180 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2181
2182         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2183         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2184           "managed-to-managed".
2185         * icall.c: Redirect string constructors that take sbyte* to
2186           ves_icall_System_String_ctor_RedirectToCreateString.
2187         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2188           to CreateString () methods with matching signature.
2189         * reflection.c: Use original security informations for
2190           MONO_WRAPPER_MANAGED_TO_MANAGED.
2191         * security-manager.c: Use original security informations for
2192           MONO_WRAPPER_MANAGED_TO_MANAGED.
2193         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2194           that is a placeholder and only its address should be used.
2195         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2196           that is a placeholder and only its address should be used.
2197
2198 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2199
2200         Begin implementing COM Interop.
2201         * appdomain.c: Increment corlib version.
2202         * class.c: Set ComImport classes' parent to __ComObject.
2203         * loader.c: Mark cominterop methods as such.
2204         * domain.c: Add __ComObject class to MonoDefaults structure.
2205         * image.c: Add 2 hashtables to the image for COM Interop related methods
2206         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2207         using the mempool allocator
2208         
2209         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2210         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2211         declaration for mono_metadata_type_dup_mp.
2212         
2213         * debug-helpers.c: Added strings for two additional wrapper types
2214         * object.c: Create proxy objects for ComImport classes
2215         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2216         and added __ComObject class to MonoDefaults structure.
2217         
2218         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2219         MonoComInteropProxy and MonoComObject.
2220         
2221         * marshal.c: Added support for COM Interop
2222         (signature_cominterop): Converts managed signature to corresponding
2223         unmanaged COM signature.
2224         (cominterop_get_function_pointer): gets unmanaged function pointer via
2225         COM object vtable
2226         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2227         (cominterop_get_method_interface): returns interface type that method is defined on
2228         (mono_mb_emit_cominterop_call): emits native call to function pointer
2229         gotten from vtable
2230         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2231         that matches signature of unmanaged function.
2232         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2233         (cominterop_get_invoke): forwards call from proxy to __ComObject
2234         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2235         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2236         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2237         
2238         * marshal.h: Added Marshal icall declarations.
2239         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2240         so we can access them in finalizer
2241         
2242 2006-07-14  Dick Porter  <dick@ximian.com>
2243
2244         * object.c (mono_type_initialization_cleanup): Fix a race
2245         condition by temporarily commenting out the critical section
2246         deletion.
2247
2248 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2249
2250         * reflection.c (create_custom_attr): Fix some warnings.
2251         (create_custom_attr_data): Ditto.
2252         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2253         types. Fixes #78855.
2254
2255 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2256
2257         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2258
2259         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2260
2261 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2262
2263         * reflection.c (resolve_object): Add support for DynamicMethod.
2264
2265         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2266         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2267
2268 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2269
2270         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2271         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2272
2273 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2274
2275         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2276         Fixes #77888.
2277
2278 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2279
2280         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2281         slightly: remove a shadow local variable.
2282
2283 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2284
2285         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2286         definition that introduces the virtual function slot.
2287         Also fix Coverity #105.
2288
2289 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2290
2291         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2292         for dynamic assemblies. Fixes #78724.
2293
2294 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2295
2296         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2297         Fixes #78722.
2298
2299 2006-06-21  Martin Baulig  <martin@ximian.com>
2300
2301         * reflection.c
2302         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2303         fixes #76484.
2304
2305 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2306
2307         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2308
2309 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2310
2311         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2312         nor TYPEREFs.
2313         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2314         Inflate result if necessary.
2315         (mono_class_get_full): Remove old version.  Rename from
2316         'mono_class_get' and add 'context' argument.  Pass it to
2317         ..._create_from_typespec.
2318         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2319         (mono_ldtoken): Revert change below.
2320
2321 2006-06-20  Martin Baulig  <martin@ximian.com>
2322
2323         * class.c (mono_ldtoken): Don't pass the generic context to
2324         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2325
2326 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2327
2328         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2329         and later freeing it. Fixes #78638.
2330
2331 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2332
2333         * icall.c (mono_class_get_throw): Revert over-zealous error
2334         throwing, the caller for mono_class_get_throw will cope with
2335         errors when classes are not properly initialized already.
2336
2337         The code still copes with loader exceptions though.
2338
2339         Fixes the regression in reftype1 and reftype3 from the CAS tests.
2340         
2341 2006-06-14  Miguel de Icaza  <miguel@novell.com>
2342
2343         Fixes the `make run1' version of RuntimeAbort (to be commited,
2344         source is in Bugzilla).
2345         
2346         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
2347         FALSE on class loading failure instead of returning true.
2348
2349         * class.c (mono_class_create_from_typedef): It is possible for
2350         mono_metadata_interfaces_from_typedef_full to fail if a class is
2351         not found, cope with this.
2352         
2353
2354 2006-06-14  Dick Porter  <dick@ximian.com>
2355
2356         * socket-io.c: 
2357         * process.c: Fix a bunch of signed/unsigned warnings from gcc
2358         4.1.1
2359
2360 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
2361
2362         * culture-info-table.h : oops, forgot to make it nsync with r61548.
2363
2364 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2365
2366         * icall.c: Another fix for building mono in Visual Studio.
2367
2368 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2369
2370         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
2371         
2372 2006-06-09  Martin Baulig  <martin@ximian.com>
2373
2374         * debug-mono-symfile.c: Put this back and really fix it this
2375         time. Sorry for all the trouble.
2376
2377 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
2378
2379         * icall.c (mono_class_get_throw): Fix a warning.
2380         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
2381         ReflectionTypeLoadException if needed. Fixes #78606.
2382
2383         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
2384         (mono_class_init): Ditto.
2385
2386         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
2387         ref_only exceptions.
2388         (mono_loader_clear_error): Make this work even if there is no error.
2389
2390 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
2391
2392         * object-internals.h marshal.c marshal.h icall.c: Implement method 
2393         Marshal.GetComSlotForMethodInfo using internal call.
2394
2395 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
2396
2397         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
2398         a function for signalling it.
2399
2400         * class.c (mono_class_from_typeref): Use the new kind of loader error when
2401         a referenced assembly is not found.
2402
2403         * loader.c (mono_loader_error_prepare_exception): Add support for 
2404         LOADER_ERROR_ASSEMBLY. Fix formatting.
2405
2406 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2407
2408         * domain.c appdomain.c class-internals.h marshal.c: Add support 
2409         for VARIANT marshalling on windows and increment corlib version
2410         since Variant struct was added.
2411
2412 2006-06-03  Miguel de Icaza  <miguel@novell.com>
2413
2414         * debug-mono-symfile.c: Revert Martin's previous patch which broke
2415         stack trace line information:
2416
2417         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
2418         (Martin) when looking up B which is between A and C, return A not C.
2419
2420         Bug is #78573.
2421
2422         Thanks to Alexander Olk for tracking this down.
2423
2424 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
2425
2426         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
2427         
2428         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
2429         avoid clobbering its value.
2430         (mono_string_to_lpstr): Fix a warning on windows.
2431
2432 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2433
2434         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
2435
2436         * reflection.c loader.c: Removed references to 'dummy' flag.
2437
2438         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
2439
2440         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
2441         it gets GC tracking.
2442
2443         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
2444         GC tracking.
2445         
2446         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
2447
2448         * marshal.c threadpool.c: Update callers of mono_async_result_new.
2449
2450         * appdomain.c: Bump corlib version.
2451
2452 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2453
2454         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2455         CEE_STIND_REF when working with object references.
2456
2457 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2458
2459         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
2460         Fixes #78539.
2461
2462 2006-05-30  Miguel de Icaza  <miguel@novell.com>
2463
2464         * loader.c (method_from_memberref): Fix argument value for
2465         mono_loader_set_error_method_load (I was passing the MonoClass
2466         instead of the class name char *).
2467
2468 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2469
2470         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2471         CEE_STIND_REF when working with object references.
2472
2473 2006-05-30  Martin Baulig  <martin@ximian.com>
2474
2475         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2476         mono_method_full_name() change and replace the ':' with a '.'
2477         here.
2478
2479 2006-05-30  Martin Baulig  <martin@ximian.com>
2480
2481         * debug-mono-symfile.c
2482         (mono_debug_symfile_lookup_location): Fix the algorithm:
2483         when looking up B which is between A and C, return A not C.
2484
2485 2006-05-29  Martin Baulig  <martin@ximian.com>
2486
2487         * mono-debug.h
2488         (MonoDebugMethodInfo): Make the typedef public.
2489         (MonoDebugSourceLocation): New public struct.
2490
2491         * mono-debug.c
2492         (mono_debug_source_location_from_address): Removed.
2493         (mono_debug_source_location_from_il_offset): Removed.
2494         (mono_debug_il_offset_from_address): Removed.
2495         (mono_debug_address_from_il_offset): Removed.
2496         (mono_debug_lookup_method): New public function.
2497         (mono_debug_lookup_source_location): New public function; replaces
2498         the old mono_debug_source_location_from_*() functions; see the
2499         inline documentation.
2500         (mono_debug_free_source_location): New public function.
2501         (mono_debug_print_stack_frame): New public function; see the
2502         inline documentation.
2503
2504         * debug-mono-symfile.c
2505         (mono_debug_find_source_location): Renamed into
2506         mono_debug_symfile_lookup_location(); only take a
2507         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2508         documentation.
2509         (mono_debug_find_method): Renamed into
2510         mono_debug_symfile_lookup_method().
2511
2512 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2513
2514         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2515         returned by mono_image_open_full ().
2516
2517         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2518         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2519         #78517.
2520
2521         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2522         #78518.
2523
2524 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2525
2526         * class.c (mono_class_from_typeref): handle missing images
2527         earlier, deals with bug #78418.   Refactor code; 
2528
2529         Fix a warning introduced in my previous commit (some stale code
2530         from before I revisited my patch).
2531
2532         * class.c (mono_class_create_from_typedef): On failure, remove the
2533         class from the MonoImage->class_cache as the class is not
2534         initialized;   Fixes the leak pointed out by Paolo.
2535
2536 2006-05-25  Dick Porter  <dick@ximian.com>
2537
2538         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2539         DeleteCriticalSections until I figure out which one may still be
2540         sometimes locked when mono_thread_cleanup is called.
2541
2542 2006-05-24  Dick Porter  <dick@ximian.com>
2543
2544         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2545         of mono_thread_manage and back into its own function, so it can be
2546         called after the finalizer thread has finished.
2547
2548         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2549
2550 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2551
2552         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2553         Fixes #78495.
2554
2555         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2556         with non-blittable elements.
2557         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2558
2559 2006-05-24  Martin Baulig  <martin@ximian.com>
2560
2561         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2562         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2563
2564         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2565         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2566         `mono_debugger_event_handler' to NULL.
2567
2568 2006-05-24  Martin Baulig  <martin@ximian.com>
2569
2570         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2571
2572 2006-05-24  Martin Baulig  <martin@ximian.com>
2573
2574         * mono-debug-debugger.h
2575         (mono_debugger_create_notification_function): Added
2576         `MonoCodeManager *' argument.
2577
2578 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2579
2580         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2581
2582 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2583
2584         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2585         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2586         implementation.
2587
2588 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2589
2590         * icall.c: precise GC support: objects can't be stored in unmanaged
2591         memory anymore, even if they are kept alive by other references: since
2592         they can move the GC needs to be able to always find them.
2593
2594 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2595
2596         * object.c: precise GC support for static fields. Support
2597         for moving GCs: write barriers and pinned allocation for interned
2598         strings.
2599
2600 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2601
2602         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2603         structure.
2604
2605 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2606
2607         * class.c, gc.c: sgen and precise GC updates.
2608
2609 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2610
2611         * marshal.h, marshal.c: added write barrier wrapper and precise type
2612         fixes.
2613
2614 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2615
2616         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2617         support.
2618
2619 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2620
2621         * reflection.c: precise and sgen GC updates.
2622
2623 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2624
2625         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2626
2627 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2628
2629         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2630
2631 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2632
2633         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2634         MONO_TYPE_OBJECT. Fixes #78462.
2635
2636 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2637
2638         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2639         and blittable types.
2640
2641 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2642
2643         * class.c (mono_class_get_exception_for_failure): Implement parts
2644         of a TODO: if the loader error is set (instead of the class
2645         error), we return a Loader exception that can be properly thrown
2646         elsewhere.
2647
2648         This was exposed by some Winforms 2.0 code that I tried to run
2649         (Atsushi pointed me to it).
2650
2651 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2652
2653         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2654         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2655         
2656         * marshal.c (emit_marshal_vtype): Add limited support for 
2657         UnmanagedType.LPStruct. Fixes #78427.
2658
2659         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2660         Applied a patch from kangaroo to fix #77523.
2661
2662 2006-05-17  Martin Baulig  <martin@ximian.com>
2663
2664         * threads.c
2665         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2666         (debugger_thread_created): Removed.
2667         (debugger_thread_exited): Removed.
2668
2669 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2670
2671         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2672
2673         * object-internals.h (MonoReflectionResource): Sync with managed version.
2674
2675 2006-05-12  Wade Berrier <wberrier@novell.com>
2676
2677         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2678
2679 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2680
2681         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2682         functions try to allocate from the image mempool.
2683
2684 2006-05-12  Dick Porter  <dick@ximian.com>
2685
2686         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2687
2688 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2689
2690         * object.c: The FieldGetter and FieldSetter methods require the full
2691         name of the class, not only the name. Fixes bug #78277.
2692
2693 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2694
2695         * loader.c (method_from_memberref): Do not pass the NULL klass to
2696         mono_loader_set_error_() methods.  Pass the non-NULL value
2697         (class). 
2698
2699 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2700
2701         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2702         (mono_assembly_close): Null out assembly->image->references after freeing it.
2703
2704         * image.c (mono_image_close): Free image->references.
2705         
2706         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2707
2708 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2709
2710         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2711         before checking if it's NULL (g_assert).
2712
2713 2006-05-10  Martin Baulig  <martin@ximian.com>
2714
2715         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2716         I thought I already killed that two months ago, but now it somehow reappeared.
2717
2718 2006-05-10  Martin Baulig  <martin@ximian.com>
2719
2720         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2721
2722 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2723
2724         * reflection.c: Allocate memory for dynamically created methods in the image
2725         mempools.
2726
2727 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2728
2729         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2730         don't use the ad pointer before checking if it's NULL (g_assert).
2731
2732 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2733
2734         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2735         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2736
2737         * marshal.c: Allocate all signatures from mempools.
2738
2739         * marshal.c: Allocate some more signatures from mempools.
2740
2741 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2742
2743         * object.c (mono_load_remote_field): The code used to provide a
2744         temporary variable for returning results if the user did not
2745         provide a result pointer.  But our temporary variable was allocted
2746         on the satck.
2747
2748         Fix calling code to always pass a result area.   Coverity ID 103.
2749
2750 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2751
2752         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2753         value, not the old. Fixes #78312.
2754         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2755
2756         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2757         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2758         per-image cache.
2759
2760         * assembly.c (mono_assembly_close): Free image->references.
2761
2762         * assembly.c (mono_assembly_names_equal): Fix a warning.
2763         (mono_assemblies_cleanup): Cleanup more global data.
2764
2765         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2766
2767         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2768         ptr_cache and image->modules.
2769
2770         * image.c (mono_image_init): Allocate array_cache lazily.
2771         
2772 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2773
2774         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2775         behavior was changed recently and has bad side effects.
2776
2777 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2778
2779         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2780         
2781         * assembly.c (mono_assembly_close): Remove a debug printf.
2782
2783         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2784
2785         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2786         to also allow for temporary references between mono_image_open ()/close ().
2787
2788         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2789
2790 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2791
2792         * marshal.c: Fix support for dynamic methods.
2793
2794         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2795
2796         * marshal.c (mono_marshal_cleanup): New cleanup function.
2797
2798         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2799         image mempools.
2800
2801         * class.c (mono_class_init): Fix leaking class->nested_classes.
2802
2803         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2804
2805         * image.c (mono_image_init): Initialize the new cashes.
2806
2807         * image.c (mono_image_close): Destroy the new cashes.
2808
2809         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2810
2811         * mempool.c (mono_mempool_strdup): New helper function.
2812
2813         * class-internals.h: Add prototype for mono_loader_unlock ().
2814
2815         * domain.c (mono_jit_info_table_find): Fix a warning.
2816         (mono_debugger_check_runtime_version): Ditto.
2817
2818         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2819         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2820         functions to these modules.
2821
2822         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2823         metadata modules.
2824         
2825         * marshal.c (mono_free_bstr): Fix a warning.
2826
2827         * assembly.c (mono_assembly_open_full): Fix another small leak.
2828
2829         * object.c: Fix some unload leaks in the remoting code.
2830
2831         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2832         function.
2833
2834         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2835
2836         * reflection.c: Fix some unload leaks in dynamic assemblies.
2837
2838 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2839
2840         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2841         * marshal.h: Add BSTR support on Win32
2842         * icall.c: Add BSTR icalls
2843         * metadata.h: Add BSTR enums
2844
2845 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2846
2847         Work to catch the crash from #76795 and turn it into an
2848         exception.   As I stubbed out pieces of the VisualBasic support,
2849         I found a number of places where the code was failing and I added
2850         checks to those places. 
2851         
2852         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2853         function return a status code.  If we fail to parse the signature
2854         from mono_metadata_parse_generic_inst, return FALSE.
2855
2856         * loader.c (mono_get_method_from_token): If we fail to load the
2857         method (mono_class_get) return NULL.   
2858
2859         * (method_from_memberref): Return NULL if we are unable to parse
2860         the method signature
2861
2862         (mono_loader_error_prepare_exception): Since we now use the
2863         loader_error flag internally to stop processing, and obtaining
2864         exceptions that might be thrown will walk this code path the
2865         proper way of going from a MonoLoaderError into a
2866         MonoException was convoluted.   This new routine encapsulates the
2867         process of turning the error into an exception and *clearing* the
2868         error afterwards.
2869         
2870 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2871
2872         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2873         with missing assemblies), and to cope with:
2874
2875                 * Missing fieldref from a non-existing assembly.
2876                 * Missing methodref from a non-existing assembly.
2877
2878         The first batch of work to address *some* of the issues from 76661.
2879         
2880         * object.c (mono_class_create_runtime_vtable): If we fail to
2881         initialize the class raise the exception here. 
2882
2883         * metadata.c (mono_class_get_overrides_full): If any methods fail
2884         to load return the failure to the caller.
2885
2886         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2887         flagging assemblies that failed to load.   
2888
2889         Do not crash if we are unable to load the assembly.
2890
2891         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2892         assemblies. 
2893
2894         * loader.c (mono_loader_set_error_type_load): Change the
2895         convention to always pass unallocated strings, so we make our own
2896         copies (I know our own code had duplicated strings before, but
2897         this keeps the normal conventions).
2898         (method_from_memberref): Call mono_loader_set_error_method_load
2899         for all possible failures of loading the class. 
2900         Remove assert, turn into a loader error.
2901
2902         (mono_loader_error_to_exception): Move this routine from mini
2903         (mini_loader_error_to_exception) there was no need to have that in
2904         mini. 
2905
2906         * class.c (mono_class_from_typeref): If we were not able to load
2907         the assembly with mono_assembly_load_reference, call the
2908         mono_loader_set_error_type_load to register the problem.
2909
2910         (mono_class_setup_fields): If we fail to load the type from
2911         mono_metadata_parse_type_full, call mono_class_set_failure and
2912         break from the loop.
2913
2914         If class->exception_type is set, we do not layout the fields as
2915         that might crash the runtime, and instead return (from breaking
2916         from the previous loop).
2917
2918         (mono_class_setup_vtable): This now returns a boolean indicating
2919         whether the table was properly setup.   The decision is driven by
2920         mono_class_get_overrides_full which might run into non-existing
2921         methods. 
2922         
2923         (mono_class_init): Returns TRUE on success or FALSE if there was a
2924         problem in loading the type (incorrect assemblies, missing
2925         assemblies, methods, etc).
2926
2927         When we call mono_class_setup_fields we also check for a potential
2928         error inside this call (either a class exception or a general
2929         loader exception).
2930
2931         (mono_class_create_from_typedef): If the parent fails to load
2932         (calling mono_class_get_full) return NULL.
2933         
2934         ** Important **
2935
2936         calls to mono_metadata_parse_type_full should be checked
2937         everywhere and set the mono_class_set_failure
2938         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2939
2940         The current patch checks the places where my manually constructed
2941         tests show the errors are showing up, but we should do it
2942         everywhere. 
2943
2944         ** Important2 **
2945
2946         mono_class_init return values should be tested everywhere, like
2947         the previous case this is something that we should audit
2948         everywhere and not only on the cases exposed by the tests I
2949         created. 
2950
2951 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2952
2953         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2954         boolean parameter and instead pass the information on `options'
2955         parameter (FileOptions).
2956
2957         * icall.c: Register the new signature for MonoIO.Open.
2958
2959         * debug-helpers.c (dis_one): Trying to understand how coverity
2960         works.  Fix Run 5, item 78.
2961
2962 2006-04-26  Dick Porter  <dick@ximian.com>
2963
2964         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2965         dereference.
2966
2967 2006-04-25  Martin Baulig  <martin@ximian.com>
2968
2969         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2970
2971         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2972         debugger_thread_created().
2973         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2974         special way.
2975         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
2976         (mono_debugger_finalize_threads): New function; undo the effects
2977         of mono_debugger_init_threads().
2978         (mono_debugger_create_all_threads): Removed.
2979
2980 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
2981
2982         * image.c (mono_image_close): Tidy up trace messages.
2983
2984         * assembly.c (mono_assembly_close): Ditto.
2985
2986         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
2987         no longer references an already freed assembly. Fixes #78168.
2988
2989 2006-04-21  Dick Porter  <dick@ximian.com>
2990
2991         * threads.c (mono_thread_detach): Fix reference counting when
2992         detaching threads.
2993
2994 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
2995
2996         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
2997         #78155.
2998
2999 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3000
3001         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3002         (mono_type_to_stind): Ditto.
3003
3004         * marshal.c: Use the new helper functions to simplify code.
3005
3006         * image.c (mono_image_close): Add some code for help debug assembly unloading
3007         problems.
3008
3009         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3010         image mempool.
3011
3012         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3013         assembly was already loaded in another appdomain. Fixes #78083.
3014
3015 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3018         referenced assemblies.
3019         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3020
3021         * domain.c (mono_domain_free): Add a trace message.
3022
3023         * appdomain.c (add_assemblies_to_domain): Ditto.        
3024
3025         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3026         field.  
3027
3028 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3029
3030         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3031
3032 2006-04-12  Martin Baulig  <martin@ximian.com>
3033
3034         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3035         `USE_INCLUDED_LIBGC'.   
3036
3037 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3038
3039         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3040         the patch contains ../ and a small directory name later. Hopefully fixes
3041         #78035.
3042
3043 2006-04-10  Martin Baulig  <martin@ximian.com>
3044
3045         Clean up the debugger's thread-handling code.
3046
3047         The debugger's thread-handling code has been moved from
3048         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3049         over the `threads' hash, keep track of exiting threads and also
3050         use proper locking.
3051
3052         We can now debug XSP and XSP based applications with the debugger.
3053
3054         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3055
3056         * threads.h
3057         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3058         (mono_install_thread_callbacks): Likewise.      
3059
3060         * threads.c (mono_thread_callbacks): Removed.
3061         (debugger_thread_created, debugger_thread_exited): New static functions.
3062         (start_wrapper): Call debugger_thread_created().
3063         (thread_cleanup): Call debugger_thread_exited().
3064         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3065         (mono_debugger_init_threads): New public function.
3066         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3067         iterate directly over the `threads' hash and also use proper locking.
3068
3069         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3070
3071         * mono-debug-debugger.h
3072         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3073
3074 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3075
3076         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3077         argument type=array. Fixes #78057.
3078
3079 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3080
3081         * culture-info-table.h : regenerated. Fixed bug #69652.
3082
3083 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3084
3085         * loader.c metadata.c: Reapply a variant r59116.
3086         
3087         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3088
3089         * class.c (mono_class_setup_interface_offsets): New internal function.
3090
3091         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3092         interfaces too. Fixes #77398.
3093
3094         * reflection.c (encode_cattr_value): Add support for 
3095         parameter type=object, argument type=array.
3096         (load_cattr_value): Ditto. Fixes #77916.
3097
3098         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3099         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3100
3101         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3102         a byval char array and CharSet is Ansi.
3103
3104         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3105
3106 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3107
3108         * metadata.c: Add some locking comments.
3109         
3110         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3111         mempool.
3112         (mono_metadata_free_method_signature): Don't free the signature itself.
3113
3114         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3115
3116         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3117         reference the same MonoImage.
3118         (mono_assembly_load_from_full): Add an assert.
3119
3120 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3121
3122         * image.c (mono_image_close): Don't put the image we are about to free into the
3123         loaded_images_guid_hash.
3124
3125         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3126         to reduce code duplication.
3127
3128         * marshal.c: Register the native functions called by this module as icalls, to
3129         somewhat centralize the creation of MonoMethodSignature's.
3130
3131         * loader.c (mono_method_signature): Add a cache for method signatures.
3132
3133         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3134         the parameter attributes of a method.
3135         (mono_metadata_parse_method_signature_full): Refactored the computation of
3136         parameter attributes into a separate function. Also avoid one allocation in
3137         most cases.
3138
3139         * assembly.c (mono_assembly_close): Ditto.
3140
3141         * image.c (mono_image_close): Log trace messages with INFO level.
3142
3143         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3144
3145         * image.c reflection.c: Correct reference counting of image modules.
3146         
3147         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3148         of this function from the image mempool.
3149         
3150         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3151         to allow more cached types to be used.
3152
3153         * mono-debug.c (mono_debug_add_method): Appled patch from
3154         David S. Miller  <davem@sunset.davemloft.net>: Access 
3155         minfo->lexical_blocks[] entry elements using read32().
3156
3157 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3158
3159         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3160         methods as it is allocated from the mempool.
3161
3162         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3163         image mempool.
3164
3165         * metadata-internals.h: Add comments describing the reference counting scheme
3166         used for MonoImage and MonoAssembly.
3167
3168         * image.c assembly.c reflection.c: Rework reference counting of images and 
3169         assemblies so they are freed when the runtime is shut down. Free some 
3170         additional memory structures when an image is unloaded.
3171         
3172 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3173
3174         * class.c loader.c reflection.c: Allocate more data structures in
3175         the image mempool.
3176
3177 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3178
3179         * icall.c
3180         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3181         build on pre glib 2.4 systems.
3182
3183 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3184
3185         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3186
3187         * icall.c: Fix some warnings.
3188
3189 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3190
3191         * culture-info-table.h : regenerated.
3192
3193 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3194
3195         * threads.c, object-internals.h, verify.c: changed the culture caching
3196         code to use a normal MonoArray for storage so the GC can keep track of
3197         them easily. Fixed bits of the cache logic, too and simplified the
3198         code.
3199
3200 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3201
3202         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3203         thread for non-Boehm GCs.
3204
3205 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3206
3207         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3208         needed to keep track of the data for static fields.
3209
3210 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3211
3212         Fix #75172
3213         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3214         for interface classes.  Use 'num_methods' instead.
3215         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3216         before using '->vtable_size' field.
3217
3218 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3219
3220         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3221         doesn't contain managed pointers, so use a normal hashtable.
3222
3223 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3224
3225         * reflection.c, class-internals.h, domain.c: fixed handling of types
3226         used as values for objects in custom attributes (bug #77915):
3227
3228 2006-03-24  Martin Baulig  <martin@ximian.com>
3229
3230         * class.c (mono_class_setup_fields): Added support for generic
3231         instances; fixes #77580.
3232
3233 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3234
3235         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3236
3237 2006-03-24  Dick Porter  <dick@ximian.com>
3238
3239         * file-io.c (get_file_attributes): More stat macro breakage.
3240         Fixes bug 77759.
3241
3242 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3243
3244         * profiler.c: added the file=filename option in the default profiler
3245         to output the profile data to filename.
3246
3247 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3248
3249         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3250         bug #77877.
3251
3252 2006-03-22  Martin Baulig  <martin@ximian.com>
3253
3254         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3255         allocated `MonoClassField *' in `fb->handle'.
3256
3257 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3258
3259         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3260         allocate interface ID to save memory and allow better ID reuse on
3261         appdomain unload. setup_generic_vtable () removal from Martin.
3262
3263 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3264
3265         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3266         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3267         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3268         write barriers for reference stores with managed objects accessed with
3269         C structures in the runtime and in embedding programs.
3270
3271 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3272
3273         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3274         'interface_id' and 'max_interface_id' fields of MonoClasses
3275         representing open generic types.
3276
3277 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3278
3279         * object.h, object.c, icall.c: added functions to deal with
3280         storing valuetypes that contain references in managed objects.
3281         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3282         fixes and comments around uses of mono_array_addr ().
3283
3284 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3285
3286         * object.h, icall.c, monitor.c: object.GetHashCode ()
3287         implementation that supports the moving garbage collector.
3288
3289 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3290
3291         * icall.c, threads-types.h, threads.c: implemented finalizer for
3292         LocalDataStoreSlot.
3293
3294 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3295
3296         * metadata.c (mono_type_size): Add a fixme.
3297         (mono_type_stack_size): Ditto.
3298
3299         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3300         'type_forwarders' field.
3301
3302         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3303         attribute from net 2.0.
3304
3305         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3306         from class.c.
3307
3308         * class.c (mono_class_setup_fields): Fix a warning.
3309         
3310         * class.c (mono_class_from_name): Add support for assemblyref entries
3311         in the EXPORTEDTYPE table.
3312
3313         * reflection.c: Add support for handling type forwarders under net 2.0.
3314
3315         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3316         
3317 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3318
3319         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3320         overwriting entries in ModuleBuild->types, also clean up the code
3321         a little. Fixes #77774.
3322
3323 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3324
3325         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3326         load friend assembly info when present.
3327
3328 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3329
3330         Fix crasher on gtest-158.cs.
3331         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3332         the return value if the MonoClass we want is yet in an
3333         inconsistent state.
3334         * class.c (mono_class_create_from_typedef): Add an comment
3335         explaining an order dependency between mono_class_setup_parent and
3336         mono_class_setup_mono_type.
3337
3338 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
3339
3340         * class.c: documentation updates and events bug fix.
3341
3342 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3343
3344         * class.c: some cleanup, locking fixes.
3345
3346 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3347
3348         * class.c: fix the generics code to setup nested
3349         type info to the instantiated type (bug #77770).
3350
3351 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3352
3353         * marshal.c: fixed a few type correctness issues.
3354
3355 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3356
3357         * loader.c: the Set/Get/Addrtess array methods should be public.
3358
3359 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3360
3361         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
3362         
3363         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
3364         info->wrapper.
3365
3366 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
3369
3370         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
3371
3372         * mempool.c (mono_mempool_alloc): Speed this up a bit.
3373         (mono_mempool_alloc0): Ditto.
3374
3375 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3376
3377         * socket-io.c:
3378         (create_object_from_sockaddr): it was allocating 4 extra bytes
3379         for the AF_UNIX data. Fixes bug #77747.
3380
3381 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3382
3383         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
3384
3385 2006-03-09  Dick Porter  <dick@ximian.com>
3386
3387         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
3388         Fixes bug 76966 again.
3389
3390 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3391
3392         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
3393         names from r57532
3394         * appdomain.c: Bumped corlib version to 48 (due to r57532)
3395
3396 2006-03-07  Martin Baulig  <martin@ximian.com>
3397
3398         * object.c
3399         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
3400
3401 2006-03-07  Martin Baulig  <martin@ximian.com>
3402
3403         * class.c
3404         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
3405         regression introduced in r56970; see gtest-252.cs.
3406
3407         * loader.c (mono_get_method_constrained): Correctly handle generic
3408         methods; see gtest-253.cs.
3409
3410 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3411
3412         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
3413
3414 2006-03-04  Martin Baulig  <martin@ximian.com>
3415
3416         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
3417         compute the parent type at runtime, just like we're already doing
3418         it for interfaces.
3419
3420         * reflection.c
3421         (mono_reflection_bind_generic_parameters): Don't compute the
3422         parent type anymore.
3423
3424         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
3425
3426 2006-03-04  Martin Baulig  <martin@ximian.com>
3427
3428         * mono-debug-debugger.h
3429         (mono_debugger_create_notification_function): Allocate memory at
3430         runtime and return a pointer to it.
3431
3432 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
3433
3434         * assembly.c: Fix windows build.
3435         
3436         * assembly.c: Fix build.
3437
3438         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
3439
3440         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
3441         
3442 2006-03-03  Dick Porter  <dick@ximian.com>
3443
3444         * process.c
3445         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3446         Check parameters before dereferencing them.  Fixes Aaron's part of
3447         bug 77393.
3448
3449 2006-03-03  Raja R Harinath  <rharinath@novell.com>
3450
3451         Fix performance regression.
3452         * loader.c (find_method_in_class): Add 'from_class' argument.
3453         Rename 'klass' argument to 'in_class'.  The signature is compared
3454         against the method in 'in_class', and the corresponding method is
3455         returned from 'from_class'.
3456         (find_method): Walk both 'in_class' and 'from_class' in parallel.
3457         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
3458         type definition and generic instantiation in parallel.
3459         (mono_get_method_constrained): Update to changes.
3460
3461 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3462
3463         * threads.c: make sure the domain is correct, too when doing
3464         mono_thread_attach ().
3465
3466 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
3469         windows. Fixes #77683.
3470
3471 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3472
3473         * object.h, *: introduced specific way to set elements of an array
3474         of references to be used as write barrier. Still need to audit the
3475         uses of mono_array_addr.
3476
3477 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3478
3479         * object-internals.h: New field to cache the assmebly name, patch
3480         from Tambet Ingo (tambet@ximian.com)
3481
3482 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3483
3484         * decimal.h, class-internals.h, metadata-internals.h,
3485         file-io.h: mark a few function declarations as internal, to
3486         reduce the number of PLT entries.
3487
3488 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3489
3490         * file-io.c: fix typo in warning message.
3491
3492 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3493
3494         * loader.c: on unix, lookup the "*A" version of a function
3495         if charset is auto as a second option before failing.
3496
3497 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3498
3499         * class.h (mono_class_inflate_generic_method): Revert to two
3500         argument version.
3501         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3502         (mono_class_inflate_generic_method_full): Add.
3503         * class.c (mono_class_inflate_generic_method_full): Rename from
3504         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3505         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3506         * loader.c, reflection.c: Update to changes.
3507
3508 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3509
3510         * icall.c: const fixes and small improvements.
3511
3512 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3513
3514         * threadpool.c: for asynchronous connect(), enable the same workaround
3515         for BSD 6 as for the Mac. Fixes bug #77637.
3516
3517 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3518
3519         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3520         formatted classes. Fixes #77524.
3521
3522 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3523
3524         * class.c (inflate_generic_type): Add a couple more
3525         micro-optimizations.
3526         (inflate_generic_context): Don't use the 'gmethod' from
3527         'inflate_with'.
3528         (mono_class_inflate_generic_method): If the method has generic
3529         parameters, but the passed-in context doesn't have a 'gmethod',
3530         create one.  Use the possibly simplified generic instantiation
3531         from the declaring class instead of the one passed in.
3532
3533 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3534
3535         Make generic method signature and method header handling lazy.
3536         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3537         (inflate_generic_header): Likewise.
3538         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3539         parameter to avoid inflating types.
3540         (mono_get_inflated_method): Empty out.
3541         * class.h (mono_class_inflate_generic_method): Update to changes.
3542         * loader.c (mono_get_method_from_token): Don't parse signature for
3543         generic methods, nor methods of generic classes.
3544         (mono_method_signature): Rename from 'mono_method_signature'.
3545         Inflate signature on demand.
3546         (mono_method_get_header): Inflate method header on demand.
3547         * reflection.c: Update to changes.
3548
3549 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3550
3551         * metadata.c (mono_metadata_inflate_generic_inst): If the
3552         instantiation is closed, don't bother expanding it in the new
3553         context.
3554         * class.c (inflate_generic_class): If the generic instantiation
3555         doesn't change after inflation, return the argument itself.
3556         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3557         Add bounds checks.
3558         (inflate_generic_context): If neither the generic class nor the
3559         generic method instantiations change, return the original context.
3560         * reflection.c (mono_method_get_object): Do
3561         'mono_get_inflated_method' before accessing the ->klass field.
3562         (inflate_mono_method): Don't create a MonoGenericMethod unless
3563         necessary.
3564         (inflate_method): Don't pass a constructed type as the declaring
3565         type of a methodbuilder.
3566
3567 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3568
3569         * object.c: fix memory overwrite.
3570
3571 2006-02-22  Dick Porter  <dick@ximian.com>
3572
3573         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3574         it doesn't work any more.
3575         (mono_threads_request_thread_dump): Fix unused variable warnings.
3576
3577 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3578
3579         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3580         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3581         the public header file.
3582
3583 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3584
3585         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3586
3587 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3588
3589         * class-internals.h, object.c: reduce the size of MonoVTable
3590         and store the interface_offsets array at negative offsets.
3591
3592 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3593
3594         * metadata.c: tweak table descriptors data structures to reduce
3595         size and runtime relocations.
3596
3597 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3598
3599         * marshal.c: fix some types and opcodes to be type-safe
3600         in marshaling wrappers.
3601
3602 2006-02-21  Ankit Jain  <jankit@novell.com>
3603
3604         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3605
3606 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3607
3608         * metadata.c (get_constraints): Relax debugging checks for monodis.
3609
3610 2006-02-21  Ankit Jain  <jankit@novell.com>
3611
3612         * metadata.c (mono_metadata_load_generic_params): Move the code
3613         checking for ambiguous generic params from here to mono/dis/get.c
3614         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3615
3616 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3617
3618         Fix assertion triggered when compiling nemerle.
3619         * class.c (mono_get_shared_generic_inst): Rename from
3620         get_shared_inst and make non-static.
3621         * loader.c (mono_get_shared_generic_method): New.  Used to create
3622         the MonoGenericContext-equivalent of a MonoGenericContainer.
3623         (mono_get_method_from_token): Initialize the 'context' field of
3624         the created MonoGenericContainer.
3625         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3626         * metadata.c (get_constraints): Add sanity check.
3627         * class-internals.h: Add new internal methods.
3628
3629         * reflection.c (verify_safe_for_managed_space): New sanity check.
3630         Currently checks that owner-less generic parameters aren't allowed
3631         in managed space.
3632         (mono_type_get_object): Use it.
3633         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3634         that are now in mono_type_get_object.
3635         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3636
3637 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3638
3639         * metadata.c (mono_type_create_from_typespec): Rename from
3640         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3641         argument and caching of types in the generic container.
3642         (unwrap_arrays, find_generic_param): Remove.
3643         * metadata-internals.h: Update.
3644         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3645
3646 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3647
3648         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3649
3650         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3651         return values. Fixes #77581.
3652
3653         * class.c (mono_fnptr_class_get): Switch name and name_space.
3654
3655         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3656         classes and add support for [In, Out] attributes.
3657         (mono_marshal_free_asany): Ditto. Fixes #77524.
3658
3659 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3660
3661         * class.c (mono_class_from_generic_parameter): Make more robust to
3662         incomplete MonoGenericContainers from monodis.
3663
3664 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3665
3666         * class-internals.h: added some more exception types.
3667         * class.c, metadata.c: added a few checks to handle missing
3668         types.
3669
3670 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3671
3672         Use owner-less generic-params some more.
3673         * class.c (my_mono_class_from_generic_parameter): Remove.
3674         (mono_class_from_generic_parameter): Handle null image,
3675         param->name and param->owner.
3676         (mono_class_from_mono_type): Update.
3677         (mono_class_create_from_typespec): Remove 'container' parameter.
3678         If that parameter is non-null, the result is always inflated by
3679         'mono_class_get_full' anyway.
3680         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3681         parameter.
3682         (mono_class_get_full): Update.
3683
3684         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3685         instance is not open, don't bother inflating.
3686         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3687         parse metadata for inflated classes.
3688         (_mono_class_get): Change GenericContext* parameter to
3689         GenericContainer*.
3690         (mono_class_create_from_typespec): Likewise.  Simplify, and
3691         implement trivially.  All the cases are handled in
3692         mono_class_from_mono_type.  Don't inflate returned class.
3693         (mono_class_get_full): Delegate GENERICINST optimization to
3694         inflate_generic_type.
3695         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3696
3697 2006-02-16  Dick Porter  <dick@ximian.com>
3698
3699         * socket-io.c (create_object_from_sockaddr): Fix typo.
3700         (create_sockaddr_from_object): Check array lengths before
3701         potentially accessing items off the end.
3702         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3703         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3704         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3705         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3706         length checks to avoid wraparound overflows.
3707         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3708         contents of the array of sockets
3709         (hostent_to_IPHostEntry2)
3710         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3711         Check return value of inet_ntop ().
3712         (addrinfo_to_IPHostEntry): Fix typo
3713
3714 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3715
3716         Type metadata parsing doesn't use generic-instantiation information.
3717         * metadata.c (mono_metadata_parse_array_full): Change
3718         MonoGenericContext* parameter to MonoGenericContainer*.
3719         (mono_metadata_parse_type_full): Likewise.
3720         (mono_type_create_from_typespec_full): Likewise.
3721         (mono_metadata_parse_mh_full): Likewise.
3722         (mono_metadata_parse_generic_inst): Likewise.
3723         (do_mono_metadata_parse_generic_class): Likewise.
3724         (do_mono_metadata_parse_type): Likewise.
3725         * metadata-internals.h: Update to changes.
3726         * class.c (mono_class_find_enum_basetype): Likewise.
3727         (mono_class_setup_fields): Likewise.
3728         (mono_class_create_from_typespec): Likewise.
3729         * loader.c (method_from_methodspec): Likewise.
3730         (mono_get_method_from_token): Likewise.
3731         (mono_method_get_header): Likewise.
3732
3733 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3734
3735         * marshal.c: handle additional GENERICINST case (patch from
3736         Thong Nguyen <tum@veridicus.com>).
3737         Fix a few cases where LDIND_I/STIND_I was used for references.
3738
3739 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3740
3741         * reflection.c (mono_reflection_get_token): Remove unused variable.
3742
3743 2006-02-16  Martin Baulig  <martin@ximian.com>
3744
3745         * reflection.c (mono_reflection_get_token): Add support for fields
3746         in instantiated generic types.
3747
3748         * icall.c
3749         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3750
3751 2006-02-15  Martin Baulig  <martin@ximian.com>
3752
3753         * icall.c
3754         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3755         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3756         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3757         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3758
3759 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3760
3761         * class.c, metadata.c, metadata.h, object.c, icall.c,
3762         marshal.c: changed mono_type_get_underlying_type () to do
3763         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3764         Fixed handling of instantiated generic valuetypes (bug #75479).
3765
3766 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3767
3768         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3769         Delegate to mono_metadata_decode_value, and work on the returned value.
3770
3771         * icall.c (ves_icall_MonoType_GetGenericArguments):
3772         Add consistency check here too.
3773         
3774 2006-02-15  Ankit Jain  <jankit@novell.com>
3775
3776         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3777         char/short etc.
3778
3779 2006-02-15  Ankit Jain  <jankit@novell.com>
3780
3781         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3782         signed values, used only for representing lower bounds of arrays.
3783         (mono_metadata_parse_array_full): Use new
3784         mono_metadata_decode_signed_value to decode lower bounds.
3785
3786 2006-02-14  Martin Baulig  <martin@ximian.com>
3787
3788         * reflection.c
3789         (mono_reflection_get_token): Support "MonoGenericMethod" and
3790         "MonoGenericCMethod" and allow generic instances / methods.
3791
3792 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3793
3794         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3795         to obtain the terminal size using an ioctl.
3796
3797         * object.c (mono_nullable_init): Revert this as nullable reference
3798         types are not valid.
3799         (mono_nullable_box): Ditto.
3800
3801 2006-02-09  Dick Porter  <dick@ximian.com>
3802
3803         * threads.c (mono_thread_detach): Drop a reference to the thread
3804         we're detaching.
3805
3806 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3807
3808         * object.c (mono_nullable_init): Handle nullable reference types.
3809         (mono_nullable_box): Ditto. Fixes #77446.
3810
3811 2006-02-07  Martin Baulig  <martin@ximian.com>
3812
3813         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3814
3815 2006-02-07  Ankit Jain  <jankit@novell.com>
3816
3817         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3818         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3819         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3820         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3821         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3822         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3823
3824 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3825
3826         * class.c (mono_class_create_generic): Set type_token as well.
3827
3828         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3829         compatible with MS.
3830
3831 2006-02-02  Martin Baulig  <martin@ximian.com>
3832
3833         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3834         has never been used so far.
3835
3836 2006-02-02  Martin Baulig  <martin@ximian.com>
3837
3838         * mono-debug-debugger.h: Changed comment at the top of this file;
3839         the header is not installed, but it's safe to #include it from
3840         within the JIT.
3841
3842         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3843         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3844
3845 2006-02-02  Martin Baulig  <martin@ximian.com>
3846
3847         * mono-debug.h
3848         (MonoSymbolTable): Removed the `metadata_info' field.
3849
3850         * mono-debug.c
3851         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3852
3853         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3854         (mono_debugger_add_builtin_types): Removed.
3855         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3856         (mono_debugger_create_notification_function): We now operate on a
3857         pre-allocated area; take a `gpointer' and return `void'.
3858
3859         * mono-debug-debugger.c
3860         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3861         (mono_debugger_add_builtin_types): Removed.
3862
3863 2006-02-02  Martin Baulig  <martin@ximian.com>
3864
3865         * threads.c (mono_debugger_create_all_threads): New public method.
3866
3867 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3868
3869         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3870         breaks on several platforms.
3871
3872 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3873
3874         * assembly.c: the VS.NET build doesn't supply default values for
3875         MONO_ASSEMBLIES and MONO_CFG_DIR.
3876
3877 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3878
3879         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3880         helper function.
3881
3882         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3883
3884         * loader.c (method_from_memberref): Fix a warning.
3885
3886         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3887
3888         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3889         with explicit layout. Fixes #77433.
3890
3891 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3892
3893         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3894         max_interface_id is initialized before using it. Fixes #77398.
3895         (ves_icall_Type_GetInterfaces): Ditto.
3896
3897 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3898
3899         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3900         allocate memory for parameter attributes when parsing memberref
3901         signatures.
3902         * loader.c (mono_loader_set_error_method_load): Don't warn.
3903         (method_from_memberref): Ensure MissingMethodException gets thrown
3904         if method is not found.  Make warning more informative.
3905
3906 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3907
3908         Fix #77397
3909         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3910         return true if is byref.
3911         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3912         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3913         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3914
3915 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3916
3917         Fix tests/find-method.2.il
3918         * loader.c (find_method, find_method_in_class): Remove is_inflated
3919         argument.  Revert 2006-01-18 change.
3920         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3921         is generic, search for method in its generic definition.
3922         * class.c (mono_class_setup_vtable_general): Print generic
3923         arguments of generic types in debugging printf.
3924
3925 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3926
3927         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3928
3929         * threads.c (mono_threads_request_thread_dump): New helper function.
3930
3931 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3932
3933         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3934
3935 2006-01-25  Ankit Jain  <jankit@novell.com>
3936
3937         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3938         move definition to ..
3939         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3940         
3941 2006-01-25  Ankit Jain  <jankit@novell.com>
3942             Raja R Harinath  <rharinath@novell.com>
3943
3944         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3945         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3946         as necessary.
3947
3948 2006-01-25  Martin Baulig  <martin@ximian.com>
3949
3950         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3951         `MonoDebuggerThread' into debug-debugger.c.
3952
3953 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3954
3955         * profiler.c: fix printing of data.
3956
3957 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3958
3959         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3960           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3961
3962 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3963
3964         * object.c: fix deadlock related to string interning.
3965
3966 2006-01-23  Martin Baulig  <martin@ximian.com>
3967
3968         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3969
3970         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3971
3972 2006-01-23  Martin Baulig  <martin@ximian.com>
3973
3974         * mono-debug.h: Moved the prototypes of some functions which are
3975         used by the JIT here from mono-debug-debugger.h.
3976
3977 2006-01-21  Martin Baulig  <martin@ximian.com>
3978
3979         * Makefile.am: Don't install mono-debug-debugger.h.
3980
3981 2006-01-21  Martin Baulig  <martin@ximian.com>
3982
3983         * mono-debug-debugger.h: Enforce the private status of this header
3984         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
3985         Moved some stuff from mono-debugger-jit-wrapper.h here.
3986
3987 2006-01-20  Raja R Harinath  <rharinath@novell.com>
3988
3989         * class.c (mono_class_from_typeref): Add a sanity test to help
3990         catch lack of assembly load/search hooks.
3991
3992 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
3993
3994         * marshal.c (emit_struct_conv): Relax the fields with same offset
3995         check even more. Fixes #77230.
3996
3997 2006-01-18  Martin Baulig  <martin@ximian.com>
3998
3999         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4000         argument; if false, we compare the uninstantiated signatures.
4001         (method_from_memberref): Compare the uninstantiated signatures;
4002         fixes #76417.
4003
4004 2006-01-18  Robert Jordan  <robertj@gmx.net>
4005
4006         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4007         Clear the weak link. Fixes bug #77170.
4008
4009         * gc.c (mono_gchandle_free):
4010         Reflect *-gc.c changes (tiny optimization).
4011
4012 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4013
4014         * metadata.c (mono_metadata_signature_dup): Applied patch from
4015         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4016         Fixes #77288.
4017
4018 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4019
4020         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4021         marshalling from native to managed code. Fixes #77230.
4022
4023 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4024
4025         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4026         connect. Fixes bug #77020.
4027
4028 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4029
4030         * class.c: fixed id assignement for nested interfaces (bug #77275).
4031         Added also better info for --print-vtable debugging.
4032
4033 2006-01-12  Martin Baulig  <martin@ximian.com>
4034
4035         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4036         interfaces on-the-fly; fixes #76625.
4037
4038         * class-internals.h
4039         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4040         don't need that anymore.
4041
4042 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4043
4044         * socket-io.c
4045         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4046         To avoid initing the nested_classes when not needed I turned the
4047         PeerCredData as a toplevel internal class, as it has to be shared
4048         anyways. 
4049
4050         Fixes the CASA issue.
4051
4052 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4053
4054         * domain.c: Accessors for MonoJitInfo
4055
4056         * profiler-private.h: Add jitinfo to the end jit hook
4057
4058         * profiler.[ch]: Define new hooks, called after jitting which give
4059         the MonoJitInfo that was compiled
4060
4061 2006-01-10  Martin Baulig  <martin@ximian.com>
4062
4063         * class.c (mono_class_setup_events): Add support for generic
4064         classes; fixes #76440.
4065
4066 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4067
4068         Fix #77160.
4069         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4070         on passed-in method.
4071
4072 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4073
4074         * object.c (mono_runtime_invoke_array): Add Nullable support.
4075
4076         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4077
4078 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4079
4080         * file-io.c: Don't consider sockets as directory and avoid an endless
4081         loop. Fix bug #76966.
4082
4083 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4084
4085         * object.c (mono_nullable_init): New helper function.
4086         (mono_nullable_box): Ditto.
4087
4088         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4089
4090         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4091
4092         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4093         
4094 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4095
4096         * class.c (mono_class_is_assignable_from): Make T assignable to 
4097         Nullable<T>.
4098
4099 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4100
4101         * appdomain.c: Bump corlib version to 46.
4102         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4103         serialization purpose) and changed ves_icall_System_Reflection_
4104         Assembly_get_code_base signature to accept a boolean (to escape, or 
4105         not, the assembly code base).
4106
4107 2005-12-23  Dick Porter  <dick@ximian.com>
4108
4109         * icall.c: 
4110         * threads-types.h: 
4111         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4112         CreateEvent icall now returns "created" boolean parameter.
4113
4114 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4115
4116         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4117         #76967.
4118
4119         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4120         when attr_klass is an interface. Fixes #77045.
4121
4122 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4123
4124         * marshal.c (emit_struct_conv): Fix previous patch.
4125         
4126         * marshal.c (emit_struct_conv): Add a check for fields with the same
4127         offset.
4128
4129 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4130
4131         Fix regression in Mono.C5.
4132         * class.c (mono_class_create_generic): If 'klass' is an interface
4133         set up the interface offsets.
4134         (mono_class_is_assignable_from): Don't throw away generic arguments.
4135
4136 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4137
4138         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4139         type parameters.
4140
4141 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4142
4143         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4144         dead store.
4145         (do_mono_metadata_parse_generic_class): Don't pass the current
4146         generic context when parsing the type being instantiated: it
4147         cannot use it, anyway.
4148
4149         * loader.c (method_from_memberref): Don't inflate a signature if
4150         it doesn't contain any type parameters.
4151
4152 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4153
4154         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4155
4156 2005-12-14  Martin Baulig  <martin@ximian.com>
4157
4158         * class.c
4159         (mono_type_get_name_recurse): Don't return null for type
4160         parameters and open generic classes.
4161         (mono_class_setup_methods): Don't exclude generic instances.
4162         (mono_get_unique_iid): Use different IDs for different
4163         instantiations of the same generic type.
4164         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4165         open generic instances; create a normal vtable for closed generic
4166         instances.
4167         (mono_class_setup_vtable_general): We're now also called for
4168         closed generic instances.
4169
4170         * reflection.c
4171         (mono_reflection_bind_generic_parameters): Correctly use
4172         mono_metadata_lookup_generic_inst() everywhere.
4173
4174 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4175
4176         * object.c (mono_class_create_runtime_vtable): Call 
4177         mono_class_setup_vtable ().
4178
4179         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4180         function.
4181         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4182         #76959.
4183
4184         * loader.c (mono_loader_set_error_type_load): Print the type load
4185         warnings to the console so they are more visible to the user.
4186         (mono_loader_set_error_method_load): Ditto.
4187
4188         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4189         is still broken.
4190         
4191         * reflection.c (ensure_runtime_vtable): Fix build.
4192
4193         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4194         doesn't work in all cases.
4195
4196 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4197
4198         * object.c (mono_array_new_full): Treat a single dimensional array
4199         with 0 lower bounds as an szarray. Fixes #76973.
4200
4201         * reflection.c (custom_attr_visible): Really fix this.
4202
4203 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4204
4205         * reflection.c (custom_attr_visible): Allow nested public attributes
4206         as well.
4207
4208         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4209         interface check.
4210
4211 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4212
4213         * class.c (set_generic_param_owner): Delete.
4214         (mono_class_create_from_typedef): Don't set ->owner field of
4215         generic parameters to "param containers" of enclosing classes.
4216         * reflection.c (mono_reflection_initialize_generic_parameter):
4217         Likewise.
4218
4219 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4220
4221         * reflection.c (custom_attr_visible): Fix build.
4222
4223 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4224
4225         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4226         private attributes.
4227         
4228         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4229         handling of null parameter defaults.
4230
4231 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4232
4233         * class.c (mono_class_from_generic_parameter): Don't set
4234         klass->generic_container.
4235         (my_mono_class_from_generic_parameter): Likewise.
4236
4237 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4238
4239         * reflection.c (load_public_key): Fix a warning.
4240         (method_encode_code): Fix unaligned accesses.
4241
4242 2005-12-07  Martin Baulig  <martin@ximian.com>
4243
4244         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4245
4246         * reflection.c
4247         (write_generic_param_entry): Encode our custom attrs.
4248
4249         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4250
4251 2005-12-07  Martin Baulig  <martin@ximian.com>
4252
4253         * reflection.c (encode_new_constraint): Removed; we don't use the
4254         `NewConstraintAttribute' anymore.
4255
4256 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4257
4258         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4259         not fire a TypeResolve event when Assembly.GetType () is called.
4260
4261 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4262
4263         Beginning of support for nullable types in the runtime. Parts of
4264         this patch are from Martin.
4265
4266         * appdomain.c (MONO_CORLIB_VERSION): Bump
4267
4268         * domain.c (mono_init_internal): get the nullable type
4269
4270         * class.c (mono_class_is_nullable): New method
4271         (mono_class_get_nullable_param): New mehod
4272         (mono_class_create_generic): In types T? set cast_class to T
4273
4274         * class-internals.h (MonoDefaults): new nullable default class
4275         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4276         new methods.
4277
4278 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4279
4280         * metadata.c (select_container): New.  Refactor code to select the
4281         appropriate GenericContainer given the type of generic parameter
4282         we are looking for.
4283         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4284         not a MonoGenericContext.  Use select_container.  Update parameters.
4285         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4286         and MONO_TYPE_MVAR.
4287         (unwrap_arrays): Remove duplicate tests.
4288         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4289         generic instantiated class to find any arguments that are generic
4290         parameters.
4291         (mono_type_create_from_typespec_full): Use find_generic_param to
4292         avoid evicting some generic instantiations from the typespec
4293         cache.
4294
4295 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4296
4297         * reflection.c: fixed writing of doubles on ARM FPA.
4298
4299 2005-12-02  Robert Jordan  <robertj@gmx.net>
4300
4301         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4302
4303 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4304
4305         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4306         least on SUSE 10 they are not the same (on debian, they are just the
4307         same thing).
4308
4309 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4310
4311         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4312         DeclaringType for VARs and MVARs.
4313         * class.c (set_generic_param_owner): Fix initialization of owner
4314         fields.
4315
4316 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4317
4318         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4319
4320 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4321
4322         * threadpool.c: workaround for a bug that shows up on the Mac:
4323         select()+connect() on a blocking socket is not like it should
4324         be, so we proceed to connect() in that case, wasting the I/O
4325         threadpool thread until connect succeedes. Fixes bug #75436.
4326
4327 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4328
4329         * threadpool.c: fix typo when setting file descriptor states.
4330
4331 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4332
4333         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4334         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4335         create a temporary signature container.
4336         (mono_metadata_parse_generic_param): Update to changes.
4337         (mono_type_create_from_typespec_full): Update to changes.
4338         * loader.c (method_from_memberref): Don't use a
4339         MonoGenericContainer while parsing a memberref signature.
4340         (method_from_methodspec): Remove dead-store of the 'container'
4341         variable.  It's overwritten before use.
4342
4343         * metadata.c (mono_type_create_from_typespec_full): Make debugging
4344         checks tighter.
4345         (mono_metadata_parse_generic_param): Likewise.
4346         * loader.c (find_method_in_class): Does not need a
4347         MonoGenericContainer.  Use 'mono_method_signature' rather than
4348         'mono_method_signature_full'.
4349         (find_method, mono_get_method_constrained, method_from_memberref):
4350         Update to changes.
4351
4352         * metadata.c (mono_type_create_from_typespec_full): Ensure that
4353         owner-less generic-parameters are never evicted from the typespec
4354         cache.
4355
4356         * loader.c (method_from_memberref): Don't use the current context
4357         when parsing signatures.
4358         (method_from_methodspec, mono_get_method_from_token): Update to changes.
4359
4360         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
4361         side-effects in g_assert.
4362         * loader.c (mono_get_method_from_token): Resolve klass earlier so
4363         that we don't potentially lose information.
4364
4365 2005-11-26  Dick Porter  <dick@ximian.com>
4366
4367         * icall.c:
4368         * threads.c: icalls to implement basic (ie, not named)
4369         System.Threading.Semaphore.
4370
4371 2005-11-24  Dick Porter  <dick@ximian.com>
4372
4373         * process.c
4374         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4375         Use GetProcessId() if it's available.
4376
4377 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
4378
4379         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
4380
4381 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4382             Ankit Jain  <jankit@novell.com>
4383
4384         * loader.c (mono_get_method_from_token): Initialize 'method' field
4385         of all generic parameters before parsing the signature.  Remove
4386         code that "fixed"-up MVAR references.
4387
4388 2005-11-23  Ankit Jain  <jankit@novell.com>
4389
4390         * metadata.c (mono_metadata_has_generic_params):
4391         (mono_metadata_load_generic_param_constraints):
4392         (mono_metadata_load_generic_params): Move duplicate code ...
4393         (mono_metadata_get_generic_param_row): ... here. Returns the
4394         first row-id in GenericParam table for a given owner (token).
4395         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
4396         prototype.
4397
4398 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4399             Ankit Jain  <jankit@novell.com>
4400
4401         * metadata.c (mono_metadata_class_equal): Pass signature_only when
4402         comparing VARs too.
4403         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
4404         type->data.generic_param only if the type is an MVAR.
4405         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
4406         leak owner-less VARs and MVARs into managed space.
4407
4408 2005-11-21  Martin Baulig  <martin@ximian.com>
4409
4410         * class-internals.h
4411         (MonoMethod): Moved the `generic_container' here from
4412         `MonoMethodNormal' since we now also need it for
4413         `MonoMethodPInvoke';
4414         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
4415         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
4416         an union containing both `MonoMethodNormal' and
4417         `MonoMethodPInvoke'.
4418
4419         * loader.c
4420         (mono_get_method_from_token): Allow implementing generic methods
4421         as interncalls.
4422
4423         * threads.c
4424         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
4425         icall.
4426
4427 2005-11-17  Dick Porter  <dick@ximian.com>
4428
4429         * icall.c: 
4430         * process.h: 
4431         * process.c: Split the Process Start_internal icall into
4432         ShellExecuteEx_internal and CreateProcess_internal, which are
4433         called depending on whether UseShellExecute is true.  Fixes bug
4434         76670.
4435
4436         * appdomain.c (MONO_CORLIB_VERSION): Incremented
4437
4438 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4439
4440         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
4441         'msize' parameters, use the information in 'mspec' instead.
4442         (emit_object_to_ptr_conv): Ditto.
4443
4444         * marshal.c (emit_struct_conv): Handle explicit layout structs with
4445         fields out of order. Fixes #76733.
4446
4447 2005-11-17  Ankit Jain  <jankit@novell.com>
4448
4449         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
4450
4451 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
4452
4453         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
4454           bug #76575.
4455
4456 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4457
4458         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
4459         for types with non-auto layout. Fixes #76717.
4460
4461 2005-11-16  Ankit Jain  <jankit@novell.com>
4462
4463         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
4464         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
4465         if generic_context is null.
4466           (mono_metadata_generic_param_equal): param->owner can be null.
4467           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
4468         null.
4469
4470 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4471
4472         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4473         the correct value.
4474
4475 2005-11-15  Martin Baulig  <martin@ximian.com>
4476
4477         * object.c (set_value): Use mono_class_from_mono_type() instead of
4478         the hack for generic instances; fixes #76136.
4479
4480 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4481
4482         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4483         fields.
4484
4485         * image.c (load_metadata_ptrs): Initialize the new fields.
4486
4487         * reflection.c (create_dynamic_mono_image): Ditto.
4488
4489         * reflection.c (build_compressed_metadata): Use the new fields.
4490
4491         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4492         icall.
4493
4494         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4495         icall.
4496         
4497 2005-11-15  Ankit Jain  <jankit@novell.com>
4498             Raja R Harinath  <harinath@gmail.com>
4499
4500         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4501         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4502         new per-generic_container cache if the cached MonoType's context matches
4503         the current context.
4504           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4505         to the expected context.
4506           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4507
4508 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4509
4510         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4511         we changed the signature of an icall.
4512         * icall.c: Modify to mono_double_ParseImpl return true/false 
4513         depending on the success, instead of throwing the exception. This will
4514         help us in Double.TryParse methods.
4515         
4516 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4517
4518         * marshal.c (emit_marshal_object): Throw an exception when
4519         marshalling 'object' instead of crashing. Fixes #76696.
4520
4521 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4522
4523         * class-internals.h: Add prototype for mono_type_get_full_name ().
4524
4525 2005-11-11  Dick Porter  <dick@ximian.com>
4526
4527         * threads.c (mono_thread_manage): Make sure the main thread has
4528         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4529
4530 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4531
4532         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4533         console about the missing type.
4534         (mono_loader_set_error_method_load): Ditto.
4535
4536 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4537
4538         * mono-config.c (mono_get_config_dir): Set the system defaults if
4539         none is specified.
4540
4541         * assembly.c (mono_set_dirs): New API entry point to set the
4542         assembly and the config directory in one call
4543
4544 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4545
4546         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4547         the ftnptr was created from a delegate in a domain other than the
4548         current domain. Fixes #75377.
4549
4550         * exception.h exception.c: Add mono_get_exception_not_supported ().
4551
4552 2005-11-08  Martin Baulig  <martin@ximian.com>
4553
4554         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4555
4556 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4557
4558         * security-manager.h: Added definitions to deal with strongname key 
4559         pairs bigger (and smaller) than 1024 bits.
4560         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4561         adjust wrt the public key length being used.
4562
4563 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4564
4565         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4566           Windows build (r51396-51397).
4567
4568 2005-11-03  Martin Baulig  <martin@ximian.com>
4569
4570         * class.c (mono_class_setup_vtable_general): Also add generic
4571         methods to the vtable; fixes #76581.
4572
4573 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4574
4575         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4576         sure that we lookup GetString method from the System.Text.Encoding
4577         class, not the derived class or we get an empty method.
4578
4579         Fixed class #76612.
4580
4581 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4582
4583         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4584         if it has been previously set (embedders). 
4585
4586         Make mono_set_rootdir available also on Unix.
4587
4588 005-10-24  Robert Jordan  <robertj@gmx.net>
4589
4590         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4591
4592 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4593
4594         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4595         only calls which are made to native code use this flag.
4596
4597         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4598
4599 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4600
4601         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4602         Add support for FieldBuilders.
4603
4604 2005-10-29  Martin Baulig  <martin@ximian.com>
4605
4606         * mono-debug.c
4607         (mono_debug_using_mono_debugger): New public method; returns
4608         whether we're running inside the debugger.
4609
4610 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4611
4612         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4613         for Method/Constructor/FieldBuilders.
4614
4615 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4616
4617         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4618         and fields as well.
4619
4620 2005-10-26  Martin Baulig  <martin@ximian.com>
4621
4622         * mono-debug-debugger.c
4623         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4624
4625 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4626
4627         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4628         integer to isspace.
4629
4630 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4631
4632         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4633         when passing valuetypes byref. Fixes #76502.
4634
4635 2005-10-19  Jackson Harper  <jackson@ximian.com>
4636
4637         * profiler.c: Don't put a . in front of types that are not in a
4638         namespace.
4639
4640 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4641
4642         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4643
4644 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4645
4646         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4647         #76436.
4648         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4649
4650 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4651
4652         * assembly.c metadata-internals.h icall.c: Define an additional
4653         parameter for mono_assembly_name_parse_full, so we can avoid creating
4654         S.R.AssemblyName.Version when no version info wasn't passed.
4655         
4656 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4657
4658         * class.c (mono_type_get_full_name): Reimplement method that was
4659         removed. 
4660
4661         * image.c: Some docs
4662
4663 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4664
4665         * profiler.c (output_newobj_profile): Fix printing of Total memory
4666         on x86.
4667
4668 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4669
4670         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4671
4672 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4673
4674         * threads.c: remove debug output.
4675
4676 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4677
4678         * threads.c (mono_thread_manage): Fix crashes if more than 64
4679         threads need to be aborted. Hopefully fixes #75899.
4680
4681         * assembly.c (mono_stringify_assembly_name): New helper function.
4682
4683         * class.c: Use mono_stringify_assembly_name instead of the similar
4684         static function.
4685
4686         * assembly.h assembly.c: Add support for calling a postload search 
4687         hook if an assembly cannot be loaded.
4688
4689         * appdomain.c: Register new search hooks which call the AssemblyResolve
4690         events in AppDomain. Fixes #75231
4691
4692 2005-10-07  Martin Baulig  <martin@ximian.com>
4693
4694         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4695         methods without debug info.
4696
4697 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4698
4699         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4700         wrappers.
4701
4702 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4703
4704         * file-io.c: now that we return symlinks, use lstat and, when the file
4705         is a symbolic link, stat, to get the file attributes. Also avoid the
4706         conversion to/from utf16/external.
4707
4708 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4709
4710         * class.c (mono_class_layout_fields): Compute klass->has_references
4711         correctly if an embedded valuetype is not yet initialized. Fixes
4712         #76331.
4713
4714 2005-10-04  Martin Baulig  <martin@ximian.com>
4715
4716         * metadata.c
4717         (mono_metadata_load_generic_param_constraints): New public
4718         function; splitted the constraints loading out from
4719         mono_metadata_load_generic_params().
4720
4721         * class.c (mono_class_create_from_typedef): Call
4722         mono_metadata_load_generic_param_constraints() after setting up
4723         the type and creating our parent; fixes #75329.
4724
4725 2005-10-04  Martin Baulig  <martin@ximian.com>
4726
4727         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4728         non-dynamic parent classes.
4729
4730 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4731
4732         * file-io.c : win32 build fix (ETXTBSY seems not found).
4733
4734 2005-10-04  Martin Baulig  <martin@ximian.com>
4735
4736         * reflection.c
4737         (mono_image_get_methodspec_token): Make the cache actually work;
4738         fixes #75974.
4739
4740 2005-10-04  Martin Baulig  <martin@ximian.com>
4741
4742         * class.c (mono_class_name_from_token): Removed the unneccessary
4743         `MonoGenericContext *' argument.
4744
4745 2005-10-04  Martin Baulig  <martin@ximian.com>
4746
4747         * loader.c
4748         (method_from_methodspec): Make the caching work again; fixes the
4749         performance regression from #76262.
4750
4751 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4752
4753         * file-io.c:
4754         * file-io.h:
4755         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4756         GetFileSystemEntries that performs the same work but without going
4757         into io-layer, locking, etc.
4758
4759 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4760
4761         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4762         ThreadState_Stopped as well. Fixes #76047.
4763
4764 2005-09-29  Martin Baulig  <martin@ximian.com>
4765
4766         * class.c
4767         (inflate_generic_context): If the new context has a `gmethod', set
4768         its `container' that that gmethod's `container'.
4769
4770         * metadata.c
4771         (mono_metadata_parse_generic_param): Simplify things;
4772         `generic_container = generic_context->container;' is just fine.
4773
4774         * loader.c (method_from_methodspec): Code cleanups.
4775
4776 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4777
4778         * decimal.c: fix warning (and let gcc generate correct
4779         code on ARM with optimizations).
4780
4781 2005-09-28  Martin Baulig  <martin@ximian.com>
4782
4783         * loader.c
4784         (method_from_memberref): Added `MonoGenericContext *class_context'
4785         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4786         (method_from_methodspec): If we're a memberref, use the enclosing
4787         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4788
4789 2005-09-28  Martin Baulig  <martin@ximian.com>
4790
4791         * object.c (mono_runtime_invoke_array): Added support for
4792         MONO_TYPE_GENERICINST; fixes #75917.
4793
4794 2005-09-27  Martin Baulig  <martin@ximian.com>
4795
4796         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4797         `k->byval_arg.type' to determine the actual type.
4798
4799         * loader.c (method_from_methodspec): Removed some hacks.
4800
4801 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4802
4803         * class-internals.h (mono_field_is_deleted): Do the test for
4804         rtspecialname before we check the actual name of the field. This
4805         prevents us from dereferencing a pointer into the string table,
4806         saving us from accessing a few pages
4807
4808         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4809         macros. This will allow a deadlock debugger to easily be plugged
4810         in.
4811
4812 2005-09-27  Martin Baulig  <martin@ximian.com>
4813
4814         * loader.c (method_from_methodspec): Create a "signature"
4815         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4816
4817 2005-09-27  Martin Baulig  <martin@ximian.com>
4818
4819         * class.c
4820         (inflate_generic_class): Correctly set the new context's
4821         container.
4822
4823         * loader.c
4824         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4825         instead of a `MonoGenericContext *'.
4826         (mono_method_signature_full): Take a `MonoGenericContainer *'
4827         instead of a `MonoGenericContext *'.
4828
4829         * metadata.c
4830         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4831         instead of a `MonoGenericContext *'.
4832         (mono_metadata_parse_method_signature_full): Likewise.
4833
4834 2005-09-26  Martin Baulig  <martin@ximian.com>
4835
4836         * class.c
4837         (mono_class_from_generic_parameter): Set `klass->generic_container'
4838         (mono_class_from_generic_parameter): Likewise.
4839         (mono_bounded_array_class_get): We inherit the generic container
4840         from the element class.
4841
4842         * loader.c
4843         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4844         argument rather than computing it here.
4845         (method_from_memberref): Correctly set the generic context before
4846         parsing the signature.  Fixes #75681.
4847
4848 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4849
4850         * object.c (mono_class_has_special_static_fields): Fix warnings.
4851
4852 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4853
4854         * assembly.c: Add parse_public_key function, to
4855         par the public keys. Also added mono_assembly_name_parse_full,
4856         to define it the parsed key should be freed or not.
4857         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4858         to parse a long format assembly name.
4859         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4860         private, since calling it to preserve the key requires
4861         freeing it manually.
4862         
4863 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4864
4865         * locales.c : removed HAVE_ICU part.
4866
4867 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4868
4869         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4870         field_is_special_static if the klass has no special static fields.
4871
4872         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4873         (MonoCachedClassInfo): Likewise.
4874
4875         * object.c (mono_class_has_special_static_fields): New helper function.
4876
4877 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4878
4879         * class.c (mono_class_create_from_typedef): Don't call 
4880         interfaces_from_typedef_full for enums.
4881         (mono_class_create_from_typedef): Compute the base types of enums directly
4882         without calling mono_class_setup_fields ().
4883         (mono_class_find_enum_basetype): New helper function.
4884
4885         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4886         one place inside the string heap.
4887         
4888 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4889
4890         * class.c: locking fixes, code cleanups, some docs added.
4891         Allocate some data structures in the image mempool.
4892
4893 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4894
4895         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4896         the example code.
4897         
4898 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4899
4900         * class-internals.h, class.c, reflection.c: reduce memory taken by
4901         MonoClass.
4902
4903 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4904
4905         * metadata.c, metadata.h, loader.h: documentation updates, code and
4906         API cleanups.
4907
4908 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4909
4910         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4911         the example code.
4912
4913         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4914         page faults caused by the runtime while reading metadata.
4915
4916 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4917
4918         * socket-io.c: the field names were changed 3 months ago and no one
4919         realized until bug #76077 got filed!
4920
4921 2005-09-20  Martin Baulig  <martin@ximian.com>
4922
4923         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4924
4925 2005-09-20  Martin Baulig  <martin@ximian.com>
4926
4927         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4928         write the rank into the class entry.
4929
4930 2005-09-20  Martin Baulig  <martin@ximian.com>
4931
4932         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4933
4934 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4935
4936         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4937
4938         * icall.c (custom_attrs_defined_internal): New icall.
4939
4940         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4941         function.
4942         (mono_custom_attrs_construct_by_type): New helper function.
4943
4944 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4945
4946         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4947         terminate the resulting string. Fixes #76123.
4948
4949 2005-09-16  Martin Baulig  <martin@ximian.com>
4950
4951         * mono-debug.c
4952         (mono_debug_add_method): Ignore inflated methods for the moment.
4953
4954 2005-09-14  Martin Baulig  <martin@ximian.com>
4955
4956         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4957
4958 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4959
4960         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4961         return a success/failure indication.
4962         (mono_metadata_interfaces_from_typedef_full): Ditto.
4963         (get_constraints): Ditto.
4964
4965 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4966
4967         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4968         
4969         * marshal.c (emit_marshal_array): Add support for returning string
4970         arrays from delegates. Fixes #76063.
4971
4972         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4973
4974 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
4975
4976         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
4977         icall.
4978
4979 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
4980
4981         * reflection.c icall.c: Fix after mono_get_exception_type_load
4982         signature change.
4983
4984         * assembly.c (mono_assembly_get_assemblyref): New helper function.
4985         (mono_assembly_load_reference): Use the new helper.
4986
4987         * class-internals.h (MonoLoaderError): New structure containing 
4988         information about type loading errors.
4989
4990         * class-internals.h loader.c: Add APIs to store per-thread loader
4991         error information.
4992
4993         * loader.c class.c: Set the loader error if needed.
4994
4995         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
4996
4997 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
4998
4999         * decimal.c: fixed to handle the broken ARM fp format.
5000
5001 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5002
5003         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5004         broken.
5005
5006 2005-09-06  Martin Baulig  <martin@ximian.com>
5007
5008         * domain.c (supported_runtimes): Added v2.0.50727.
5009
5010 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5011
5012         * culture-info.h: reduce the size of some structures.
5013
5014 2005-09-05  Martin Baulig  <martin@ximian.com>
5015
5016         Reflect latest API changes in the August CTP.
5017
5018         * icall.c
5019         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5020         ("MonoType.HasGenericArguments"): Removed.
5021         ("MonoMethod.BindGenericParameters"): Renamed to
5022         "MakeGenericMethod".
5023         ("MethodBuilder.BindGenericParameters"): Renamed to
5024         "MakeGenericMethod".    
5025
5026 2005-09-05  Martin Baulig  <martin@ximian.com>
5027
5028         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5029
5030 2005-09-05  Martin Baulig  <martin@ximian.com>
5031
5032         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5033
5034         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5035         generic_container is non-NULL.
5036
5037 2005-09-05  Martin Baulig  <martin@ximian.com>
5038
5039         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5040
5041         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5042
5043 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5044
5045         * reflection.c (encode_locals,
5046         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5047         for large generic types.
5048
5049 2005-09-05  Martin Baulig  <martin@ximian.com>
5050
5051         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5052
5053         * class.c (mono_dup_array_type): New public method.
5054         (mono_metadata_signature_deep_dup): New public method.
5055         (dup_type): Correctly duplicate array and function types.
5056
5057 2005-09-05  Martin Baulig  <martin@ximian.com>
5058
5059         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5060
5061         * reflection.c (get_default_param_value_blobs): Handle generic types
5062         and generic methods.
5063
5064 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5065
5066         * class.c: Fixed error reporting (method/class were inversed) for 
5067         inheritance demands.
5068         * security-manager.c|h: Added the AppDomain when calling the managed
5069         System.Security.SecurityManager.InheritanceDemand method.
5070
5071 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5072
5073         * reflection.c (encode_marshal_blob): 'marshaltype' and
5074         'marshaltyperef' are alternate sources for the custom marshaler
5075         name.
5076
5077 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5078
5079         * class.c: fix creation of array classes with rank == 1
5080         (patch by Ankit Jain <jankit@novell.com>).
5081
5082 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5083
5084         * object.c: fix check for creating the bound data for arrays vs
5085         szarrays.
5086
5087 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5088
5089         * object.c: configuration file name is now based on the executable name,
5090         not the image name. Fixes bug #75931.
5091
5092 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5093
5094         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5095         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5096
5097 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5098
5099         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5100
5101 2005-08-24  Ankit Jain  <jankit@novell.com>
5102             Raja R Harinath  <rharinath@novell.com>
5103
5104         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5105           called by it recursively.
5106           (mono_class_init): Remove special case in pending_init handling, since it's
5107           superseded by the fix to mono_class_from_typeref.
5108
5109 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5110
5111         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5112         BROKEN_THREAD_START stuff.
5113
5114 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5115
5116         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5117         trampoline.
5118
5119         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5120         
5121         * object.c (mono_delegate_ctor): Replace the original function address with
5122         a delegate trampoline.
5123
5124 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5125
5126         * icall.c: add boolean argument to base64_to_byte_array and 
5127         InternalFromBase64String to control whether a whitespace-only string
5128         is allowed (or should casue a FormatException to be thrown). We need
5129         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5130         to match the MS behaviour in both profiles.
5131         * appdomain.c: Bump corlib version.
5132
5133 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5134
5135         This patch implements a big portion of publisher policy
5136         support, used to bind assembly versions and redirect
5137         one assembly from version A to version B.
5138
5139         * assembly.c:
5140         New GSList loaded_assembly_bindings, for storing the cached
5141         assembly bindings.
5142         (assembly_binding_maps_name): New static function for checking if a 
5143         assembly binding information maps an assembly name.
5144         (mono_assembly_binding_info_free): New function for freeing
5145         assembly binding information resources.
5146         (get_publisher_policy_info): New static function for retrieving 
5147         assembly binding information from a MonoImage.
5148         (compare_versions): New static function for comparing an assembly
5149         binding information data and the version of an assembly name.
5150         (check_policy_versions): New static function for checking if an
5151         assembly binding info mapping an assembly name is valid for it.
5152         (mono_assembly_load_publisher_policy): New static function for
5153         loading the 'policy.major.minor.MyAssembly' image for an assembly
5154         with an assembly name 'aname'.
5155         (mono_assembly_bind_version): New static function for updating
5156         assembly redirection.
5157         (mono_assembly_apply_binding): New static function for applying
5158         assembly binding.
5159         (search_binding_loaded): New static function for searching 
5160         loaded assembly binding infos in the cache domain.
5161         (mono_assembly_load_full): Don't apply assembly binding for
5162         reflection only assemblies.
5163
5164         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5165         which contains information about assembly binding. Also
5166         declare signature for mono_config_parse_publisher_policy ()
5167         function, used to retrieve pub policy info.
5168         
5169         * mono-config.c:
5170         (publisher_policy_start): New static function used to parse publisher 
5171         policy config files.
5172         (publisher_policy_parser): New static MonoParseHandler containing 
5173         the functions used when parsing config files.
5174         (mono_config_parse_publisher_policy): New function for parsing
5175         publisher policy files.
5176         
5177 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5178
5179         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5180
5181         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5182
5183         * object.c (mono_get_addr_from_ftnptr): New helper function.
5184
5185         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5186
5187         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5188
5189 2005-08-19  Dick Porter  <dick@ximian.com>
5190
5191         * threads.c, threads.h, appdomain.c, appdomain.h,
5192         profiler-private.h, monitor.c, object.c, object-internals.h,
5193         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5194         store the thread ID, so it can hold a 64 bit value if needed.
5195
5196 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5197
5198         * reflection.c (mono_reflection_create_dynamic_method): Store the
5199         handle class into the method references as well so ldtoken works in
5200         dynamic methods.
5201
5202         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5203         types.
5204
5205 2005-08-19  Ankit Jain <jankit@novell.com>
5206
5207         Fix #75847.
5208         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5209           here rather than using the method signature of a arbitrary function
5210           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5211           two arguments.
5212           Hack done with Harinath.
5213
5214 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5215
5216         * threadpool.c: disable printing stack traces when we get a exception
5217         in a threadpool thread. I need to do more testing to figure out which
5218         cases actually print this. Fixes bug #75828.
5219
5220 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5221
5222         * icall.c: there might be ignored whitespace after the last '='. This
5223         fixes length computation and bug #75840.
5224
5225 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5226
5227         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5228         well. Fixes #75809.
5229
5230         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5231         #75784.
5232         
5233         * reflection.c (create_custom_attr_data): Ditto.
5234
5235 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5236
5237         * locales.c, culture-info.h : removed RegionLCIDMap.
5238         * culture-info-tables.h : regenerated.
5239
5240 2005-08-16  Martin Baulig  <martin@ximian.com>
5241
5242         * class.c (mono_type_get_name_recurse): Small fix.
5243
5244 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5245
5246         * locales.c : indentation fixie.
5247
5248 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5249
5250         * object-internals.h,
5251           locales.h,
5252           locales.c,
5253           culture-info.h,
5254           icall.c : added RegionInfo table support.
5255         * culture-info-table.h : regenerated for region support.
5256
5257 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5258
5259         * reflection.c (resolve_object): handle all kinds of MonoMethod
5260         including generic ones
5261
5262 2005-08-12  Ankit Jain <jankit@novell.com>
5263
5264         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5265           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5266
5267 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5268
5269         * process.c: Don't close a thread handle when it's NULL. This is a
5270         workaround for bug #75733.
5271
5272 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5273
5274         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5275
5276 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5277
5278         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5279
5280 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5281
5282         * threadpool.c: if a work item in the thread pool has a callback that
5283         catches a exception, don't propagate it after invoking the callback.
5284         Fixes bug #75336.
5285
5286 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5287
5288         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5289
5290         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5291
5292         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5293
5294         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5295
5296 2005-08-03  Ankit Jain  <jankit@novell.com>
5297
5298         Fix #75683.
5299         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5300           PInvoke calling convention is 0.
5301
5302 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5303
5304         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5305         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5306
5307 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5308
5309         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5310         to handle threads not started by the GC (patch by Michael Meeks
5311         <michael.meeks@novell.com>).
5312
5313 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5314
5315         * reflection.c: Make buffer used in emitting types larger for some
5316         big generic types (patch by Michal Moskal).
5317
5318 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5319
5320         * mono-debug.c: Fix some (not all) alignment problems.
5321
5322 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5323
5324         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5325         Invoke mono_image_load_from_data_full passing the refonly
5326         parameter.
5327
5328         * assembly.c
5329         (mono_assembly_open_from_bundle): Add the refonly argument, 
5330         in order to pass it to other methods it calls to.
5331         (do_mono_assembly_open): Add the refonly argument, in order 
5332         to pass it to other methods it calls to.
5333         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5334         the refonly parameter to it.
5335
5336         * image.c: Add loaded_images_refonly_hash and
5337         loaded_images_refonly_guid_hash to cache the reflection
5338         only loaded images.
5339         (mono_images_init): Initialize the hash tables used for
5340         caching the reflection only images.
5341         (load_modules): Invoke mono_image_open_full passing the refonly
5342         parameter to load the modules the correct way.
5343         (build_guid_table): Add the refonly argument, to re-build the 
5344         correct hash table.
5345         (do_mono_image_open): Added the refonly argument, in order to
5346         define it for the loaded image.
5347         (mono_image_loaded_full): New function, which receives an
5348         additional parameter to look for the image in the refonly or
5349         non-refonly section.
5350         (mono_image_loaded): Updated, using mono_image_loaded_full.
5351         (mono_image_loaded_by_guid_full): The same case that happens
5352         with mono_image_loaded_full.
5353         (mono_image_loaded_by_guid): Likewise.
5354         (register_image): Use the ref_only variable inside MonoImage
5355         to decide in which hash table store the current image.
5356         (mono_image_open_from_data_full): Rename
5357         mono_image_open_from_data to mono_image_open_from_data_full,
5358         adding the refonly argument, to define the ref_only variable 
5359         inside MonoImage.
5360         (mono_image_open_from_data): Return 
5361         mono_image_open_from_data_full.
5362         (mono_image_open_full): Rename mono_image_open to
5363         mono_image_open_full, receiving the new refonly argument,
5364         to pass it to inner methods.
5365         (mono_pe_file_open): Update this function, to open
5366         a MonoImage as a non-refonly image.
5367         (mono_image_close): Use the refonly variable inside
5368         MonoImage to remove the image from the correct caches.
5369
5370         * image.h: Add the signatures of mono_image_open_full,
5371         mono_image_open_from_data_full, mono_image_loaded_full,
5372         mono_image_loaded_by_guid_full.
5373
5374         * metadata-internals.h: Add the ref_only field to 
5375         MonoImage.
5376         
5377 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5378
5379         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
5380         Fix the last behavior, which used to load the assemblies and
5381         extract MonoReflectionAssemblyName information, instead of
5382         extract it from the metadata tables. Needed for Reflection
5383         Only assemblies.
5384         
5385 2005-07-29  Martin Baulig  <martin@ximian.com>
5386
5387         * mono-debug-debugger.c
5388         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
5389         not initialized.
5390
5391         * mono-debug.c
5392         (mono_debug_address_from_il_offset): Check whether we have
5393         debugging support before attempting to take the lock.
5394         (mono_debug_source_location_from_address): Likewise.
5395         (mono_debug_source_location_from_il_offset): Likewise.
5396         (mono_debug_il_offset_from_address): Likewise.
5397         (mono_debug_address_from_il_offset): Likewise.
5398
5399 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
5400
5401         * class.c (mono_class_from_name_case): Add support for dynamic images.
5402         Fixes #75650.
5403
5404         * object.c (mono_class_compute_gc_descriptor): Add a workaround
5405         for #75479.
5406
5407 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5408         
5409         * reflection.c (mono_method_get_object): Fix warning.
5410
5411 2005-07-28  Martin Baulig  <martin@ximian.com>
5412
5413         * mono-debug.c
5414         (mono_debug_add_wrapper): Also write the wrapper type.
5415
5416 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5417
5418         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
5419         
5420         * class.c (mono_class_init): Avoid reading nested classes if the AOT
5421         data indicates the class has none.
5422
5423 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
5424
5425         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
5426         loader lock with the debugger lock. Prevents deadlocks for beagle.
5427
5428         Beagle can now run on an smp box for a weekend without any
5429         issues. Woohoo!
5430
5431 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
5432
5433         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
5434         in a module. Fixes #75629.
5435
5436 2005-07-26  Martin Baulig  <martin@ximian.com>
5437
5438         * mono-debug.c (mono_debug_add_wrapper): New static method.
5439         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
5440         interncall or a wrapper.
5441
5442         * mono-debug.h (MonoDebugWrapperData): New public typedef.
5443         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
5444         (MONO_DEBUGGER_VERSION): Bump to 51.
5445
5446         * mono-debug-debugger.c
5447         (mono_debugger_add_type): Removed this empty function.
5448         (mono_debugger_add_method): Likewise.
5449
5450 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5451
5452         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
5453         before accessing method->slot.
5454
5455 2005-07-21  Jb Evain  <jbevain@gmail.com>
5456
5457         * reflection.c (method_encode_clauses/class): Handle filters clauses.
5458         Fixes #75010.
5459
5460 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5461
5462         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
5463         #75587.
5464
5465 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5466
5467         * image.h image.c: Add mono_image_get_guid () API function.
5468
5469 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
5470
5471         There were issues when multiple threads tried to load
5472         assemblies. A deadlock was created between assemblies_mutex and
5473         mono_domain_assemblies_lock. This fixes the issue by making the
5474         assembly ref counting be lock free. See bug 75586.
5475         
5476         * image.c (mono_image_close): The add ref function here was using
5477         Interlocked operations while the unref was using a mutex and a
5478         --. I don't think this was ever a bug that would be exposed in a
5479         non-pendantic way (ie, by an embedder doing a ref on one thread
5480         and an unref on another), but for the sake of correctness, this is
5481         now Interlocked.
5482
5483         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5484         (mono_assembly_load_reference): Call mono_assembly_addref rather
5485         than touching the refcount ourselves.
5486         (mono_assembly_close): Use InterlockedDecrement to unref the
5487         assembly. Don't acquire the lock unless it is actually needed.
5488
5489 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5490
5491         * class.c (mono_class_layout_fields): Fix calculation of has_references
5492         for generic types.
5493
5494 2005-07-12  Martin Baulig  <martin@ximian.com>
5495
5496         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5497
5498         * metadata.c
5499         (mono_type_hash): Provide better hashing for generic instances.
5500         (mono_generic_inst_hash): Improve hashing.
5501         (mono_generic_class_hash): Likewise.
5502
5503         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5504         generic instances.
5505
5506 2005-07-12  Martin Baulig  <martin@ximian.com>
5507
5508         * reflection.c (mono_reflection_create_runtime_class): Remove the
5509         hack for generic type definitions and non-`Run' assemblies.
5510         (mono_reflection_bind_generic_parameters): Also use
5511         `klass->wastypebuilder' to check for TypeBuilders.
5512
5513 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5514
5515         * class.c (mono_class_layout_fields): Fix calculation of has_references
5516         for generic types.
5517
5518         * class.c (inflate_generic_class): Fix a leak.
5519         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5520         for generic types.
5521
5522 2005-07-11  Martin Baulig  <martin@ximian.com>
5523
5524         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5525         on error.
5526
5527 2005-07-11  Martin Baulig  <martin@ximian.com>
5528
5529         * loader.c (find_method): Also lookup in
5530         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5531
5532 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5533
5534         * appdomain.c (mono_domain_unload): Don't free the error message
5535         before passing it to mono_get_exception_...
5536
5537         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5538         
5539 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5540
5541         * threads.c: try to better guess an available RT signal (bug #75387).
5542
5543 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5544
5545         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5546         and CACHE_OBJECT.
5547
5548 2005-07-07  Martin Baulig  <martin@ximian.com>
5549
5550         * class.c (mono_type_get_name_full): Return NULL for
5551         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5552         fixes #75408.
5553
5554 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5555
5556         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5557         exit the appdomain as well being aborted.
5558
5559         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5560         change back to the root domain after calling managed code. This enables
5561         appdomains using threadpools to be unloaded.
5562
5563 2005-07-07  Martin Baulig  <martin@ximian.com>
5564
5565         * class-internals.h
5566         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5567         into `MonoDynamicGenericClass' since we only need it for dynamic
5568         types.
5569
5570         * reflection.c (mono_class_bind_generic_parameters): We don't need
5571         to compute the `parent' here.
5572
5573 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5574
5575         * culture-info-table.h : regenerated.
5576
5577 2005-07-06  Martin Baulig  <martin@ximian.com>
5578
5579         * icall.c
5580         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5581
5582         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5583
5584 2005-07-06  Martin Baulig  <martin@ximian.com>
5585
5586         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5587         we're doing a signature-only comparision; fixes #74945.
5588
5589 2005-07-06  Martin Baulig  <martin@ximian.com>
5590
5591         * class-internals.h (MonoGenericClass): Moved some things out into
5592         a new `MonoInflatedGenericClass' type.  
5593         (MonoInflatedGenericClass): New type; the `klass' of a
5594         `MonoGenericClass' is now computed lazyly in
5595         mono_get_inflated_generic_class().      
5596
5597         * class.c (mono_get_inflated_generic_class): New public function.
5598         (mono_class_inflate_generic_method): Removed the unused
5599         `MonoClass *' argument.
5600         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5601         all the methods.
5602         (mono_class_create_generic): Make this static and merge it with
5603         mono_class_create_generic_2(); we're now called automatically from
5604         mono_get_inflated_generic_class().
5605
5606         * loader.c (mono_method_signature): Call
5607         mono_get_inflated_method() here.
5608
5609 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5610
5611         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5612         type of fields with RVA.
5613
5614         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5615         for this pseudo class.
5616         (my_mono_class_from_generic_parameter): Likewise.
5617         (mono_class_init): Allow interfaces to have cctors.
5618
5619 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5620
5621         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5622         lazily for AOT methods.
5623
5624 2005-07-05  Martin Baulig  <martin@ximian.com>
5625
5626         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5627         returns FALSE for a successful match, not TRUE.
5628
5629 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5630
5631         * loader.c (mono_method_get_index): Optimize this a bit.
5632
5633 2005-07-04  Martin Baulig  <martin@ximian.com>
5634
5635         * class.c
5636         (class_compute_field_layout): Move the check for generic type
5637         definitions into mono_class_layout_fields().  Fixes #74684.
5638         (mono_class_from_generic_parameter): Correctly compute
5639         `klass->parent'; fixes #75457.
5640
5641         * reflection.c (register_assembly, register_module): Make sure
5642         `domain->rejobject_hash' is already created.
5643
5644 2005-07-02  Martin Baulig  <martin@ximian.com>
5645
5646         * class-internals.h
5647         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5648         `MonoDynamicGenericClass'.      
5649
5650 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5651
5652         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5653         returned by a field getter is null, since null is a valid value.
5654
5655 2005-07-01  Martin Baulig  <martin@ximian.com>
5656
5657         * reflection.c (mono_reflection_generic_class_initialize): Update
5658         the `dgclass->fields [i].parent' to the correct class.
5659         (mono_image_get_fieldref_token): Use the declaring type, not the
5660         reflected type.
5661
5662 2005-07-01  Martin Baulig  <martin@ximian.com>
5663
5664         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5665
5666 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5667
5668         * threads.c (thread_cleanup): assert that thread != NULL
5669         (wait_for_tids_or_state_change): We were using the wrong variable
5670         when accessing wait->threads. `i' was always out of the bounds of
5671         the array.
5672
5673 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5674
5675         * loader.c: map user32 and kernel32 to libMonoSupportW
5676
5677 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5678
5679         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5680
5681 2005-06-28  Martin Baulig  <martin@ximian.com>
5682
5683         * loader.c (method_from_methodspec): Fix #75334.
5684
5685 2005-06-28  Martin Baulig  <martin@ximian.com>
5686
5687         Fix #74953 - Arrays now implement the generic IList<T> interface
5688         on the 2.0 platform.
5689
5690         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5691
5692         * reflection.c (mono_class_bind_generic_parameters): New public
5693         function; similar to mono_reflection_bind_generic_parameters(),
5694         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5695
5696         * domain.c (mono_init_internal): Try to initialize.
5697         `mono_defaults.generic_array_class' here; this'll only succeed if
5698         we're using the 2.0 corlib.
5699
5700         * icall.c
5701         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5702         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5703         (mono_lookup_internal_call): Added support for nested classes.
5704
5705         * loader.c
5706         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5707         we're an interncall and have generic arguments.
5708
5709         * class.c
5710         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5711         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5712         instance of System.Array.InternalArray<T> for arrays, so they
5713         implement the generic IList<T> interface.
5714
5715 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5716
5717         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5718         (chastamar@yahoo.com). Fixes #75374.    
5719
5720 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5721
5722         * culture-info-table.h: regenerated.
5723
5724 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5725
5726         * icall.c: handle spaces correctly for base64 strings.
5727
5728 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5729
5730         * *.c: Kill some warnings.
5731
5732 2005-06-23  Duncan Mak  <duncan@novell.com>
5733
5734         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5735         that this builds on Solaris 10 (x86).
5736
5737 2005-06-23  Martin Baulig  <martin@ximian.com>
5738
5739         * class.c
5740         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5741         generic type definitions.
5742
5743 2005-06-23  Martin Baulig  <martin@ximian.com>
5744
5745         Fix #75331.
5746
5747         * metadata.c (mono_class_get_overrides): Renamed to
5748         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5749         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5750         pass it to mono_get_method_full().
5751
5752 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5753
5754         * reflection.c (mono_reflection_create_runtime_class): take the
5755         mono_domain_lock in this method. Prevents deadlocks
5756
5757 2005-06-22  Martin Baulig  <martin@ximian.com>
5758
5759         * loader.c (method_from_methodspec): Fix #75330.
5760
5761 2005-06-22  Martin Baulig  <martin@ximian.com>
5762
5763         * reflection.c (type_get_qualified_name): Use
5764         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5765         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5766         argument; use it if we don't have an assembly name.
5767
5768 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5769
5770         * object.c: In mono_message_init, set "copy out" flag for in
5771         parameters with the [Out] flag.
5772
5773 2005-06-21  Martin Baulig  <martin@ximian.com>
5774
5775         * class.c
5776         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5777         and MONO_TYPE_PTR.
5778
5779 2005-06-21  Martin Baulig  <martin@ximian.com>
5780
5781         * class.c (mono_class_init): Don't initialize `class->fields' for
5782         generic instances since they're initialized again in
5783         compute_field_layout(). 
5784         (compute_field_layout): Set the field's `generic_info' here; fix
5785         #75320. 
5786
5787 2005-06-21  Martin Baulig  <martin@ximian.com>
5788
5789         * class-internals.h
5790         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5791
5792         * metadata.c (mono_metadata_generic_method_equal): Also
5793         distinguish the `generic_class'; fixes #75334.
5794
5795 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5796
5797         * domain.c:
5798         * appdomain.c:
5799         * domain-internals.h:
5800         * reflection.c: 'domain_assemblies' field is now protected by its own
5801         lock. Don't call into managed code to run the AssemblyLoad event if we
5802         now there are no registered delegates for it.
5803
5804 2005-06-20  Martin Baulig  <martin@ximian.com>
5805
5806         * class.c (mono_class_is_assignable_from): Use a custom version of
5807         mono_class_has_parent() to make things work for generic instances;
5808         fix #75300.
5809
5810 2005-06-20  Martin Baulig  <martin@ximian.com>
5811
5812         * loader.c (method_from_methodspec): Apply a patch from
5813         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5814
5815 2005-06-20  Martin Baulig  <martin@ximian.com>
5816
5817         * class.c (mono_class_init): Reverted Zoltan's last change; it
5818         breaks generics.
5819
5820 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5821
5822         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5823
5824 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5825
5826         * socket-io.c: fix the index in the socket array for writable/error
5827         sockets. Fixes bug #75306.
5828
5829 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5830
5831         * class.c (mono_class_init): Allow interfaces to have static ctors.
5832
5833 2005-06-17  Martin Baulig  <martin@ximian.com>
5834
5835         * loader.c (method_from_methodspec): Use `context->container' when
5836         parsing the `gmethod->inst'.
5837
5838 2005-06-17  Martin Baulig  <martin@ximian.com>
5839
5840         * class.c (mono_type_get_name_recurse): Don't add the assembly
5841         name for type arguments.
5842
5843 2005-06-15  Martin Baulig  <martin@ximian.com>
5844
5845         * reflection.c (mono_image_get_inflated_method_token): Encode
5846         correct klass; fixes #75260.
5847
5848 2005-06-13 Michal Moskal <malekith@nemerle.org>
5849
5850         * icall.c: Make GetCorrespondingMethod/Constructor take
5851         MonoReflectionMethod method not MonoMethod. Removed
5852         MonoType.GetCorrespondingField, and make
5853         MonoGenericType.GetCorrespondingField take name not
5854         MonoClassField.
5855
5856 2005-06-13  Michal Moskal <malekith@nemerle.org>
5857
5858         * reflection.c (field_encode_signature, encode_locals):
5859          Make sizes of buffers for types larger (for big generic types).
5860          (create_generic_typespec,
5861          mono_reflection_sighelper_get_signature_local,
5862          mono_reflection_sighelper_get_signature_field):
5863          Add asserts for too small buffers.
5864
5865 2005-06-15  Martin Baulig  <martin@ximian.com>
5866
5867         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5868         if our parent is not a dynamic type.
5869
5870 2005-06-15  Martin Baulig  <martin@ximian.com>
5871
5872         * class-internals.h (MonoTypeNameFormat): New enum.
5873
5874         * class.c
5875         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5876         (mono_type_get_full_name): Removed.
5877         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5878         argument instead of the boolean's.
5879
5880         * icall.c (ves_icall_System_MonoType_getFullName):
5881         Added `gboolean assembly_qualified'.    
5882
5883         * reflection.h
5884         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5885
5886         * reflection.c (mono_reflection_parse_type): Parse the new type
5887         name format.
5888
5889 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5890
5891         * icall.c: no need to convert from utf16 to utf8 and then back again
5892         after the call to GetLogicalDrives.
5893
5894 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5895
5896         * icall.c: frombase64. Fix problems exposed by new tests.
5897
5898 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5899
5900         * icall.c: added internal calls for converting char [] and strings in
5901         base64 into byte [].
5902
5903 2005-06-10  Martin Baulig  <martin@ximian.com>
5904
5905         * class.c (mono_class_create_generic_2): Read the nested classes
5906         from the metadata rather than from `gklass->nested_classes' since
5907         `gklass' might not be initialized yet.
5908
5909 2005-06-09  Duncan Mak  <duncan@novell.com>
5910
5911         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5912         all public headers. Fixes #74919.
5913
5914 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5915
5916         * domain.c: The key for proxy_vtable_hash is now a pointer
5917         array. Added new GHashFunc and GCompareFunc functions for this.
5918
5919         * class.h: The list of interfaces in MonoRemoteClass is known in
5920         advance and can't grow (we create a new MonoRemoteClass if needed),
5921         so now the interface array can be allocated together with
5922         MonoRemoteClass.
5923         
5924         * object.c: Added a new method create_remote_class_key.
5925         Fixed mono_remote_class so it does not depend on
5926         mono_upgrade_remote_class.
5927         Removed extend_interface_array.
5928         Added new method clone_remote_class(), which makes a copy of a remote
5929         class and adds a new interface or class to it.
5930         mono_upgrade_remote_class() now creates a new remote class (or gets
5931         it from the cache) if an vtable upgrade is needed. In this way
5932         we make sure that other objects sharing the same remote class
5933         don't get the new vtable with unwanted interfaces.
5934         
5935         * object-internals.h:
5936         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5937         
5938         * marshal.c: Track changes in mono_upgrade_remote_class().
5939
5940 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5941         * icall.c: Add runtime methods for obtaining members of inflated
5942         class, which were created from supplied non-inflated members. It
5943         is used in internal Get{Method,Constructor,Field} methods in
5944         System.Type
5945
5946 2005-06-09  Martin Baulig  <martin@ximian.com>
5947
5948         * reflection.c
5949         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5950
5951 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5952         * reflection.c (mono_image_basic_init): Define
5953         Version in MonoDynamicAssembly. 
5954         
5955 2005-06-08  Martin Baulig  <martin@ximian.com>
5956
5957         Fix #75136.
5958
5959         * loader.c
5960         (mono_method_signature_full): New public method; takes a
5961         `MonoGenericContext *'.
5962         (find_method): Use mono_method_signature_full() and pass the
5963         klass'es context to it.
5964
5965         * class.c (mono_class_is_inflated_method): Use
5966         mono_method_signature_full() and pass the context to it.
5967
5968 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5969
5970         * object.c: add proper locking in mono_remote_class_vtable(),
5971         fixes possible memory corruption.
5972
5973 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5974
5975         * marshal.c (mono_remoting_marshal_init): set
5976         initialized after initialization.
5977
5978 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5979
5980         * locales.c : hush.
5981
5982 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
5983
5984         * object.c (extend_interface_array): fix really silly
5985         memory corrupting / comparison bug.
5986
5987 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5988
5989         * reflection.c: Functions added to support the creation
5990         of CustomAttributeData, which includes Attribute data
5991         used by ReflectionOnly methods.
5992
5993         * reflection.h:  mono_reflection_get_custom_attrs_data and
5994          mono_custom_attrs_data_construct added (functions exposed).
5995
5996          * icall.c: Added mono_reflection_get_custom_attrs_data
5997          as icall.
5998         
5999 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6000
6001         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6002         lupus's request.
6003
6004 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6005
6006         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6007
6008         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6009         dynamic DllImportAttribute.
6010
6011         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6012         dynamic DllImportAttribute.
6013
6014         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6015         Fixes #75162.
6016
6017 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6018
6019         * threads.c: avoid segfault when an unstarted thread is aborted.
6020
6021 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6022
6023         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6024         Returns the name and version of the runtime for reporting.
6025
6026 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6027
6028         * appdomain.c: bump corlib version.
6029         * object-internals.h: new field in MonoReflectionAssembly.
6030
6031 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6032
6033         * object-internals.h: Carlos forgot to add this field.
6034
6035 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6036
6037         * icall.c: Added create_version to create instances
6038         of Version of MonoReflectionAssemblyName. This change helps
6039         the AssemblyName tests to keep running fine.
6040         
6041 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6042   
6043         * object.c (mono_method_return_message_restore): A somehow less
6044         intrusive fix for #75138.
6045
6046 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6047
6048         * object.c (mono_method_return_message_restore): Fix computation
6049         of expected number of out args.
6050
6051 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6052
6053         * reflection.c (mono_image_get_method_info): Fix the case when the
6054         charset is empty.
6055
6056 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6057
6058         * object.c: Added missing null check in
6059           mono_method_return_message_restore.
6060
6061 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6062
6063         * reflection.c (mono_image_get_method_info): Handle the case when
6064         dllentry is empty.
6065
6066 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6067
6068         * object.c: When creating the vtable for a proxy, take into account
6069         all inherited interfaces, not only the ones registered in
6070         iclass->interfaces. This fixs bug #74996.
6071         Also, in mono_method_return_message_restore, verify that the array
6072         of out args has the expected lengh.
6073
6074 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6075
6076         * socket-io.c: update the timeout in Poll when the call is interrupte.
6077
6078 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6079
6080         * socket-io.c: support abort/suspend in Select_internal after last
6081         change.
6082
6083 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6084
6085         * threadpool.c: remove warning.
6086
6087 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6088
6089         * icall.c:
6090         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6091         removing the 1024 limit from select(). Runtime part of the fix for
6092         bug #71203.
6093
6094 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6095
6096         * socket-io.c: when resolving the addresses for the same
6097         host returned by gethostname(), get the local IPs from the interface
6098         list. Loopback addresses are discarded if the are interfaces up with
6099         non-loopback ones. Fixes bug #63265.
6100
6101 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6102
6103         * appdomain.c, verify.c, object-internals.h, reflection.c:
6104         bumped corlib number to 36, and added new extra_flags field
6105         to ReflectionMethodBuilder and friends.  Fixes #75060.
6106
6107 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6108
6109         * gc.c: register a new weak link only if the object is non-null
6110         (fixes bug#75047).
6111
6112 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6113
6114         * culture-info.h : short time pattern too.
6115
6116 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6117
6118         * culture-info.h : expand long time pattern string length.
6119
6120 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6121
6122         * culture-info-table.h : update (more French date format; #72788).
6123
6124 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6125
6126         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6127         the method is static. Fixes #75029.
6128
6129 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6130
6131         * reflection.c: Update the table_idx field of method builders after
6132         saving the module, since it can change. This is a workaround for
6133         bug #74914. 
6134
6135 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6136
6137         * culture-info-table.h : update (additional French date format).
6138
6139 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6140
6141         * icall.c (ves_icall_type_Equals): Revert last change.
6142         
6143         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6144
6145         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6146
6147 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6148
6149         * class-internals.h: Added executioncontext_class field to 
6150         MonoDefaults structure.
6151         * domain.c: Cache System.Threading.ExecutionContext class in 
6152         mono_defaults.
6153         * object.c: Capture the ExecutionContext for asynchroneous calls in
6154          mono_async_result_new.
6155         * object-internals.h: Added execution_context and original_context 
6156         fields to MonoAsyncResult. Added execution_context to MonoThread.
6157         * security-manager.c|.h: Added mono_get_context_capture_method to 
6158         return the capture method (if required by the security manager or by
6159         the framework version used).
6160         * threadpool.c: Apply capture (if present) ExecutionContext in 
6161         mono_async_invoke and revert to original context after it completes.
6162
6163 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6164
6165         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6166
6167 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6168
6169         * culture-info-table.h : zh-CHT related workaround.
6170
6171 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6172
6173         * marshal.c (emit_marshal_custom): Add some error checking and call the
6174         methods in the ICustomMarshaler interface. Fixes #74875.
6175         
6176         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6177         native->managed wrappers.
6178
6179 2005-05-12  Martin Baulig  <martin@ximian.com>
6180
6181         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6182         here and use the loader lock.
6183
6184         * mono-debug.c: Properly lock when the debugger is not attached.
6185         (mono_debug_init): Release the initial lock if we're not running
6186         in the debugger.
6187
6188 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6189
6190         * marshal.c (emit_marshal_custom): Pass through NULL values without
6191         calling the custom marshalling routines.
6192
6193         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6194         conversion in structures. Fixes #74882.
6195
6196 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6197
6198         * culture-info-table.h : zh-* cultures were missing.
6199
6200 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6201
6202         * threads.c: Added a new event background_change_event which is signaled
6203         when a thread changes its background mode.
6204         Moved here several checks previously done in managed code. The checks
6205         require the thread lock, and using the thread lock in managed code
6206         can result in deadlocks.
6207         Merged Start_internal and Thread_internal into a single method. Now 
6208         Thread_internal does all work of creating and starting a thread.
6209         Added icalls for setting and getting the state of the object. Moved from
6210         managed code to avoid locking there.
6211         Added wait_for_tids_or_state_change() which is called instad of
6212         wait_for_tids when waiting for non-backround threads to end. This method
6213         will return if one of the threads ends or the background_change_event
6214         is signaled.
6215         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6216         the background mode. This method signals the background_change_event
6217         event.
6218         * icall.c:
6219         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6220         removed Start_internal.
6221         
6222 2005-05-11  Martin Baulig  <martin@ximian.com>
6223
6224         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6225         to order of some fields to get proper alignment on 64-bit machines.
6226
6227 2005-05-11  Martin Baulig  <martin@ximian.com>
6228
6229         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6230         changes as they're broken and completely fuck up the debugger.
6231
6232         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6233
6234 2005-05-10  Martin Baulig  <martin@ximian.com>
6235
6236         * reflection.c (mono_reflection_generic_class_initialize): Don't
6237         call mono_class_setup_parent() here.
6238
6239 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6240
6241         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6242         send/receive timeout use an integer in milliseconds. We were using a
6243         struct timeval.
6244
6245 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6246
6247         * locales.c:
6248         (internal_get_cultures): reserve the first slot of the array for the
6249         InvariantCulture, which will be filled in managed code.
6250
6251 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6252
6253         * reflection.c (mono_image_fill_module_table): Initialize the
6254         GENERATION field as well.
6255
6256 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6257
6258         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6259         Monitor.Enter on the object.
6260
6261 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6262
6263         * threads.c: Enable the wait for running threads when exiting.
6264         * icall.c: Suspend all threads before exiting.
6265
6266 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6267
6268         * assembly.c (mono_assembly_load_reference): Fix warning.
6269
6270 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6271
6272         * threadpool.c: changed the default number of threads per cpu. From now
6273         on, the default will be 20 + (5 * number of cpus) instead of 50.
6274
6275 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6276
6277         * loader.c (mono_method_get_signature_full): Add locking here.
6278
6279 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6280
6281         * appdomain.c: Moved methods for parsing and freeing assembly
6282         names to assembly.c.
6283         * assembly.c, domain-internals.h: Created public methods for parsing
6284         assembly names. Fixed mono_assembly_load_with_partial_name:
6285         it now finds the best match, taking into account the version,
6286         token and culture specified in the partial name. Also return
6287         the latest version if no version information is specified.
6288
6289 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6290
6291         * threadpool.c: replace check for SocketAsyncCall class.
6292
6293 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6294
6295         * threadpool-internals.h:
6296         * Makefile.am: added threadpool-internals.h
6297
6298         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6299         that happen in threadpool threads (tested on MS).
6300         (mono_thread_pool_remove_socket): new function that dispatch any pending
6301         AIO call on a socket that is closing. By now only epoll really needs it,
6302         as select/poll wake up when the socket closes.
6303
6304
6305         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6306
6307 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6308
6309         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6310
6311 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6312
6313         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6314
6315 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6316
6317         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6318         has an abort request, convert it into a suspend request.
6319
6320 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6321
6322         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6323         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6324         is not supported yet.
6325
6326 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6327
6328         * image.c: register assemblies loaded from data (bundles) in the loaded
6329         assemblies hash. Fixes bug #74772.
6330
6331 2005-04-29  Martin Baulig  <martin@ximian.com>
6332
6333         * class.c (mono_type_get_name_recurse): Update to the new naming
6334         schema from the latest .NET 2.x beta2.
6335         (mono_class_setup_vtable_general): If we're a generic instance,
6336         copy the vtable from our generic type definition and inflate all
6337         the methods in it.
6338
6339         * loader.c (find_method): Update to the new naming schema from the
6340         latest .NET 2.x beta2.
6341
6342 2005-04-29  Raja R Harinath  <harinath@gmail.com>
6343
6344         * class.c (mono_class_init): Add a mono_loader_unlock to the
6345         #74734 fix.
6346
6347 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
6348
6349         * icall.c (ves_icall_System_Environment_Exit): Remove the 
6350         suspend_all_other_threads () call for the time being, since it can hang.
6351
6352         * threads.c (mono_thread_manage): Similarly, disable the waiting for
6353         the background threads to exit, since it can also hang.
6354
6355         * class.c (mono_class_init): Applied patch from Ankit Jain 
6356         (radical@gmail.com). Avoid pending init errors when a field refers
6357         to a nested class using a typeref. Fixes #74734.
6358
6359         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
6360         this for dynamic modules.
6361
6362 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6363
6364         * threads.c: don't wait for threads that are in the process of aborting
6365         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
6366         and waiting for background threads to finish. This makes xsp and
6367         mod-mono-server exit without random length delays and/or hangs.
6368
6369 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6370
6371         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
6372
6373 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
6374
6375         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
6376         dynamic types to prevent infinite loops. Fixes #74727.
6377
6378         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
6379         ..._is_assignable_to.
6380
6381 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
6382
6383         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
6384
6385 2005-04-25  Martin Baulig  <martin@ximian.com>
6386
6387         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
6388
6389         * domain.c
6390         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
6391
6392         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
6393
6394         * reflection.c (build_compressed_metadata): Set metadata header
6395         version to 2.0.
6396
6397 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
6398
6399         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
6400         number into an integral and a decimal part. Fixes #70473.
6401
6402         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
6403
6404 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
6405
6406         * culture-info-table.h : reflected the latest locale-builder output.
6407
6408 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6409
6410         * threadpool.c: check for SuspendRequested too when deciding if
6411         mono_thread_interruption_checkpoint should be called.
6412
6413 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6414
6415         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
6416         * threads.c: remove interruption_mutex and use Interlocked instead. When
6417         suspending all the threads, wait for all the suspended events at once.
6418         If we're shutting down and get an APC that is going to be queued,
6419         call mono_thread_execute_interruption immediately, as the thread might
6420         be sleeping on a pthread condition or mutex.
6421
6422         * icall.c: call mono_runtime_set_shutting_down before suspending the
6423         threads.
6424
6425         Fixes bug #74693. And now xsp is happier when exiting.
6426
6427 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
6428
6429         * loader.c (mono_stack_walk): Fix #74690.
6430
6431 2005-04-22  Martin Baulig  <martin@ximian.com>
6432
6433         * mono-debug.h (MonoDebugMethodJitInfo): Added
6434         `MonoDebugMethodJitInfo *jit'.
6435
6436         * mono-debug.c (mono_debug_read_method): Cache the
6437         MonoDebugMethodJitInfo in `address->jit'.
6438         (mono_debug_free_method_jit_info): New public method.
6439
6440 2005-04-22  Martin Baulig  <martin@ximian.com>
6441
6442         * class.c (mono_class_is_assignable_from): Disallow
6443         type parameter -> interface.
6444
6445 2005-04-21  Dick Porter  <dick@ximian.com>
6446
6447         * threads.c (mono_thread_create): Turn an assertion into an error.
6448
6449 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
6450
6451         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
6452         
6453         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
6454         Fix some gcc 4.0 warnings.
6455
6456 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
6457
6458         * file-io.c: fix alt dir separator char on unix systems
6459         and cleanup (fixes bug #71214).
6460
6461 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
6462
6463         * marshal.c: Use CALLVIRT instead of CALL when dispatching
6464         a call to a remote domain, since the method may be an
6465         interface method in the client domain. This fixes bug #74192.
6466
6467 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6468
6469         * threadpool.c: recv/send are now performed before going back to managed
6470         code to save one transition.
6471
6472 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6473
6474         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6475
6476         * metadata/threadpool.c: removed hack to workaround the bug above.
6477
6478         Fixes bug #74618.
6479
6480 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6481
6482         * reflection.c reflection.h: Fix handling of parameter defaults in
6483         dynamic methods. Also fixes handling of parameter attributes.
6484         Fixes #74609.
6485
6486         * mono-debug.c (mono_debug_close_image): Fix warning.
6487
6488 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6489
6490         * socket-io.h: replaced old unused field with new 'blocking'.
6491         * threadpool.c: restore socket blocking state on windows(tm).
6492
6493 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6494
6495         * icall.c: don't return the codebase in the AssemblyName[] returned by
6496         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6497         * object-internals.h: Removed FIXME (fields were presents) and fixed
6498         versioncompat declaration.
6499
6500 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6501
6502         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6503         not closed, so don't cleanup when it happens.
6504
6505 2005-04-13  Chris Toshok  <toshok@ximian.com>
6506
6507         * mono-debug-debugger.h: change prototype for
6508         mono_debugger_lookup_type.
6509
6510         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6511         this function, although it should probably be named
6512         mono_debugger_init_type.
6513
6514 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6515
6516         * threadpool.c: fix non-AIO case.
6517
6518 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6519
6520         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6521         the built-in profiler to measure just JIT compilation times.
6522
6523 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6524
6525         * threadpool.c: the epollfd might be closed by another thread at
6526         any time, so ignore EBADF at treat it as a "we're closing" sign.
6527
6528 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6529
6530         * threadpool.c: release the semaphores with a count equals to the number
6531         of working threads in both IO and regular pools. Fixed typo that messed
6532         up the count of IO pool threads. Don't initialize the pipe handles if
6533         we're using epoll.
6534
6535 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6536
6537         * threadpool.c: some systems don't like a NULL when deleting the socket
6538         from epoll.
6539
6540 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6541
6542         * threadpool.c: fix semaphore allocation.
6543
6544 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6545
6546         * threadpool.c: added epoll() based implementation for asynchronous IO
6547         that is used instead of the default poll() when available.
6548         It can be disabled by setting MONO_DISABLE_AIO.
6549
6550 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6551
6552         * threadpool.c: windows needs 'closesocket' and instead of returning
6553         0 when the stream is closed while in select, it returns -1. Fixes bug
6554         #74573.
6555
6556 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6557
6558         * class.c (class_compute_field_layout): Fix the regression caused by
6559         the previous try.
6560
6561 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6562
6563         * threadpool.c: separate pool for socket async. IO.
6564         * threadpool.h: mono_max_worker_threads is not a global any more.
6565
6566 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6567
6568         * class.c (class_compute_field_layout): Fix #74549.
6569
6570 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6571
6572         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6573         use 2 connected sockets instead.
6574
6575 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6576
6577         * mono-config.c: Add new entry point for mkbundle
6578         mono_config_parse_memory. 
6579
6580 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6581
6582         * threadpool.c: removed another unused function.
6583
6584 2005-04-08  Ankit Jain  <radical@corewars.org>
6585
6586         * reflection.c (get_default_param_value_blobs): Add 'types'
6587         parameter to get the types encoded in the constant table.
6588         (mono_param_get_objects): Use the type from the constant table,
6589         not the type of the parameter, when creating default values.
6590         Handle null default values correctly.
6591
6592 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6593
6594         * file-io.c:
6595         * file-io.h:
6596         * threadpool.c:
6597         * threadpool.h:
6598         * icall.c:
6599         * socket-io.c: removed dead code for async IO.
6600
6601 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6602
6603         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6604
6605         * threadpool.c: intercept socket async. calls and pass them to a thread
6606         that is polling and dispatching the job items to the threadpool as
6607         socket become ready. Fixes bugs #71217, #71933.
6608
6609         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6610         between char and short/ushort arrays.
6611
6612         * socket-io.c: remove dead code.
6613
6614 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6615
6616         * locales.c,
6617           icall.c : removed InternalToUpper_Comp() and
6618           InternalToLower_Comp().
6619
6620 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6621
6622         * char-conversions.h : The tables were incorrectly generated. Should
6623           be generated against invariant culture.
6624
6625 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6626
6627         * object.c (mono_runtime_invoke_array): Fix return value when 
6628         passing pre-created valuetype objects to ctors.
6629
6630         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6631         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6632         Fixes #74338.
6633
6634 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6635
6636         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6637         only used with --security and hides the wrong corlib version error.
6638
6639 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6640
6641         * class.c: Changed mono_class_name_from_token so that types
6642         outside of a namespace don't have an initial period.  Improved
6643         the g_warning message used in _mono_class_get when loading
6644         fails.
6645         * assembly.c: In mono_assembly_load_reference, when an assembly
6646         can't be found, "No such file or directory" is misleading and
6647         unhelpful because a few paths were checked for the presence of
6648         the assembly.  When that happens (ENOENT), display a nicer
6649         message indicating the directories that were searched.  In all
6650         cases, the warning is made easier to read for non-hackers.
6651
6652 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6653
6654         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6655         project/solution.
6656         * appdomain.h|domain.c: Removed inline from functions.
6657         * appdomain.c: Reduced warnings when compiling on windows.
6658         * icall.c: Fixed output_debug declaration to gunichar2*.
6659         * mono-config.c: Reduced warnings when compiling on windows.
6660         * rand.c: Added missing "windows.h". Added missing return value.
6661         * rawbuffer.c: Added missing winsock2.h for windows.
6662         * sysmath.h: Added mono-compiler.h header to allow/ease 
6663         compilation with non-GCC compilers.
6664         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6665         Removed cast warnings.
6666
6667         Adapted from the work of J Lothian (for VC6).
6668
6669 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6670
6671         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6672         from default_path.
6673
6674 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6675
6676         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6677         the 2.0 profile.
6678
6679 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6680
6681         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6682         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6683         stuff, and it would probably use $(prefix)/share rather than
6684         $(prefix)/lib.
6685
6686 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6687
6688         * console-io.c: added 2 includes that might be missing.
6689
6690 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6691
6692         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6693         profile.
6694
6695         * reflection.c (create_custom_attr): Allocate the params array using
6696         alloca so it gets GC tracking.
6697
6698 2005-03-23  Chris Toshok  <toshok@ximian.com>
6699
6700         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6701         out some spew.
6702
6703 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6704
6705         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6706         changes to pick up any changes in prefix, etc.
6707
6708 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6709
6710         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6711         
6712         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6713         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6714
6715 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6716
6717         * class-internals.h object-internals.h class.c reflection.c: Extend the
6718         mono_lookup_dynamic_token () function to return the class of the
6719         token as well. 
6720
6721         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6722         well. Fixes #73848.
6723
6724 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6725
6726         * security-manager.c: Skip inheritance checks for intra-corlib
6727         class inheritance and method overrides. This skips a lot of checks
6728         and (anyway) permissions cannot work until corlib is loaded.
6729
6730 2005-03-23  Martin Baulig  <martin@ximian.com>
6731
6732         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6733         MONO_TYPE_GENERICINST.  
6734
6735 2005-03-23  Martin Baulig  <martin@ximian.com>
6736
6737         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6738
6739 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6740
6741         * class.c: added locking comments to some functions.
6742         Cache the interface offsets arrays (saves about 20 KB
6743         of runtime memory in a typical app).
6744         Reduce the time overhead in mono_class_setup_supertypes ().
6745
6746 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6747
6748         * icall.c: speedup and fix leaks in GetMethodsByName and
6749         GetPropertiesByName.
6750
6751 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6752
6753         * reflection.c: some locking fixes.
6754
6755 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6756
6757         * metadata.c: added missing break in case statement.
6758
6759 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6760
6761         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6762         typedbyref return values. Fixes #73941.
6763
6764 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6765
6766         * security-manager.c|h: Added demandunmanaged method and 
6767         suppressunmanagedcodesecurity class to MonoSecurityManager.
6768         Renamed aptc class to allowpartiallytrustedcallers.
6769
6770 2005-03-17  Martin Baulig  <martin@ximian.com>
6771
6772         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6773
6774 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6775
6776         * file-io.c: disabled file async. IO using aio_*. It uses the
6777         threadpool now. Workaround for bug #73718.
6778
6779 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6780
6781         * assembly.h, mono-config.c: added code to deal with bundled configs
6782         for bundled assemblies.
6783
6784 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6785
6786         * *.c, private.h: cleanup, removing old private.h header file.
6787
6788 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6789
6790         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6791         and throw_on_unmappable_char attributes.
6792
6793 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6794
6795         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6796         _ProcessName_internal.
6797
6798 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6799
6800         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6801         #73631.
6802
6803         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6804         are no longer used.
6805
6806 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6807
6808         * object.c (compute_class_bitmap): Add support for generics. Fixes
6809         #73527.
6810
6811 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6812
6813         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6814
6815 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6816
6817         * filewatcher.c: commented out the code for windows watcher, as we don't
6818         use it (we use the managed implementation instead).
6819
6820 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6821
6822         * object-internals.h (MonoThread): Remove 'unused1' field.
6823
6824         * appdomain.c: Bump corlib version.
6825
6826         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6827
6828         * reflection.c (mono_reflection_create_runtime_class): Remove the
6829         AssemblyBuilder.Save optimization since it causes too many problems.
6830
6831 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6832
6833         * exception.c|h: Added mono_get_exception_reflection_type_load to
6834         create a ReflectionTypeLoadException object.
6835         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6836         to return NULL is a InheritanceDemand fails during reflection. Updated
6837         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6838         ReflectionTypeLoadException if an InheritanceDemand fails during 
6839         reflection. Added icall mapping for GetLinkDemandSecurity.
6840         * security-manager.c|h: Added ves_icall_System_Security_
6841         SecurityManager_GetLinkDemandSecurity internal call to return the
6842         class and methods permissions set for a LinkDemand. Removed unused
6843         fields in MonoSecurityManager.
6844
6845 2005-03-10  Martin Baulig  <martin@ximian.com>
6846
6847         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6848         it's a generic instance.
6849
6850 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6851
6852         * reflection.c (mono_get_object_from_blob): Applied patch from
6853         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6854
6855         * class.c (mono_class_is_assignable_from): Another try at fixing 
6856         #73469 without breaking anything.
6857
6858 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6859
6860         * class.c: (mono_class_is_assignable_from): Revert the last changes
6861         since they don't work with generics.
6862         
6863         * class.c (mono_class_is_assignable_from): Fix build bustage.
6864
6865         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6866         the managed IsAssignableFrom method. Fixes #73469.
6867
6868         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6869         function.
6870
6871 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6872
6873         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6874         memory when the remoting callback does not sets the out arguments.
6875         Fixes #73007.
6876
6877         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6878         by mistake.
6879
6880         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6881
6882         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6883
6884         * appdomain.c: Bump corlib version.
6885
6886 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6887
6888         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6889         function.
6890
6891         * threads.c (mono_thread_attach): Detect threads which are not started
6892         by the GC pthread wrappers.
6893
6894 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6895
6896         * icall.c: Added new icall for RNG.
6897         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6898         single handle on Linux to access /dev/urandom and fix #73183.
6899
6900 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6901
6902         * object.c: setting the new vtable in a transparent proxy object must
6903         not change the GC descriptor.
6904
6905 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6906
6907         * object.c: fixed compilation without GCJ support.
6908         * reflection.c: for runtime-created types ensure klass->has_references
6909         is correct (bug #73215).
6910
6911 2005-03-02  Martin Baulig  <martin@ximian.com>
6912
6913         * class.c (mono_class_is_assignable_from): Make this work if
6914         `oklass' is a generic instance; fixes #72831.
6915
6916 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6917
6918         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6919         with hasthis set.
6920         
6921         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6922
6923         * marshal.c: Reorganize native->managed marshalling code to also use
6924         the emit_marshal_... functions.
6925
6926 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6927
6928         * object.c: typed allocs have issues with bitmap sizes > 30,
6929         so check for max_set >= 30.
6930
6931 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6932
6933         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6934         managed code. Fixes #73012.
6935
6936         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6937
6938         * metadata.c reflection.c: Load/Emit elem_mult as well.
6939         
6940         * metadata.h (MonoMarshalSpec): Add comment.
6941
6942         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6943
6944         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6945         num_elem to -1 if not given.
6946
6947         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6948
6949         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6950         given values.
6951
6952 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6953
6954         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6955
6956 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6957
6958         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6959
6960         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6961
6962 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6963
6964         * object.c: generalized the reference bitmap creation
6965         and added hooks for the new GC.
6966         * class-internals.c: removed the gc_bitmap field from MonoClass.
6967
6968 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6969
6970         * domain.c: help the compiler to produce better code
6971         in mono_jit_info_table_find ().
6972
6973 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6974
6975         * object.c: make all allocations look typed.
6976
6977 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6978
6979         * socket-io.c: load Mono.Posix if it's not loaded already
6980         (fixes bug#73033).
6981
6982 2005-02-24  Martin Baulig  <martin@ximian.com>
6983
6984         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
6985         * reflection.c (dup_type): Likewise.
6986
6987 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
6988
6989         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
6990         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
6991
6992 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6993
6994         * domain.c, threads.c, object-internals.h: make the critical thread
6995         local vars use the fast access mode (even when we're compiled in
6996         a lib). Provide accessors to be used by the jit during codegen.
6997
6998 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6999
7000         * appdomain.c: Changed hook functios behavior to include
7001         support for the reflection only assemblies. Some icalls were changed
7002         to support the mentioned assemblies too. Signatures of static methods
7003         try_assembly_resolve and real_load now have an additional parameter:
7004         refonly.
7005
7006         * assembly.c: General changes to mono_assembly_ methods to support
7007         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7008         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7009         suffix, to support an additional gbool parameter to specify whether
7010         the assembli is reflection only or not. Created some new hook functions 
7011         to add support for reflection only assemblies. Signatures of static 
7012         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7013         have now an additional parameter: refonly.
7014
7015         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7016         indicating whether the assembly is reflection only or not.
7017
7018         * exception.c: Add mono_get_exception_invalid_operation.
7019
7020         * icall.c: Throw an InvalidOperationException when trying to invoke
7021         a property/method/event, or trying to set/get the value of a field.
7022         Also add an icall to retrieve the ref_only flag to the
7023         MonoReflectionAssembly.
7024
7025 2005-02-23  Chris Toshok  <toshok@ximian.com>
7026
7027         Part of fix for #72827.
7028         * mono-debug.c (mono_debug_add_method): add lexical block data to
7029         the info we write.  Kind of a hack at the moment - we copy the
7030         lexical block info from the MonoDebugMethodInfo to the
7031         MonoDebugMethodJitInfo here, before writing it.
7032         (mono_debug_read_method): read the lexical block info.
7033
7034         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7035
7036         * debug-mono-symfile.h: add lexical block support.
7037
7038         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7039         support.
7040
7041 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7042
7043         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7044
7045         * object.c (mono_runtime_free_method): Call mono_free_method () and
7046         put the TODOs there.
7047
7048         * loader.c (mono_free_method): Free up most memory allocated for 
7049         dynamic methods.
7050
7051 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7052
7053         * reflection.c: properly flag a Type argument to a
7054         named custom attr value (bug #72248).
7055
7056 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7057
7058         * reflection.c: reduce code duplication in named custom
7059         attribute encoding.
7060
7061 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7062
7063         * reflection.c: properly encode custom attrs of type object
7064         (bug #72649).
7065
7066 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7067
7068         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7069
7070 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7071
7072         * socket-io.c: load System.dll if it's not loaded already
7073         (bug #72850 and #70477).
7074
7075 2005-02-21  Martin Baulig  <martin@ximian.com>
7076
7077         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7078         generic instances.
7079
7080 2005-02-21  Martin Baulig  <martin@ximian.com>
7081
7082         * reflection.c (mono_image_build_metadata): We also need to
7083         "fixup" the MethodImpl table after we computed the final method
7084         indices.  Call fixup_methodimpl() to do that.
7085         (fixup_methodimpl): New private method.
7086
7087 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7088
7089         * assembly.c: special case mscorlib.dll (bug#72536),
7090         patch from Carlos Alberto Cortez.
7091
7092 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7093
7094         * threads-types.h threads.c: Fix build bustage.
7095
7096         * threads.c: Use a union for long<->double conversions.
7097
7098         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7099         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7100
7101         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7102         containing the checkpoint call with NOT_TAKEN.
7103         
7104         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7105         checkpoint before pushing the arguments, so they won't have to be
7106         spilled to stack.
7107
7108 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7109
7110         * domain.c, assembly.c, domain-internals.h: make some data
7111         const and relocation-free.
7112
7113 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7114
7115         * object.c, appdomain.c, class-internals.h: introduce the
7116         MonoClassRuntimeInfo structure to hold the info needed to
7117         use a class at runtime. Made mono_class_vtable() lock-free
7118         for all the appdomains.
7119
7120 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7121
7122         * metadata-internals.h, image.c: introduce a per-image mempool to
7123         be used for memory that has the same lifetime as the image.
7124
7125 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7126
7127         * domain.c: In mono_init_internal(), instead of selecting the first
7128         runtime version supported by an executable, get a list of all
7129         supported versions and select the one for which an mscorlib exists
7130         (since even if the runtime supports a given version, it doesn't mean
7131         that the framework for that version is installed).
7132         Modified get_runtimes_from_exe to support this behavior.
7133         In supported_runtimes, added information about additional system
7134         assembly versions.
7135         
7136         * assembly.c: Added support for more than one system assembly version
7137         per runtime version. Updated the assembly list.
7138         In mono_assembly_remap_version, removed the initial version check,
7139         since we don't know to which version we need to compare until we
7140         get the version set on which the assembly is based.
7141         Moved the code for loading corlib into the new method
7142         mono_assembly_load_corlib(), so it can be used by the initialization
7143         code.
7144         
7145         * domain-internals.h: Updated data structures and added declaration
7146         for mono_assembly_load_corlib.
7147
7148 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7149
7150         * reflection.c (resolve_object): Fix the creation of the signature in 
7151         the SignatureHelper case.
7152
7153         * assembly.c (mono_assembly_remap_version): Fix binary search.
7154         
7155 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7156  
7157         * class.c: Added inheritance check when a method is overloaded (from a
7158         virtual method or when implementing an interface) and when a class is
7159         inherited. Added functions to set a failure for a class and to 
7160         retreive the exception from a failure.
7161         * class-internals.h: Added fields to MonoClass to keep the exception
7162         information status for inheritance (or other exceptions) to be thrown
7163         later (i.e. not at load time).
7164         * object.c: Throw the inheritance SecurityException when a type is to 
7165         be created with either class or method inheritance violations.
7166         * reflection.c|h: Fix when getting declsec from a class. Removed 
7167         unrequired code for class. Improved sanity in parameter naming.
7168         * security-manager.c|h: Added functions to check for class and method
7169         inheritance.
7170
7171 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7172
7173         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7174         and has_finalize in dynamic types as well.
7175
7176 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7177
7178         * culture-info-table.h : fixed currency format for en-GB (and so on).
7179
7180 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7181
7182         * gc.c: ensure the GC handles never have 0 as a value.
7183
7184 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7185
7186         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7187         a pointer to a struct to unmanaged code. Fixes #72625.
7188
7189 2005-02-16  Martin Baulig  <martin@ximian.com>
7190
7191         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7192
7193 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7194
7195         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7196
7197 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7198
7199         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7200
7201         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7202         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7203         etc. Fixes #71471.
7204
7205         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7206
7207         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7208
7209 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7210
7211         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7212         changes to make the current context a field in MonoThread.
7213
7214 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7215
7216         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7217         the last change.
7218         
7219         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7220         extracted from mono_marshal_get_native_wrapper.
7221
7222         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7223         to create wrappers around native functions.
7224
7225         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7226         delegates for arbitrary function pointers. Fixes #71472.
7227
7228 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7229
7230         * threads.c: cleaned up the code a little.
7231
7232 2005-02-15  Martin Baulig  <martin@ximian.com>
7233
7234         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7235         the data table.
7236
7237         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7238         allocate larger chunks if needed.
7239
7240 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7241
7242         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7243         in by mistake.
7244
7245 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7246
7247         * domain.c: keep the domains in an array and ensure the domain ids
7248         are kept small, so they can be used as indexes to domain-specific data
7249         with a small memory overhead.
7250
7251 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7252
7253         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7254
7255 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7256
7257         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7258
7259 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7260
7261         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7262
7263         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7264         values.
7265
7266         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7267         
7268 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7269
7270         * domain-internals.h: add the hashtable here.
7271
7272         * class-internals.h: Remove `info' from MonoMethod
7273
7274         * domain.c: Add a new hashtable, jit_trampoline_hash
7275
7276 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7277
7278         * object.c: don't set the value of static fields
7279         (fixes bug#72494).
7280
7281 2005-02-11  Martin Baulig  <martin@ximian.com>
7282
7283         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7284         (mono_debug_add_method): Silently ignore the method if it's too big.
7285         (mono_debug_add_type): Likewise.
7286
7287 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7288
7289         * threads.c, appdomain.c: remove #ifdefs from the code.
7290
7291 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7292
7293         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7294         common security informations. This allows us to stay in unmanaged code
7295         when doing LinkDemand and it's special cases (except for the first 
7296         time for initialization). The flags a very much used with --security.
7297         * reflection.c|h: Added code to get declarative security attributes 
7298         for LinkDemand and InheritanceDemand. This required to refactor the
7299         existing code for Demand.
7300         * security-manager.c|h: Added new method fields for the special cases
7301         of LinkDemand.
7302
7303 2005-02-10  Martin Baulig  <martin@ximian.com>
7304
7305         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7306         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7307
7308 2005-02-10  Martin Baulig  <martin@ximian.com>
7309
7310         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7311         debugging code; this is almost a complete rewrite.
7312
7313         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7314
7315 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7316
7317         * domain.c, object.h: expose mono_string_equal () and 
7318         mono_string_hash ().
7319         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7320         it's implemented in managed code.
7321
7322 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7323
7324         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7325         lo leak objects between appdomains.
7326
7327 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7328
7329         * assembly.c: old compilers compilation fix from 
7330         robertj@gmx.net (Robert Jordan).
7331
7332 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7333
7334         * class-internals.h: Little reminder for the future.
7335
7336         * debug-helpers.c: Fix up wrapper_type_names
7337
7338 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7339
7340         * image.c, metadata-internals.h: when loading an image from a file,
7341         mmap all of it and use the same codepaths as when using a
7342         in-memory image: the code is simpler and we use less memory
7343         (both writable and readonly).
7344
7345 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7346
7347         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
7348         API to alloc runtime data structures that need to be tracked by the
7349         GC and contain pointers.
7350         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
7351         make the code more readable and eventually use a different GC.
7352
7353 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
7354
7355         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
7356         for out arguments.
7357         
7358 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
7359
7360         * object.c: In release_type_locks(), don't release the cctor lock
7361         if it has already been released. This fixes a crash in the
7362         thread5 test.
7363
7364 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7365
7366         * gc.c, marshal.c, icall.c: register a delegate for finalization
7367         only when the native function pointer has been allocated for it.
7368
7369 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7370
7371         * object.c: cleaned up some code, allocate objects that are
7372         pointer free with the atomic malloc variant. Allocate memory
7373         for static data from the mempool if it's pointer-free.
7374         Allocate the bounds array at the end of the array data, when needed.
7375         * object-internals.h, object.h: move a private function in a private
7376         header.
7377         * class.c: handle missing case in tracking references in fields.
7378
7379 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7380
7381         * class.c, class-internals.h: keep track if a type has
7382         reference fields in either the instance or static fields.
7383
7384 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
7385
7386         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
7387         and renamed to MonoRuntimeInfo. Added fields to store the expected
7388         framework assembly version. Changed mono_get_framework_version and
7389         mono_get_runtime_version for a single mono_get_runtime_info method.
7390         
7391         * assembly.c: Added method to remap system assembly versions to the
7392         current executing runtime version. Removed old mapping code.
7393         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
7394         
7395         * icall.c, reflection.c: Track api changes.
7396
7397 2005-02-06  Miguel de Icaza  <miguel@novell.com>
7398
7399         * loader.c (method_from_memberref): Improve error reporting,
7400         produce the class name instead of the typeref/typedef index. 
7401
7402 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
7403
7404         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
7405
7406 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7407
7408         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
7409         stdcall and charset name mangling.  Reorganize the code and add
7410         some tracing stuff.
7411
7412 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7413
7414         * monodiet.c: More iters!
7415
7416         * marshal.c: Iter usage.
7417
7418         * icall.c: Iter usage.
7419
7420         * object.c: Use iters.
7421
7422         * debug-helpers.c: More iters
7423
7424 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7425
7426         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
7427         under win32.
7428
7429 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7430
7431         * mono-debug-debugger.c: use iters
7432
7433         * class.c, class-internals.h: mono_class_setup_events is static
7434         now
7435
7436         * All callers: use iters
7437
7438 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7439
7440         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
7441         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
7442
7443 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7444
7445         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
7446
7447         * marshal.h: Add prototypes for ldfld/stfld_remote.
7448
7449         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
7450         this is called during startup.
7451         
7452 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
7453
7454         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
7455         MonoThreadsSync struct private in monitor.c. Changed the way
7456         MonoThreadsSync is allocated so it's faster and there is no
7457         need to keep track of it with a finalizer and it uses less memory.
7458         This also finally allows us to allocate mono objects as ptrfree when
7459         there are no reference fields.
7460
7461 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
7462
7463         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
7464         disappearing link to the GC interface and use them to simplify
7465         the gchandles code.
7466
7467 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7468
7469         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
7470         stfld_remote which call mono_load/store_field_new. This allows methods
7471         calling ldfld/stfld wrappers to be AOTed.
7472
7473         * console-io.c: Include sys/filio.h under solaris.
7474         
7475         * console-io.c: Include curses.h if needed correctly.
7476
7477 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7478         
7479         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7480         method->klass as well.
7481
7482         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7483
7484         * class.c (mono_class_init): Switch on lazy initialization of 
7485         methods.
7486
7487         * class.c (mono_class_get_finalizer): Handle the case when the 
7488         finalizer is inherited.
7489
7490 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7491
7492         * console-io.c: <curses.h> is needed by term.h on solaris.
7493
7494 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7495
7496         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7497         mono_class_setup_properties where possible. Remove this ftn from
7498         the header file, and make it static.
7499
7500 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7501
7502         * loader.c: Add missing setup_... call.
7503
7504         * class.c: Add missing setup_... calls.
7505
7506         * class.c (mono_class_init): Switch on lazy initialization of 
7507         the generic vtable.
7508         
7509         * class.c (mono_class_init): Fix generics broken by the recent changes.
7510
7511         * monodiet.c (handle_type): Add missing setup_... calls.
7512
7513         * class.c: Back out garbage in previous patch.
7514         
7515         * class.c: Add missing setup_... calls.
7516
7517         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7518         mono_class_setup_methods () if possible.
7519
7520         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7521
7522         * class-internals.h (MonoCachedClassInfo): New structure.
7523
7524         * class.c: Initialize properties and events fields of MonoClass lazily.
7525
7526         * class.c: Add infrastructure for lazily initializing the methods and
7527         vtable fields of MonoClass. Not yet used.
7528
7529         * class.c (mono_class_get_finalizer): New helper function.
7530
7531         * class.c: Add infrastructure for loading some class related data from
7532         an AOT file.
7533
7534         * object.c: Add infrastructure for initializing the vtable from data
7535         in the AOT file.
7536
7537         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7538
7539         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7540         appropriate initialization function before accessing parts of the
7541         MonoClass structure.
7542
7543         * marshal.c: Fix warnings.
7544         
7545         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7546
7547         * mono-debug-debugger.c (get_exception_message): Use 
7548         mono_class_get_method_from_name_flags ().
7549
7550 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7551
7552         * reflection.c, appdomain.c: Replace a few manual searches that
7553         Zoltan missed. (Paolo approved this part of my initial patch).
7554
7555 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7556
7557         * profiler.c: disable recording statistical events at report time.
7558
7559 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7560
7561         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7562         to byteswap arrays of enum values, too (bug #72080).
7563
7564 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7565
7566         * appdomain.c (set_domain_search_path): Allow this to be called if
7567         domain->setup is not yet set.
7568
7569         * loader.c (mono_method_get_index): New helper function.
7570
7571         * loader.c reflection.c: Use mono_method_get_index ().
7572
7573         * class.c (mono_class_get_method_from_name_flags): New helper method.
7574
7575         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7576         this.
7577
7578         * class.c (mono_class_get_cctor): New helper method.
7579
7580         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7581         mono_class_get_method () to look up methods.
7582
7583 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7584
7585         * console-io.c: Fix the build, this should work on Windows.
7586
7587 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7588
7589         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7590         be set to null to keep things valid
7591
7592 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7593
7594         * icall.c: added Console 2.0 icalls.
7595         * Makefile.am: added console-io.[ch]
7596         * console-io.[ch]: internal calls for Console 2.0 API.
7597
7598 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7599
7600         * class.c: make sure we consider all the interfaces
7601         when calculating max_interface_id (bug found by
7602         Jeroen Frijters running ikvm).
7603
7604 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7605
7606         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7607         valuetype fields to null.
7608
7609         * object.c (set_value): Ditto. Fixes #71669.    
7610
7611 2005-01-31  Martin Baulig  <martin@ximian.com>
7612
7613         * metadata.c (mono_metadata_has_generic_params): New public
7614         function; checks whether something is a generic method.
7615
7616 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7617
7618         * appdomain.c: fix infinite recursion when adding assemblies.
7619
7620 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7621
7622         * object.c: Fix small typo to return all items for Environment.
7623         GetCommandLineArgs.
7624
7625 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7626
7627         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7628         reflection.c: more domain and assembly-unload related fixes
7629         and memory leaks plugs.
7630
7631 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7632
7633         * 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.
7634
7635 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7636
7637         * loader.c (mono_method_signature): Make this method lazy
7638         (mono_get_method_from_token): Don't computate the signature here.
7639
7640         Doing this saves quite a bit of memory. I got 90 kb on starting up
7641         monodoc. It should also save some disk reads on startup.
7642
7643         * *: MonoMethod->signature might be NULL now. You *MUST* use
7644         mono_method_signature.
7645
7646 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7647
7648         * object.c (mono_runtime_get_main_args): Return an array from the
7649         current domain here. Fixes #71938.
7650
7651 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7652
7653         * monitor.c: formatting changes to comply with the
7654         mono coding style and remove #ifdefs from the code.
7655
7656 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7657
7658         * metadata.c, private.h: remove some unneeded data
7659         and use a more compact representation for table schemas.
7660
7661 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7662
7663         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7664         to get a better distribution in hash tables.
7665         * *.c: use mono_aligned_addr_hash() where appropriate.
7666         * assembly.c: make var static.
7667
7668 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7669
7670         * domain-internals.h: Put MonoJitInfo on a diet.
7671
7672         * domain.c: Fix a warning.
7673
7674 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7675
7676         * gc.c: rework the gc handles code to reuse handles
7677         when freed.
7678
7679 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7680
7681         * domain.c: fixed long standing bug in mono_string_equal() which
7682         was brought to light with the ldstr changes.
7683
7684 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7685
7686         * reflection.c: Remove warning by adding missing include for marshal.h
7687
7688 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7689
7690         * domain.c, object.c: change the ldstr_table to hold
7691         MonoString* as keys: makes the runtime isinterned lookup
7692         faster and simplifies memory management.
7693
7694 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7695  
7696         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7697         possible to add imperative security checks before calling the icall.
7698         * reflection.c: Return security attributes on the original MonoMethod
7699         (and not the wrapped one). This fix permissions on icalls.
7700
7701 2005-01-25  Dick Porter  <dick@ximian.com>
7702
7703         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7704         the check for mktime() support actually test the mktime() return
7705         value.  "Fixes" bug 71682, though the output is still different to
7706         MS.
7707
7708 2005-01-25  Martin Baulig  <martin@ximian.com>
7709
7710         * class.c (mono_class_is_assignable_from): Make this work for
7711         generic instances.
7712
7713 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7714
7715         * marshal.c (mono_string_utf8_to_builder)
7716         (mono_string_builder_to_utf16): We might not have ownership of the
7717         string. In thise case, we need to create a new buffer.
7718
7719         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7720         be null, in which case, use the default capacity.
7721
7722 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7723
7724         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7725         GC events to the profiler.
7726
7727 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7728
7729         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7730         if you don't want the GC to run.
7731
7732 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7733
7734         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7735         start providing a GC API and keeping different implementations in
7736         their own file.
7737         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7738
7739 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7740
7741         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7742         mmap rather than allocating a huge buffer.
7743         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7744         above.
7745
7746 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7747
7748         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7749         and CheckExecutionRights.
7750         * reflection.c|h: Keep the index of the declarative security to be 
7751         used, instead of the pointer, when AOT compiler is used. Also add 
7752         class initialization when requesting demands.
7753         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7754         CheckExecutionRights. Both properties are now FALSE by default, and
7755         unmodifiable, unless the --security option is used.
7756
7757 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7758
7759         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7760         reflection.c: properly refcount images and assemblies, many leaks fixed.
7761
7762 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7763
7764         * threadpool.c: increase the timeout for threads in the thread pool to
7765         10s.  Fixes bug #67159.
7766
7767 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7768
7769         * class-internals.h: Sun's compiler insists on explicit
7770         signed on bit fields to handle then correctly.
7771
7772 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7773
7774         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7775         Make the size of the array fit only the number of invalid path
7776         chars that we have.
7777
7778         * class.c (_mono_class_get): Improve the error reporting when a
7779         class referenced is not found, to assist debugging. 
7780
7781 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7782
7783         * threads.c: fix off-by-one error.
7784         * domain.c: free data allocated in the domain.
7785
7786 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7787
7788         * reflection.c (mono_method_body_get_object): Fill out exception info
7789         as well.
7790
7791         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7792         structure.
7793         
7794 2005-01-19  Martin Baulig  <martin@ximian.com>
7795
7796         * loader.c (mono_get_method_constrained): Make this work again.
7797
7798 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7799
7800         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7801         guint16 to match the managed side.
7802
7803         * reflection.c (mono_reflection_body_get_object): Fill out local
7804         variables array.
7805
7806         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7807         as well.
7808
7809         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7810         'local_var_sig_token'.
7811
7812 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7813
7814         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7815         System.Drawing.
7816
7817         * reflection.c (mono_method_body_get_object): Handle abstract and
7818         runtime methods.
7819
7820 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7821
7822         * marshal.c, loader.c, class-internals.h, reflection.c:
7823         store the emthod data for a wrapper in an array instead of a list.
7824
7825 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7826
7827         * marshal.c: change the code to allocate memory more
7828         conservatively for method wrappers.
7829
7830 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7831
7832         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7833         fields from MonoClass to the marshal info structure where they belong.
7834
7835 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7836
7837         * class.c, object.c, class-internals.h, marshal.c: rearrange
7838         some fields and tweak some types to lower memory usage.
7839
7840 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7841
7842         * threads.c (signal_thread_state_change): Handle the case when the
7843         target thread is the current thread.
7844
7845         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7846
7847         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7848         emit_ptr_to_object_conv. 
7849
7850         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7851         marshalling. Fixes #71352.
7852
7853 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7854
7855         * metadata.h, blob.h: move table enum to blob.h so it can be included
7856         in any header.
7857         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7858         cut the size of MonoImage/MonoDynamicImage.
7859
7860 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7861
7862         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7863
7864 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7865
7866         * reflection.c, reflection.h, icall.c: add a function to check
7867         if an attribute type is defined for a metadata object.
7868
7869 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7870
7871         * object-internals.h: Added some needed fields from StringBuilder class.
7872         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7873
7874 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7875
7876         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7877         threads before shutting down the runtime.
7878
7879         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7880
7881 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7882
7883         * object-internal.h, threads.c: implement stacksize and 
7884         parameterized thread start functionality (requires
7885         matching corlib). Marked broken code for later removal.
7886
7887 2005-01-12  Martin Baulig  <martin@ximian.com>
7888
7889         * class-internals.h (MonoGenericClass): Moved the `initialized'
7890         flag to MonoDynamicGenericClass, removed `init_pending'.
7891         (MonoGenericInst): Added `is_reference' flag.
7892
7893 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7894
7895         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7896         inside the MSDOS header. Fixes #71201.
7897
7898         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7899         gc thread.
7900         (mono_domain_finalize): Ditto.
7901
7902 2005-01-12  Martin Baulig  <martin@ximian.com>
7903
7904         * class.c (mono_get_shared_generic_class): Use the cache for
7905         non-dynamic generic classes.
7906
7907         * class-internals.h (mono_class_create_generic_2): Removed
7908         function prototype, this function is now static inside class.c.
7909
7910         * class.c (mono_class_create_generic_2): Made this static, only
7911         call it from mono_class_init() and mono_class_setup_parent().
7912         (collect_implemented_interfaces_aux): Call mono_class_init() on
7913         the interfaces we collect.
7914         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7915
7916 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7917
7918         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7919         it a real thread handle.
7920
7921         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7922         MonoJitExceptionInfo, since each catch clause needs its own variable.
7923         
7924 2005-01-11  Dick Porter  <dick@ximian.com>
7925
7926         * image.c (mono_pe_file_open): New variant on mono_image_open()
7927         that does not set up the CLI metadata; used for FileVersionInfo so
7928         it can get the data for windows binaries too.
7929         
7930         * process.c (process_read_string_block): Don't read off the end of
7931         the StringTable block.
7932
7933         These both fix bug 70766.
7934
7935 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7936
7937         * gc.c: set some fields to NULL at GC cleanup time.
7938         * threads.c: if we quit the main thread, call exit ().
7939
7940 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7941
7942         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7943
7944 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7945
7946         * threads.h, threads.c, object.c: added accessor and settor for
7947         main_thread. Handle it specially when exiting from it: wait
7948         for other foreground threads to exit.
7949
7950 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7951
7952         * process.c, verify.c: remove some bloat.
7953
7954 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7955
7956         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7957         the calling convention to cdecl under win32.
7958
7959 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7960
7961         * object.c (mono_object_get_size): New function to get the size of
7962         an object instance.
7963
7964         * profiler.c (simple_allocation): Use above.
7965
7966 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7967
7968         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7969         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7970         get an appdomain by it's id and we can't assume the root's id is 0).
7971         * domain-internals.h: Change the function prototype to match.
7972         * icall.c: Change the icall table for AppDomain.
7973
7974 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
7975
7976         * locales.c (string_invariant_compare_char): Only compute
7977         GUnicodeTypes in the case where we need them.  Test for ordinality
7978         first and return if so.
7979
7980         From the commit:
7981
7982                 /*
7983                  * FIXME: here we must use the information from c1type and c2type
7984                  * to find out the proper collation, even on the InvariantCulture, the
7985                  * sorting is not done by computing the unicode values, but their
7986                  * actual sort order.
7987                  */
7988
7989 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7990
7991         * loader.c: for P/Invoke methods, allow the "Internal" shared
7992         library name to refer to the calling process symbol namespace.
7993
7994 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
7995
7996         * Makefile.am: Add the security manager to the build.
7997         * security-manager.c|h: New. Initialization of the security manager.
7998
7999 2005-01-07  Dick Porter  <dick@ximian.com>
8000
8001         * threads.c: 
8002         * monitor.c: Update thread state during Monitor and WaitHandle
8003         waits.  Fixes bug 71031.
8004
8005 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8006
8007         * reflection.c (property_encode_signature): Correctly handle when the
8008         property has no methods.
8009
8010 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8011
8012         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8013         
8014         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8015         fields from mb, not rmb. Fixes #71017.
8016
8017         * marshal.c (emit_ptr_to_str_conv): Add support for 
8018         ByValTStr -> string conversion. Fixes #71015.
8019
8020         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8021
8022         * mempool.c (mono_mempool_contains_addr): New helper function.
8023
8024 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8025
8026         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8027         HasSematics encoded fields.
8028         
8029         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8030         invalid string marshalling.
8031
8032         * metadata.c: Fix warnings.
8033         
8034 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8035
8036         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8037         profiler support.
8038
8039 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8040
8041         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8042         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8043         tests.
8044
8045 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8046
8047         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8048         so methods containing these can be AOTed.
8049
8050 2005-01-03  Martin Baulig  <martin@ximian.com>
8051
8052         * loader.c (find_method): Removed the hack for generic instances.
8053         (method_from_memberref): If our parent is a generic instance, pass
8054         its generic type definition to find_method() and then inflate the
8055         method.
8056         (mono_get_method_constrained): Pass the generic type definition to
8057         find_method() and inflate the method later.
8058
8059         * class-internals.h (MonoStats): Added `generic_class_count'.
8060
8061         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8062         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8063
8064         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8065         generic type definitions.
8066
8067 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8068
8069         * loader.c icall.c: Fix warnings.
8070
8071 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8072
8073         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8074         blittable types. Fixes #70864.
8075
8076 2004-12-29  Martin Baulig  <martin@ximian.com>
8077
8078         * icall.c
8079         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8080
8081         * reflection.c (mono_method_get_object): Create a
8082         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8083         call mono_get_inflated_method().
8084
8085         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8086
8087 2004-12-27  Martin Baulig  <martin@ximian.com>
8088
8089         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8090         (MonoMethodInflated): Added `inflated' field.
8091
8092         * class.c (mono_class_inflate_generic_method): Don't really
8093         inflate the method here; just set the `is_inflated' flag in the
8094         MonoMethod.
8095         (mono_class_get_inflated_method): Actually inflate the method here
8096         if it's not already inflated; we use the MonoMethodInflated's new
8097         `inflated' field as a cache.
8098
8099 2004-12-26  Martin Baulig  <martin@ximian.com>
8100
8101         * class.c
8102         (inflate_generic_class): Moved some code out of inflate_generic_type().
8103         (mono_class_inflate_generic_method): If we're already inflated,
8104         inflate the context and use the declaring method; ie. make sure
8105         the declaring method of an inflated method is always the generic
8106         method definition.
8107         (mono_class_create_from_typedef): Create
8108         `class->generic_container->context->gclass'.
8109
8110 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8111
8112         * metadata-internals.h, marshal.c, reflection.c: More
8113         MonoGHashTable->GHashTable.
8114
8115         * domain-internals.h, class.c: Change MonoGHashTable's into
8116         GHashTables for some cases where no gc stuff is used
8117
8118         All users: update apis
8119
8120 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8121
8122         * metadata.c (builtin_types): Make this `const'. Makes this get
8123         put into the shareable section.
8124         (mono_metadata_init): Casts to make gcc happy.
8125
8126 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8127
8128         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8129
8130 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8131
8132         * icall.c: Added an internal call to retrieve the position and length
8133         of assembly-level declarative security attributes (RequestMinimum, 
8134         RequestOptional and RequestRefuse). This is used by the Assembly class
8135         to re-create the corresponding permission sets.
8136
8137 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8138
8139         * marshal.c: fix the stelemref wrapper to be type correct
8140         (and faster).
8141
8142 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8143
8144         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8145         to do key & 0x7fffffff. Hashtable already does this. It just
8146         results in longer code.
8147
8148 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8149
8150         * appdomain.c: Bump corlib version.
8151         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8152         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8153         * reflection.c|h: Add functions to get declarative security infos
8154         (blob position and length) for assemblies, classes and methods.
8155
8156 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8157
8158         * reflection.c: sort the constant table (bug #70693).
8159
8160 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8161
8162         * object-internals.h, threads.c, domain.c: add accessors for
8163         the MonoThread and MonoDomain tls keys.
8164
8165 2004-12-18  Martin Baulig  <martin@ximian.com>
8166
8167         * class.c (inflate_generic_type): If we're inflating a generic
8168         instance, set `ngclass->context->container = context->container';
8169         ie. the container we inflated into.
8170
8171         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8172         inflate_generic_type() changes.
8173
8174 2004-12-17  Martin Baulig  <martin@ximian.com>
8175
8176         * class-internals.h
8177         (MonoGenericClass): Replaced `MonoType *generic_type' with
8178         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8179         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8180         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8181
8182 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8183
8184         * exception.c (mono_exception_from_token): New helper function.
8185
8186 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8187
8188         * assembly.c (mono_assembly_load_with_partial_name): Call 
8189         mono_assembly_loaded before invoking the preload hooks. Fixes
8190         #70564.
8191
8192         * object-internals.h (MonoThread): Change culture_info and 
8193         ui_culture_info into an array.
8194
8195         * threads.c: Cache culture info objects from more than one appdomain.
8196
8197         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8198         current UI culture.
8199
8200 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8201
8202         * threads.h threads.c appdomain.c: Clear the culture_info field of
8203         all threads during unloading if they point to an object in the dying
8204         appdomain.
8205
8206 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8207
8208         * culture-info.h (TextInfoEntry): New struct
8209         * object-internals.h: sync with managed
8210         * locales.c: fill the `text_info_data' field
8211         * culture-info-tables.h: update
8212
8213 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8214
8215         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8216         collector.
8217
8218 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8219
8220         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8221         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8222
8223 2004-12-12  Martin Baulig  <martin@ximian.com>
8224
8225         * mono-debug-debugger.c (write_type): If we're an enum and the
8226         builtin types have already been initialized, call mono_class_init().
8227
8228 2004-12-11  Martin Baulig  <martin@ximian.com>
8229
8230         * metadata.c (mono_metadata_load_generic_params): Added
8231         `MonoGenericContainer *parent_container' argument; automatically
8232         compute `container->is_method'; pass the correct owner to
8233         get_constraints().      
8234
8235         * reflection.c (compare_genericparam): Sort the GenericParam table
8236         according to increasing owners. 
8237
8238 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8239
8240         * profiler.c: allow disabling the default profiler.
8241
8242 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8243
8244         * decimal.c, icall.c: allow disabling System.Decimal support.
8245
8246 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8247
8248         * reflection.c: Add support for null attribute arguments.
8249
8250 2004-12-09  Martin Baulig  <martin@ximian.com>
8251
8252         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8253         names to get rid of compiler warnings.
8254
8255 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8256
8257         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8258         mono_marshal_load_type_info (). Fixes #69625.
8259         (mono_marshal_get_ptr_to_struct): Likewise.
8260
8261 2004-12-08  Martin Baulig  <martin@ximian.com>
8262
8263         * mono-debug.h: Bumped version number to 47.
8264
8265         * mono-debug-debugger.c
8266         (mono_debugger_event_handler, mono_debugger_event): Take two
8267         guint64 arguments insteed of a gpointer and a guint32.  
8268
8269 2004-12-08  Martin Baulig  <martin@ximian.com>
8270
8271         * debug-mono-symfile.h
8272         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8273         `address' to `native_offset'.
8274
8275 2004-12-08  Martin Baulig  <martin@ximian.com>
8276
8277         * class.c (mono_class_create_from_typespec): Only inflate if we
8278         either have `context->gclass' or `context->gmethod'.
8279
8280 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8281
8282         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8283
8284         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8285
8286         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8287
8288         * reflection.c (mono_assembly_get_object): Remove the workaround put
8289         in for the release.
8290         
8291         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8292
8293         * appdomain.c: Bump corlib version.
8294
8295         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8296         be visible in other appdomains.
8297
8298 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8299
8300         * threads.c: Interlocked inc and dec for longs were messed up,
8301         use a KISS based impl for this. Fixes 70234
8302
8303 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8304
8305         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8306
8307 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8308
8309         * icall.c: fix to follow policy not to allow struct
8310         arguments in icalls.
8311
8312 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8313
8314         * process.c: make the patch that handles spaces in file paths work
8315         on mono/windows too.
8316
8317 2004-12-06  Martin Baulig  <martin@ximian.com>
8318
8319         * class.c (mono_class_create_generic): Call
8320         mono_class_setup_supertypes() if we're dynamic.
8321         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8322
8323 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8324
8325         * object-internals.h: Add new fields to MonoThread.
8326
8327         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8328
8329         * icall.c threads-types.h threads.c: Add new icalls.
8330
8331         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8332
8333         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8334         managed side.
8335
8336         * appdomain.c: Bump corlib version.
8337
8338         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
8339         internal assemblies. Fixes #69181.
8340
8341 2004-12-05  Martin Baulig  <martin@ximian.com>
8342
8343         * class.c (mono_class_inflate_generic_signature): Make this a
8344         no-op if `context' is NULL or we don't have any type parameters;
8345         also copy `sentinelpos'.        
8346
8347 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
8348
8349         * image.c: Add unbox_wrapper_cache.
8350
8351         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
8352
8353         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
8354         function generator.
8355         
8356         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
8357         Fixes #70173.
8358
8359         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
8360         
8361 2004-12-04  Martin Baulig  <martin@ximian.com>
8362
8363         * loader.c (mono_method_get_signature_full): New public function;
8364         like mono_method_get_signature(), but with an additional
8365         `MonoGenericContext *' argument.
8366
8367         * class.c (mono_class_inflate_generic_signature): Formerly known
8368         as inflate_generic_signature(); make this public.
8369
8370 2004-12-04  Martin Baulig  <martin@ximian.com>
8371
8372         * metadata.c
8373         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
8374         instead of a `MonoGenericContainer *'.  
8375         (mono_metadata_parse_array_full): Likewise.
8376         (mono_metadata_parse_signature_full): Likewise.
8377         (mono_metadata_parse_method_signature_full): Likewise.
8378         (mono_metadata_parse_generic_inst): Likewise.
8379         (mono_metadata_parse_generic_param): Likewise.
8380         (mono_metadata_parse_mh_full): Likewise.
8381         (mono_type_create_from_typespec_full): Likewise.
8382
8383 2004-12-03  Martin Baulig  <martin@ximian.com>
8384
8385         * class-internals.h (MonoGenericContainer): Replaced the
8386         `MonoGenericContext * pointer with a `MonoGenericContext'
8387         structure and made it the first element.
8388
8389 2004-12-03  Martin Baulig  <martin@ximian.com>
8390
8391         * class.c
8392         (inflate_generic_type): Set the `context->container' when creating
8393         a new MonoGenericContext.
8394         (mono_class_inflate_generic_method): Likewise.
8395         (mono_class_create_from_typespec): Just use `context->container'
8396         to get the container.
8397
8398         * loader.c (method_from_methodspec): Set `context->parent' from
8399         `context->container' - and if that's a method container, use its
8400         parent.  Also set the `context->container' when creating a new
8401         MonoGenericContext.
8402         (mono_get_method_from_token): Use just `context->container' to get
8403         the container.
8404
8405         * metadata.c (do_mono_metadata_parse_generic_class): Also set
8406         `gclass->context->container'.
8407
8408         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
8409         the `context->container' when creating a new MonoGenericContext.
8410
8411 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
8412
8413         * reflection.c (compare_genericparam): Sort params with identical
8414         owner by their number. Fixes gen-111 on sparc.
8415
8416 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8417
8418         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
8419         around the domain changes.
8420
8421         * appdomain.c (mono_domain_unload): Handle the case when the thread
8422         calling Unload is itself being aborted during unloading. Fixes #70022.
8423
8424         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
8425
8426         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
8427         checkpoint_func as an icall so it gets a wrapper.
8428         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
8429         in the cross-appdomain wrappers too.
8430
8431         * threads.c (mono_thread_has_appdomain_ref): Make this public.
8432
8433         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
8434
8435         * reflection.c: Fix some memory leaks.
8436         
8437 2004-12-02  Martin Baulig  <martin@ximian.com>
8438
8439         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
8440
8441         * metadata.c (generic_class_cache): New static hashtable.
8442         (mono_metadata_lookup_generic_class): New public method.
8443
8444 2004-12-02  Martin Baulig  <martin@ximian.com>
8445
8446         * class.c (mono_class_create_from_typedef): Call
8447         mono_class_setup_parent() and mono_class_create_mono_type() before
8448         parsing the interfaces.
8449
8450 2004-12-02  Martin Baulig  <martin@ximian.com>
8451
8452         * metadata.c (generic_inst_cache): New static hashtable.
8453         (mono_metadata_lookup_generic_inst): New public function.
8454         (mono_metadata_inflate_generic_inst): New public function.
8455         (mono_metadata_parse_generic_inst): New public function.
8456         (do_mono_metadata_parse_generic_class): Use the new
8457         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
8458         since this'll also use the cache.
8459
8460         * reflection.c (mono_reflection_bind_generic_method_parameters):
8461         Use mono_metadata_lookup_generic_inst() to use the new cache.
8462
8463         * class.c (inflate_mono_type): Use
8464         mono_metadata_inflate_generic_inst() to inflate a generic
8465         instance; this'll also use the new cache.
8466
8467         * loader.c (method_from_methodspec): Use
8468         mono_metadata_parse_generic_inst() and
8469         mono_metadata_inflate_generic_inst() rather than parsing it
8470         manually, so we can use the new cache.
8471
8472 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8473
8474         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8475         the wait times out.
8476
8477 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8478
8479         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8480         iter->args based on whether parameters are passed in registers (i.e.
8481         MONO_ARCH_REGPARMS is defined)
8482
8483 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8484
8485         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8486         the exception message. Fixes #70070.
8487         (method_from_methodspec): Fix warnings.
8488
8489 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8490
8491         * process.c: (complete_path) return the path quoted
8492
8493 2004-12-01  Martin Baulig  <martin@ximian.com>
8494
8495         * class-internals.h (MonoGenericInst): New structure.
8496         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8497         `is_open' with `MonoGenericInst *inst'.
8498         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8499         `is_open' with `MonoGenericInst *inst'.
8500
8501 2004-11-30  Martin Baulig  <martin@ximian.com>
8502
8503         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8504
8505         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8506         to `generic_class_cache'.
8507
8508         * metadata.c
8509         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8510         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8511         (mono_generic_inst_is_valuetype): Renamed to
8512         mono_generic_class_is_valuetype().
8513
8514         * class-internals.h
8515         (MonoGenericInst): Renamed to MonoGenericClass.
8516         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8517         (MonoClass): Renamed `generic_inst' to `generic_class'.
8518         (MonoGenericContext): Renamed `ginst' to `gclass'.
8519
8520         * object-internals.h
8521         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8522
8523         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8524         mono_reflection_generic_class_initialize().
8525
8526         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8527         now known as "System.Reflection.MonoGenericClass".
8528         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8529
8530 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8531
8532         * class-internals.h: Added a flag field to MonoClass to cache the
8533         declarative security attributes actions associated with the class.
8534         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8535         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8536         applicable to the JITted method.
8537         * reflection.c|h: Added functions to extract (as flags) which security
8538         actions are available (declaratively) for a method, class or assembly.
8539         * metadata.c|h: Added functions to search the declarative security
8540         table in the metadata.
8541         
8542 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8543
8544         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8545         EXPORTEDTYPES are already in the class name cache, so there is no
8546         need to add extra code here to look at them. Just removes a bit of
8547         cruft.
8548
8549         (ves_icall_System_Environment_get_TickCount): No need for #if
8550         WINDOWS. We already have the code in io-layer.
8551
8552 2004-11-28  Martin Baulig  <martin@ximian.com>
8553
8554         * loader.c
8555         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8556         Fixes gen-112.cs.
8557
8558 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8559
8560         * assembly.c (do_mono_assembly_open): Instead of having a
8561         conditional WITH_BUNDLE, incorporate support for bundles here, by
8562         having a global `bundles' variable holding a pointer to the actual
8563         bundles. 
8564
8565         (mono_register_bundled_assemblies): New API call used by the
8566         bundle code. 
8567
8568         See mkbundle.1 for details.
8569         
8570 2004-11-27  Martin Baulig  <martin@ximian.com>
8571
8572         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8573         the vtable for generic methods.
8574
8575 2004-11-26  Martin Baulig  <martin@ximian.com>
8576
8577         * metadata.c
8578         (mono_metadata_generic_method_hash): New public function.
8579         (mono_metadata_generic_method_equal): Likewise.
8580
8581         * class-internals.h
8582         (MonoGenericContainer): Added `GHashTable *method_hash'.
8583
8584         * reflection.c (ReflectionMethodBuilder): Added
8585         `MonoGenericContainer *generic_container'.
8586         (reflection_methodbuilder_to_mono_method): Don't create a new
8587         MonoGenericContainer each time we're called.
8588         (mono_reflection_bind_generic_method_parameters): Use
8589         `container->method_hash' to cache the results so we don't create a
8590         different method if we're called several times with the same
8591         arguments.
8592
8593         * loader.c (method_from_methodspec): Use the new
8594         `container->method_hash' here, too.
8595
8596 2004-11-26  Martin Baulig  <martin@ximian.com>
8597
8598         * class.c (inflate_generic_signature): Correctly compute
8599         `res->has_type_parameters'.
8600         (mono_class_vtable): Use the `has_type_parameters' flag to
8601         determine whether we're a generic method.
8602
8603         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8604
8605 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8606
8607         * object.c (mono_runtime_run_main): Fix a small memory leak.
8608
8609 2004-11-25  Martin Baulig  <martin@ximian.com>
8610
8611         * class.c (set_generic_param_owner): Fixed the loop.
8612
8613 2004-11-25  Martin Baulig  <martin@ximian.com>
8614
8615         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8616         generic methods.
8617
8618 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8619
8620         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8621         names. Fixes #69787.
8622
8623 2004-11-24  Martin Baulig  <martin@ximian.com>
8624
8625         * class.c (mono_class_create_generic_2): If we don't have a
8626         `ginst->parent', inflate `gklass->parent' to get our parent.
8627
8628 2004-11-24  Martin Baulig  <martin@ximian.com>
8629
8630         * reflection.c (compare_genericparam): Correctly sort the
8631         GenericParam table; fixes #69779.
8632
8633 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8634
8635         * reflection.c: When writing a PE file, don't create a huge
8636         buffer in memory. Just write the arrays we have to the file.
8637         This reduces memory usage.
8638
8639         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8640         globally.
8641
8642 2004-11-17  Martin Baulig  <martin@ximian.com>
8643
8644         * class.c (mono_class_init): Don't setup `class->parent' for
8645         dynamic instances; moved this to mono_class_generic_2().
8646         (mono_class_create_generic): Also set `klass->inited' for dynamic
8647         generic instances.
8648         (mono_class_create_generic_2): Don't do anything for dynamic
8649         generic instances.  Set `klass->parent' here and also call
8650         mono_class_setup_parent() here. 
8651
8652         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8653         `MonoType *parent' argument; set `ginst->parent' before calling
8654         mono_class_create_generic_2(), so we set the correct parent.
8655
8656 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8657
8658         * reflection.c: allow getting attributes from ModuleBuilder
8659         (used by ikvm).
8660
8661 2004-11-17  Martin Baulig  <martin@ximian.com>
8662
8663         * class.c (mono_class_create_from_typedef): If a type parameter is
8664         inherited from an outer class, set its owner to that class.
8665
8666 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8667
8668         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8669           for (int*) written size. This fixes bug #69592.
8670
8671 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8672
8673         * icall.c: Added IsAuthenticodePresnet internal call.
8674         * image.c|h: New function that check a MonoImage for an Authenticode
8675         signature in the certificate PE data directory.
8676         * security.c|h: New internal call to ask the runtime if an 
8677         Authenticode signature seems referenced in the PE header.
8678
8679 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8680
8681         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8682
8683         * reflection.c (mono_image_create_pefile): Free the assembly streams
8684         after writing out the assembly file.
8685
8686         * object.c (mono_runtime_run_main): Fix small memory leak.
8687
8688         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8689         property access modifiers. Fixes #69389.
8690
8691 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8692
8693         * domain.c, object.c, object-internals.h, domain-internals.h,
8694         object.h, marshal.c: keep dynamic code info per domain.
8695
8696 2004-11-15  Martin Baulig  <martin@ximian.com>
8697
8698         * class.c (mono_type_get_name_recurse): Put type arguments in
8699         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8700         see bug #68387.
8701
8702 2004-11-15  Martin Baulig  <martin@ximian.com>
8703
8704         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8705         (mono_class_setup_vtable): When computing `the_cname' for a
8706         generic instance, don't include the namespace since we'd otherwise
8707         add it twice.
8708
8709 2004-11-15  Martin Baulig  <martin@ximian.com>
8710
8711         * class.c (mono_class_create_generic): Changed return type to void.
8712         (mono_class_create_generic_2): New public function; setup
8713         `class->method', `class->field' and `class->interfaces' here
8714         instead of in mono_class_init().
8715
8716         * class.h (mono_class_create_generic): Moved to class-internals.h.
8717
8718 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8719
8720         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8721         rather than writing to memory, write to this file. Right now,
8722         we are just writting into a buffer, and copying that. However
8723         we can avoid the buffer later.
8724
8725         (mono_dynamic_stream_reset): new function
8726
8727         * icall.c, object-internals.h: update for the above.
8728
8729 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8730
8731         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8732         have been using gc'd memory. First it is slower, unlikely
8733         the comment in the source code said, secondly, it increases
8734         our footprint to do it in the gc.
8735
8736         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8737         the method so that it does not have to copy to managed code.
8738
8739 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8740
8741         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8742
8743 2004-11-12  Martin Baulig  <martin@localhost>
8744
8745         * reflection.c (mono_image_create_token): Allow generic method
8746         definitions here, since they may appear in an `.override'; see
8747         gen-98/gen-99 for an example.
8748
8749 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8750
8751         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8752         #69365.
8753
8754         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8755         descriptive.
8756
8757 2004-11-11  Martin Baulig  <martin@ximian.com>
8758
8759         * class.c (mono_class_setup_vtable): In an explicit interface
8760         implementation, the method name now includes the arity.
8761
8762 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8763
8764         * object.c (mono_array_full_copy): Fix warning.
8765
8766 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8767
8768         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8769         mono_class_get_method_from_name() instead.
8770         
8771         * class-internals.h: Added two new types of wrappers. 
8772         Added MonoRemotingTarget enum. Added new trampoline function type, which
8773         takes an additional MonoRemotingTarget value as parameter, so it is
8774         possible to request a trampoline for a specific target.
8775         
8776         * class.c: Added new mono_class_get_method_from_name() method.
8777         
8778         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8779         general remoting sinks and one specific for cross domain calls.
8780         
8781         * debug-helpers.c: Added new wrapper names.
8782         
8783         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8784         of a remote class.
8785         
8786         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8787         
8788         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8789         with several other methods (mono_marshal_get_xappdomain_dispatch,
8790         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8791         and others) can generate a fast remoting wrapper for cross domain calls.
8792         More information can be found in docs/remoting.
8793         Other changes: Removed mono_find_method_by_name, and used
8794         mono_class_get_method_from_name instead.
8795         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8796         is stored in the remoting invoke hashtable.
8797         
8798         * marshal.h: published the new method for getting the xdomain wrapper,
8799         and also added a method for getting the adequate wrapper for a given
8800         method and target.
8801         
8802         * object-internals.h, object.c: Added a couple of methods for capying and
8803         cloning arrays.
8804         Modified mono_install_remoting_trampoline, which takes the new remoting
8805         trampoline that has a remoting target as parameter.
8806         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8807         will return the most suitable vtable for the target.
8808         Added mono_remote_class_vtable, which returns the vtable of a remote class
8809         (which can be the normal remoting vtable or the xdomain vtable).
8810         
8811         * threads.c: the xdomain invoke and dispatch wrappers must also be
8812         protected against interruptions.
8813
8814 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8815
8816         * icall.c: use memmove in BlockCopyInternal when the source and
8817         destination arrays are the same.
8818
8819 2004-11-09  Martin Baulig  <martin@ximian.com>
8820
8821         * class-internals.h (MonoGenericContainer): Removed `method' and
8822         `signature', replaced them with `is_method' and `is_signature'
8823         flags.  Added `context'.
8824
8825         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8826         instead of a `MonoGenericContainer *'.
8827
8828         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8829         for dynamic type parameters.
8830         (mono_metadata_load_generic_params): Setup `container->context'.
8831
8832         * reflection.c (mono_reflection_setup_generic_class): Setup
8833         `tb->generic_container->context'.
8834         (do_mono_reflection_bind_generic_parameters): Use
8835         mono_class_inflate_generic_type() to correctly inflate types,
8836         rather than using our own hack just for MONO_TYPE_VAR.
8837
8838 2004-11-09  Martin Baulig  <martin@ximian.com>
8839
8840         * class.c (mono_class_inflate_generic_method): Small fix; don't
8841         crash here.
8842
8843         * icall.c
8844         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8845         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8846         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8847         (ves_icall_Type_BindGenericParameters): Likewise.
8848         (ves_icall_Type_get_IsGenericInstance): Likewise.
8849         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8850         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8851         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8852         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8853
8854 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8855
8856         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8857         assembly versions and public key tokens. Fixes #69113.
8858
8859 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8860
8861         * metadata.c: fix bug introduced with the type cache changes
8862         on 2004-11-06.
8863
8864 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8865
8866         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8867         the MonoClass pointer instead of the token in exception clauses.
8868         * reflection.c: updates for the above and make the code not depend
8869         on the structure of MonoExceptionClause.
8870
8871 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8872
8873         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8874         Add support for dynamic assemblies. Fixes #69114.
8875
8876         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8877
8878 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8879
8880         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8881         since most only those methods use it. the code member of
8882         MonoMethodPInvoke was dead, so that can be removed too. Also,
8883         remove inline_count (again, not used), and move slot so that it
8884         can share bits with some other flags. This saves 8 bytes in the
8885         structure and gives us about 50 kb back for mcs helloworld.cs
8886
8887         * *.[ch]: Do naming changes for the above.
8888
8889         * loader.c (mono_method_get_header): Lazily init the header
8890         on first access.
8891         (mono_get_method_from_token): don't init the header here
8892         (mono_free_method): the header may never be allocated
8893
8894         Overall, this saves 150 kb of unmanaged allocations
8895         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8896         memory at runtime.
8897         
8898         * loader.c, loader.h (mono_method_get_header): new accessor.
8899
8900         * *.[ch]: use the above method. Prepares us to lazily load
8901         the header.
8902
8903         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8904         three warnings, which are actual bugs (see 69206).
8905
8906         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8907         unused. Saves a cool 4 bytes / method.
8908
8909 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8910
8911         * metadata.c (builtin_types): Add types for System.Object here.
8912         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8913         for a class or valuetype from klass->this_arg or klass->byval_arg.
8914
8915         On mcs for a hello world, this gets us down from 21836 MonoType's
8916         to 14560.
8917
8918         (mono_metadata_free_type): Account for the above change.
8919
8920 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8921
8922         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8923         exception instead of asserting if name is null.
8924         (ves_icall_System_AppDomain_GetData): Ditto.
8925
8926 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8927
8928         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8929         EnumBuilder.
8930
8931         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8932         Return NULL when the domain does not have entry_assembly set.
8933
8934         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8935         Add a 'resource_modules' argument.
8936         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8937
8938         * reflection.c (mono_reflection_create_runtime_class): Move setting
8939         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8940         for enums too.
8941
8942         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8943         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8944         Throw an ArgumentNullException if 'ptr' is null.
8945
8946         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8947         assemblies here. Fixes #69020.
8948
8949 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8950
8951         * reflection.c (build_compressed_metadata): Fix the previous patch for
8952         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8953         the stack.
8954
8955 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8956
8957         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8958         the cultures is false. Fixes #69090.
8959
8960         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8961         detected by valgrind.
8962         
8963         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8964         TypeResolve multiple times for the same type. Fixes #65577.
8965
8966 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8967
8968         * marshal.c: Avoid using ldftn to call managed functions. It is
8969         much slower than just a call.
8970
8971         * reflection.c (mono_module_get_object): free the basename we
8972         allocate here from glib.
8973         
8974         * reflection.c (ensure_runtime_vtable): make sure to free
8975         overrides.  Also, we were allocating an array of MonoMethod not an
8976         array of MonoMethod*.
8977
8978         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
8979
8980         * image.c (mono_image_close): free image->guid here.
8981
8982 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
8983
8984         * reflection.c: Fix some spec conformance issues with the PE file
8985         structures so mcs compiled apps run on the Net 2.0 beta.
8986
8987 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
8988
8989         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
8990         Implement this. Fixes #67264.
8991
8992         * debug-helpers.h debug-helpers.c marshal.c: Move 
8993         mono_find_method_by_name to debug-helpers.c.
8994
8995 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
8996
8997         * object.c (mono_release_type_locks): type_initialization_hash is
8998         a GHashTable.
8999
9000         * reflection.c object.c object-internals.h: Fix warnings.
9001
9002         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9003         without accessors. Fixes #61561.
9004
9005         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9006         application base from the root domain if not set. Fixes #65641.
9007         (mono_runtime_init): Fix warning.
9008
9009 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9010
9011         * appdomain.c: call mono_thread_pool_init.
9012         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9013         of worker threads based on the number of CPUs and the environment
9014         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9015         for non-windows (windows) systems.
9016
9017 2004-10-27  Chris Toshok  <toshok@ximian.com>
9018
9019         * mono-debug-debugger.c (write_class): don't call mono_class_init
9020         here, as even with the check for (!klass->init_pending), we get
9021         into a situation where we're hitting cycles in class
9022         initialization.  Fixes #68816.
9023
9024 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9025
9026         * image.c: Avoid overwriting values in the loaded_images_hash when an
9027         assembly is loaded multiple times. Fixes #61152.
9028
9029         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9030         so multiple satellite assemblies for the same name can be loaded.
9031         Fixes #68259.
9032
9033         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9034         not NULL.
9035
9036         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9037         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9038
9039         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9040         pending finalizers are not invoked after the appdomain has been 
9041         unloaded. Fixes #67862.
9042
9043 2004-10-22  Martin Baulig  <martin@ximian.com>
9044
9045         * mono-debug-debugger.c
9046         (mono_debugger_runtime_invoke): Don't box valuetypes.
9047
9048 2004-10-22  Chris Toshok  <toshok@ximian.com>
9049
9050         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9051         don't hide private methods.
9052
9053 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9054
9055         * icall.c: Allows the runtime to "share" (when known) the public key
9056         token of an assembly. This avoid the need to recalculate the token 
9057         (from the public key) in managed code.
9058
9059 2004-10-21  Chris Toshok  <toshok@ximian.com>
9060
9061         * debug-helpers.c (append_class_name): argh, revert last patch.
9062         
9063 2004-10-21  Chris Toshok  <toshok@ximian.com>
9064
9065         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9066         not '/', so that it matches what the debugger uses to look up
9067         methods.
9068
9069 2004-10-21  Martin Baulig  <martin@ximian.com>
9070
9071         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9072         public method; this is called each time an exception is thrown and
9073         allows the debugger to use exception catch points.
9074
9075 2004-10-21  Martin Baulig  <martin@ximian.com>
9076
9077         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9078         the stack pointer and the exception object in some struct and pass
9079         that to the debugger.
9080
9081 2004-10-21  Chris Toshok  <toshok@ximian.com>
9082
9083         * mono-debug-debugger.c (do_write_class): add instance/static
9084         event support.  We don't expose "raise" or "other" yet.
9085         (event_is_static): new method.
9086
9087 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9088
9089         * mono-debug-debugger.c
9090         (mono_debugger_handle_exception): Remove
9091         bogus return value for fussy compilers.
9092
9093 2004-10-20  Martin Baulig  <martin@ximian.com>
9094
9095         * mono-debug-debugger.c
9096         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9097         (mono_debugger_handled_exception): Likewise.
9098
9099 2004-10-20  Martin Baulig  <martin@ximian.com>
9100
9101         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9102         MONO_DEBUGGER_EVENT_EXCEPTION.
9103
9104         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9105         public function to send the debugger a notification for an
9106         exception and inform it about a catch/finally clause.
9107
9108 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9109
9110         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9111         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9112         fix 2.95 build. 
9113
9114         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9115
9116 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9117
9118         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9119         marshalled as [In,Out]. Fixes #58325.
9120
9121 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9122
9123         * reflection.c (mono_method_body_get_object): Implement some fields.
9124
9125 2004-10-12  Martin Baulig  <martin@ximian.com>
9126
9127         * reflection.c (mono_reflection_bind_generic_parameters): Small
9128         fix, correctly retrieve our parent from a generic instance.
9129
9130 2004-10-12  Martin Baulig  <martin@ximian.com>
9131
9132         * metadata.c (mono_metadata_generic_param_equal): We always have
9133         an owner.
9134
9135         * class.c
9136         (mono_class_from_generic_parameter): We need to have an owner.
9137         (my_mono_class_from_generic_parameter): Likewise.
9138
9139         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9140         mono_reflection_create_generic_class() and added a new
9141         mono_reflection_setup_generic_class().  
9142         (mono_reflection_initialize_generic_param): If we're a nested
9143         generic type and inherited from the containing class, set our
9144         owner to the outer class.
9145
9146 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9147
9148         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9149
9150         * reflection.c (mono_method_body_get_object): New function to create
9151         a MethodBody object.
9152
9153         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9154
9155 2004-10-11  Martin Baulig  <martin@ximian.com>
9156
9157         * metadata.c (_mono_metadata_type_equal): Renamed to
9158         do_mono_metadata_type_equal() and made static.
9159
9160 2004-10-11  Martin Baulig  <martin@ximian.com>
9161
9162         * appdomain.c: Bump corlib version number to 28.
9163
9164 2004-10-10  Martin Baulig  <martin@ximian.com>
9165
9166         * class-internals.h
9167         (MonoGenericInst): Added `MonoGenericContainer *container'.
9168         (MonoGenericMethod): Likewise.
9169         (MonoGenericContext): Likewise.
9170         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9171
9172         * metadata.c
9173         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9174         (do_mono_metadata_parse_generic_inst): Likewise.
9175         (mono_metadata_parse_type_full): New public method.  This is the actual
9176         mono_metadata_parse_type() implementation - with an additional
9177         `MonoGenericContainer *' argument.
9178         (mono_metadata_parse_array_full): Likewise.
9179         (mono_metadata_parse_signature_full): Likewise.
9180         (mono_metadata_parse_method_signature_full): Likewise.
9181         (mono_metadata_parse_mh_full): Likewise.
9182         (mono_type_create_from_typespec): Likewise.
9183         (mono_metadata_interfaces_from_typedef_full): New public method;
9184         this is similar to the other _full() methods, but we take a
9185         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9186         (mono_metadata_parse_generic_param): Take an additional
9187         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9188         from that container.
9189         (mono_metadata_generic_param_equal): New static method to compare
9190         two type parameters.
9191         (_mono_metadata_type_equal): New static method; takes an
9192         additional `gboolean signature_only' argument - if true, we don't
9193         compare the owners of generic parameters.
9194         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9195         with a TRUE argument - do a signature-only comparision.
9196
9197         * loader.c: Use the new _full() methods and pass the
9198         MonoGenericContainer to them.
9199
9200         * object-internals.h (MonoReflectionTypeBuilder): Added
9201         `MonoGenericContainer *generic_container' field.
9202         (MonoReflectionMethodBuilder): Likewise.
9203
9204 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9205
9206         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9207         case initial images of dynamic assemblies.
9208
9209         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9210
9211         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9212
9213         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9214         length of event->other array.
9215         (typebuilder_setup_events): Ditto.
9216
9217         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9218         'assembly_by_name' and add an 'assemblies' list.
9219
9220         * assembly.h assembly.c: Add a new search hook for determining whenever
9221         an assembly is already loaded. Use this instead of searching in the
9222         loaded_assemblies list.
9223
9224         * domain.c appdomain.c: Implement the new search hook so loaded 
9225         assemblies are now scoped by appdomain. Fixes #67727.
9226
9227 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9228
9229         * threads.c (mono_thread_attach): Initialize synch_lock field so
9230         mono_thread_detach works again.
9231
9232         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9233         'lib' too. Fixes #63130.
9234
9235 2004-10-06  Jackson Harper  <jackson@ximian.com>
9236
9237         * culture-info-tables.h: regenerated.
9238
9239 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9240
9241         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9242         implemented by other interfaces in the result. Fixes #65764.
9243         
9244         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9245         Handle unloadable modules without crashing.
9246
9247         * image.c (load_modules): Revert the previous patch since modules must
9248         have a fixed index inside the array.
9249         
9250         * image.c (load_modules): Don't include native modules in the modules
9251         array.
9252
9253 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9254
9255         * reflection.h: Add param_defaults field.
9256
9257         * reflection.c: Add support for parameter defaults in dynamic methods.
9258         Fixes #64595.
9259
9260         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9261         an empty string when a type has no namespace. Fixes #64230.
9262
9263 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9264
9265         * tabledefs.h: Added "internal" security actions to support non-CAS
9266         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9267         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9268
9269 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9270
9271         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9272         constructor of abstract class. Fixes #61689.
9273
9274 2004-10-04  Martin Baulig  <martin@ximian.com>
9275
9276         * class-internals.h (MonoGenericContainer): New type.
9277         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9278         `MonoGenericContainer *generic_container'.
9279         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9280         `MonoGenericContainer *generic_container'.
9281
9282         * metadata.c (mono_metadata_load_generic_params): Return a
9283         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9284         removed the `num' argument.
9285
9286 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9287
9288         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9289         for dynamic images.
9290
9291         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9292         machine fields.
9293
9294         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9295
9296         * reflection.c: Save pe_kind and machine values into the generated
9297         image file.
9298
9299         * appdomain.c: Bump corlib version number.
9300
9301         * object-internals.h: Reorganize layout of LocalBuilder.
9302
9303         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9304         New helper function.
9305
9306         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9307         created MonoType for dynamic types. Fixes #66180.
9308
9309 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9310
9311         * threadpool.c: the ares hashtable needs a critical section around it.
9312         this prevents some nasty segfaults
9313
9314 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9315
9316         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9317         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9318         bug 67324).
9319         
9320 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9321
9322         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9323         
9324 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9325
9326         * image.c: Always canonicalize image file names, to avoid loading
9327         the same assembly twice when referenced using a relative path.
9328
9329 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9330
9331         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9332
9333         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9334
9335         * marshal.c: Fix warnings.
9336
9337 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
9338
9339         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
9340         attempting to marshal the delegate_trampoline as the method_addr.
9341         This patch has a static hashtable of marshalled delegates so that 
9342         we can map delegate_trampoline addresses back to delegates.  This
9343         allows a delegate passed to managed code to be passed back into native
9344         code.  Fixes #67039
9345
9346 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9347
9348         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
9349
9350         * reflection.c (method_encode_code): Align method headers properly.
9351         Fixes #66025.
9352
9353 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9354
9355         * marshal.c: In the runtime invoke wrapper, reset the abort
9356         exception if it is cached. This avoids the automatic rethrowal of 
9357         the exception after the catch of the wrapper. Also check for pending
9358         interruptions before calling the managed method. This is done using
9359         the new method emit_thread_force_interrupt_checkpoint, since the
9360         normal checkpoint method is ignored when running the invoke wrapper.
9361         * object.c: If the abort exception is rethrown, set the abort_exc
9362         field of the thread, so it will be rethrown aftere every catch.
9363         * threadpool.c: Only run an interruption checkpoint if what has been
9364         requested is a stop of the thread (aborts will be ignored).
9365         * threads.c: By default, a thread will now never be interrumped while
9366         running the runtime invoke wrapper (this ensures that runtime_invoke
9367         will always return to the caller if an exception pointer is provided).
9368         There is a new special method mono_thread_force_interruption_checkpoint()
9369         to force an interruption checkpoint even if running a protected
9370         wrapper, which is used by the same runtime invoke wrapper to do a check
9371         at a safe point.
9372
9373 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9374
9375         * object.c, object-internals.h: Implemented mono_release_type_locks,
9376         which releases the cctor locks held by a thread.
9377         * threads.c, threads.h: In thread_cleanup, release cctor locks held
9378         by a thread. Added mono_thread_exit() method to be used to safely stop
9379         a thread.
9380
9381 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9382
9383         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9384         Move null check before dereference.  Avoid indexing beyond the end
9385         of the 'modules' array.
9386
9387 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9388
9389         * metadata-internals.h (MonoImage): Add module_count field.
9390         * image.c (load_modules): Set image->module_count.
9391         (mono_image_load_file_for_image): Use image->module_count.
9392         * reflection.c (mono_image_load_module): Append to image->modules array 
9393         of dynamic assembly.
9394         (mono_module_get_object): Fix loop to actually increment index.
9395         Use image->module_count.
9396         * assembly.c (mono_assembly_load_references): Use image->module_count.
9397         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
9398         Likewise.
9399
9400 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9401
9402         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
9403         Avoid assert on generic types.
9404
9405 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
9406
9407         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
9408
9409         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
9410
9411         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
9412         function to convert a MarshalSpec structure to its managed counterpart.
9413
9414         * reflection.c: Fix warnings.
9415         
9416         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
9417         field.
9418
9419         * icall.c (mono_create_icall_signature): Fix build.
9420
9421 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
9422
9423         * icall.c: Add MakePointType icall.
9424
9425         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
9426         warnings.
9427
9428 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9429
9430         * threadpool.c: reuse allocated slots in the queue.
9431
9432 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
9433
9434         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
9435
9436         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
9437
9438         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
9439         previous change.
9440
9441         * tabledefs.h: Add constants for pinvoke attributes BestFit and
9442         ThrowOnUnmappableChar.
9443
9444         * icall.c (ves_icall_Type_GetPacking): New icall.
9445
9446 2004-09-24  Martin Baulig  <martin@ximian.com>
9447
9448         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
9449
9450 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9451
9452         * appdomain.c:
9453         (mono_domain_set): allow setting a domain that is being unloaded.
9454         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
9455         being unloaded.
9456
9457 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9458
9459         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
9460         the GetCustomAttributes icall.
9461
9462 2004-09-23  Martin Baulig  <martin@ximian.com>
9463
9464         * object-internals.h (MonoReflectionGenericParam): Replaced
9465         'has_ctor_constraint', `has_reference_type' and `has_value_type'
9466         with `guint32 attrs'.
9467
9468 2004-09-23  Martin Baulig  <martin@ximian.com>
9469
9470         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
9471
9472 2004-09-23  Martin Baulig  <martin@ximian.com>
9473
9474         * object-internals.h (GenericParameterAttributes): New enum.
9475
9476 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9477
9478         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9479         
9480         * class.c (init_events): Fill out event->other field.
9481
9482         * class.c: Fix warnings.
9483
9484         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9485
9486 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9487
9488         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9489         walk which doesn't supply the IL offset.
9490
9491 2004-09-22  Martin Baulig  <martin@ximian.com>
9492
9493         * reflection.c (mono_reflection_setup_internal_class): If we're
9494         System.ValueType, System.Object or System.Enum, set
9495         `klass->instance_size' and create the vtable.
9496         (mono_reflection_create_internal_class): If we're an enum type,
9497         get the base class from our current corlib.
9498
9499 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9500
9501         * reflection.h (MonoResolveTokenError): New type.
9502
9503         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9504         icall.
9505
9506         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9507
9508 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9509
9510         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9511         Support also calling constructors, but only for already allocated objects.
9512
9513 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9514
9515         * reflection.c (type_get_qualified_name): If the klass is null
9516         return the typename to avoid a NullRefEx.
9517         (encode_cattr_value): Get the qualified name of the boxed type,
9518         not the underlying enumtype.  Fixes #62984.
9519
9520 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9521
9522         * marshal.c: Fix problems with previous checkin.
9523
9524 2004-09-21    <vargaz@freemail.hu>
9525
9526         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9527         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9528
9529         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9530
9531 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9532
9533         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9534         should only return a type for pointers, arrays, and passbyref types.
9535         Fixes bug #63841.
9536
9537 2004-09-21  Martin Baulig  <martin@ximian.com>
9538
9539         * domain.c (mono_debugger_check_runtime_version): New public
9540         function.
9541
9542         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9543
9544 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9545
9546         * reflection.c: Added missing sort to the declarative security 
9547         attributes table. MS implementation stops seeing the attributes if the
9548         token number regress in the table (as shown by ildasm and permview).
9549
9550 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9551
9552         * object-internals.h (MonoReflectionModule): Add 'token' field.
9553         
9554         * reflection.c (mono_reflection_get_token): Add support for Module
9555         and Assembly.
9556         (mono_module_get_object): Set 'token' field.
9557         (mono_module_file_get_object): Set 'token' field.
9558
9559         * icall.c: Add new Assembly and Module icalls.
9560
9561         * appdomain.c: Bump corlib version.
9562
9563 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9564
9565         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9566         tokens of metadata objects.
9567
9568         * reflection.h reflection.c (mono_reflection_get_token): New function
9569         to obtain the token of a metadata object.
9570
9571         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9572
9573 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9574
9575         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9576         
9577         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9578
9579 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9580
9581         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9582         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9583         AssemblyBuilder to access the permissions set in the class lib.
9584         * reflection.c: Added security attributes encoding step in 
9585         mono_image_build_metadata.
9586         * tabledefs.h: Added new security actions defined in 2.0:
9587         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9588
9589 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9590
9591         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9592         macro parameter.
9593
9594 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9595  
9596         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9597           finalized. There where random SIGSEVs at program termination, when
9598           an object being finalized was trying to do a string comparison and
9599           the current culture was already finalized.
9600  
9601 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9602
9603         * threads.c: call thread_cleanup before finishing the thread if we get
9604         there.
9605
9606 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9607
9608         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9609         assemblies from the parent. Fixes #65665.
9610
9611 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9612
9613         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9614         modifiers.
9615
9616 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9617
9618         * reflection.h: add prototype for mono_get_dbnull_object
9619         * reflection.c: add prototypes for get_default_param_value_blobs 
9620         and mono_get_object_from_blob for fussier compilers
9621
9622 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9623  
9624         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9625         false deadlock checks in class initialization.
9626  
9627 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9628
9629         * image.c (mono_image_addref): Fix comment.
9630
9631         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9632         possible.
9633
9634 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9635
9636         * reflection.c (mono_param_get_objects): Modified to return
9637         ParameterInfo.DefaultValue object.
9638
9639         (get_default_param_value_blobs):
9640         (mono_get_object_from_blob):
9641         (mono_get_dbnull_object): New helper routines. 
9642
9643         * object.c (mono_get_constant_value_from_blob): New helper routine
9644         carved out from get_default_field_value ()
9645
9646         * object-internals.h (mono_get_constant_value_from_blob): Added
9647         function declaration.
9648
9649 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9650
9651         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9652         referenced assemblies. Fixes #62135.
9653
9654         * exception.h exception.c (mono_get_exception_file_not_found2): New
9655         helper function.
9656
9657 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9658
9659         * class.h class.c: Add mono_type_get_underlying_type ().
9660
9661 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9662
9663         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9664         Fix GetTypes() to support dynamically created assemblies.
9665
9666 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9667
9668         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9669         
9670         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9671         previous patch.
9672
9673         * reflection.h reflection.c loader.c: Allow dynamic construction of
9674         pinvoke methods. Fixes #65571.
9675         
9676         * reflection.c (mono_reflection_get_type): Revert previous change since
9677         it causes regressions.
9678
9679 2004-09-08  Martin Baulig  <martin@ximian.com>
9680
9681         * class.c (class_compute_field_layout): Don't call
9682         mono_class_layout_fields() for open generic instances.
9683
9684 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9685         * threads.c appdomain.c: fix typo in GC macro
9686
9687 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9688
9689         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9690         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9691
9692 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9693
9694         * image.c (mono_image_close): Applied patch from 
9695         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9696         assembly is loaded multiple times from data.
9697         
9698         * image.c (mono_image_open): Fix warning.
9699
9700 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9701
9702         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9703         once. Fixes #58334.
9704         
9705         * reflection.c (mono_reflection_create_runtime_class): Initialize
9706         klass->nested_classes. Fixes #61224.
9707
9708 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9709
9710         * threads.c: sched_yield() on exit, to allow threads to quit.
9711
9712 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9713
9714         * object.c (mono_unhandled_exception): Remove leftover debug code.
9715
9716 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9717
9718         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9719
9720 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9721
9722         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9723         
9724         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9725
9726 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9727
9728         * marshal.c (emit_marshal_array): Null terminate string arrays.
9729         
9730         * marshal.c (raise_auto_layout_exception): Fix warning.
9731
9732         * reflection.c (mono_param_get_objects): Initialize the default value
9733         with DBNull.Value, not null. Fixes #62123.
9734
9735 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9736
9737         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9738         throw an exception with a cute explanation.
9739
9740 2004-09-06  Dick Porter  <dick@ximian.com>
9741
9742         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9743         Close the new process's thread handle, as we don't use it.  The
9744         handle stays around forever otherwise.
9745
9746 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9747
9748         * object.c (arith_overflow): Fix warning.
9749
9750         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9751         calling conventions in method refs. Fixes #65352.
9752
9753         * reflection.c: Fix warnings.
9754
9755 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9756
9757         * icall.c: Add a new icall for Array.Clear
9758
9759 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9760
9761         * object.c: When allocating an array, we have to throw
9762         an overflow exception if any of the lengths are < 0.
9763
9764 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9765
9766         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9767         properly. Also move implementation of string array marshalling to 
9768         managed code. Fixes #42316.
9769
9770 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9771
9772         * assembly.c: provide more information when loading an assembly fails.
9773
9774 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9775
9776         * filewatcher.c: don't expect the development fam package to be
9777         installed.
9778
9779 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9780
9781         * marshal.c: Make a copy of the signature cookie since it will be
9782         freed by the caller.
9783         
9784         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9785
9786         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9787
9788         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9789         marshal specs.
9790
9791         * marshal.c: More refactoring.
9792         
9793         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9794         smaller functions.
9795
9796 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9797
9798         * object.c: In mono_message_invoke, fill the output parameter array after
9799           calling the managed method (it was done before the call). This fixes
9800           bug #59299.
9801
9802 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9803
9804         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9805         as well.
9806
9807 2004-09-02  Martin Baulig  <martin@ximian.com>
9808
9809         * class.c (mono_class_instance_size): Don't allow generic type
9810         definitions or open generic instances.
9811         (mono_class_array_element_size): If we're a value type, call
9812         mono_class_instance_size() on the original class.
9813
9814         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9815         handle generic instances.
9816
9817         * mono-debug-debugger.c (write_type): Handle generic instances
9818         like classes.
9819
9820 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9821
9822         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9823         the allocation request fails. Fixes #65089.
9824
9825         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9826         
9827         * object.c (mono_runtime_free_method): New function to free a dynamic
9828         method.
9829
9830         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9831         delegate trampoline.
9832
9833         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9834         with hasthis as dynamic,
9835
9836         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9837
9838         * domain.c (mono_jit_info_table_remove): New function to remove an
9839         entry from the jit info table.
9840
9841         * class-internals.h (MonoMethod): Add 'dynamic' field.
9842
9843         * loader.c: Fix warnings.
9844
9845 2004-09-01  Martin Baulig  <martin@ximian.com>
9846
9847         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9848         instead of mono_debugger_lock() because the latter one is a no-op
9849         unless running in the debugger.
9850
9851 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9852
9853         * class.c (class_compute_field_layout): Classes with auto-layout or
9854         reference fields are not blittable.
9855         
9856 2004-09-01  Dick Porter  <dick@ximian.com>
9857
9858         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9859         mono_image_get_filename() to get the assembly location.
9860
9861         * icall.c:
9862         * metadata.h: Fix compile warnings
9863
9864 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9865
9866         * class.c (class_compute_field_layout): System.Object is blittable.
9867
9868         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9869         as in/out. Fixes #59909.
9870
9871 2004-09-01  Martin Baulig  <martin@ximian.com>
9872
9873         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9874         mono_metadata_generic_inst_is_valuetype() if we're a generic
9875         instance to check whether our underlying type is a reference type.
9876
9877 2004-09-01  Martin Baulig  <martin@ximian.com>
9878
9879         * metadata.c (mono_type_size): If we're a generic instance, call
9880         mono_class_value_size() for value types.
9881
9882 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9883
9884         * marshal.c: Implement more custom marshalling functionality. Fixes
9885         #64915.
9886
9887 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9888
9889         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9890
9891 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9892
9893         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9894
9895         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9896
9897         * icall.c: Fix some warnings.
9898
9899         * threads.c (abort_appdomain_thread): Fix unref errors.
9900         (mono_thread_current): Fix THREAD_DEBUG define.
9901
9902 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9903
9904         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9905
9906         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9907
9908 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9909
9910         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9911         string arrays.
9912
9913 2004-08-28  Martin Baulig  <martin@ximian.com>
9914
9915         * metadata.c
9916         (mono_metadata_generic_inst_is_valuetype): New public function.
9917
9918         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9919         mono_metadata_generic_inst_is_valuetype() if we're a generic
9920         instance to check whether our underlying type is a valuetype.
9921
9922 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9923
9924         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9925         #63768.
9926
9927 2004-08-25  Martin Baulig  <martin@ximian.com>
9928
9929         * loader.c (mono_get_method_from_token): Abstract methods can also
9930         be generic and thus have type parameters.
9931
9932         * metadata-internals.h
9933         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9934
9935         * reflection.c (mono_image_get_generic_param_info): Don't create a
9936         metadata row, just add an entry to the `gen_params' array.
9937         (build_compressed_metadata): Sort the `gen_params' array and then
9938         actually create the metadata.
9939
9940 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9941
9942         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9943
9944 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9945
9946         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9947
9948 2004-08-24  Martin Baulig  <martin@ximian.com>
9949
9950         * class.cs (mono_class_is_subclass_of): Like an interface, a
9951         generic instance also derives from System.Object.
9952
9953 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9954
9955         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9956         custom modifiers to be in any order. Fixes #61990.
9957
9958 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9959
9960         * object.c: Register mono_object_new_fast icall.
9961         
9962         * object.c (mono_class_get_allocation_ftn): Return to calling
9963         mono_object_new_fast, since it seems faster to compute the object 
9964         size in unmanaged code than passing it as a parameter.
9965
9966         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9967
9968         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9969         this function with Boehm as the oom handler, so we don't have to check
9970         the result of GC_malloc.
9971
9972         * object.c: Remove checks for oom.
9973
9974         * object.h object.c (mono_class_get_allocation_ftn): New function to
9975         return the icall which can be used to allocate an instance of a given
9976         class. 
9977
9978         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
9979
9980         * class-internals.h: Add 'enabled' field.
9981
9982 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
9983
9984         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
9985
9986 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
9987         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
9988         value 0x0010.
9989
9990 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
9991
9992         * appdomain.c: use the Tls function for appdomain too,
9993         at Zoltan's request. Actually return in mono_context_get
9994
9995         * appdomain.c, profiler.c, threads.c: use __thread
9996
9997 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
9998
9999         * appdomain.c threads.c: Call GC_CreateThread on windows.
10000
10001         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10002         multiple libraries since this don't work on windows.
10003
10004 2004-08-18  Martin Baulig  <martin@ximian.com>
10005
10006         * class-internals.h
10007         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10008         MonoMethodHeader.
10009
10010         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10011         MonoMethodNormal since we also need it for abstract and interface
10012         methods.
10013
10014         * reflection.c
10015         (build_compressed_metadata): Sort the GenericParam table.
10016         (mono_image_create_token): Added `gboolean create_methodspec'
10017         argument; this is false when generating a MethodImpl token.
10018         (reflection_methodbuilder_to_mono_method): Abstract and interface
10019         methods may also have generic parameters.
10020
10021 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10022
10023         * appdomain.c: thread local alloc
10024
10025 2004-08-17  Martin Baulig  <martin@ximian.com>
10026
10027         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10028
10029         * icall.c
10030         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10031         argument.
10032
10033         * class.c (mono_type_get_full_name): New public function.
10034         (mono_type_get_name): Don't include the type arguments.
10035
10036 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10037
10038         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10039         for inclusion into the mono executable.
10040
10041 2004-08-16  Martin Baulig  <martin@ximian.com>
10042
10043         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10044         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10045
10046 2004-08-14  Martin Baulig  <martin@ximian.com>
10047
10048         * class.c (dup_type): Also copy the `byref' field.
10049
10050 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10051
10052         * reflection.c (create_dynamic_mono_image): Revert the last change 
10053         since it breaks bootstrap.
10054
10055 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10056
10057         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10058
10059         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10060         not free them with g_free.
10061
10062 2004-08-11  Martin Baulig  <martin@ximian.com>
10063
10064         * reflection.c (mono_reflection_setup_internal_class): Also call
10065         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10066
10067 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10068
10069         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10070         called during default (first) AppDomain creation. Keep track of
10071         Evidence when loading assemblies.
10072
10073 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10074
10075         * opcodes.c, opcodes.h: reduce runtime relocations.
10076
10077 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10078
10079         * culture-info.h, locales.c: fixes and chages to sue the new
10080         optimized format of the locale data.
10081         * culture-info-tables.h: regenerated.
10082
10083 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10084         
10085         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10086
10087 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10088
10089         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10090         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10091         * domain-internals.h: icall declaration.
10092         * icall.c: icall registration.
10093         * object-internals.h: New fields in MonoAssembly for CAS.
10094
10095 2004-08-05  Duncan Mak  <duncan@ximian.com>
10096
10097         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10098         CEE_LDELEM_ANY.
10099
10100 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10101
10102         * reflection.c: fix to deal with object[] arrays in custom ctors
10103         (bug #62550).
10104
10105 2004-08-05  Martin Baulig  <martin@ximian.com>
10106
10107         * class.c (mono_class_array_element_size): Added support for
10108         generic instances and correctly handle "recursive" types.
10109
10110 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10111
10112         * assembly.c: Fix warnings.
10113
10114 2004-08-04  Martin Baulig  <martin@ximian.com>
10115
10116         * class.c
10117         (mono_type_get_name_recurse): Added `gboolean include_arity'
10118         argument specifying whether or not we should include the generic
10119         arity in the type name.
10120         (_mono_type_get_name): New static function.
10121         (mono_class_setup_vtable): If we're a generic instance, don't
10122         include the generic arity in the names of explicit method
10123         implementations.        
10124
10125 2004-08-03  Martin Baulig  <martin@ximian.com>
10126
10127         * class.c (mono_type_get_name_recurse): Enclose the generic type
10128         arguments in `<', '>'.
10129
10130 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10131
10132         * gc.c: make GC warning messages use the trace API, they are just
10133         noise to most of the users.
10134
10135 2004-08-03  Martin Baulig  <martin@ximian.com>
10136
10137         * debug-mono-symfile.c (read_string): Correctly read the string.
10138
10139 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10140
10141         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10142         
10143         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10144         icalls.
10145         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10146
10147 2004-07-30  Martin Baulig  <martin@ximian.com>
10148
10149         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10150         Reflect latest symbol writer changes.   
10151
10152 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10153
10154         * object.c: always create an object if null is passed
10155         to Invoke() where a valuetype is expected.
10156
10157 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10158
10159         * marshal.c (mono_marshal_init): make managed
10160         signatures match native ones better for 64bits.
10161
10162 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10163
10164         * appdomain.c: hack to build correctly the private bin path on windows.
10165         Fixes bug #61991.
10166
10167 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10168
10169         * assembly.c: Load mscorlib from the correct framework directory
10170           (mono/<version>/mscorlib.dll).
10171         * appdomain.h: Added prototypes for new functions.
10172         * internals.h: Added some prototypes.
10173         * domain.c: When initializing the runtime, get from the executable and
10174           the configuration files the runtime version that the app supports.
10175           Added support methods for reading app.exe.config. Added list of versions
10176           supported by the JIT. Added two new methods: mono_init_from_assembly,
10177           which initializes the runtime and determines the required version from
10178           the provided exe file, and mono_init_version, which initializes
10179           the runtime using the provided version.
10180         * icall.c: Get machine.config from version-specific directory.
10181         * reflection.c: When generating an image, embed the version number
10182           of the current runtime.
10183
10184 2004-07-28  Dick Porter  <dick@ximian.com>
10185
10186         * socket-io.c
10187         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10188         returned sockaddr size before creating the remote address object.
10189         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10190         61608.
10191
10192 2004-07-28  Dick Porter  <dick@ximian.com>
10193
10194         * locales.c (string_invariant_compare_char): Fix invariant char
10195         compares between upper and lower cases.  Fixes bug 61458.
10196
10197 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10198         
10199         * marshal.c: actually cache stelem.ref wrappers.
10200         
10201 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10202
10203         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10204         sections and remove the mono_cli_rva_map () function.
10205
10206 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10207
10208         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10209         by Geoff Norton (<gnorton@customerdna.com>).
10210
10211 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10212
10213         * class.c: fix class loads for pointer types (typeof(int) !=
10214         typeof(int*)).
10215
10216 2004-07-27  Martin Baulig  <martin@ximian.com>
10217
10218         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10219         reading the debugging information from an external ".mdb" file.
10220
10221 2004-07-24  Martin Baulig  <martin@ximian.com>
10222
10223         * reflection.c (mono_image_get_type_info): Only write a class
10224         layout entry if we actually have a size or a packing size.
10225
10226 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10227
10228         * reflection.c (type_get_fully_qualified_name): 
10229         insert cast to get type checking of ?: with non-gcc compilers
10230
10231 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10232
10233         * rand.c: use g_getenv for both lookups of
10234         MONO_EGD_SOCKET
10235
10236 2004-07-17  Martin Baulig  <martin@ximian.com>
10237
10238         * reflection.c (mono_reflection_bind_generic_method_parameters):
10239         Set `gmethod->reflection_info'.
10240
10241 2004-07-17  Martin Baulig  <martin@ximian.com>
10242
10243         * class.c (mono_class_create_from_typedef): Insert the newly
10244         created class into the hash table before computing the interfaces
10245         since we could be called recursively.
10246
10247 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10248
10249         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10250         function to implement stelem.ref in managed code
10251         * class-internals.h, debug-helpers.c: a new wrapper type
10252         for the above.
10253
10254 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10255
10256         * gc.c: allow GC handles to work even when no GC is compiled in.
10257         Fix part of bug #61134 (GetAddrOfPinnedObject).
10258
10259 2004-07-13  Peter Williams  <peter@newton.cx>
10260  
10261         * process.c (complete_path): Make sure we don't attempt to execute
10262         directories.
10263  
10264 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10265
10266         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10267           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10268           and will add/subtract the hour if needed
10269
10270 2004-07-12  Martin Baulig  <martin@ximian.com>
10271
10272         * reflection.c (mono_field_get_object): If we have
10273         `field->generic_info', take the attributes from
10274         `field->generic_info->generic_type'.    
10275
10276 2004-07-12  Martin Baulig  <martin@ximian.com>
10277
10278         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10279         This function must be called before initializing the runtime.
10280         (mono_debug_init_1): New function; call this after initializing
10281         the runtime, but before loading the assembly.  It tells the
10282         debugger to load corlib and the builtin types.
10283
10284         * mono-debug-debugger.c: Did some larger changes in the debugging
10285         code; support recursive class declarations, make sure we actually
10286         add all classes.
10287
10288 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10289
10290         * debug-helpers.c: undo my previous patch and fixed the real issue in
10291         ../mini/exceptions-x86.c
10292
10293 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10294
10295         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10296         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10297         called from other .cctors.
10298
10299 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10300
10301         * loader.c: Removed the mono_loader_wine_init hack now that we are
10302         doing a managed version of Windows.Forms.
10303
10304 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10305
10306         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10307         threadpool.c, threads.c: remove static data from rootset.
10308
10309 2004-07-09  Dick Porter  <dick@ximian.com>
10310
10311         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10312         Don't do any more processing if the matched length was 0.  It was
10313         increasing the size of the string before.  Fixes bug 61167.
10314
10315 2004-07-09  Dick Porter  <dick@ximian.com>
10316
10317         * socket-io.h:
10318         * socket-io.c
10319         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10320         Add support for SO_PEERCRED if its available.
10321
10322 2004-07-09  Peter Bartok <pbartok@novell.com>
10323         * loader.c: winelib.exe.so error message is now only displayed if
10324         MONO_DEBUG is set. To help us avoid questions when people are trying
10325         out the new Managed.Windows.Forms.
10326
10327 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10328
10329         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10330         for isinst and castclass wrappers.
10331
10332         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10333         to libmetadata from the JIT, so they could be used by the marshalling
10334         code and the interpreter.
10335
10336         * marshal.c: Register marshalling related JIT icalls here instead of
10337         in mini.c. Use CEE_MONO_ICALL instead of the family of 
10338         CEE_MONO_PROC<x> opcodes to call marshalling functions.
10339
10340         * metadata.h: Remove unneeded marshalling conversions.
10341
10342         * opcodes.c: Update for new opcodes.
10343         
10344 2004-07-08  Martin Baulig  <martin@ximian.com>
10345
10346         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
10347         (mono_debug_get_domain_data): Make this function static.
10348
10349 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10350
10351         * gc.c, object.h: add nice GC handle API for embedders.
10352
10353 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
10354
10355         * reflection.c: more changes for the new api
10356
10357         * object.c: When we reflect on a field w/ a constant value, it
10358         will not have a memory location, so we must access metadata. Also,
10359         allow easier reading of strings so that we can read them from
10360         the constant data.
10361
10362         * class.c (mono_class_layout_fields): no need for literal fields here.
10363
10364         * class-internals.h: api changes for const fields
10365
10366         * icall.c (ves_icall_get_enum_info): use new apis for const fields
10367
10368 2004-07-06  Martin Baulig  <martin@ximian.com>
10369
10370         * mono-debug.h: Increment version number to 44.
10371
10372         * mono-debug.c (mono_debug_add_wrapper): The second argument is
10373         now a gpointer, rewrote this whole method.
10374
10375         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
10376         function.  Add information about the wrapper in a new "misc table".
10377
10378         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
10379         for the new misc table.
10380
10381 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
10382
10383         * metadata-internals.h image.c: Add a cache for helper signatures.
10384
10385         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
10386
10387 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
10388
10389         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
10390         delegates from a delegate. Fixes #61033.
10391         
10392         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
10393         marshalling of stringbuilder arrays. Fixes #59900.
10394
10395 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
10396
10397         * icall.c: Add EnumBuilder:setup_enum_type icall.
10398
10399 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
10400
10401         * icall.c: Added a new icall for the property version of
10402         OffsetOfStringData.
10403
10404 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
10405
10406         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
10407         it has a constant size across platforms.
10408
10409         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
10410         stack trace.
10411
10412 2004-06-29  Martin Baulig  <martin@ximian.com>
10413
10414         * mono-debug.c (mono_debug_add_method): Protect the whole function
10415         in mono_debugger_lock(), not just parts of it.
10416
10417 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10418
10419         * reflection.c: make sure padding bytes in heaps are zeroed.
10420
10421 2004-06-24  David Waite  <mass@akuma.org>
10422
10423         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
10424         image.c, loader.c, locales.c, marshal.c, metadata.c,
10425         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
10426         string-icalls.c, threads.c: change to C90-style comments from C99 /
10427         C++ -style
10428
10429 2004-06-24  Dick Porter  <dick@ximian.com>
10430
10431         * threads.c
10432         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
10433         return createdNew.  Fixes bug 60412.
10434
10435         * threads-types.h: 
10436         * icall.c: Add createdNew parameter to CreateMutex icall
10437
10438 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10439
10440         * reflection.c, object-internals.h: save default value in params.
10441
10442 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10443
10444         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
10445         no need to build a new path combining that with the application base.
10446         Fixes bug #60442.
10447
10448 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
10449
10450         * reflection.c: fixed minor standard compliance issues.
10451
10452 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10453
10454         * reflection.c: fixed issue with encoding some custom attributes
10455         (arrays in properties and fields, bug #60411).
10456
10457 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10458
10459         * reflection.c: fix start address when copying the public key token.
10460
10461 2004-06-23  Martin Baulig  <martin@ximian.com>
10462
10463         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
10464         the `exc' object in a static object to put it into the GC's root set.
10465
10466 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
10467
10468         * reflection.c: make mono_reflection_setup_internal_class ()
10469         callable a second time to setup a new parent class.
10470
10471 2004-06-23  Dick Porter  <dick@ximian.com>
10472
10473         * threads.c: Check for WAIT_IO_COMPLETION return values.
10474
10475 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10476
10477         * appdomain.c: Removed the g_free on the public key token. Now copy 
10478         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10479         * assembly.c: Added public key token string value when loading 
10480         assemblies. Fix bug #60439.
10481         * icall.c: Added missing informations (like public key) in 
10482         GetReferencedAssemblies. Fix #60519.
10483         * image.h: Changed definition for public key token from const char*
10484         public_tok_value to guchar public_key_token [17];
10485         * reflection.c: Updated for changes to public key token.
10486
10487 2004-06-22  Lluis Sanchez Gual
10488
10489         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10490         for the field in base classes.
10491
10492 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10493
10494         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10495         mark headers as not supported, they are installed only for use by the
10496         debugger.
10497
10498 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10499
10500         * *.c, *.h: avoid namespace pollution in public headers.
10501
10502 2004-06-21  Martin Baulig  <martin@ximian.com>
10503
10504         * exception.c (mono_get_exception_security): It's in
10505         "System.Security", not in "System".
10506
10507         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10508         the exception classes.
10509
10510 2004-06-21  Martin Baulig  <martin@ximian.com>
10511
10512         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10513         Protect the exception object from being finalized.
10514
10515 2004-06-21  Martin Baulig  <martin@ximian.com>
10516
10517         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10518         public function.
10519
10520 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10521
10522         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10523         if it was not loaded before. Fix parts of #60439.
10524
10525 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10526
10527         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10528         code that was broken since Ben's change: wrappers are now
10529         dependent on the method signature only again.
10530
10531 2004-06-21  Martin Baulig  <martin@ximian.com>
10532
10533         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10534         added interface support.
10535
10536 2004-06-21  Martin Baulig  <martin@ximian.com>
10537
10538         * class.c (mono_vtable_get_static_field_data): New public method.
10539
10540 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10541
10542         * filewatcher.c : Windows build fix to be compliant with API changes.
10543
10544 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10545
10546         * class.h, class.c: more accessors.
10547         * metadata.h, metadata.c: prepare for hiding MonoType and
10548         MonoMethodSignature: people should use the accessors from now on
10549         outside of the tree.
10550
10551 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10552
10553         * *.c, *.h: more API cleanups.
10554
10555 2004-06-18  Jackson Harper  <jackson@ximian.com>
10556
10557         * assembly.c: Trace loading assemblies.
10558         * loader.c: Trace loading native libraries.
10559         * mono-config.c: Trace loading config files.
10560         
10561 2004-06-18  Dick Porter  <dick@ximian.com>
10562
10563         * locales.c: Tell ICU the lengths of strings, it can cope with
10564         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10565
10566 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10567
10568         * image.c: swapped name/filename;
10569
10570 2004-06-18  Martin Baulig  <martin@ximian.com>
10571
10572         * mono-debug-debugger.c (write_class): Write the parent class at
10573         the end of the header.
10574
10575 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10576
10577         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10578
10579 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10580
10581         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10582         (bundle_obj): New conditional define.
10583         (BUILT_SOURCES): Remove.
10584         ($(bundle_srcs)): Make parallel-make safe.
10585         (libmonoruntime_la_LIBADD): Make unconditional.
10586         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10587         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10588
10589 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10590
10591         * culture-info-tables.h: It was inconsistent with the latest
10592           supp info files.
10593
10594 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10595
10596         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10597         be loaded.
10598
10599         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10600         with gcc 2.95.
10601
10602 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10603
10604         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10605         cleaned up public header threads.h.
10606
10607 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10608
10609         * Makefile.am, *.c, *.h: more API cleanups.
10610
10611 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10612
10613         * Makefile.am: removed monosn from compilation.
10614         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10615         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10616         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10617         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10618         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10619         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10620
10621 2004-06-15  Jackson Harper  <jackson@ximian.com>
10622
10623         * assembly.c: Make locales lower case when searching the GAC for
10624         assemblies. gacutil will always make locales lowercase when
10625         installing so this effectively makes them case insensitive.
10626         
10627 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10628
10629         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10630         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10631           parameter which allows to choose whether the wait can be interrupted or 
10632           not. Also added the method mono_monitor_enter(), which locks the monitor
10633           using an infinite wait and without allowing interruption.
10634           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10635           interrupted.
10636         * object.h: Added new fields in MonoThread. suspend_event holds the event
10637           used to susped/resume the thread. synch_lock is the lock object to use for
10638           modifying the thread state.
10639         * threads.c: Use the new synch_lock object for locking, instead of "this",
10640           which can generate deadlocks.
10641           Moved thread state change in Thread.Sleep and Thread.Join from managed
10642           to unmanaged code. This avoids a deadlock when the thread was suspended
10643           just after acquiring the thread lock.
10644           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10645           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10646           which is not fully implemented in the io-layer.
10647         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10648
10649 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10650
10651         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10652         threads-types.h: more API cleanups.
10653
10654 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10655
10656         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10657         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10658         threadpool.c, threads.c: first pass at the exported API cleanup.
10659
10660 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10661
10662         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10663
10664 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10665
10666         * icall.c: added internalGetHome.
10667
10668 2004-06-14  Dick Porter  <dick@ximian.com>
10669
10670         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10671         possible to return successfully when '.' or '..' were the only
10672         entries in a directory, but were skipped.  The MonoIOStat was not
10673         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10674         Fixes bug 59574.
10675
10676 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10677
10678         * reflection.c: make binaries run on .Net 1.1 by default.
10679
10680 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10681
10682         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10683
10684 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10685
10686         * marshal.c: keep track of struct size with explicit layout
10687         (bug #59979).
10688
10689 2004-06-12  Martin Baulig  <martin@ximian.com>
10690
10691         * mono-debug-debugger.c: Comment out a debugging g_message().
10692
10693 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10694
10695         * reflection.c, reflection.h: do not free custom attrs that are cached.
10696         * icall.c: use braces to make code clearer.
10697
10698 2004-06-11  Martin Baulig  <martin@ximian.com>
10699
10700         * class.h (MonoInflatedField): New type.
10701         (MonoClassField): Replaced `MonoType *generic_type' with
10702         `MonoInflatedField *generic_info'.
10703
10704         * icall.c
10705         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10706
10707 2004-06-11  Martin Baulig  <martin@ximian.com>
10708
10709         * reflection.c (mono_image_create_method_token): Correctly encode
10710         varargs methods.
10711
10712 2004-06-11  Martin Baulig  <martin@ximian.com>
10713
10714         * metadata.c (mono_metadata_parse_method_signature): When parsing
10715         a MethodDef which has VarArgs, also set sentinelpos if we don't
10716         have any parameters.
10717
10718 2004-06-11  Martin Baulig  <martin@ximian.com>
10719
10720         * verify.c (mono_method_verify): In CEE_CALL, use
10721         mono_method_get_signature() to get the method's signature, unless
10722         we're a PInvoke method.
10723
10724 2004-06-10  Jackson Harper  <jackson@ximian.com>
10725
10726         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10727         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10728         logical name as the supplied path is just a prefix to the gac not
10729         the direct path to it.
10730         
10731 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10732
10733         * reflection.c: make the token for a created method match
10734         the token of the MethodBuilder it was created from
10735         (IKVM requires this behaviour now).
10736
10737 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10738
10739         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10740         reflection.c, socket-io.c: leak fixes.
10741
10742 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10743
10744         * icall.c: handle sentinel pos in vararg methods in position different
10745         from 0.
10746
10747 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10748
10749         * culture-info-tables.h: freshly generated.
10750
10751 2004-06-09  Martin Baulig  <martin@ximian.com>
10752
10753         * loader.c (mono_get_method_constrained): Call `mono_class_init
10754         (constrained_class)'.   
10755
10756 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10757
10758         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10759         any methods. Fixes #59629.
10760
10761 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10762
10763         * culture-info-tables.h: reflecting locale-builder updates.
10764
10765 2004-06-08  Dick Porter  <dick@ximian.com>
10766
10767         * object.h:
10768         * locales.c: Fixed compile warnings, including a real bug in
10769         CompareInfo_internal_compare.
10770         
10771 2004-06-08  Dick Porter  <dick@ximian.com>
10772
10773         * locales.c
10774         (ves_icall_System_Globalization_CompareInfo_internal_index):
10775         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10776         Double-check the resuls of usearches, because ICU currently
10777         ignores most of the collator settings here.  Fixes bug 59720.
10778         
10779 2004-06-08  Dick Porter  <dick@ximian.com>
10780
10781         * locales.c
10782         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10783         Fix memory leak and segfault-causing typo.  No idea how this one
10784         lasted so long without being noticed.
10785
10786 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10787
10788         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10789         any methods. Fixes #59629.
10790
10791 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10792
10793         * assembly.c:
10794         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10795         own the critical section before). Removed dead code (that's done
10796         in the preload hook).
10797
10798         (mono_assembly_load_with_partial_name): call the preload hook.
10799
10800 2004-06-08  Martin Baulig  <martin@ximian.com>
10801
10802         * metadata.c (mono_metadata_signature_alloc): Default
10803         `sentinelpos' to -1.
10804
10805         * reflection.c (mono_image_get_array_token): Likewise.
10806
10807 2004-06-08  Martin Baulig  <martin@ximian.com>
10808
10809         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10810
10811         * metadata.c (mono_metadata_parse_method_signature): When parsing
10812         a MethodDef which has VarArgs, set sentinelpos.
10813
10814         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10815         `gint16' since we're using -1 for non-varargs methods.
10816
10817         * reflection.c
10818         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10819         (method_encode_signature): Added varargs support.
10820         (method_builder_encode_signature): Likewise.
10821         (mono_image_get_varargs_method_token): New static method.
10822         (mono_image_create_method_token): New public method; this is
10823         called via an icall instead of mono_image_create_token() when
10824         calling a varargs method.       
10825
10826 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10827
10828         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10829
10830 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10831
10832         * culture-info-tables.h : Reflecting the latest locale-builder that
10833           fixed empty array representation ({} to {0}).
10834
10835 2004-06-07  Jackson Harper  <jackson@ximian.com>
10836
10837         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10838         looking up extra gac paths. This allows MONO_GAC_PATH to act
10839         exactly like a prefix.
10840         
10841 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10842
10843         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10844         type name before modifying it. Fixes #59405.
10845
10846 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10847
10848         * culture-info.h: added fields for "all datetime patterns".
10849         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10850           _construct_datetime_format ()): fill xxx_patterns fields.
10851         * object.h: added fields for "all datetime patterns" to
10852           MonoDateTimeFormatInfo.
10853         * culture-info-tables.h: reflecting locale-builder updates.
10854
10855 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10856
10857         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10858         the event has no add and remove methods. Fixes #59629.
10859
10860 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10861
10862         * object.c: Fixed possible integer overflow when allocating large
10863         strings.
10864
10865 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10866
10867         * culture-info-tables.h: reflecting locale-builder updates.
10868
10869 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10870
10871         * culture-info-tables.h: reflecting locale-builder updates.
10872
10873 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10874
10875         * culture-info-tables.h: reflecting locale-builder updates.
10876
10877 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10878
10879         * threads.c: Made Thread.Sleep abortable.
10880
10881 2004-06-02  Martin Baulig  <martin@ximian.com>
10882
10883         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10884
10885         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10886
10887 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10888
10889         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10890
10891 2004-05-30  Jackson Harper  <jackson@ximian.com>
10892
10893         * reflection.c: Do not hardcode assembly versions or public key
10894         tokens anymore. All of this except the corlib section was dead
10895         code anyways.
10896         
10897 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10898
10899         * object.c (mono_runtime_invoke_array): Automatically create boxed
10900         objects for byref valuetypes if needed. Fixes #59300.
10901         
10902         * object.c (mono_method_return_message_restore): Handle 
10903         MONO_TYPE_OBJECT as well.
10904
10905 2004-05-28  Jackson Harper  <jackson@ximian.com>
10906
10907         * reflection.c: The modified type encoding was causing build
10908         problems. Reverted for now.
10909         
10910 2004-05-28  Jackson Harper  <jackson@ximian.com>
10911
10912         * reflection.c/h: Take an assembly ref so that we dont create
10913         fully qualified names when encoding types in the same assembly as
10914         the custom attribute being emitted.
10915         * appdomain.c: Increment version number.
10916         
10917 2004-05-26  Duncan Mak  <duncan@ximian.com>
10918
10919         * icall.c
10920         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10921         Set the full version number (major, minor, build, revision).
10922
10923 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10924
10925         * marshal.c (emit_struct_conv): increment src/dst after blit
10926         (mono_marshal_get_managed_wrapper,
10927         mono_marshal_get_native_wrapper): make sure we have marshalling
10928         info before marshalling params (info computation affects
10929         blittable)
10930
10931         * class.c (class_compute_field_layout): correctly deal with
10932         blittable
10933         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10934         value types (as per what windows dows by default)
10935         (mono_class_setup_mono_type): System.ValueType is blittable
10936         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10937         blittable
10938
10939         * marshal.c (mono_marshal_load_type_info): flag types  as
10940         non-blittable if the native layout doesn't match the managed
10941         layout
10942
10943 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10944
10945         * appdomain.c: don't add stuff in the private search path that is
10946         above the application base. If application base is not set, there's
10947         no private search path.
10948
10949 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10950
10951         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10952         byref struct arguments in native->managed marshalling.
10953
10954 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10955
10956         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10957         cache methods using signature (special case for methods
10958         that are value type or string class)
10959         
10960         * image.c (mono_image_close): clean up allocated GSList's
10961         in runtime_invoke_cache.
10962
10963 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10964
10965         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10966         there's no MONO_CFG_DIR environment variable defined.
10967
10968 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10969
10970         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10971
10972 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10973
10974         * threadpool.c: Really wait for 500ms after the async call, even if the wait
10975           is interrumped.
10976         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
10977           before waiting for it, and call CloseHandle after the wait to unref it.
10978           This will make sure that handles are not disposed too early.
10979
10980 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10981
10982         * appdomain.c:
10983         * appdomain.h:
10984         * icall.c: removed
10985         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
10986         needed now.
10987
10988         * object.c: se the application_base only for the domain that runs
10989         Main. Fixes bug #59216,
10990
10991 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10992
10993         * appdomain.c:
10994         * object.c: only the domain in which Main is run have
10995         SetupInformation.ConfigurationFile set, so moved a few lines from
10996         appdomain.c to object.c.
10997
10998 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10999
11000         * appdomain.c: we tried to load [name].(dll|exe), but according
11001         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11002         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11003         There's a test case attached to bug #58922.
11004
11005 2004-05-27  Dick Porter  <dick@ximian.com>
11006
11007         * icall.c:
11008         * file-io.c: Implemented icalls for locking and unlocking regions
11009         in a file.
11010         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11011         FALSE on error (fixes both compiler warning and real bug.)
11012
11013 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11014
11015         * culture-info-tables.h: reflecting locale-builder updates.
11016
11017           (Added missing ChangeLog entry for 05/26)
11018
11019 2004-05-27  Jackson Harper  <jackson@ximian.com>
11020
11021         * locales.c: Fix some cut and paste errors.
11022         
11023 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11024
11025         * mono-config.c: set the correct path for config. directory on windows.
11026
11027 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11028
11029         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11030           on win32.
11031
11032 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11033
11034         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11035         from pinvoke functions.
11036         
11037         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11038
11039 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11040
11041         * culture-info-tables.h: reflecting locale-builder updates.
11042
11043 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11044
11045         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11046         #59086.
11047
11048 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11049
11050         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11051         * icall.c: Modified icalls for RNG.
11052         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11053         Windows (CryptoAPI).
11054
11055 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11056
11057         * locales.c: Fix build.
11058
11059 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11060
11061         * culture-info-tables.h: reflecting locale-builder updates.
11062
11063 2004-05-25  Jackson Harper  <jackson@ximian.com>
11064
11065         * locales.c: When creating the current culture use the $LANGs
11066         specific culture. So DateTimeFormat and NumberFormat entries are created.
11067         
11068 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11069
11070         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11071         a char array as parameter.
11072
11073 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11074
11075         * image.c: In mono_image_open(), always use an absolute path name to
11076           look for already loaded images.
11077
11078 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11079
11080         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11081         missing in the windows build (like older cygwin include files).
11082
11083 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11084
11085         * icall.c: Fixed check for possible integer overflow in Buffer_
11086         BlockCopy icall. Replaced comments style // by /* */.
11087
11088 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11089
11090         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11091         
11092         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11093         check after MONO_VTADDR. Fixes pinvoke2.exe.
11094
11095         * marshal.h marshal.c metadata.h: Add beginnings of support for
11096         ftnptr -> delegate marshalling.
11097
11098 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11099
11100         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11101         * threads.c: Fix warnings.
11102
11103 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11104
11105         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11106         * icall.c: Registered icalls for Suspend and Resume.
11107         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11108           Thread.Abort.
11109         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11110         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11111         * process.c: Use WaitForSingleObjectEx.
11112         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11113           checkpoints.
11114         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11115           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11116           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11117           background threads. Added basic support for Abort in Windows.
11118           Start new threads using a managed delegate invoke wrapper. This wrapper
11119           has an interruption checkpoint that is needed since an interruption
11120           can be requested before the thread leaves the unmanaged code that starts 
11121           the thread.
11122         * marshal.c: Added interruption checkpoint after every native call, and
11123           also before managed calls for wrappers called from unmanaged code to
11124           go into managed code.
11125         * object.h: Added new field in MonoThread to keep track of interruption
11126           requests.
11127
11128 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11129
11130         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11131         calls.
11132
11133 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11134
11135         * appdomain.c:
11136         * assembly.c:
11137         * gc.c:
11138         * locales.c:
11139         * mono-config.c:
11140         * rand.c: getenv -> g_getenv (windows!)
11141
11142         * process.c: complete_path is also used on non-windows platforms.
11143
11144 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11145
11146         * icall.c: new signature for Process_Start.
11147
11148         * process.[ch]: new signature for Process_Start. If we're on windows
11149         and UseShellExecute is false, we have to search for the program by
11150         ourselves if we don't get a full path.
11151
11152 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11153
11154         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11155         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11156
11157 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11158
11159         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11160         Fixes bug #58373.
11161
11162 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11163
11164         * process.c: use double quotes to quote program name and arguments on
11165         windows. Fixes bug #58575.
11166
11167 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11168
11169         * file-io.c: don't return "." and ".." when using windows Find*File.
11170
11171 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11172
11173         * marshal.c: Don't pass wrappers to message init because method 
11174         addressed used to lookup metadata. part of remoting[2|3] fix.
11175
11176 2004-05-15  Jackson Harper  <jackson@ximian.com>
11177
11178         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11179         path is essentially the same as MONO_PATH except that it points to
11180         GACs instead of lib directories.
11181         * loader.h: The user gac is gone so we dont need function to
11182         enable/disable it.
11183         * mono-config.c: user gac option is now gone.
11184         
11185 2004-05-15  Jackson Harper  <jackson@ximian.com>
11186
11187         * culture-info.h: Make defines more consistent, add calendar data
11188         to the culture info table.
11189         * culture-info-tables.h: Add basic calendar data. Basically
11190         everyone gets default gregorian until all the data is
11191         updated.
11192         * locales.c: Use the new consistent defines. Set calendar data for
11193         culture info objects.
11194         * object.h: add a field for calendar data to CultureInfo
11195         
11196 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11197
11198         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11199         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11200         a signature.
11201         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11202         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11203         an extra param that is the pointer of the method to invoke. The IL for
11204         the invoke method is no longer specific to the method, but to the
11205         signature of the method. Thus, we can share the same code for multiple
11206         methods. This reduces the number of methods that have to be compiled.
11207
11208 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11209
11210         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11211
11212         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11213
11214         * icall.c: Optimize Buffer.BlockCopy.
11215
11216 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11217
11218         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11219         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11220         quote). Changed them to "MMMM yyyy".
11221
11222 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11223
11224         * rand.c
11225         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11226
11227 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11228
11229         * reflection.h: Updated after changes to managed structures.
11230
11231         * appdomain.c: Bump corlib version.
11232
11233 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11234
11235         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11236         windows.
11237
11238 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11239
11240         * Makefile.am: link to ../os/libmonoos.la on windows.
11241
11242         * assembly.c:
11243                 -If MONO_DEBUG, warn about non-existing directories in
11244                 MONO_PATH.
11245                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11246                 compile time variable.
11247                 -Removed init_default_path and call mono_set_rootdir from
11248                 libmonoos.a instead (windows only).
11249
11250         * assembly.h: declare mono_assembly_getrootdir().
11251
11252         * domain.c:
11253         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11254
11255         * loader.c: s/getenv/g_getenv/
11256
11257 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11258
11259         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11260
11261         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11262
11263         * metadata.h: Add new marshalling conversions.
11264
11265         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11266         function.
11267
11268         * reflection.c (mono_reflection_get_type): Lookup the type in all
11269         modules of a multi-module assembly. Fixes #58291.
11270
11271 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11272
11273         * threads.c: Before aborting a background, set the StopRequested
11274         state.  This avoids throwing the Abort exception.
11275         In mono_thread_manage, don't continue with the shutdown until all
11276         aborted threads have actually stopped.
11277
11278 2004-05-10  Jackson Harper  <jackson@ximian.com>
11279
11280         * locales.c: Remove the modifier from culture names.
11281         
11282 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11283
11284         * Makefile.am: monosn is not installed any more. It has been deprecated
11285         in favor of sn.
11286
11287 2004-05-07  Jackson Harper  <jackson@ximian.com>
11288
11289         * locales.c
11290         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11291         Fix array construction, add bailout if the length is 0.
11292
11293 2004-05-07  Dick Porter  <dick@ximian.com>
11294
11295         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11296         machine doesn't have a DNS entry.  Patch by Urs Muff
11297         (umuff@quark.com), fixes bug 57928.
11298
11299 2004-05-06  Jackson Harper  <jackson@ximian.com>
11300
11301         * reflection.c: Handle null PublicTokens properly. alloc mem for
11302         assembly names culture so we dont crash when freeing it.
11303         
11304 2004-05-06  Jackson Harper  <jackson@ximian.com>
11305
11306         * assembly.c: Check the usergac when loading with partial names.
11307         
11308 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11309
11310         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11311         does nothing for now (not required for Linux/Windows) but the class
11312         library can call it (and a newer or modified runtime could need it).
11313         * icall.c: Registred icall.
11314
11315 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11316
11317         * loader.c: prints a message on module loading error we set MONO_DEBUG
11318         environment variable.
11319
11320 2004-05-05  Jackson Harper  <jackson@ximian.com>
11321
11322         * appdomain.c: Handle PublicKeyToken=null properly.
11323         
11324 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11325
11326         * environment.c|h: Added icall ves_icall_System_Environment_
11327         GetOSVersionString to get the current OS version as a string.
11328         * icall.c: Registred icall.
11329
11330 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11331
11332         * object.c: in mono_object_get_virtual_method(), take into account that
11333         non-virtual methods don't have a slot in the vtable. Check needed when
11334         the object is a proxy.
11335
11336 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
11337
11338         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
11339         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
11340
11341         * object.c (mono_class_compute_gc_descriptor): Fix warning.
11342
11343         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
11344         passed when a valuetype is expected.
11345
11346         * object.c (mono_unhandled_exception): Only set the exit code if the
11347         exception happens in the main thread. Fixes thread5.exe.
11348
11349         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
11350         invalid names. Fixes #58047.
11351
11352 2004-05-03  Jackson Harper  <jackson@ximian.com>
11353
11354         * assembly.c: This line was committed accidently and is unneeded.
11355         
11356 2004-05-03  Jackson Harper  <jackson@ximian.com>
11357
11358         * icall.c: Add new icall for Assembly::LoadWithPartialName
11359         * assembly.c/.h: new function that probes the GAC to load partial
11360         assembly names by Paolo Molaro.
11361         
11362 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11363
11364         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
11365         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
11366         (type_get_fully_qualified_name): Added PublicKeyToken when building a
11367         full type name.
11368
11369 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11370
11371         * appdomain.c: fixed check for 'neutral' culture and removed warning.
11372         * reflection.c: fix bug when parsing a full type name and Version is not
11373         the last thing in the string.
11374
11375 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
11376
11377         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
11378         crashes when it is freed.
11379
11380 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11381
11382         * assembly.c: print the compat warning to stderr.
11383
11384 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
11385
11386         * assembly.c (mono_assembly_load_references): Add a compatibility
11387         hack to run old applications that might be still referencing the
11388         3300-based assemblies, only do this for System.xxx.
11389
11390 2004-05-01  Jackson Harper  <jackson@ximian.com>
11391
11392         * appdomain.c: If the culture is neutral we set it to "".
11393         
11394 2004-04-29  Jackson Harper  <jackson@ximian.com>
11395
11396         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
11397
11398 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
11399  
11400         * string-icalls.c: added low overhead function for copying chars
11401         * icall.c: added needed icall for the above function
11402  
11403 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11404
11405         * icall.c: fix return value of get_global_assembly_cache.  Implemented
11406         Environment.GetLogicalDrives.
11407
11408 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
11409
11410         * rand.c: try and talk to egd or prngd
11411         for random bytes if opening devices fail.
11412
11413 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
11414
11415         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
11416         alignment for the type using the native alignment of its members 
11417         instead of using klass->min_align.
11418
11419         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
11420
11421 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11422
11423         * file-io.c:
11424         * socket-io.c: added check for sys/aio.h.
11425
11426 2004-04-28  Dick Porter  <dick@ximian.com>
11427
11428         * threads.c: Don't abort a thread thats already aborting, when
11429         terminating everything.
11430
11431 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11432
11433         * icall.c: added 2 new async calls for Socket.
11434
11435         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
11436         IO on *nix systems.
11437
11438         * threadpool.c: removed unused variable.
11439
11440 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
11441
11442         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
11443
11444 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11445
11446         * locales.c: put back string_invariant_tolower () and
11447         string_invariant_toupper ().
11448
11449 2004-04-26 David Waite <mass@akuma.org>
11450
11451         * file-io.h:
11452         * socket-io.h:
11453         * threads.h:
11454         * unicode.h: remove comma from end of enumeration declarations
11455
11456 2004-04-26 David Waite <mass@akuma.org>
11457
11458         * debug-mono-symfile.h:
11459         * decimal.c:
11460         * mono_debug.h:
11461         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
11462
11463
11464 2004-04-26  Jackson Harper  <jackson@ximian.com>
11465
11466         * appdomain.c: Increment version number.
11467         
11468 2004-04-26  Jackson Harper  <jackson@ximian.com>
11469
11470         * appdomain.c: Set assembly references public token value when
11471         PublicKeyToken is specified, not the hash_value. Free public token
11472         values when free assembly name data. Previously the public key
11473         token was hex decoded, however we are using hex encoded public key
11474         tokens, so this is not neccasary.
11475         * assembly.c: Lookup assemblies in the gac if their public token
11476         value is set. Add function to allow enabling user gac
11477         lookups. Specify whether or not the assembly was loaded from the
11478         GAC. Compare full assembly names when checking the cache for
11479         assemblies (Temporarily disabled see comment in code). Remove
11480         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11481         specifies trace-loader they get extra info to stdout on the
11482         loading of assemblies.
11483         * image.h: Add a field for an assembly references public token
11484         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11485         whether an assembly has been loaded from the GAC.
11486         * image.c: Remove a corlib -> mscorlib name mapping.
11487         * loader.h: Add function to enable/disable the user gac.
11488         * mono-config.c: Check if the usergac is enabled in the config
11489         file.
11490         * icall.c: New icall to determine whether or not an assembly has
11491         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11492         * tabldefs.h: Add constant for assemblyref flag that specifies a
11493         full public key is used instead of a public token.
11494         * reflection.c: Remove mscorlib -> corlib mappings. Set
11495         PublicTokenValue instead of hash value. This value is a hex
11496         string so it does not need to be expanded.
11497
11498 2004-04-26  Martin Baulig  <martin@ximian.com>
11499
11500         * mono-debug-debugger.c (mono_debugger_initialize): Set
11501         `mono_debugger_initialized' before calling mono_debug_lock().
11502
11503 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11504
11505         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11506           InternalToUpper/InternalToLower.
11507         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11508           removed invariant culture shortcut.  This is now done in managed code.
11509         * locales.c: (string_invariant_toupper/tolower) removed.
11510
11511 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11512
11513         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11514         Added Poll internal call.
11515
11516         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11517         call for Poll. Select was too heavy for polling a single socket.
11518
11519         * threadpool.[ch]: added mono_threadpool_cleanup.
11520         * threads.c: use it. Don't use Thread_Abort on windows.
11521
11522 2004-04-23  Martin Baulig  <martin@ximian.com>
11523
11524         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11525
11526 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11527
11528         * icall.c: Registred new icalls for key pair protection and added an
11529         icall for Environment.GetFolderPath on Windows.
11530         * security.c|h: Added new icalls for key pair protection.
11531
11532 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11533
11534         * socket-io.c: don't display the non-supported family warning for known
11535         families. Now this is not displayed on windows when checking support
11536         for IPv4/IPv6.
11537
11538 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11539
11540         * class.c: don't display the layout warning for static fields.
11541
11542 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11543
11544         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11545         * locales.c, locales.h: Added new icalls for culture-specific
11546         Char.ToLower and Char.ToUpper.
11547
11548 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11549
11550         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11551         by David Waite.
11552
11553 2004-04-20  Martin Baulig  <martin@ximian.com>
11554
11555         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11556         of the type name before passing it to mono_reflection_type_from_name().
11557
11558 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11559
11560         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11561         encodings here. Fixes #56965.
11562
11563 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11564
11565         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11566         fix test on strstr result not that I can see anything that
11567         relies on the result.
11568
11569 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11570
11571         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11572         Fixes #57081.
11573
11574         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11575
11576         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11577         function to determine which marshalling to use for strings. Fixes
11578         #56965.
11579
11580         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11581
11582         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11583
11584 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11585
11586         * icall.c: #include mono-config.h
11587
11588 2004-04-15  Jackson Harper  <jackson@ximian.com>
11589
11590         * culture-info-tables.h: Fix date formats for en-US culture.
11591         
11592 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11593
11594         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11595         ThreadPool.SetMinThreads.
11596         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11597         ThreadPool.SetMinThreads.
11598
11599 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11600
11601         * mono-config.c: also load the .config file in the directory
11602         where the assembly was found.
11603
11604 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11605
11606         * assembly.c: load per-assembly config files.
11607         * icall.c: decrapified code to get the config dir and moved to
11608         mono-config.c.
11609         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11610         per-assembly config files. When doing a dll map lookup give precedence
11611         to the per-assembly data.
11612
11613 2004-04-14  Martin Baulig  <martin@ximian.com>
11614
11615         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11616         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11617         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11618
11619         * mono-debugger-debugger.c: While the debugger is locked, remember
11620         whether the symbol tables have changes and send one single
11621         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11622
11623 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11624
11625         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11626
11627         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11628         function.
11629
11630         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11631         account when marshalling string arrays. Fixes #56965.
11632
11633 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11634
11635         * icall.c: Add new icalls mapping for security.
11636         * security.c|h: Add internal calls for WindowsIdentity,
11637         WindowsImpersonationContext and WindowsPrincipal.
11638
11639 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11640
11641         * class.c: Added comment to ensure the System.MonoDummy class
11642         is removed when no longer necessary
11643
11644 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11645
11646         * appdomain.c: Pass arguments to the bootstraping exceptions to
11647         minimize JITed methods at boot
11648
11649         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11650         second string to be null.
11651
11652         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11653         Change the protocol to minimize the JIT methods at startup.  Now
11654         it Returns the internal codepage, if the value of "int_code_page"
11655         is 1 at entry, and we can not compute a suitable code page
11656         number, returns the code page as a string.
11657
11658 2004-04-13  Jackson Harper  <jackson@ximian.com>
11659
11660         * culture-info-tables.h: Fix number of decimal digits for all
11661         english locales.
11662
11663 2004-04-13  Jackson Harper  <jackson@ximian.com>
11664
11665         * icall.c: Clairfy out of sync error message. It is not always
11666         your corlib that is out of sync.
11667
11668 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11669
11670         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11671         properties when only the set accessor is overriden. Fixes #55874.
11672
11673 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11674
11675         * assembly.c (mono_assembly_load_references): Make this thread safe.
11676         Fixes #56327.
11677
11678 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11679
11680         * monosn.c: Add missing initialization calls.
11681
11682 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11683
11684         * locales.c:
11685         ves_icall_System_Globalization_CultureInfo_construct_number_format
11686         Fix g_assert so it compiles on fussier compilers re int/ptr
11687         mismatch
11688
11689 2004-04-08  Dick Porter  <dick@ximian.com>
11690
11691         * socket-io.h:
11692         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11693         53992.  Also rearrange the code so that the internal calls return
11694         an error value and exceptions are thrown from managed code.
11695
11696         * icall.c: Add type info to the socket icalls.
11697
11698 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11699
11700         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11701         owes me a beer.
11702
11703 2004-04-07  Martin Baulig  <martin@ximian.com>
11704
11705         * class.c (mono_class_from_generic_parameter): Don't default
11706         `klass->parent' to `mono_defaults.object_type'.
11707
11708 2004-04-07  Martin Baulig  <martin@ximian.com>
11709
11710         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11711         `param->pklass->reflection_info'.       
11712
11713 2004-04-07  Jackson Harper  <jackson@ximian.com>
11714
11715         * culture-info-tables.h: Fix date separator symbol.
11716         
11717 2004-04-07  Martin Baulig  <martin@ximian.com>
11718
11719         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11720         from System.Type to System.MonoType.
11721
11722 2004-04-07  Martin Baulig  <martin@ximian.com>
11723
11724         * reflection.h
11725         (MonoReflectionGenericParam): Added `has_reference_type' and
11726         `has_value_type' fields.
11727
11728         * reflection.c (mono_image_get_generic_param_info): Encode the
11729         correct flags if we have the `class' or `struct' constraint.
11730
11731 2004-04-07  Martin Baulig  <martin@ximian.com>
11732
11733         * reflection.h
11734         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11735
11736 2004-04-07  Jackson Harper  <jackson@ximian.com>
11737
11738         * appdomain.c: Revert extra patches, just wanted to bump the
11739         version number.
11740         
11741 2004-04-07  Jackson Harper  <jackson@ximian.com>
11742
11743         * Makefile.am: Add culture-info private headers.
11744         * icall.c: Add new icalls for contructing locales.
11745         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11746         * locales.h: Declare new culture info construction methods.
11747         * object.h: Add new fields used to avoid the CultureMap to
11748         MonoCultureInfo.
11749         * culture-info.h: Definition of structs used in the culture info
11750         tables.
11751         * culture-info-tables.h: Autogenerated tables that contain culture
11752         info data. This file was generated with the locale-builder tool.
11753         * appdomain.c: Incement corlib version number.
11754         
11755 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11756
11757         * appdomain.c: (mono_runtime_init) move mono_thread_init
11758         to before mono_object_new calls so critical sections
11759         are initialized before use.
11760
11761 2004-04-07  Martin Baulig  <martin@ximian.com>
11762
11763         * icall.c
11764         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11765         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11766         (ves_icall_MonoGenericParam_initialize): Removed.
11767         (monogenericparam_icalls): Removed.
11768         (generictypeparambuilder_icalls): Added new table for
11769         System.Reflection.Emit.GenericTypeParameterBuilder.
11770
11771         * reflection.c
11772         (mono_reflection_define_generic_parameter): Removed.
11773         (mono_reflection_initialize_generic_parameter): This is now called
11774         from GenericTypeParameterBuilder's .ctor.
11775
11776 2004-04-06  Martin Baulig  <martin@ximian.com>
11777
11778         * class.c (mono_class_init): Don't inflate nested classes in a
11779         generic instance.
11780         (mono_type_get_name_recurse): Include the generic arguments for
11781         generic instances and generic type declarations.
11782         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11783         (_mono_class_get_instantiation_name): Removed.
11784         (mono_class_create_generic): Always use `gklass->name' as our name.
11785
11786         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11787
11788         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11789         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11790         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11791         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11792         closed generic methods here.
11793
11794         * reflection.c
11795         (mono_reflection_generic_inst_get_nested_types): Removed.
11796         (inflate_mono_method): Copy the generic parameters from the
11797         MonoMethodHeader into out MonoGenericMethod.
11798
11799 2004-04-06  Martin Baulig  <martin@ximian.com>
11800
11801         * row-indexes.h
11802         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11803
11804         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11805
11806         * reflection.c (build_compressed_metadata): If we have any entries
11807         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11808         set the header version to 1.1.
11809
11810 2004-04-06  Martin Baulig  <martin@ximian.com>
11811
11812         * class.c (mono_class_init): If we're a generic instance,
11813         initialize our nested classes, too.
11814         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11815         suffix. 
11816
11817 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11818
11819         * process.c: quote the argument passed to the shell on windows.
11820
11821 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11822
11823         * threads.c (mono_alloc_special_static_data): Allow this to be
11824         called during startup.
11825
11826 2004-04-02  Martin Baulig  <martin@ximian.com>
11827
11828         * icall.c
11829         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11830
11831 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11832
11833         * icall.c: Fix build.
11834
11835 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11836
11837         * Makefile.am: Added security.c|h.
11838         * icall.c: Added icall for get_UserName;
11839         * security.c: New file for security related icalls. Added function
11840         get_UserName for System.Environment (fix #56144).
11841         * security.h: New. Header file for security.c
11842
11843 2004-04-02  Dick Porter  <dick@ximian.com>
11844
11845         * icall.c: Deleted the icalls that were obsoleted some time ago
11846         by the ICU string code, and which were mixed into the icall
11847         rearranging.  Fixes bug 55969.
11848
11849         * string-icalls.h: 
11850         * string-icalls.c: Deleted the code that those icalls reference.
11851
11852 2004-04-01  Martin Baulig  <martin@ximian.com>
11853
11854         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11855
11856         * class.c (mono_class_from_generic_parameter): Don't set 
11857         TYPE_ATTRIBUTE_INTERFACE.
11858         (my_mono_class_from_generic_parameter): Likewise.
11859
11860 2004-04-01  Martin Baulig  <martin@ximian.com>
11861
11862         * loader.c (find_method): Added an optional `MonoClass *ic'
11863         argument to search in a specific interface.
11864         (mono_get_method_constrained): New public function.
11865
11866 2004-04-01  Martin Baulig  <martin@ximian.com>
11867
11868         * reflection.c (mono_image_get_generic_field_token): Use the
11869         `handleref' cache here.
11870
11871 2004-04-01  Martin Baulig  <martin@ximian.com>
11872
11873         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11874
11875         * reflection.c (create_generic_typespec): Use the `typespec' hash
11876         here, not the `typeref' one.    
11877
11878 2004-04-01  Martin Baulig  <martin@ximian.com>
11879
11880         * class.c (mono_class_inflate_generic_type): Moved the
11881         functionality into a new static inflate_generic_type() which
11882         returns NULL if it didn't do anything.  Only increment the
11883         `mono_stats.inflated_type_count' if we actually inflated
11884         something.
11885         (mono_class_get_full): Check the classes type to see whether we
11886         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11887
11888 2004-04-01  Jackson Harper  <jackson@ximian.com>
11889
11890         * reflection.c: Set culture for assembly references.
11891         
11892 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11893
11894         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11895
11896 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11897
11898         * assembly.c:
11899         (do_mono_assembly_open): the critical section also covers
11900         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11901
11902 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11903
11904         * threads.c:
11905         (mono_manage_threads): abort the background threads when finishing.
11906         Fixes bug #47232.
11907
11908 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11909
11910         * gc.c: only close the done_event handle if there was no timeout.
11911         C-ified comments.
11912
11913 2004-03-30  Martin Baulig  <martin@ximian.com>
11914
11915         * icall.c (icall_entries): It's called "System.Activator", not
11916         "System.Activation".    
11917
11918 2004-03-30  Martin Baulig  <martin@ximian.com>
11919
11920         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11921         (mono_class_create_from_typespec): Likewise.
11922
11923 2004-03-30  Martin Baulig  <martin@ximian.com>
11924
11925         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11926         `has_ctor_constraint' and `initialized'.
11927
11928 2004-03-30  Martin Baulig  <martin@ximian.com>
11929
11930         * reflection.c (encode_new_constraint): New static function to add
11931         the constructor constraint attribute to a type parameter.
11932         (encode_constraints): Call encode_new_constraint() if necessary.
11933
11934         * reflection.h
11935         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11936
11937         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11938         
11939 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11940
11941         * reflection.c, icall.c: add support for pinning variables. 
11942
11943 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11944
11945         * marshal.c (mono_marshal_get_managed_wrapper):
11946         init bool local with zero rather than null.
11947
11948 2004-03-29  Martin Baulig  <martin@ximian.com>
11949
11950         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11951         the "official" behavior here.
11952         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11953
11954 2004-03-29  Martin Baulig  <martin@ximian.com>
11955
11956         * icall.c: Reflect latest API changes.
11957
11958 2004-03-29  Martin Baulig  <martin@ximian.com>
11959
11960         * loader.c (mono_get_method_from_token): Also call
11961         mono_metadata_load_generic_params () for abstract and interface
11962         methods; replace the type arguments in the method signature with
11963         the ones which are loaded from the metadata.
11964
11965 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11966
11967         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11968         of the lock is not the current thread. MS.NET don't do it, in spite of
11969         what the documentation says. See bug #56157.
11970
11971 2004-03-28  Martin Baulig  <martin@ximian.com>
11972
11973         * class.c (mono_class_init): Don't call init_properties() and
11974         init_events() for generic instances; set `prop->parent' when
11975         inflating properties.
11976
11977         * reflection.c (mono_generic_inst_get_object): Call
11978         `mono_class_init (ginst->klass)'.
11979         (mono_type_get_object): Only create a MonoGenericInst if your
11980         generic type is a TypeBuilder.
11981         (do_mono_reflection_bind_generic_parameters): Only set
11982         `ginst->is_dynamic' if our generic type is a TypeBuilder.
11983
11984 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
11985
11986         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
11987         Fixes #56091.
11988
11989 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11990
11991         * icall.c: added Kill_internal icall.
11992         * process.[ch]: added Kill_internal icall.
11993
11994 2004-03-25  Martin Baulig  <martin@ximian.com>
11995
11996         * class.h (MonoStats): Added `generic_instance_count',
11997         `inflated_method_count', `inflated_type_count' and
11998         `generics_metadata_size'.       
11999
12000 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12001
12002         * reflection.c: no warnings now.
12003
12004 2004-03-25  Martin Baulig  <martin@ximian.com>
12005
12006         * class.c (mono_class_get_full): New public function; does a
12007         mono_class_get(), but also takes a `MonoGenericContext *'.
12008
12009         * loader.c (mono_field_from_memberref): Renamed to
12010         `field_from_memberref', made static and added `MonoGenericContext *'
12011         argument.
12012         (mono_field_from_token): Added `MonoGenericInst *' argument.
12013         (method_from_memberef): Likewise.
12014         (mono_get_method_from_token): Likewise.
12015         (mono_get_method_full): New public function; does a
12016         mono_get_method(), but also takes a `MonoGenericContext *'.
12017
12018         * verify.c (mono_method_verify): Get the method's generic context
12019         and pass it to mono_field_from_token(), mono_get_method_full() and
12020         mono_class_get_full().
12021
12022 2004-03-25  Martin Baulig  <martin@ximian.com>
12023
12024         * class.c (mono_class_inflate_generic_type): Take a
12025         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12026         `MonoGenericMethod *'.
12027
12028 2004-03-25  Martin Baulig  <martin@ximian.com>
12029
12030         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12031         instead of the MonoGenericMethod here.
12032
12033 2004-03-25  Martin Baulig  <martin@ximian.com>
12034
12035         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12036         each time we create a new MonoGenericInst, we also create a new
12037         context which points back to us.
12038
12039         * class.c (inflate_method): Use `ginst->context' instead of
12040         creating a new context.
12041
12042         * loader.c (method_from_memberref): Use
12043         `klass->generic_inst->context' instead of creating a new context.
12044
12045 2004-03-25  Martin Baulig  <martin@ximian.com>
12046
12047         * class.h (MonoGenericContext): New struct.
12048         (MonoGenericMethod): Removed `generic_inst'.
12049
12050         * class.c (mono_class_inflate_generic_method): Take a
12051         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12052
12053 2004-03-25  Martin Baulig  <martin@ximian.com>
12054
12055         * loader.h (MonoMethodInflated): New typedef.
12056
12057         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12058         `generic_param_count' consume just 30 bits, added `is_inflated'
12059         and `has_type_parameters' flags (one bit each).
12060
12061         * class.c (mono_class_inflate_generic_method): Create a
12062         MonoMethodInflated instead of a MonoMethodNormal and set
12063         `is_inflated' in the method signature.
12064
12065         * class.h (MonoGenericMethod): Removed `generic_method'.
12066
12067 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12068
12069         * image.c: Make sure the name of a MonoImage is always an absolute path.
12070           This fixes bug #54415.
12071
12072 2004-03-24  Martin Baulig  <martin@ximian.com>
12073
12074         * class.c (mono_class_setup_vtable): If we're a generic instance,
12075         use our generic type's vtable size.
12076
12077 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12078
12079         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12080         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12081         problems.
12082
12083 2004-03-23  Martin Baulig  <martin@ximian.com>
12084
12085         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12086         `MonoEvent *events'.
12087
12088         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12089         (typebuilder_icalls): Added "get_event_info"; calls
12090         mono_reflection_event_builder_get_event_info(). 
12091
12092         * reflection.c (mono_reflection_generic_inst_initialize): Added
12093         `MonoArray *events'.
12094         (mono_reflection_event_builder_get_event_info): New function.
12095
12096 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12097
12098         * object.h: add mono_type_initialization_init
12099
12100         * object.c (mono_runtime_class_init): 
12101         implement class constructor synchronization rules
12102         to cope with threading issues.  
12103         add mono_type_initialization_init
12104
12105         * appdomain.c (mono_runtime_init): call 
12106         mono_type_initialization_init
12107
12108         * class.h: removing initializing field from MonoVTable
12109
12110 2004-03-23  Martin Baulig  <martin@ximian.com>
12111
12112         * class.c (my_mono_class_from_generic_parameter): Use
12113         `param->name' if it's not NULL. 
12114
12115 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12116
12117         * class.c: do not insert non-virtual methods in the vtable.
12118         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12119         that means the method is non-virtual. This never would have
12120         happened before.
12121
12122 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12123
12124         * profiler.c: Added lock for accessing coverage_hash.
12125
12126 2004-03-22  Martin Baulig  <martin@ximian.com>
12127
12128         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12129         `method->method->signature->generic_param_count != 0' to make it
12130         work for interface methods.
12131
12132 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12133
12134         * process.c: quote the string passed to the shell using g_shell_quote.
12135
12136 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12137
12138         * threads.c:
12139         (mono_threads_manage): don't remove the finalizer thread and self
12140         from the threads hash table so that mono_thread_manage can be called
12141         more than once.
12142
12143 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12144
12145         * process.c: quote the arguments when UseShellExecute is true. Fixes
12146         bug #55790.
12147
12148 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12149
12150         * threads.c: set mono_thread_detach as a cleanup routine for every
12151         thread. This way it's always executed upon thread termination, either
12152         aborted or finished normally. No more xsp hangs!
12153
12154 2004-03-17  Martin Baulig  <martin@ximian.com>
12155
12156         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12157         `int count_nested' and a `MonoType **nested'.
12158
12159         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12160         most of the functionality into a new static
12161         do_mono_reflection_bind_generic_parameters() and don't take a
12162         `MonoType *nested_in' argument any more.  Don't compute nested
12163         types here.
12164         (mono_reflection_generic_inst_get_nested_types): New public method
12165         to get nested types.
12166
12167         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12168         we're a nested class.
12169
12170         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12171         mono_reflection_generic_inst_get_nested_types() to compute the
12172         nested types.
12173
12174 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12175
12176         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12177         descriptive error message under windows.
12178         
12179 2004-03-17  Martin Baulig  <martin@ximian.com>
12180
12181         * class.c (dup_type): Added `const MonoType *original' argument;
12182         copy the attrs from the original type.
12183
12184 2004-03-17  Martin Baulig  <martin@ximian.com>
12185
12186         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12187         `m->generic_inst_cache' here.
12188
12189 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12190
12191         * exception.h exception.c: Add stack_overflow_exception.
12192
12193 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12194
12195         * threadpool.c:
12196         (overlapped_callback): call SetEvent *after* invoking the callback.
12197         No need to call CloseHandle.
12198
12199 2004-03-16  Martin Baulig  <martin@ximian.com>
12200
12201         * reflection.c (mono_image_get_fieldref_token): Take a
12202         `MonoReflectionField *' instead of a `MonoClassField *' and a
12203         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12204
12205 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12206
12207         * appdomain.c: don't add the culture to the filename we're looking for
12208         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12209
12210 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12211
12212         * locales.c: don't ignore symbols when doing case insensitive compares.
12213         Thanks Dick! Fixes bug #54046.
12214
12215         * threads.c: surround 'threads' usage with enter/leave in
12216         mono_thread_manage.
12217
12218 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12219
12220         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12221         implicitly marshalled as [Out]. Fixes #55450.
12222
12223         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12224         an exception.
12225
12226 2004-03-16  Martin Baulig  <martin@ximian.com>
12227
12228         * class.c (mono_class_from_generic_parameter): Use the actual
12229         parameter name. 
12230
12231 2004-03-16  Martin Baulig  <martin@ximian.com>
12232
12233         * reflection.c (type_get_signature_size): New static function.
12234         Compues the size of the type in a method signature.
12235         (method_get_signature_size): New static function; calls
12236         type_get_signature_size() to compute the actual size of the
12237         method's signature.
12238         (method_encode_signature): Use method_get_signature_size() to get
12239         the signature's size rather than using `nparams * 10'.
12240
12241 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12242
12243         * file-io.h: define here WapiOverlapped on windows. I don't want the
12244         regular OVERLAPPED one.
12245
12246         * file-io.c:
12247         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12248         Disabling AIO on windows.
12249
12250 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12251
12252         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12253         bug #55385.
12254
12255 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12256
12257         * appdomain.c: upgraded corlib version.
12258
12259         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12260         and BeginWrite. Allow opening files for asynchrnous operations.
12261
12262         * file-io.h: new struct that maps FileStreamAsyncResult.
12263         * icall.c: added new icalls.
12264         * process.[ch]: support setting child process environment variables
12265         and use the SHELL or COMSPEC when UseShellExecute is true.
12266
12267         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12268         callback for async. IO is here and also BindHandle.
12269
12270         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12271         from here.
12272
12273 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12274
12275         * reflection.c (create_custom_attr): Allow len == 0.
12276
12277         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12278         computation on big-endian machines.
12279
12280 2004-03-13  Martin Baulig  <martin@ximian.com>
12281
12282         * class.h (MonoGenericInst): Added `int count_ifaces'.
12283
12284         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12285         `ginst->count_ifaces' instead `klass->interface_count' since we
12286         may get called before the vtable is created.
12287
12288         * loader.c (mono_method_get_param_names): If we're a generic
12289         instance, return and don't initialize the class.
12290
12291         * reflection.c (mono_reflection_setup_generic_class): Don't call
12292         ensure_runtime_vtable().
12293         (mono_reflection_bind_generic_parameters): Set
12294         `ginst->count_ifaces'.
12295
12296 2004-03-11  Jackson Harper <jackson@ximian.com>
12297
12298         * icall.c:
12299         * unicode.c:
12300         * unicode.h: Remove unused System.Char icalls.
12301         
12302 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12303
12304         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12305         code when we P/Invoke the first library in Windows.Forms, instead
12306         of when we first open the assembly.
12307
12308         * assembly.c: Drop the lookup from here.
12309
12310 2004-03-10  Martin Baulig  <martin@ximian.com>
12311
12312         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12313         class for properties, fields and events.  Finally fixes #54945.
12314
12315 2004-03-10  Martin Baulig  <martin@ximian.com>
12316
12317         * metadata.c (mono_metadata_class_equal): New static function;
12318         checks whether two generic instances or two generic parameters are
12319         equal.
12320         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12321         compare classes.        
12322
12323 2004-03-10  Martin Baulig  <martin@ximian.com>
12324
12325         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12326
12327         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12328         argument and write it into the `reflection_info' field.
12329
12330         * icall.c
12331         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12332         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12333
12334 2004-03-09  Jackson Harper  <jackson@ximian.com>
12335
12336         * char-conversions.h: use 8 bits for numeric data its all we need
12337         * icall.c: numeric data is only 8 bits now.
12338
12339 2004-03-09  Martin Baulig  <martin@ximian.com>
12340
12341         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
12342
12343         * class.c (init_properties, init_events): Initialize the new
12344         `parent' field.
12345
12346         * reflection.c (typebuilder_setup_properties): Likewise.
12347         (typebuilder_setup_events): Likewise.
12348
12349         * reflection.h (MonoEventInfo): Replaced `parent with
12350         `declaring_type' and `reflected_type'.
12351
12352         * icall.c (ves_icall_get_property_info): Distinguish between
12353         declaring and reflected type.
12354         (ves_icall_get_event_info): Likewise.
12355
12356 2004-03-09  Martin Baulig  <martin@ximian.com>
12357
12358         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
12359         (ves_icall_Type_GetField): Correctly set field->klass.
12360
12361 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
12362
12363         * loader.h: Fix warning.
12364
12365 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
12366
12367         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
12368         library routine if present.  Notice that it will still continue
12369         executing even if its missing, for those working on the Gtk#
12370         edition of Windows.Forms.
12371
12372         * assembly.c (do_mono_assembly_open): If loading the
12373         System.Windows.Forms call mono_loader_wini_init.
12374
12375 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
12376
12377         * class.h: Added MonoRemoteClass struct.
12378         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
12379         function for MonoStrings.
12380         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
12381         Added internal call for getting the proxy type.
12382         * marshal.c: Get the type of transparent proxies from its remote_class.
12383         Added methods that generate the IL for type checks and casts:
12384         mono_marshal_get_isinst, mono_marshal_get_castclass, 
12385         mono_marshal_get_proxy_cancast.
12386         * marshal.h: Declaration of the previous new methods.
12387         * object.c: Added new moethods for creating and updating MonoRemoteClass
12388         instances: mono_remote_class, mono_upgrade_remote_class, 
12389         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
12390         * verify.c: FIx transparent_proxy_fields layout.
12391         * appdomain.c: Bump corlib version.
12392
12393 2004-03-04  Jackson Harper  <jackson@ximian.com>
12394
12395         * icall.c: Add icall to access char conversion tables.
12396         * char-conversions.h: Character conversion tables.
12397         * Makefile.am: Add char-conversions.h private header file.
12398         
12399 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
12400
12401         * appdomain.c (unload_thread_main): Increase unloading timeout to
12402         10 sec as a temporary workaround for Nant problems.
12403
12404 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
12405
12406         * gc.c: Add checks for GC_enable and GC_disable.
12407
12408         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
12409         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
12410         (bug #54988).
12411         
12412 2004-02-27  Martin Baulig  <martin@ximian.com>
12413
12414         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12415         `MonoReflectionType *' instead of a `MonoType *'.
12416
12417 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
12418
12419         * gc.c (run_finalize): Avoid finalizing the object representing the
12420         finalizer thread.
12421         (finalizer_thread): Fix warning.
12422
12423 2004-02-25  Martin Baulig  <martin@ximian.com>
12424
12425         * class.c (_mono_class_get_instantiation_name): Added `int offset'
12426         argument for nested types.
12427         (mono_class_create_generic): Added support for nested generictypes.
12428
12429         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
12430         `GList *nested'.
12431
12432         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
12433
12434         * reflection.c (method_encode_signature): Increase the minimum
12435         value of `size' from 10 to 11.
12436         (mono_reflection_bind_generic_parameters): Take `int type_argc'
12437         and `MonoType **types' arguments instead of the `MonoArray
12438         *types'; added `MonoType *nested_in'.  Recursively instantiate
12439         nested classes. 
12440
12441 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
12442
12443         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
12444         stack_overflow_ex members which are used by exception handling.
12445
12446         * appdomain.c (mono_runtime_init): Initialize the new members.
12447
12448         * gc.c (mono_gc_enable): New helper function.
12449         * gc.c (mono_gc_disable): New helper function.
12450
12451 2004-02-23  Martin Baulig  <martin@ximian.com>
12452
12453         * icall.c: I must have been really stupid - make it actually work
12454         this time ;-)
12455
12456 2004-02-23  Martin Baulig  <martin@ximian.com>
12457
12458         * loader.c (method_from_memberref): Only inflate the method if
12459         it's in another klass.
12460
12461 2004-02-23  Martin Baulig  <martin@ximian.com>
12462
12463         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
12464         (mono_class_init): If we're a generic instance and an interface,
12465         compute `class->interface_id'; also create `class->interfaces'
12466         here and inflate them.
12467
12468         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
12469         `ginst->is_open'.
12470         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
12471
12472         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12473
12474 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12475
12476         * reflection.c (method_encode_code): Improved the error message
12477         generated by the exception.
12478
12479 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12480
12481         * icall.c: Martin did not do what he said in the ChangeLog for
12482         2004-02-18, but put back the changes for properties and events.
12483         Commenting those changes out again and adding comment to bug #54518.
12484         
12485         * process.c: removed warning.
12486
12487 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12488
12489         * marshal.c (emit_struct_conv): Print an error message instead of
12490         asserting when a type does not have the StructLayout attribute.
12491
12492 2004-02-20  Martin Baulig  <martin@ximian.com>
12493
12494         * reflection.c (mono_type_get_object): Also use the cache for
12495         generic instances.
12496         (mono_reflection_bind_generic_parameters): Always compute
12497         `ginst->ifaces'.        
12498
12499 2004-02-20  Martin Baulig  <martin@ximian.com>
12500
12501         * class.h (MonoGenericMethod): Removed `klass'.
12502
12503         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12504         *klass' argument.
12505
12506 2004-02-20  Martin Baulig  <martin@ximian.com>
12507
12508         * reflection.c (method_encode_methodspec): Actually use the
12509         uninflated signature for the memberref.
12510
12511 2004-02-20  Martin Baulig  <martin@ximian.com>
12512
12513         * class.h (MonoGenericMethod): Removed `declaring'.
12514
12515         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12516         is NULL, compute it here.
12517
12518 2004-02-20  Martin Baulig  <martin@ximian.com>
12519
12520         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12521
12522         * metadata.c (mono_metadata_generic_inst_hash): New method.
12523         (mono_metadata_generic_inst_equal): New method.
12524
12525         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12526         `klass->image->generic_inst_cache' cache to avoid creating
12527         duplicate MonoGenericInst's.
12528
12529         * class.c (mono_class_inflate_generic_type): Use the cache.
12530
12531 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12532
12533         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12534
12535 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12536
12537         * icall.c: added Socket.WSAIoctl icall.
12538
12539         * socket-io.[ch]: implemented
12540         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12541
12542 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12543
12544         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12545
12546 2004-02-18  Urs C Muff  <umuff@quark.com>
12547
12548         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12549         this work on PPC and other big-endian architectures.
12550
12551         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12552         fields with an underscore to make sure they're only accessed by
12553         the read32() macro.
12554
12555 2004-02-18  Martin Baulig  <martin@ximian.com>
12556
12557         * icall.c: Put the klass->refclass changes back for methods and
12558         fields, but not for properties and events.  We're currently not
12559         distinguishing between DeclaringType and ReflectedType for
12560         properties and events, that's what caused the regressions.
12561
12562 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12563
12564         * object.c:
12565         (mono_async_result_new): the handle can be NULL.
12566
12567         * threadpool.c: Use an event instead of a semaphore, don't initialize
12568         it until needed. This saves quite a few semaphores from being created
12569         when using the threadpool.
12570
12571 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12572
12573         * object.c (mono_string_is_interned_lookup): Fix interning of long
12574         strings. Fixes #54473.
12575
12576         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12577
12578         * icall.c: Revert the klass->refclass changes since they introduce
12579         regressions (bug #54518).
12580
12581 2004-02-18  Martin Baulig  <martin@ximian.com>
12582
12583         * class.c (mono_class_init): If we're a generic instance and don't
12584         come from a TypeBuilder, inflate our members here.
12585         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12586         (mono_class_create_generic): New public method.
12587         (mono_class_initialize_generic): Removed.
12588         (get_instantiation_name): Renamed to
12589         _mono_class_get_instantiation_name() and made it public.
12590
12591 2004-02-18  Martin Baulig  <martin@ximian.com>
12592
12593         * class.c (mono_class_inflate_generic_type): Clear the new
12594         instance's `nginst->klass' when inflating a generic instance.
12595         (mono_class_is_subclass_of): Added (basic) support for generic
12596         instances.
12597
12598 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12599
12600         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12601         MonoMempool to hold compiled native code.
12602
12603 2004-02-17  Martin Baulig  <martin@ximian.com>
12604
12605         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12606         `properties'.
12607
12608         * reflection.c (mono_reflection_generic_inst_initialize): Added
12609         `MonoArray *properties' argument.
12610
12611         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12612
12613 2004-02-17  Martin Baulig  <martin@ximian.com>
12614
12615         * icall.c (ves_icall_Type_GetFields): Renamed to
12616         ves_icall_Type_GetFields_internal() and added a
12617         `MonoReflectionType *rtype' argument; pass it to
12618         mono_field_get_object() to set the field's "reflected" type.
12619         (ves_icall_Type_GetConstructors): Likewise.
12620         (ves_icall_Type_GetEvents): Likewise.
12621         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12622         argument; pass it to mono_method_get_object() to set the method's
12623         "reflected" type.       
12624
12625 2004-02-17  Martin Baulig  <martin@ximian.com>
12626
12627         * class.h (MonoDynamicGenericInst): New type.
12628         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12629
12630         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12631         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12632         (ves_icall_MonoGenericInst_GetFields): New interncall.
12633
12634         * class.c (mono_class_from_generic): Don't call
12635         mono_class_initialize_generic() if this is a dynamic instance;
12636         ie. it's being created from a TypeBuilder.
12637         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12638         `class->byval_arg.type'.
12639
12640         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12641         to `inflate_method' and made static.
12642         (mono_reflection_inflate_field): Removed.
12643         (mono_reflection_generic_inst_initialize): New public method.
12644
12645         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12646         `ctors' and `fields'; added `initialized'.
12647
12648 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12649
12650         * debug-helpers.c (mono_method_full_name): Fix output for empty
12651         namespaces.
12652
12653 2004-02-12  Martin Baulig  <martin@ximian.com>
12654
12655         * class.h (MonoClassField): Added `MonoType *generic_type'.
12656
12657         * reflection.c (mono_image_get_fieldref_token): Added support for
12658         instantiated generic types.
12659         (field_encode_inflated_field): Removed.
12660         (mono_image_get_inflated_field_token): Removed.
12661         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12662
12663         * reflection.h (MonoReflectionInflatedField): Removed.
12664
12665 2004-02-12  Martin Baulig  <martin@ximian.com>
12666
12667         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12668         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12669
12670         * reflection.c (mono_image_get_methodspec_token): Take a
12671         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12672         (mono_image_create_token): Check whether we have a
12673         `method->signature->gen_method' and call
12674         mono_image_get_methodspec_token() if appropriate.
12675         (inflated_method_get_object): Removed.
12676         (mono_reflection_bind_generic_method_parameters): Return a
12677         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12678         (mono_reflection_inflate_method_or_ctor): Likewise.
12679
12680         * reflection.h (MonoReflectionInflatedMethod): Removed.
12681
12682 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12683
12684         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12685         for custom valuetype marshalling.
12686
12687         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12688
12689 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12690
12691         * icall.c: fixed WSAGetLastError_internal name.
12692
12693 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12694
12695         * threads.c (mono_thread_attach): Allow this to be called multiple
12696         times for a thread.
12697         
12698         * threads.c (build_wait_tids): Do not wait for ourselves.
12699
12700         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12701         appdomain list is empty.
12702
12703         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12704         memory returned by mono_string_builder_to_utf16, since it points into
12705         managed memory. Thanks to Bernie Solomon for noticing this.
12706
12707         * icall.c: Add AppDomainSetup icalls.
12708
12709         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12710
12711         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12712         types.
12713
12714         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12715         custom attributes to the method_aux struct. Also fix array indexes etc.
12716
12717         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12718         
12719 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12720
12721         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12722         (both static and runtime) and reduce startup time.
12723
12724 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12725
12726         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12727         AsAny marshalling conversion instead of crashing.
12728
12729         * marshal.c: Fix warnings.
12730
12731 2004-02-09  Martin Baulig  <martin@ximian.com>
12732
12733         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12734
12735         * reflection.h (MonoReflectionInflatedMethod): Removed the
12736         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12737
12738         * reflection.c (method_encode_methodspec): Removed the `method'
12739         argument; we get it from `gmethod->declaring'.
12740         (inflated_method_get_object): Removed the `declaring' argument.
12741
12742 2004-02-09  Martin Baulig  <martin@ximian.com>
12743
12744         * class.h (MonoGenericMethod): New type.
12745         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12746         `generic_method'.
12747
12748         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12749         a `MonoGenericMethod *gen_method' one.
12750
12751         * class.c (mono_class_inflate_generic_type): Take an additional
12752         `MonoGenericMethod * argument.  This is only non-NULL if we're
12753         inflating types for a generic method.   
12754         (mono_class_inflate_generic_signature): Renamed to
12755         inflate_generic_signature() and made static; take a
12756         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12757         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12758         instead of a `MonoGenericInst *' one.
12759         (mono_class_inflate_generic_method): Likewise.
12760
12761         * reflection.c (encode_generic_method_sig): Take a
12762         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12763         (method_encode_methodspec): Likewise.
12764         (inflated_method_get_object): Likewise. 
12765
12766         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12767         field with a `MonoGenericMethod *gmethod' one.  
12768
12769 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12770
12771         * class.h (mono_class_has_parent): add parens to expansion
12772         so you can ! this.
12773
12774 2004-02-08  Martin Baulig  <martin@ximian.com>
12775
12776         * image.h (MonoImage): Removed `generics_cache'.
12777
12778         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12779         instead of a `MonoType *' argument; removed the `inflate_methods'
12780         argument.  Don't inflate methods here.
12781
12782         * loader.c (find_method): If it's a generic instance, call
12783         mono_class_init() on the `sclass->generic_inst->generic_type'.
12784
12785         * metadata.c (mono_type_size): Make this work on uninitialized
12786         generic instances; call it on the `ginst->generic_type's class.
12787
12788         * reflection.c (mono_reflection_bind_generic_parameters): Call
12789         mono_class_from_generic() to create the `ginst->klass'.
12790
12791 2004-02-08  Martin Baulig  <martin@ximian.com>
12792
12793         * class.h (MonoClass): Changed type of `generic_inst' from
12794         `MonoType *' to `MonoGenericInst *'.
12795
12796 2004-02-08  Martin Baulig  <martin@ximian.com>
12797
12798         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12799         mono_type_get_object(), this is now creating a `MonoGenericInst'
12800         for MONO_TYPE_GENERICINST.
12801         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12802         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12803
12804         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12805         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12806         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12807         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12808         and reflected type.
12809
12810         * reflection.h (MonoReflectionInflatedMethod): Removed
12811         `declaring_type' and `reflected_type'.
12812
12813 2004-02-08  Martin Baulig  <martin@ximian.com>
12814
12815         * class.h (MonoGenericInst): Added `MonoType *parent' and
12816         `MonoType **ifaces'.
12817
12818         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12819         `parent' and `interfaces'.
12820
12821         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12822         `MonoType *' argument and return a `MonoType *'.
12823
12824         * icall.c
12825         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12826         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12827
12828 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12829
12830         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12831         valuetype marshalling.
12832
12833 2004-02-06  Martin Baulig  <martin@ximian.com>
12834
12835         * class.c
12836         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12837         (my_mono_class_from_generic_parameter): Likewise.
12838
12839 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12840
12841         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12842         contents of the symbol files lazily.
12843
12844         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12845
12846         * threads.h threads.c icall.c: New icalls for getting and setting the
12847         threads name.
12848
12849 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12850
12851         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12852         Raise an exception when the domain is not found.
12853
12854 2004-02-03  Martin Baulig  <martin@ximian.com>
12855
12856         * reflection.c (mono_image_get_methodspec_token): Use the
12857         uninflated signature; fixes gen-33.
12858
12859 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12860
12861         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12862         the finalizer code can use thread functionality.
12863
12864         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12865         the finalizer thread.
12866
12867         * threads.c: Make some functions more robust.
12868
12869         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12870
12871         * metadata.h: Add new marshalling conventions.
12872
12873         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12874         stringbuilder marshalling. Fixes #53700.
12875
12876         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12877
12878         * reflection.c (mono_image_get_type_info): Save declarative security
12879         info.
12880
12881         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12882         unmanaged fields as well.
12883
12884         * appdomain.c: Bump corlib version.
12885
12886 2004-02-01  Martin Baulig  <martin@ximian.com>
12887
12888         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12889         method type arguments.  
12890
12891 2004-01-30  Duncan Mak  <duncan@ximian.com>
12892
12893         * marshal.h: Add prototype for
12894         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12895         and
12896         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12897         fix the build.
12898
12899 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12900
12901         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12902         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12903
12904 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12905
12906         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12907         custom marshalling of valuetypes.
12908
12909         * marshal.c: Fix some warnings.
12910
12911 2004-01-29  Martin Baulig  <martin@ximian.com>
12912
12913         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12914         for generic method parameters.
12915
12916         * reflection.c (method_encode_methodspec): Write the uninflated
12917         signature into the methodspec table.
12918         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12919         is always the uninflated method.
12920         (reflection_methodbuilder_to_mono_method): Copy the generic
12921         parameters from the MethodBuilder into `header->gen_params'.
12922
12923 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12924
12925         * class.c (mono_class_from_generic_parameter): Fix warning.
12926
12927 2004-01-27  Martin Baulig  <martin@ximian.com>
12928
12929         * class.c (mono_class_from_generic_parameter): Don't create
12930         `klass->methods' here.  
12931
12932 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12933
12934         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12935         extension since it does not work with libraries named lib<FOO>.dll.so.
12936
12937 2004-01-25  Martin Baulig  <martin@ximian.com>
12938
12939         * class.c (mono_class_inflate_generic_type): Added support for
12940         MONO_TYPE_GENERICINST.
12941
12942         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12943         inflate methods on open constructed types.      
12944
12945 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12946
12947         * object.c: fire ProcessExit event in the root AppDomain after running
12948         Main. Fixes bug #53299.
12949
12950 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12951
12952         * socket-io.c: include the new socket-wrappers.h header.
12953         Use the wrappers instead of the unix socket functions to make the code
12954         more clear.
12955
12956 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12957
12958         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12959
12960         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12961         Fixes #22532.
12962
12963 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12964
12965         * reflection.c (mono_image_create_pefile): Handle the case when the
12966         entry point is not a MethodBuilder.
12967
12968         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12969         field to ReflectionMethod since it is not allways a builder.
12970
12971         * reflection.c (type_get_fully_qualified_name): New helper function to
12972         return the fully qualified name of a type.
12973
12974         * reflection.c (encode_marshal_blob): Always emit the fully qualified
12975         type name for custom marshallers.
12976
12977         * reflection.c (mono_marshal_spec_from_builder): Ditto.
12978
12979         * class.c (mono_class_setup_vtable): If a parent class already 
12980         implements an interface, use the implementing methods from that class.
12981         Fixes #53148.
12982
12983 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12984
12985         * threadpool.c: just return instead of ExitThread to allow for thread
12986         clean up earlier.
12987
12988 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
12989
12990         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
12991         when closing resource modules.
12992
12993         * reflection.c (mono_image_create_pefile): Handle the case when the
12994         entry point is not a MethodBuilder.
12995
12996         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12997         field to ReflectionMethod since it is not allways a builder.
12998
12999 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13000
13001         * marshal.c (mono_marshal_get_managed_wrapper): 
13002         mono_marshal_alloc takes native int so CONV_I
13003         the arg for 64bits.
13004
13005 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13006
13007         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13008         tokens in the cattr table. Fixes #53108.
13009
13010 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13011
13012         * loader.c: don't trim ".dll" before looking up in the config file.
13013         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13014
13015 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13016
13017         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13018         Return the module which contains the resource as well.
13019         (ves_icall_System_Reflection_Module_Close): New icall.
13020
13021         * appdomain.c: Bump corlib version number.
13022
13023         * image.c (mono_image_addref): New public function.
13024
13025         * assembly.c: Call mono_image_addref.
13026
13027         * reflection.c (mono_module_get_object): Increase reference count of 
13028         the image.
13029
13030         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13031         Fixes #22532.
13032
13033         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13034         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13035         proper exceptions on DllImport problems.
13036
13037 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13038
13039         * class.c, metadata.c: eliminate CSIZE macro.
13040
13041 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13042
13043         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13044         * object.h: Added async_callback field in MonoAsyncResult.
13045         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13046         * verify.c: Added async_callback in MonoAsyncResult layout.
13047
13048 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13049
13050         * reflection.c (mono_reflection_get_custom_attrs): Add support
13051         for Modules.
13052
13053 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13054
13055         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13056         marshalling.
13057         (mono_marshal_method_from_wrapper): Add null pointer check.
13058
13059 2004-01-16  Martin Baulig  <martin@ximian.com>
13060
13061         * debug-mono-symfile.h: Set version number to 36 and reflect
13062         latest symbol writer changes.
13063
13064 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13065
13066         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13067         multi-dimensional arrays.
13068         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13069         (mono_class_from_mono_type): Use bounded_array_class_get.
13070         
13071         * class.c (mono_bounded_array_class_get): New function which takes
13072         a 'bounded' bool argument to distinguish vectors from one dimensional
13073         arrays.
13074
13075         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13076         bounded_array_class_get if the array has bounds.
13077
13078         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13079         Search modules loaded using AssemblyBuilder:AddModule as well.
13080
13081 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13082
13083         * appdomain.c: increased corlib version.
13084         * filewatcher.c: removed g_print.
13085         * icall.c:
13086         (get_property_info): only allocate what is actually requested.
13087         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13088
13089 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13090
13091         * Makefile.am: added filewatcher.[ch]
13092         * filewatcher.[ch]: FileSystemWatcher runtime support.
13093         * icall.c: added new FSW icalls.
13094
13095 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13096
13097         * string-icalls.c: fix stringbuilder regression as suggested by
13098         Iain McCoy <iain@mccoy.id.au>.
13099
13100 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13101
13102         * process.c (process_read_stringtable_block): Recognize '007f' as
13103         a language neutral stringtable block.
13104
13105 2004-01-12  Patrik Torstensson
13106
13107         * object.h (MonoStringBuilder) : Changed layout to support our
13108         new stringbuilder class.
13109         * marshal.c: Change marshalling to support the new layout of 
13110         string builder.
13111         * appdomain.c: increased version number because new layout of
13112         string builder.
13113
13114 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13115
13116         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13117         assembly name as an string instead of an AssemblyName, since it is
13118         easier to extract info from it.
13119
13120         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13121         the culture subdirectories too. Fixes #52231.
13122
13123 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13124
13125         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13126         It takes 2 new parameters with an optional name for the method to look
13127         for and case ignoring info.
13128
13129         * threadpool.c: removed unused variable.
13130
13131 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13132
13133         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13134         It takes 2 new parameters with an optional name for the property to look
13135         for and case ignoring info.
13136         Fixes bug #52753.
13137
13138 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13139
13140         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13141         Fix #52451.
13142
13143 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13144
13145         * appdomain.c:
13146         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13147         Fixes bug #52630.
13148
13149 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13150
13151         * reflection.c: Add support for more than one unmanaged resource.
13152
13153         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13154         in field->def_value, as done in all other cases.
13155
13156         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13157         TypeBuilders.
13158
13159         * reflection.c (mono_reflection_create_runtime_class): Remove 
13160         errorneous assignment to klass->element_class, since it is already
13161         done in mono_reflection_setup_internal_class.
13162
13163 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13164
13165         * gc.c: added missing LeaveCriticalSection.
13166         * icall.c: indented a couple of lines.
13167         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13168         if we call EndInvoke inside a callback. Fixes bug #52601.
13169
13170 2004-01-07  Martin Baulig  <martin@ximian.com>
13171
13172         * mono-debug-debugger.h
13173         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13174
13175 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13176
13177         * appdomain.c: Use messages in NotImplementedException.
13178
13179         * exception.c (mono_get_exception_not_implemented): Now this takes
13180         a message argument.
13181
13182         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13183         exception instead of g_asserting an aborting when something is not
13184         implemented.
13185
13186         Add some inline docs.
13187
13188 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13189
13190         * reflection.h: Update after changes to object layout.
13191
13192         * reflection.c: Implement saving of unmanaged aka win32 resources.
13193
13194         * appdomain.c: Bump version number.
13195
13196         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13197         Handle missing domains gracefully.
13198
13199 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13200
13201         * file-io.c : On Windows, there are much more invalid_path_chars.
13202
13203 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13204
13205         * class.h, object.c: prepare for GetType () speedup.
13206
13207 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13208
13209         * profiler.c: workaround for --profile null reference exception on
13210           cygwin. Patch by Patrik Torstensson.
13211
13212 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13213
13214         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13215         make work for unaligned access.
13216
13217 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13218
13219         * class.c: small cleanup (class->fields [i] -> field).
13220         * image.c: check address of metadata is valid.
13221
13222 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13223
13224         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13225         search the list of loaded assemblies.
13226
13227         * reflection.c (mono_reflection_type_from_name): Use 
13228         mono_assembly_loaded instead of mono_image_loaded.
13229
13230         * reflection.c: Fix warnings.
13231
13232 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13233
13234         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13235         is dynamic. This is needed since an assembly can contain both dynamic and
13236         non-dynamic images.
13237
13238         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13239         assembly->dynamic.
13240
13241         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13242
13243         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13244         to store modules loaded using AddModule.
13245
13246         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13247         on Modules.
13248
13249         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13250
13251         * reflection.c (mono_image_fill_export_table_from_module): New function to
13252         fill out the EXPORTEDTYPES table from a module.
13253
13254         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13255         into a separate function. Also handle loaded non-dynamic modules.
13256
13257         * reflection.c (mono_image_basic_init): Fix memory allocation.
13258
13259         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13260
13261         * assembly.c (mono_assembly_load_references): Make this public.
13262
13263 2003-12-19  Martin Baulig  <martin@ximian.com>
13264
13265         * class.c (mono_class_initialize_generic): Made this static, take
13266         a `MonoGenericInst *' instead of a `MonoClass *'.
13267         (mono_class_from_generic): Call mono_class_initialize_generic()
13268         unless we're already initialized or being called from
13269         do_mono_metadata_parse_generic_inst().
13270
13271         * class.h (MonoGenericInst): Added `initialized' and
13272         `init_pending' flags.
13273
13274         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13275         `mono_class_init (gklass)' or mono_class_initialize_generic()
13276         here; set `generic_inst->init_pending' while parsing the
13277         `type_argv'.
13278
13279 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13280
13281         * locales.c: include string.h for memxxx prototypes
13282
13283 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13284
13285         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13286         constructor when accessing literal fields.
13287
13288 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13289
13290         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13291
13292         * reflection.c (assembly_add_resource_manifest): New function to fill
13293         the MANIFESTRESOURCE table.
13294
13295         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13296
13297         * reflection.h: Update to changes in class layout.
13298
13299         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13300         Reenable call to mono_runtime_is_shutting_down ().
13301
13302         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13303         determine if the runtime is shutting down.
13304
13305 2003-12-16  Jackson Harper <jackson@ximian.com>
13306
13307         * icall.c: comment out call to mono_runtime_is_shutting_down to
13308         fix build.
13309         
13310 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13311
13312         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13313         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13314
13315 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13316
13317         * reflection.c: move definition of swap_with_size
13318         to before its first call
13319
13320 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13321
13322         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13323
13324         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13325         icall.
13326
13327         * object.c: Fix warnings.
13328
13329         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13330         members if FlattenHierarchy is set.
13331
13332         * reflection.c (mono_image_add_decl_security): New function to emit
13333         declarative security.
13334
13335         * reflection.h reflection.c: Add support for declarative security.
13336
13337         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13338         
13339 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
13340
13341         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13342         
13343         * appdomain.c verify.c: Moved corlib version checking into its own
13344         function in appdomain.c since it needs to create vtables etc.
13345
13346 2003-12-13  Patrik Torstensson <p@rxc.se>
13347
13348         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
13349         instead of unwrapped server.
13350
13351 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
13352
13353         * verify.c (check_corlib): Fix field index.
13354
13355 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
13356
13357         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
13358         GetGacPath icall.
13359
13360 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
13361
13362         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
13363         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
13364         cope with sizeof(size_t) != sizeof(guint32).
13365
13366 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13367
13368         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
13369         in case of failure.
13370
13371 2003-12-10  Mark Crichton <crichton@gimp.org>
13372
13373         * icall.c: removed the GetNonZeroBytes.  We now handle this case
13374         in managed code.
13375
13376         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
13377
13378 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
13379
13380         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
13381         marked as deleted.
13382
13383 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
13384
13385         * verify.c (check_corlib): Handle the case when the version field is 
13386         initialized by a static constructor.
13387
13388 2003-12-08  Patrik Torstensson  <p@rxc.se>
13389
13390     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
13391
13392 2003-12-08  Martin Baulig  <martin@ximian.com>
13393
13394         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
13395         a MonoReflectionGenericParameter, also take the parameter index
13396         and name as arguments.
13397         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13398         (ves_icall_MonoGenericParam_initialize): New interncall.
13399         (ves_icall_Type_make_byref_type): New interncall.
13400
13401         * reflection.h (MonoReflectionGenericParam): Derive from
13402         MonoReflectionType, not just from MonoObject.  Added `refobj' and
13403         `index' fields.
13404
13405         * reflection.c (mono_reflection_define_generic_parameter): Create
13406         and return a new MonoReflectionGenericParam; don't initialize the
13407         constraints here.
13408         (mono_reflection_initialize_generic_parameter): New public method;
13409         initializes the constraints and creates the `param->pklass'.
13410
13411 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
13412
13413         * reflection.h reflection.c: Use the new fields 'num_types', 
13414         'num_fields' and 'num_methods' to track the number of types etc.
13415
13416         * verify.c (check_corlib): Check corlib version number.
13417
13418 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
13419
13420         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
13421         function works on all methods.
13422
13423 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
13424
13425         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
13426         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
13427         the custom_type_info flag of the transparent proxy.
13428         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
13429         objects that supports IRemotingTypeInfo.
13430         * object.h: Added custom_type_info field in transparent proxy.
13431
13432 2003-12-06  Martin Baulig  <martin@ximian.com>
13433
13434         * class.c (mono_class_create_from_generic): Removed.
13435         (mono_class_from_generic): Check `ginst->klass' before doing
13436         anything else.  This is important to fully support "recursive"
13437         generic types.
13438
13439         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
13440         empty `generic_inst->klass' before doing anything else.
13441
13442 2003-12-06  Dick Porter  <dick@ximian.com>
13443
13444         * verify.c: 
13445         * object.h:
13446         * icall.c:
13447         * locales.c: Use C structs to access class fields.  Don't do a
13448         conversion between MonoString and UChar because both are
13449         platform-endian UTF-16.  Compare now takes startindex and count
13450         parameters.  Add a char overload for IndexOf.  Speed up the
13451         invariant string IndexOf.
13452
13453 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
13454
13455         * Makefile.am (monosn_LDADD): Fix parallel build.
13456
13457 2003-12-04  Martin Baulig  <martin@ximian.com>
13458
13459         * icall.c
13460         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13461         (ves_icall_Type_make_array_type): New interncall.       
13462
13463 2003-12-04  Martin Baulig  <martin@ximian.com>
13464
13465         * locales.c: also change it in the !HAVE_ICU case.
13466
13467 2003-12-04  Dick Porter  <dick@ximian.com>
13468
13469         * icall.c:
13470         * locales.c: construct_compareinfo is now in CompareInfo, not
13471         CultureInfo.
13472
13473 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13474
13475         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13476         image->files array.
13477
13478         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13479         table as well.
13480
13481         * assembly.c (mono_assembly_load_references): Only load references
13482         once.
13483
13484         * class.c (mono_class_from_name): Avoid linear search of the 
13485         EXPORTEDTYPE table.
13486
13487         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13488
13489 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13490
13491         * image.h (MonoImage): Add 'field_cache' field.
13492
13493         * loader.c (mono_field_from_token): Cache field lookups.
13494         
13495         * reflection.c (mono_module_get_object): Fix name property.
13496
13497         * icall.c (ves_icall_get_enum_info): Update after changes to 
13498         mono_metadata_get_constant_index ().
13499
13500         * icall.c: Get rid of get_type_info icall, use a separate icall for
13501         each type property to avoid needless memory allocations. Fixes #51514.
13502
13503         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13504         to avoid needless binary searches.
13505
13506         * class.c (class_compute_field_layout): Move the initialization of
13507         field->def_value to mono_class_vtable ().
13508
13509         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13510         non-corlib types.
13511
13512         * object.c (mono_object_allocate): Make it inline.
13513
13514         * object.c (mono_object_allocate_spec): Make it inline.
13515         
13516 2003-12-02  Dick Porter  <dick@ximian.com>
13517
13518         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13519         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13520
13521 2003-12-01  Dick Porter  <dick@ximian.com>
13522
13523         * threads.c: Fix signature and call in CreateMutex and
13524         CreateEvent.
13525
13526 2003-12-01  Dick Porter  <dick@ximian.com>
13527
13528         * icall.c: 
13529         * locales.c: Implement string compares and searching
13530
13531         * object.h: Add extra Thread field
13532
13533 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13534
13535         * reflection.c (fixup_method): Add support for MonoCMethod.
13536
13537 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13538
13539         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13540
13541         * reflection.c (assembly_name_to_aname): Allow extra characters in
13542         assembly names. Fixes #51468.
13543
13544 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13545
13546         * exception.c (mono_exception_from_name_domain): New helper function.
13547
13548         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13549         exception object in the correct domain.
13550
13551         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13552         formatting + make a copy a the input data.
13553
13554         * loader.c (mono_get_method_from_token): Methods which contain
13555         native code do not have entries in the ImplMap.
13556
13557         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13558         Thanks to Gonzalo for spotting this.
13559         
13560         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13561         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13562
13563         * assembly.h (mono_assembly_load_from): Split the second part of 
13564         assembly loading into a new public function.
13565
13566         * exception.h (mono_get_exception_bad_image_format): New function.
13567
13568 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13569
13570         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13571         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13572         
13573         * icall.c: Add new icall for creating dynamic methods.
13574
13575         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13576
13577         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13578
13579         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13580         create a dynamic method.
13581
13582         * reflection.c (resolve_object): New helper function.
13583
13584         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13585         which manipulate it so they can also work on dynamic methods.
13586
13587         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13588         creating the MonoReflectionMethodAux structure if it is not needed.
13589         
13590         * reflection.h verify.c: Update after changes to object layout.
13591
13592         * reflection.c (method_builder_encode_signature): Fix compilation on
13593         gcc 2.95.x.
13594
13595 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13596
13597         * appdomain.h: Added support for context static fields. Added static_data
13598           field to MonoAppContext and renamed thread_static_fields to a more
13599           generic special_static_fields in MonoAppDomain, since it can now contain
13600           context static fields.
13601         * domain.c: Updated hashtable name.
13602         * object.c: Replaced field_is_thread_static() for a more generic
13603           field_is_special_static() which also checks for context static attribute.
13604           In mono_class_vtable(), added support for static context fields.
13605         * threads.c: Changed methods that manage thread static fields to more
13606           generic methods so they can be reused both for thread and context static
13607           data.
13608         * threads.h: Declared some new methods.
13609
13610 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13611
13612         * reflection.h: Update after changes to the managed types.
13613
13614         * reflection.c (encode_custom_modifiers): New helper function.
13615
13616         * reflection.c (method_encode_signature): Emit custom modifiers.
13617
13618         * reflection.c (field_encode_signature): Emit custom modifiers.
13619
13620 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13621
13622         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13623
13624         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13625         implementation.
13626
13627         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13628         icall.
13629
13630         * object.c (mono_field_get_value_object): New function.
13631
13632         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13633         specific.
13634
13635 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13636
13637         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13638         return a preallocated out-of-memory exception instance.
13639
13640         * object.c (out_of_memory): Use the new function.
13641
13642         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13643         flag is before the custom modifiers. Fixes #49802.
13644
13645 2003-11-16  Martin Baulig  <martin@ximian.com>
13646
13647         * class.c (mono_class_is_open_constructed_type): Implemented the
13648         MONO_TYPE_GENERICINST case.
13649
13650 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13651
13652         * assembly.c (mono_assembly_fill_assembly_name): New function to
13653         fill out the MonoAssemblyName structure.
13654         (mono_assembly_open): Use the new function.
13655
13656         * icall.c (fill_reflection_assembly_name): New helper function.
13657
13658         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13659         new function.
13660
13661         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13662
13663 2003-11-15  Martin Baulig  <martin@ximian.com>
13664
13665         * class.c (mono_class_is_open_constructed_type): New public
13666         function; checks whether a type is an open constructed type,
13667         ie. whether it still contains type parameters.
13668         (mono_class_inflate_generic_type): If we're a type parameter and
13669         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13670         type.
13671
13672         * class.h (MonoGenericInst): Added `guint32 is_open'.
13673
13674         * loader.c (method_from_methodspec): Check whether we're an open
13675         or closed constructed type and set `ginst->is_open'.
13676
13677         * reflection.c (mono_reflection_bind_generic_parameters): Check
13678         whether we're an open or closed constructed type and set
13679         `ginst->is_open'.
13680         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13681         from open constructed types.
13682
13683 2003-11-15  Martin Baulig  <martin@ximian.com>
13684
13685         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13686         a generic instance (instead of a generic type declaration) with
13687         unbound generic parameters, bind them to our actual types.
13688
13689 2003-11-14  Martin Baulig  <martin@ximian.com>
13690
13691         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13692
13693         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13694         an interface type, populate `res->interfaces' with instantiated
13695         versions of all the interfaces we inherit.
13696
13697 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13698
13699         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13700         when MONO_PATH is set but doesn't contain the install dir.
13701
13702 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13703
13704         * icall.c:
13705         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13706         it's also implemented in base classes. Fixes bug #50927.
13707
13708 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13709
13710         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13711         if this method is called from a finalizer. Fixes #50913.
13712
13713 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13714
13715         * threads.c: Implement VolatileRead/VolatileWrite
13716
13717         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13718
13719 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13720
13721         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13722         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13723         2.95.3.
13724
13725         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13726         from Peter Ross (pro@missioncriticalit.com).
13727         
13728 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13729
13730         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13731
13732 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13733
13734         * assembly.c (mono_assembly_load_references): Disable check because it
13735         triggers on older corlibs which lots of people have.
13736
13737 2003-11-12  Jackson Harper  <jackson@ximian.com>
13738
13739         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13740         load corlib.dll if mscorlib.dll is not found.
13741         * assembly.h: Remove corlib name define.
13742         * class.c:
13743         * domain.c:
13744         * image.c: Change corlib name to mscorlib.
13745         
13746 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13747
13748         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13749
13750 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13751
13752         * appdomain.h: Added loader_optimization here to sync with the C#
13753         code, and add disallow_binding_redirects field.
13754
13755 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13756
13757         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13758
13759         * reflection.c (mono_image_build_metadata): Fix crash on modules
13760         with no types.
13761
13762         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13763
13764         * icall.c (ves_icall_get_method_info): Return callingConvention as
13765         well.
13766
13767         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13768         namespaces from the EXPORTEDTYPE table as well.
13769
13770         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13771         from all modules inside the assembly.
13772         
13773 2003-11-11  Martin Baulig  <martin@ximian.com>
13774
13775         * reflection.c (mono_reflection_bind_generic_parameters): Make
13776         this work for interfaces.
13777
13778 2003-11-11  Martin Baulig  <martin@ximian.com>
13779
13780         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13781
13782 2003-11-11  Martin Baulig  <martin@ximian.com>
13783
13784         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13785         "MonoInflatedMethod" and "MonoInflatedCtor".
13786
13787 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13788
13789         * reflection.c (resolution_scope_from_image): Use the assembly table
13790         from the manifest module, since other modules don't have it.
13791
13792         * debug-helpers.c (mono_type_full_name): New helper function.
13793
13794         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13795
13796         * image.c (mono_image_load_file_for_image): New public function which
13797         is a replacement for the load_file_for_image in class.c.
13798
13799         * assembly.c (mono_assembly_load_module): A wrapper for the function
13800         above which does assembly association and reference loading too.
13801
13802         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13803
13804 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13805
13806         * appdomain.c: not all of the attributes for the full assembly name
13807         are required and the order doesn't matter. Fixes bug #50787.
13808
13809 2003-11-10  Dick Porter  <dick@ximian.com>
13810
13811         * locales.c: Use platform-endian UTF16
13812
13813 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13814
13815         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13816         
13817 2003-11-10  Martin Baulig  <martin@ximian.com>
13818
13819         * metadata.c
13820         (mono_metadata_load_generic_params): Make this actually work.
13821
13822         * reflection.c (mono_reflection_bind_generic_parameters): If our
13823         parent is a generic instance, pass all the `types' to it, no
13824         matter whether it has the same number of type parameters or not.
13825
13826 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13827
13828         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13829
13830         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13831         assignment code to this function so it gets called recursively for all
13832         modules.
13833
13834         * image.c (load_modules): Remove the assembly assignment since it is
13835         now done by mono_assembly_load_references.
13836         
13837         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13838         Add 'module' argument.
13839         (mono_module_get_types): New helper function.
13840         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13841
13842 2003-11-08  Martin Baulig  <martin@ximian.com>
13843
13844         * class.c (mono_class_inflate_generic_method): Interface method
13845         don't have a header.
13846
13847         * reflection.c (mono_image_get_methodspec_token): Take an
13848         additional `MonoGenericInst *' argument instead of reading it from
13849         the header; this is necessary to support interfaces.
13850         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13851         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13852         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13853         argument.
13854
13855         * reflection.h (MonoReflectionInflatedMethod): Added
13856         `MonoGenericInst *ginst'.
13857
13858 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13859
13860         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13861
13862 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13863
13864         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13865
13866 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13867
13868         * reflection.c 
13869         (reflection_methodbuilder_from_method_builder):
13870         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13871         initialize a ReflectionMethodBuilder structure.
13872         (mono_image_get_methodbuilder_token):
13873         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13874         tokens which point to types in another module inside the same assembly.
13875
13876         * reflection.c: Use the new helper functions.
13877         
13878         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13879
13880         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13881         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13882
13883         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13884         neccesary.
13885
13886         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13887         current module. Emit the manifest only for the main module.
13888
13889         * reflection.c (mono_image_create_token): Add assertion when a 
13890         memberref needs to be created.
13891
13892         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13893
13894         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13895         larger buffer for the custom attribute blob. Fixes #50637.
13896         
13897 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13898
13899         * threadpool.c: notify listener on async processing handles after
13900         invoking the async callback. Thanks to Zoltan.
13901
13902 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13903
13904         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13905         avoid code duplication.
13906
13907         * reflection.h (MonoDynamicImage): New type which is currently unused,
13908         but will be used through the ref.emit code in place of 
13909         MonoDynamicAssembly.
13910
13911         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13912         object layout.
13913
13914         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13915         a MonoDynamicImage instead of just a MonoImage.
13916         
13917         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13918         icalls to ModuleBuilder but keep their semantics, so they will work
13919         with moduleb->assemblyb. This will change later.
13920         
13921 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13922
13923         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13924         object layout.
13925
13926         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13927         main module, since it is now done by the managed code.
13928
13929 2003-11-03  Martin Baulig  <martin@ximian.com>
13930
13931         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13932         `ginst->klass' here.
13933         (method_encode_methodspec): Don't use the `ginst->generic_method's
13934         klass if it's a generic instance, use `ginst->klass' in this case.
13935
13936 2003-11-03  Martin Baulig  <martin@ximian.com>
13937
13938         * reflection.c (mono_image_get_generic_method_param_info):
13939         Removed, use mono_image_get_generic_param_info() instead.
13940         (mono_image_get_type_info): Write the GenericParam table before
13941         the Method table.  This is neccessary because in the GenericParam
13942         table, type parameters of the class (ie. '!0' etc.) must come
13943         before the ones from its generic methods (ie. '!!0' etc).
13944
13945 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13946
13947         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13948
13949 2003-11-02  Martin Baulig  <martin@ximian.com>
13950
13951         * reflection.c (create_generic_typespec): Take a
13952         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13953         the generic parameters from it.
13954
13955 2003-11-02  Martin Baulig  <martin@ximian.com>
13956
13957         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13958         instead of a `MonoClassField *' since we just need the type.
13959         (create_generic_typespec): New static function.  Creates a
13960         TypeSpec token for a generic type declaration.
13961         (mono_image_get_generic_field_token): New static function.
13962         (mono_image_create_token): If we're a FieldBuilder in a generic
13963         type declaration, call mono_image_get_generic_field_token() to get
13964         the token.
13965
13966 2003-11-02  Martin Baulig  <martin@ximian.com>
13967
13968         * reflection.h
13969         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13970         `MonoReflectionGenericInst *declaring_type' and
13971         `MonoReflectionGenericInst *reflected_type' fields.
13972
13973         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13974         `MonoReflectionGenericInst *declaring_type' and a
13975         `MonoReflectionGenericInst *reflected_type' argument instead of a
13976         single `MonoReflectionGenericInst *type' one.  Set
13977         `res->declaring_type' and `res->reflected_type' from them.
13978         (mono_reflection_inflate_field): Likewise.      
13979
13980 2003-11-02  Martin Baulig  <martin@ximian.com>
13981
13982         * class.c (mono_class_setup_vtable): Don't store generic methods
13983         in the vtable.  
13984
13985 2003-11-02  Martin Baulig  <martin@ximian.com>
13986
13987         * reflection.h (MonoReflectionGenericInst): Added
13988         `MonoReflectionType *declaring_type'.
13989
13990         * reflection.c (mono_reflection_bind_generic_parameters): Use
13991         `if (tb->parent)' instead of `klass->parent'.
13992
13993 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
13994
13995         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
13996         with an empty ASSEMBLY table.
13997
13998         * reflection.c (mono_image_build_metadata): Avoid using the same loop
13999         variable in the inner and outer loops.
14000
14001 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14002
14003         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14004         argument.
14005
14006         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14007         
14008         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14009         icalls. Instead, do everything in managed code. This is needed since
14010         it is hard to restore the original domain etc. in unmanaged code in the
14011         presence of undeniable exceptions.
14012
14013         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14014         New icalls to push and pop appdomain refs.
14015
14016 2003-10-31  Martin Baulig  <martin@ximian.com>
14017
14018         * class.c (inflate_generic_type): Renamed to
14019         mono_class_inflate_generic_type() and made it public.
14020
14021         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14022         New interncall.
14023
14024         * loader.c (mono_field_from_memberref): Also set the retklass for
14025         typespecs.
14026
14027         * fielder.c (mono_image_get_inflated_field_token): New static
14028         method; creates a metadata token for an inflated field.
14029         (mono_image_create_token, fixup_method): Added support for
14030         "MonoInflatedField".
14031         (fieldbuilder_to_mono_class_field): New static function.
14032         (mono_reflection_inflate_field): New public function.
14033
14034         * reflection.h
14035         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14036         (MonoReflectionInflatedField): New typedef.     
14037
14038 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14039
14040         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14041         for Solaris and other platforms without s6_addr16
14042
14043 2003-10-30  Martin Baulig  <martin@ximian.com>
14044
14045         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14046         argument instead of two.
14047         (mono_class_inflate_generic_signature): Likewise.
14048         (inflate_generic_header): Likewise.
14049         (mono_class_inflate_generic_method): Likewise.  In addition, if
14050         `ginst->klass' is set, it becomes the new `method->klass'.
14051
14052         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14053         field.
14054
14055         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14056         first byte. [FIXME]
14057         (method_encode_methodspec): If we have generic parameters, create
14058         a MethodSpec instead of a MethodRef.
14059         (fixup_method): Added support for "MonoInflatedMethod" and
14060         "MonoInflatedCtor".
14061         (mono_image_create_token): Added support for "MonoInflatedMethod"
14062         and "MonoInflatedCtor".
14063         (inflated_method_get_object): New static function; returns a
14064         managed "System.Reflection.MonoInflatedMethod" object.
14065         (mono_reflection_bind_generic_method_parameters): Return a
14066         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14067         (mono_reflection_inflate_method_or_ctor): Likewise.
14068         (mono_image_get_generic_method_param_info): Initialize unused
14069         fields to zero.
14070         (mono_image_get_generic_param_info): Likewise.
14071
14072         * reflection.h (MonoReflectionInflatedMethod): New public
14073         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14074         "S.R.MonoInflatedCtor" classes.
14075
14076         * loader.c (method_from_memberref): If we're a TypeSpec and it
14077         resolves to a generic instance, inflate the method.
14078
14079 2003-10-28  Dick Porter  <dick@ximian.com>
14080
14081         * object.c (mono_runtime_run_main): Convert command-line arguments
14082         into utf8, falling back to the user's locale encoding to do so.
14083
14084 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14085
14086         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14087         at this time.
14088
14089         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14090
14091         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14092         up icalls at method definition time. Partially fixes #33569.
14093
14094 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14095
14096         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14097         marshalling of arrays. Fixes #50116.
14098
14099         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14100
14101         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14102         points to a vtable in the dying appdomain.
14103
14104         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14105         listeners into unmanaged code inside the lock.
14106
14107         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14108         domains and add some comments.
14109
14110 2003-10-25  Martin Baulig  <martin@ximian.com>
14111
14112         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14113
14114         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14115
14116         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14117         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14118         currently parsing.  Create the generic class and store it in
14119         `generic_inst->klass' before parsing the type arguments.  This is
14120         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14121         for an example.
14122         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14123         to support recursive typespec entries.
14124
14125         * class.c (mono_class_setup_parent): If our parent is a generic
14126         instance, we may get called before it has its name set.
14127         (mono_class_from_generic): Splitted into
14128         mono_class_create_from_generic() and mono_class_initialize_generic().
14129
14130 2003-10-25  Martin Baulig  <martin@ximian.com>
14131
14132         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14133         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14134         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14135         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14136
14137         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14138         (create_typespec): Likewise.
14139         (mono_reflection_bind_generic_parameters): Return a
14140         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14141         (mono_reflection_inflate_method_or_ctor): New public function.
14142
14143         * reflection.h (MonoReflectionGenericInst): New typedef.        
14144
14145 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14146
14147         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14148         inside the domain lock. Fixes #49993.
14149         
14150         * object.c (mono_class_vtable): When typed allocation is used, 
14151         allocate vtables in the GC heap instead of in the mempool, since the
14152         vtables contain GC descriptors which are used by the collector even
14153         after the domain owning the mempool is unloaded.
14154
14155         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14156
14157         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14158         reflect what it does. Also invalidate mempools instead of freeing
14159         them if a define is set.
14160
14161         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14162         of the appdomain.
14163         
14164         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14165         hold the finalizable objects in this domain.
14166
14167         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14168         appdomain.
14169
14170         * appdomain.c (mono_domain_set): New function to set the current
14171         appdomain, but only if it is not being unloaded.
14172
14173         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14174         appdomain which is being unloaded.
14175         
14176         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14177         unloading of the root appdomain.
14178
14179         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14180         icall to execute a method in another appdomain. Intended as a 
14181         replacement for InternalSetDomain, which can confuse the code 
14182         generation in the JIT.
14183
14184         * appdomain.c (mono_domain_is_unloading): New function to determine
14185         whenever an appdomain is unloading.
14186
14187         * appdomain.c (mono_domain_unload): New function to correctly unload
14188         an appdomain.
14189
14190         * assembly.c (mono_assembly_load_references): Check that an assembly
14191         does not references itself.
14192
14193         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14194         domain manually, it asks the finalizer thread to do it, then waits for
14195         the result. Also added a timeout.
14196
14197         * icall.c: Register the new icalls.
14198
14199         * threads.h threads.c: Export the mono_gc_stop_world and 
14200         mono_gc_start_world functions.
14201         
14202         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14203         function to fill out the mempool with 0x2a.
14204
14205 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14206
14207         * reflection.h (MonoReflectionMethodAux): New structure to store
14208         information which is rarely used, thus is not in the MonoMethod
14209         structure.
14210
14211         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14212         store the aux info.
14213
14214         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14215         and marshalling info into the aux structure.
14216
14217         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14218         from the aux structure.
14219
14220         * loader.c (mono_method_get_param_names): Retrieve the param names from
14221         the aux structure.
14222         
14223 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14224
14225         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14226         warning.
14227
14228 2003-10-21  Dick Porter  <dick@ximian.com>
14229
14230         * socket-io.c
14231         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14232         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14233
14234 2003-10-21  Martin Baulig  <martin@ximian.com>
14235
14236         * reflection.c (mono_reflection_bind_generic_parameters):
14237         `klass->parent' is NULL for interfaces.
14238
14239 2003-10-21  Martin Baulig  <martin@ximian.com>
14240
14241         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14242
14243 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14244
14245         * exception.c (mono_exception_from_name_msg): New helper function for
14246         creating exceptions and initializing their message field.
14247
14248         * exception.c: Simplify functions using the new helper.
14249
14250         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14251         New function.
14252
14253         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14254         mono_raise_exception, since otherwise gcc doesn't generate the function
14255         epilog for raise_exception, confusing the stack unwinding in the JIT.
14256         Fixes #45043.
14257
14258         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14259         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14260         Fixes #49499.
14261
14262 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14263
14264         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14265         utf8.
14266
14267 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14268
14269         * icall.c: Removed GetUninitializedObject method because
14270           AllocateUninitializedClassInstance does the same.
14271
14272 2003-10-18  Martin Baulig  <martin@ximian.com>
14273
14274         * class.c (inflate_generic_signature): Renamed to
14275         mono_class_inflate_generic_signature() and made it public.
14276         (my_mono_class_from_generic_parameter): New static function; if we
14277         don't already have the generic parameter's MonoClass, create a
14278         very simple one which is just used internally in the runtime and
14279         not passed back to managed code.
14280
14281         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14282
14283         * metadata.h (MonoMethodSignature): Moved the
14284         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14285         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14286
14287         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14288         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14289         interncall on the MonoMethod class, not on MethodInfo.
14290         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14291         calling mono_reflection_bind_generic_method_parameters() directly.
14292
14293         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14294         return the already computed `method->signature'.
14295         (method_from_methodspec): New static function to load a method
14296         from a MethodSpec entry.
14297         (mono_get_method_from_token): Call the new method_from_methodspec()
14298         for MethodSpec tokens.  
14299         (mono_get_method_from_token): If we're a generic method, load the
14300         type parameters.
14301
14302         * reflection.c (mono_image_get_memberref_token): Allow
14303         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14304         table.
14305         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14306         (mono_image_create_token): First check whether it's a generic
14307         method (so we'd need to create a MethodSpec), then do the other
14308         two alternatives.
14309         (mono_reflection_bind_generic_method_parameters): Return a
14310         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14311         called directly from the interncall.
14312
14313 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14314
14315         * reflection.c (load_public_key): Move loading of the public key
14316         into managed code.
14317
14318         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14319
14320         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14321         fields.
14322
14323         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14324         culture, hash_alg and public_key. Fixes #49555.
14325
14326 2003-10-17  Martin Baulig  <martin@ximian.com>
14327
14328         * class.h (MonoGenericInst): Moved this declaration here and added
14329         `MonoMethod *generic_method'.
14330
14331         * icall.c
14332         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14333         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14334
14335         * metadata.c (mono_metadata_type_equal): Two types of
14336         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
14337         index; ie. don't compare the address of the `MonoGenericParam'
14338         structure.
14339         (mono_metadata_load_generic_params): Removed the `MonoMethod
14340         *method' argument.
14341
14342         * metadata.h (MonoGenericInst): Moved declaration to class.h.
14343         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
14344
14345         * reflection.c (method_encode_signature): Encode the number of
14346         generic parameters.
14347         (encode_generic_method_sig): New static function.
14348         (method_encode_methodspec): New static function; creates an entry
14349         in the MethodSpec table for a generic method.
14350         (mono_image_get_methodspec_token): New static function.
14351         (mono_image_create_token): Call mono_image_get_methodspec_token()
14352         for generic methods.
14353         (mono_reflection_bind_generic_method_parameters): New public
14354         function.  Instantiates a generic method.
14355
14356 2003-10-16  Martin Baulig  <martin@ximian.com>
14357
14358         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
14359         *gen_params' here from MonoMethodHeader.
14360
14361         * metadata.c (mono_metadata_parse_method_signature): If we have
14362         generic parameters, initialize `method->gen_params' and then set
14363         the correct `type->data.generic_param' in all the parameters.
14364
14365 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
14366
14367         * threads.c (mono_threads_get_default_stacksize): New function to 
14368         return the default stacksize.
14369
14370         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
14371         termination of the finalizer thread, since the previous method had
14372         race conditions. Fixes #49628.
14373
14374         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
14375         as for the other managed threads.
14376
14377 2003-10-16  Martin Baulig  <martin@ximian.com>
14378
14379         * class.c (inflate_generic_signature): Copy `generic_param_count'
14380         and `gen_params'.
14381
14382         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
14383         New interncall.
14384
14385         * metadata.c (mono_metadata_parse_method_signature): Actually set
14386         the `method->generic_param_count' here.
14387         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
14388
14389 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
14390
14391         * object.h: Add a new field to TypedRef to simplify the implementation
14392         of the REFANY opcodes in the JIT.
14393
14394         * icall.c: Make use of the new field.
14395
14396         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
14397         dynamically.
14398
14399 2003-10-15  Martin Baulig  <martin@ximian.com>
14400
14401         * class.c (mono_class_from_gen_param): Renamed to
14402         mono_class_from_generic_parameter() and moved most of the
14403         functionality from mono_reflection_define_generic_parameter()
14404         here; ie. we create a "real" class here.
14405         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
14406         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
14407         previously been called.
14408
14409         * class.h (MonoGenericParam): Moved the declaration of this struct
14410         here from metadata.h and added `MonoMethod *method'.
14411
14412         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
14413         interncall.
14414
14415         * loader.c (mono_get_method_from_token): If we have any generic
14416         parameters, call mono_metadata_load_generic_params() to read them
14417         from the MONO_TABLE_GENERICPAR.
14418
14419         * metadata.c (mono_metadata_load_generic_params): Added
14420         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
14421
14422         * metadata.h (MonoMethodSignature): Replaced
14423         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
14424         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
14425
14426         * reflection.c (mono_reflection_define_generic_parameter): Moved
14427         most of the functionality into the new
14428         mono_class_from_generic_parameter(); set the `method' field if
14429         we're a method parameter.       
14430
14431 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
14432
14433         * marshal.c (emit_struct_conv): if native size is 0
14434         emit no code.
14435
14436 2003-10-14  Martin Baulig  <martin@ximian.com>
14437
14438         * icall.c: The generics API has changed in the spec since it was
14439         added to System.Type; these modifications make it match the spec
14440         again.
14441         (ves_icall_Type_GetGenericParameters): Renamed to
14442         `ves_icall_Type_GetGenericArguments'.
14443         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
14444         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
14445         `ves_icall_MonoType_get_HasGenericArguments'.
14446         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
14447         `ves_icall_MonoType_get_IsGenericParameter'.
14448         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
14449         this is no interncall anymore.
14450         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
14451         `ves_icall_TypeBuilder_get_IsGenericParameter'.
14452
14453 2003-10-14  Martin Baulig  <martin@ximian.com>
14454
14455         * reflection.c (mono_reflection_bind_generic_parameters): Also
14456         inflate generic methods if we're reading the class from IL.
14457
14458 2003-10-13  Martin Baulig  <martin@ximian.com>
14459
14460         * reflection.c (mono_reflection_define_generic_parameter): This
14461         method isn't called directly from the icall anymore; take a
14462         `MonoReflectionAssemblyBuilder *' so we can use this for type and
14463         method generic parameters.
14464         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
14465         (method_builder_encode_signature): Encode generic parameters.
14466         (mono_image_get_method_info): Write generic params to the
14467         MONO_TABLE_GENERICPARAM table.
14468
14469         * reflection.h (MonoReflectionMethodBuilder): Added
14470         `MonoArray *generic_params'.
14471
14472         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14473
14474         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14475         wrapper for mono_reflection_define_generic_parameter().
14476         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14477
14478 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14479
14480         * marshal.h: Add missing function to fix build.
14481
14482         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14483         the SetLastError pinvoke attribute.
14484
14485         * marshal.c (mono_marshal_set_last_error): New helper function called
14486         by the generated code.
14487         
14488         * marshal.c (mono_mb_emit_branch): New helper function.
14489
14490         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14491
14492         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14493         classes as parameters and return values of delegates. Fixes #29256. 
14494
14495 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14496
14497         * locales.c: use gint32 in non HAVE_ICU case
14498
14499 2003-10-11  Martin Baulig  <martin@ximian.com>
14500
14501         * mono-debug.c (mono_debug_add_method): Added a workaround for
14502         bug #48591.
14503
14504 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14505
14506         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14507         delegates passed to native code must use the STDCALL calling 
14508         convention. Fixes #35987.
14509
14510 2003-10-10  Martin Baulig  <martin@ximian.com>
14511
14512         * class.c (inflate_generic_type): If we're inflating for a generic
14513         type instance (and not for a generic method), return
14514         MONO_TYPE_MVAR unchanged.
14515
14516 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14517
14518         * string-icalls.c: Join ignores null strings in the source array.
14519         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14520         * threads.c: GetAvailableTheads is slightly more accurate.
14521
14522 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14523
14524         * threads.h threads.c : add mono_threads_set_default_stacksize
14525         and pass default to CreateThread calls.
14526
14527 2003-10-09  Dick Porter  <dick@ximian.com>
14528
14529         * icall.c:
14530         * locales.h:
14531         * locales.c: Internal calls for constructing CultureInfo and
14532         related objects from libicu (if its available.)
14533
14534 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14535
14536         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14537
14538 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14539
14540         * threadpool.c: added an argument to async_invoke_thread that is the
14541         item to process, pass the MonoAsyncResult to the thread start function
14542         when creating a new thread. This way we don't need to acquire any lock
14543         when we're creating a new thread. Readded a semaphore for faster
14544         response times (instead of that Sleep i added).
14545
14546 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14547
14548         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14549         get daylight change dates better on Windows, fix handling
14550         of platforms without tm_gmtoff.
14551
14552 2003-10-06  Martin Baulig  <martin@ximian.com>
14553
14554         * class.c (inflate_generic_method): Renamed to
14555         mono_class_inflate_generic_method() and made public.
14556         (mono_class_init): Don't inflate the generic methods here.
14557         (mono_class_from_generic): Added `gboolean inflate_methods'
14558         argument.  Inflate the methods here.
14559
14560         * loader.c (mono_method_get_param_names): Ignore instances of
14561         generic types for the moment.
14562
14563         * reflection.c (fixup_method): Added support for inflated methods.
14564         (mono_image_create_token): Use mono_image_get_methodref_token()
14565         for inflated methods.
14566         (mono_custom_attrs_from_param): Ignore instances of generic types
14567         for the moment.
14568         (mono_reflection_bind_generic_parameters): New public function.
14569         Moved all the functionality from
14570         ves_icall_Type_BindGenericParameters() here and added support for
14571         dynamic types.
14572         (mono_reflection_define_generic_parameter): Initialize
14573         `klass->methods' here.
14574
14575         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14576         functionality into mono_reflection_define_generic_parameter().
14577         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14578         TypeBuilder, return that TypeBuilder.
14579
14580 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14581
14582         * appdomain.c: removed mono_delegate_semaphore.
14583
14584         * threadpool.c:
14585         (mono_thread_pool_add): moved hash table creation inside and the thread 
14586         creation outside of the critical region.
14587         (mono_thread_pool_finish): removed obsolete code.
14588         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14589         continue or exit the thread depending on the queue.
14590
14591 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14592
14593         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14594         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14595         handle more bool marshalling options
14596
14597 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14598
14599         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14600         arrays of structs. Also add a more descriptive error message when
14601         a structure member is marshalled as LPArray.
14602
14603 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14604
14605         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14606         marshalling arrays of complex types. Fixes #29098. Also remove an
14607         usused and incomplete function.
14608
14609 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14610
14611         * gc.c: report heap_size - free_bytes as total memory allocated
14612         (bug#49362).
14613
14614 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14615
14616         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14617         fix timezone handling problems on Windows.
14618         
14619         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14620         asserts when the year is outside the range handled by ms the functions.
14621
14622         * class.c (setup_interface_offsets): If the class is an interface,
14623         fill out its interface_offsets slot.
14624
14625 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14626
14627         * threadpool.c: mark threadpool threads as background.
14628
14629 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14630
14631         * decimal.c - define DECINLINE to nothing if not using GCC
14632
14633 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14634
14635         * assembly.c: More refcount fixes.
14636
14637 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14638
14639         * string-icalls.c: if we're not trimming, return the same string.
14640         When not splitting, don't create a new string.
14641
14642 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14643
14644         * image.c:
14645         (mono_image_open): increment the ref_count inside the critical section.
14646
14647 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14648
14649         * image.c (mono_image_open): Fix reference counting bug.
14650
14651 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14652
14653         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14654         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14655         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14656         mono_lookup_pinvoke_call throws.        
14657
14658 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14659
14660         * reflection.c (mono_reflection_parse_type): Fix #49114.
14661
14662         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14663         temporary workaround for cygwin header problem.
14664
14665         * object.c (mono_object_isinst): Synchronize this with the code
14666         generated by the JIT for casts.
14667
14668 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14669
14670         * reflection.c (encode_type): Fix #38332.
14671
14672 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14673
14674         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14675         the original method from the wrapper method.
14676
14677 2003-09-25  Martin Baulig  <martin@ximian.com>
14678
14679         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14680         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14681         (ves_icall_Type_get_IsGenericInstance): New interncall.
14682
14683 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14684
14685         * object.c: fix cast warning in big endian code.
14686
14687 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14688
14689         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14690         
14691 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14692
14693         * assembly.c: don't call check_env from mono_assembly_load. It's
14694         already done once in mono_assemblies_init and may cause headaches when
14695         multiple threads are loading assemblies.
14696
14697 2003-09-19  Martin Baulig  <martin@ximian.com>
14698
14699         * reflection.c (mono_reflection_define_generic_parameter): Don't
14700         allocate `klass->methods', set `klass->flags' to
14701         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14702
14703 2003-09-18  Martin Baulig  <martin@ximian.com>
14704
14705         * class.c (mono_class_init): Don't create `class->methods' if it's
14706         already initialized.
14707
14708         * metadata.c (mono_metadata_load_generic_params): Make this
14709         actually work.
14710
14711         * reflection.c (mono_reflection_define_generic_parameter): Set
14712         parent class and interfaces from the constraints.
14713
14714         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14715         to keep this struct in sync with the declaration in TypeBuilder.cs.
14716
14717 2003-09-17  Martin Baulig  <martin@ximian.com>
14718
14719         * metadata.h (MonoType): Replaced the data's `int type_param'
14720         field with `MonoGenericParam *generic_param'.
14721         (MonoGenericParam): Added `MonoClass *klass'.
14722
14723         * class.c (mono_class_from_gen_param): Removed the
14724         `MonoImage *image' and `int type_num' arguments.
14725
14726         * metadata.c (mono_metadata_parse_generic_param): New static
14727         method; creates a MonoGenericParam which just contains the index.
14728         (do_mono_metadata_parse_type): Call
14729         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14730         MONO_TYPE_MVAR.
14731
14732         * reflection.c (mono_image_typedef_or_ref): Generic type
14733         parameters may be in the same assembly, but never use a typedef
14734         for them.
14735         (mono_reflection_define_generic_parameter): We're now creating a
14736         "real" class for the type parameter; it's now safe to call
14737         mono_class_from_mono_type() on the class'es type, it'll do the
14738         right thing.
14739
14740 2003-09-16  Martin Baulig  <martin@ximian.com>
14741
14742         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14743         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14744         the `symfile' data structure must be fully initialized before it
14745         gets added to the table.
14746
14747 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14748
14749         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14750
14751         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14752         class init trampolines.
14753
14754 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14755
14756         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14757         to the built-in profiler to turn off time and allocation profiling
14758         respectively.
14759
14760 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14761
14762         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14763         g_direct_equal.
14764
14765         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14766         in human readable form.
14767
14768 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14769
14770         * reflection.c icall.c: Fixed warnings.
14771
14772         * image.c (load_class_names): Use a temporary hash table to hold the
14773         namespaces in order to avoid doing many string comparisons.
14774
14775         * image.h: Fix typo.
14776
14777         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14778         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14779         since the NULL case is short-circuited inside g_hash_table_lookup, 
14780         leading to better performance.  
14781
14782         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14783         obtain the first custom attribute for a given index. Depends on the
14784         CustomAttribute table being sorted by the parent field.
14785
14786         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14787         for better performance.
14788
14789 2003-09-07  Martin Baulig  <martin@ximian.com>
14790
14791         * class.c (mono_class_init): If we're a generic instance, inflate
14792         all our methods instead of loading them from the image.
14793         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14794
14795 2003-09-07  Martin Baulig  <martin@ximian.com>
14796
14797         * mono-debug-debugger.c: Added support for constructors.
14798
14799 2003-09-06  Martin Baulig  <martin@ximian.com>
14800
14801         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14802         New interncall.
14803
14804         * reflection.c (mono_reflection_setup_generic_class): Call
14805         ensure_runtime_vtable() to create the vtable.
14806
14807 2003-09-05  Martin Baulig  <martin@ximian.com>
14808
14809         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14810         MONO_TYPE_MVAR.
14811
14812 2003-09-04  Martin Baulig  <martin@ximian.com>
14813
14814         * reflection.c (mono_reflection_define_generic_parameter): Generic
14815         parameters start with zero.
14816
14817 2003-09-04  Martin Baulig  <martin@ximian.com>
14818
14819         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14820
14821         * reflection.h (MonoReflectionGenericParam): New typedef.
14822         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14823         the generic parameters from the managed TypeBuilder.
14824
14825         * reflection.c (mono_reflection_define_generic_parameter): New function.
14826         (mono_reflection_create_runtime_class): Encode generic parameters.
14827         (mono_reflection_setup_generic_class): New function; this is
14828         called after adding adding all generic params to the TypeBuilder.
14829         (encode_type): Added MONO_TYPE_VAR.
14830
14831 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14832
14833         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14834         here from the JIT.
14835
14836         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14837         load hook.
14838
14839 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14840
14841         * reflection.h reflection.c class.h class.c: Delete duplicate 
14842         definition of mono_type_get_name () from reflection.c and export the
14843         one in class.c.
14844
14845         * class.c: Class loading fixes from Bernie Solomon 
14846         (bernard@ugsolutions.com).
14847
14848         * reflection.c: Endianness fixes from Bernie Solomon 
14849         (bernard@ugsolutions.com).
14850         
14851 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14852
14853         * assembly.h assembly.c: Define a file format version for AOT
14854         libraries.
14855         
14856         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14857
14858         * appdomain.h (MonoJitInfo): New field to determine whenever the
14859         code is domain neutral.
14860         
14861 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14862
14863         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14864
14865 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14866
14867         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14868         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14869         Avoid caching the result since strings must be domain specific. Fixes
14870         #48050.
14871
14872 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14873
14874         * marshal.c (mono_marshal_init): Make this callable multiple times
14875         since it is hard to find a correct place to call it.
14876
14877         * object.c (mono_runtime_class_init): Execute static constructors in
14878         the correct appdomain.
14879
14880         * image.c (build_guid_table): Handle the case when multiple images have
14881         the same GUID.
14882
14883 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14884
14885         * icall.c: added a couple of icalls for System.Web.
14886
14887 2003-08-28  Martin Baulig  <martin@ximian.com>
14888
14889         * icall.c (ves_icall_Type_BindGenericParameters): Use
14890         `klass->generic_inst' instead of `&klass->byval_arg' in the
14891         mono_type_get_object() call.  The returned type must be
14892         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14893
14894 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14895
14896         * NOTES: New file.
14897
14898         * object.c (mono_class_proxy_vtable): Make it thread safe.
14899
14900         * pedump.c: Fix warning.
14901
14902         * object.c appdomain.h: Get rid of metadata_section. 
14903         It is no longer needed and it was causing deadlocks with domain->lock.
14904
14905         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14906
14907 2003-08-26  Martin Baulig  <martin@ximian.com>
14908
14909         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14910
14911 2003-08-26  Martin Baulig  <martin@ximian.com>
14912
14913         * pedump.c (main): Call mono_metadata_init(),
14914         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14915         and mono_loader_init().
14916
14917 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14918
14919         * loader.h: Add missing include to fix build.
14920
14921         * image.h: mono_image_load_references is no more.
14922
14923         * assembly.c: Reworked assembly loading to make it really thread safe.
14924         After these changes, the assembly returned by mono_assembly_open is
14925         fully initialized, i.e. all its references assemblies are loaded.
14926
14927         * assembly.c (mono_image_load_references): Renamed to 
14928         mono_assembly_load_references, and made private, since clients no
14929         longer need to call it.
14930
14931         * class.c: Removed calls to mono_assembly_load_references, since it was
14932         a source of deadlocks.
14933
14934         * loader.h loader.c class.h class.c: Protect data structures using a 
14935         new lock, the loader lock.
14936
14937         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14938         GPtrArrays only when needed.
14939
14940         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14941         into empty structures by mcs. Fixes pinvoke7.cs.
14942         
14943         * domain.c (mono_init): Call a new initialization function.
14944
14945         * appdomain.c (mono_runtime_init): Call the new initializer function
14946         of the marshal module.
14947
14948         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14949         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14950
14951         * marshal.h marshal.c: Added locks around the wrapper caches to make
14952         this module thread safe.
14953
14954         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14955         this argument. Fixes pinvoke1.exe.
14956
14957 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14958
14959         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14960         enumeration of values. Removed fields to store remote call output values in
14961         MonoAsyncResult. Not needed any more.
14962         * object.c: Initialize call_type and async_result fields in mono_message_init.
14963         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14964         dispatching the message.
14965         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14966         async call to finish. To do it use a message with EndInvoke call type.
14967
14968 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14969
14970         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14971         determines whenever a method has marshalling info.
14972
14973 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14974
14975         * assembly.c: fix the build on windows.
14976
14977 2003-08-22 Lluis Sanchez <lluis@ximian.com>
14978
14979         * object.cs: Fixed bug #47785.
14980
14981 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
14982
14983         * string-icalls.c (StringReplace): If their are no occurances of
14984         the old string found return a reference to the supplied
14985         string. This saves some memory and matches MS behavoir.
14986         
14987 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14988
14989         * socket-io.c: fixed compilation for systems that define AF_INET6
14990         and don't define SOL_IP/SOL_IPV6.
14991
14992 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
14993
14994         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
14995         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
14996
14997         * rawbuffer.c rawbuffer.h: Make this module thread safe.
14998
14999         * domain.c: Make this module thread safe.
15000
15001         * domain.c (mono_init): Call new initialization function.
15002
15003         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15004         reference types too. Fixes #38812.
15005
15006         * image.c (mono_image_init): Fixed warnings.
15007
15008         * class.c (mono_class_from_typeref): Handle assembly load failure
15009         correctly.
15010
15011         * appdomain.c (add_assemblies_to_domain): Handle the case when
15012         the references of an assembly are not yet loaded.
15013
15014         * metadata.c image.c assembly.c: Moved initialization of global
15015         variables to a separate function called at startup since lazy 
15016         initialization of these variables is not thread safe.
15017         
15018         * image.c assembly.c: Made this module thread safe by adding locks in 
15019         the appropriate places.
15020
15021         * domain.c (mono_init): Call the new initialization functions of the
15022         three modules.
15023
15024 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15025
15026         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15027           make a direct call. It is proxy's work to make the call asynchronous.
15028           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15029           the return values.
15030         * object.cs: mono_method_call_message_new(): read AsyncResult and
15031           state object from parameters list, if this info is requested.
15032         * object.h: Added fields to store remote call output values in
15033           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15034
15035 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15036
15037         * object.h: add needed fields to MonoThread.
15038         * threads.c, threads.h: allow registering a function to cleanup data
15039         allocated per thread by the JIT.
15040
15041 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15042
15043         * loader.h: portability fix by Bernie Solomon
15044         * <bernard@ugsolutions.com>.
15045
15046 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15047
15048         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15049         return a MonoArray. This simplifies the code and also ensures that
15050         the cache allways contains an object reference as a value.
15051
15052         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15053         function.
15054
15055 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15056
15057         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15058         fixes a problem with byte ordering when getting the address family for
15059         a socket.
15060
15061 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15062
15063         * .cvsignore: Added monosn.
15064
15065         * reflection.h reflection.c loader.c: Added support for parameter
15066         marshalling to dynamically created types. Fixes #47295.
15067
15068 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15069
15070         * rand.c: remove useless warnings.
15071
15072 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15073
15074         * class.c: implemented ldtoken for methods and fieldrefs.
15075
15076 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15077
15078         * threadpool.c: when mono_async_invoke was called, no one took care of
15079         monitoring the queue. So if the method invoked took some time and we
15080         got new async invoke requests after 500 ms (the thread created waited
15081         that long in WaitForSingleObject), the new async invoke was not called
15082         until the previous one finished.
15083
15084         This is fixed now. Thanks to Totte for helping with it.
15085
15086 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15087
15088         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15089
15090 2003-08-11  Martin Baulig  <martin@ximian.com>
15091
15092         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15093
15094 2003-08-06  Martin Baulig  <martin@ximian.com>
15095
15096         * mono-debug-debugger.c: Added support for static fields,
15097         properties and methods.
15098
15099 2003-08-06  Martin Baulig  <martin@ximian.com>
15100
15101         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15102         make this work for applications with multiple application domains.
15103
15104 2003-08-04  Martin Baulig  <martin@ximian.com>
15105
15106         * mono-debug-debugger.c: Completely reworked the type support; the
15107         most important thing is that we're now just using one single
15108         `MonoType' instance per type.
15109
15110 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15111
15112         * mono-endian.h, mono-endian.c, icall.c: Added icall
15113         ves_icall_System_Double_AssertEndianity to assert double word endianity
15114         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15115
15116 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15117
15118         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15119         support, icalls and fixes.
15120
15121 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15122
15123         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15124         classes that are a punctuation character in .NET is not the same a
15125         g_unichar_ispunct.
15126
15127 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15128
15129         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15130
15131 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15132
15133         * icall.c: Add new MemCopy internalcall.
15134         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15135         Simplified code; It is not necessary to handle all the cases here,
15136         as the C# code takes care of it.  Only handle the case of the name
15137         resource embedded into the assembly.
15138
15139         Changed signature to return the data pointer and the size of the
15140         data. 
15141
15142 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15143
15144         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15145         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15146
15147 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15148
15149         * socket-io.c: ignore EINTR error in select.
15150
15151 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15152
15153         * class.h, class.c: removed unused subclasses field in MonoClass.
15154
15155 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15156
15157         * icall.c: improve fix of get_base_definition(). If the parent class
15158           doesn't have the mehod, look at the parent of the parent.
15159         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15160           to check if a parameter is an in or out parameter
15161           (PARAM_ATTRIBUTE_IN is not set by default).
15162           mono_method_return_message_restore(): Use mono_class_value_size to
15163           get the size of a value type. mono_type_stack_size (parameterType)
15164           does not return the correct value if parameterType is byRef.
15165           mono_load_remote_field(), mono_load_remote_field_new(),
15166           mono_store_remote_field(), mono_store_remote_field_new():
15167           raise exception if the remote call returns an exception.
15168
15169 2003-07-28  Martin Baulig  <martin@ximian.com>
15170
15171         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15172         method.  This is a wrapper around mono_runtime_invoke() which
15173         boxes the instance object if neccessary.
15174
15175 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15176
15177         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15178         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15179
15180 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15181
15182         * icall.c: disable mcs bug workaround.
15183
15184 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15185
15186         * object.c (mono_runtime_class_init): Take the metadata_section
15187         mutex before obtaining the domain mutex.
15188
15189         * appdomain.h: Added definition of metadata_section mutex here. 
15190
15191         * object.c: define metadata_mutex here.
15192
15193 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15194
15195         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15196         fixed.
15197
15198 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15199
15200         * reflection.c: Fix bug #46669
15201
15202 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15203
15204         * exception.c:
15205         * exception.h:
15206         * icall.c:
15207         * object.h: fill in the type name for TypeLoadException.
15208
15209 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15210
15211         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15212         relationship between TypeBuilders while compiling corlib) and bug
15213         45993 (Array types returned from the runtime while compiling
15214         corlib were from the loaded corlib).
15215
15216 2003-07-22  Martin Baulig  <martin@ximian.com>
15217
15218         * mono-debug-debugger.c: Reworked the type support a bit more;
15219         distinguish between types and classes.
15220
15221 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15222
15223         * icall.c: add IsArrayImpl icall.
15224
15225 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15226
15227         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15228         initializing real_size only once. Also fix bug #46602.
15229
15230 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15231
15232         * object.c: Renamed mono_metadata_section to metadata_section.
15233
15234 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15235
15236         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15237           empty array if the type is an array. Fixed.
15238           ves_icall_MonoMethod_get_base_definition: if the base method
15239           is abstract, get the MethodInfo from the list of methods of
15240           the class.
15241         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15242           and it was 1-based. Fixed in mono_param_get_objects.
15243
15244 2003-07-20  Martin Baulig  <martin@ximian.com>
15245
15246         * mono-debug.h: Set version number to 31.
15247         (mono_debug_init): Added `MonoDomain *' argument.
15248
15249         * mono-debug-debugger.c: Reworked the type support; explicitly
15250         tell the debugger about builtin types; pass the `klass' address to
15251         the debugger.
15252
15253 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15254
15255         * image.c: Allow new metadata tables to be loaded without a
15256         warning. Also update the warning message to give the new constant value.
15257                 
15258 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15259
15260         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15261         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15262         array type representation changes.
15263
15264 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15265
15266         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15267         on Environment.Exit () call.
15268
15269 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15270
15271         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15272         requires a matching corlib.
15273
15274 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15275
15276         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15277           Committed again without the CRs.
15278         
15279 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15280
15281         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15282           getting it from the "this" socket instance. Did not work
15283           if the socket is a subclass of Socket.
15284           Also fixed bug #35371.
15285
15286 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15287
15288         * metadata.c: fixed size for TypedByRef.
15289         * loader.c: when searching for a method, consider the vararg amrker.
15290         * unicode.c, decimal.c: constify some arrays.
15291
15292 2003-07-15  Dick Porter  <dick@ximian.com>
15293
15294         * socket-io.c: Fixed compilation for gcc < 3.2.
15295
15296         Fixed compilation for machines that don't have AF_INET6 (thanks to
15297         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15298
15299         Fixed compile warnings.
15300         
15301         Fixed formatting and line endings.
15302
15303 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15304
15305         * socket-io.h:
15306         * socket-io.c: Added IPv6 support.
15307
15308 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15309
15310         * class.c (mono_class_is_assignable_from): New function to implement
15311         the is_assignable_from logic. Used by mono_object_isinst, 
15312         Type::IsAssignableFrom () and the interpreter.
15313
15314         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15315         Object, even interfaces.
15316         
15317         * object.c (mono_object_isinst): Implement in terms of 
15318         is_assignable_from.
15319
15320         * icall.c (ves_icall_type_is_assignable_from): New icall.
15321
15322 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15323
15324         * domain.c (foreach_domain): fix compiler warning.
15325
15326 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15327
15328         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15329         not available on all plattforms
15330
15331 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15332
15333         * image.h image.c: Store the metadata version string in MonoImage.
15334         * icall.c: New icall to retrieve the image version.
15335         * reflection.c (create_dynamic_image): Fill in the image version field
15336         * reflection.c (build_compressed_metadata): Use the image version
15337         from the image structure.
15338
15339 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15340
15341         * appdomain.c: modified comment.
15342         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
15343         That will be its last iteration when mono_gc_cleanup is called from
15344         mono_runtime_cleanup and before the domain is unloaded.
15345
15346         Fixes bug #45962.
15347
15348 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
15349
15350         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
15351         attributes.
15352
15353 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15354
15355         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
15356         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
15357         Bernie Solomon <bernard@ugsolutions.com>.
15358
15359 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15360
15361         * object.c, object.h: provide mono_object_new_fast() for faster
15362         allocation in some special cases.
15363
15364 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
15365
15366         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
15367         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
15368
15369 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
15370
15371         * threadpool.c: fix leaks.
15372
15373 2003-07-01  Dick Porter  <dick@ximian.com>
15374
15375         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
15376         using MonoGHashTables.  Fixes threadpool bug posted to list.
15377
15378 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15379
15380         * image.h, image.c: added support to load an assembly from a byte array.
15381         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
15382         assembly bundle support.
15383
15384 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
15385
15386         * threadpool.c (mono_thread_pool_add): keep a reference to the
15387         AsyncResult to prevent GC
15388
15389 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15390
15391         * class.c: leak fix.
15392
15393 2003-06-25  Dick Porter  <dick@ximian.com>
15394
15395         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
15396         for the async object, the WaitHandle object will close the handle.
15397         Fixes bug 45321.
15398
15399 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15400
15401         * class.c: in mono_array_class_get (), lookup from the hash with the
15402         same type we insert: this works around a bug in
15403         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
15404         lluis. The real fix will have to wait for after the release.
15405
15406 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15407
15408         * icall.c: fix memory leak when getting type members.
15409
15410 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15411
15412         * reflection.c: added more pubtoken special cases.
15413
15414 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
15415
15416         * class.c: handle field offset correctly when class size
15417         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
15418
15419 2003-06-20  Martin Baulig  <martin@ximian.com>
15420
15421         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
15422         *image' field.
15423
15424 2003-06-20  Martin Baulig  <martin@ximian.com>
15425
15426         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
15427
15428 2003-06-20  Martin Baulig  <martin@ximian.com>
15429
15430         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
15431         just distinguish between variables in registers and variables at
15432         an offset relative to a register.
15433
15434 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15435
15436         * icall.c: #ifdef out latest changes until mcs is fixed.
15437
15438 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15439
15440         * icall.c: return members in metadata order.
15441
15442 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15443
15444         * icall.c: avoid infinite loop in GetTimeZoneData.
15445
15446 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
15447
15448         * icall.c: added Marshal.Prelink/All icalls.
15449
15450 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15451
15452         * object.c, object.h: fix warnings and do some overflow checking
15453         when creating arrays.
15454
15455 2003-06-17  Dick Porter  <dick@ximian.com>
15456
15457         * file-io.h:
15458         * file-io.c: File attributes need to be tweaked slightly when
15459         passed from the managed to the w32 world.
15460
15461 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15462         * profiler.h profiler-private.h profiler.c: Rework last patch
15463         based on suggestion by Paolo.
15464         
15465 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15466
15467         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
15468         instruction level coverage data collection.
15469         * profiler.h profiler.c (: Added new callback function which can be
15470         used by the profiler to limit which functions should have coverage
15471         instrumentation.
15472         * profiler.c (mono_profiler_load): Call g_module_build_path to
15473         generate the file name of the profiler library.
15474
15475 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15476
15477         * profiler.c, profiler.h, profiler-private.h: added basic block 
15478         coverage profiling API.
15479
15480 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15481
15482         * reflection.c (mono_reflection_create_runtime_class): Add support
15483         for events in dynamically generated code.
15484
15485         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15486         not allocated.
15487
15488 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15489
15490         * icall.c: when getting timezone info, return reasonable values if we
15491         can't get the actual data.
15492
15493 2003-06-14  Dick Porter  <dick@ximian.com>
15494
15495         * threads.c (start_wrapper): Remove the reference to the thread
15496         object in the TLS data, so the thread object can be finalized.
15497         This won't be reached if the thread threw an uncaught exception,
15498         so those thread handles will stay referenced :-( (This is due to
15499         missing support for scanning thread-specific data in the Boehm GC
15500         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15501
15502 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15503
15504         * reflection.c: ensure streams and tables are first allocated with
15505         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15506
15507 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15508
15509         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15510
15511 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15512
15513         * reflection.c (mono_reflection_create_runtime_class): Add support for
15514         properties to dynamically created classes.
15515         * reflection.c: Fix a few places where non-MonoObjects were inserted
15516         into the tokens hashtable.
15517
15518 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15519
15520         * object.c: some support to handle out of memory exceptions.
15521
15522 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15523
15524         * marshal.c (mono_marshal_get_native_wrapper): support reference
15525         return types
15526
15527 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15528
15529         * object.h, object.c: more portability stuff from Bernie Solomon.
15530         Unexport mono_object_allocate(). Added mono_object_unbox ().
15531         Set exitcode when an unhandled exception is thrown.
15532
15533 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15534
15535         * marshal.c (mono_marshal_get_native_wrapper): use custom
15536         marshaler for return types.
15537
15538 2003-06-10  Dick Porter  <dick@ximian.com>
15539
15540         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15541         ip_mreq is available
15542
15543 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15544
15545         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15546         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15547         by Bernie Solomon <bernard@ugsolutions.com>.
15548
15549 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15550
15551         * gc.c (mono_gc_init): Avoid error message on shutdown when
15552         GC_DONT_GC=1 is used.
15553
15554         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15555         New icall to return the GUID of a module.
15556
15557 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15558
15559         * class.c: ensure instance size always includes the parent's size
15560         even whem class size is set explicitly (fixes bug#44294).
15561
15562 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15563
15564         * profiler.h, profiler.c: made the simple profiler thread-safe,
15565         get more accurate timing info. Allow the loading of an
15566         externally-developed profiler module.
15567
15568 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15569
15570         * marshal.c (mono_marshal_get_native_wrapper): improved
15571         class/byref arguments.
15572         (mono_marshal_get_native_wrapper): better string marshaling support.
15573
15574 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15575
15576         * class.c: ensure .pack and .size are handled correctly and
15577         simplified layout of static fields.
15578
15579 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15580
15581         * appdomain.c
15582         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15583
15584         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15585         current directory (fix bug 44008)
15586
15587 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15588
15589         * marshal.c (mono_marshal_get_native_wrapper): started support for
15590         custom marshalers.
15591         (mono_delegate_to_ftnptr): consider marshalling specifications
15592
15593 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15594
15595         * reflection.c, reflection.h: emit custom marshal info.
15596
15597 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15598
15599         * object.c: free the GError.
15600         * icall.c: added CloseEvent_internal.
15601         * threads.[ch]:
15602         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15603         call.
15604
15605 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15606
15607         * loader.c (mono_method_get_signature): Add support for dynamic
15608         assemblies.
15609
15610 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15611
15612         * reflection.c: fixed bug #43905.
15613
15614 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15615
15616         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15617         handling TypedReference and ArgIterator.
15618         * loader.c, loader.h: added function to get signature at call site.
15619
15620 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15621
15622         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15623         data readonly. Buglets and warning fixes. Some MethodSpec support.
15624
15625 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15626
15627         * class.h, class.c, object.c: remove relative numbering support.
15628
15629 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15630
15631         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15632         free the string, until we get a chance to fix Gtk#
15633
15634 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15635
15636         * marshal.c: revert last patch.
15637
15638 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15639
15640         * icall.c: updates for new mono_class_vtable() not calling
15641         the type constructor anymore.
15642
15643 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15644
15645         * object.h, object.c: separate vtable creation from type
15646         initialization. Make running the .cctor thread safe.
15647
15648 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15649
15650         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15651
15652 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15653
15654         * loader.c (mono_get_method): consider calling convention
15655
15656 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15657
15658         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15659         to return the invisible global type for a module.
15660
15661         * reflection.c (mono_image_build_metadata): Emit global fields too.
15662
15663 2003-05-20  Peter Williams  <peterw@ximian.com>
15664
15665         * loader.c (mono_lookup_internal_call): Add a few newlines.
15666
15667 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15668
15669         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15670         literal strings.
15671
15672         * appdomain.c (set_domain_search_path): Recalculate search path when
15673         AppDomainSetup.PrivateBinPath changes.
15674
15675         * object.c (mono_class_compute_gc_descriptor): It turns out some
15676         parts of the class libs (like System.Thread) holds pointers to
15677         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15678         to treat native int a pointer type here.
15679         
15680 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15681
15682         * appdomain.h, domain.c: add hashtable for jump target resolution.
15683
15684 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15685
15686         * reflection.h reflection.c icall.c: Added new icalls 
15687         GetManifestResourceInfoInternal, GetModulesInternal and support
15688         infrastructure.
15689
15690 2003-05-16  Dick Porter  <dick@ximian.com>
15691
15692         * icall.c:
15693         * file-io.h:
15694         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15695
15696 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15697
15698         * object.c: mono_store_remote_field: little fix to previous patch.
15699
15700 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15701
15702         * class.c: add constructors to array classes.
15703         * icall.c: special case array construction for InternalInvoke (),
15704
15705 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15706
15707         * class.h class.c reflection.c object.c: Added support for field
15708         defaults in dynamically generated classes.
15709
15710 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15711
15712         * reflection.c: properly encode charset for ddlimport.
15713
15714 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15715
15716         * threads.c: allow compiling without GC.
15717
15718 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15719
15720         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15721         handling of thread static data.
15722
15723 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15724
15725         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15726
15727 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15728
15729         * class.c (mono_array_class_get): always set the serializable flags
15730         (mono_array_class_get): always set the SEALED attribute for array types
15731
15732 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15733
15734         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15735         attributes (fix for bug 42021).
15736
15737 2003-05-12  Dick Porter  <dick@ximian.com>
15738
15739         * gc.c: Don't run finalizers when the finalizer thread is
15740         finishing up, because the default domain has already been
15741         destroyed.
15742
15743 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15744
15745         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15746         value is null, we should throw an exception.   This is slightly
15747         different than the other conventions used for the constructor.
15748
15749 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15750
15751         * socket-io.c: fixed windows build.
15752
15753 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15754
15755         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15756
15757 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15758
15759         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15760         compilers.
15761
15762 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15763
15764         * class.c (mono_class_layout_fields): Add experimental GC aware
15765         auto layout facility. Requires class library changes to work correctly.
15766
15767         (mono_class_setup_vtable): Avoid overriding explicit interface
15768         method implementations. Fixes iface3.exe test.
15769
15770         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15771         object reference.
15772         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15773         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15774
15775         * metadata.h: Add new type classification macro which determines
15776         whenever the type holds an object reference.
15777
15778 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15779
15780         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15781
15782 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15783
15784         * gc.c (finalizer_thread): Work around a GC bug.
15785
15786 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15787
15788         * marshal.c (emit_struct_conv): allow unions
15789
15790         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15791
15792 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15793
15794         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15795
15796 2003-05-06  Martin Baulig  <martin@ximian.com>
15797
15798         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15799
15800 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15801
15802         * socket-io.c:
15803         (Select_internal): allow NULLs, don't create arrays if not needed.
15804         Coupled with Socket.cs changes.
15805
15806         * threadpool.c:
15807         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15808         register a finalizer for it that will close the semaphore handle. This
15809         fixes the leak and make Lupus' test run with > 4080 loops.
15810
15811 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15812
15813         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15814         Jerome Laban (bug #42287)
15815
15816 2003-05-02  Martin Baulig  <martin@ximian.com>
15817
15818         * debug-mono-symfile.h
15819         (MonoSymbolFile): Moved declaration into mono-debug.h.
15820         (MonoDebugMethodJitInfo): Likewise.
15821         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15822         argument.
15823         (_mono_debug_address_from_il_offset): Take a
15824         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15825
15826         * mono-debug.h
15827         (MonoDebugDomainData): New struct.
15828         (mono_debug_get_domain_data): New function.
15829         (mono_debug_add_method): Take an additional `MonoDomain *'
15830         argument.
15831         (mono_debug_source_location_from_address): Likewise.
15832         (mono_debug_il_offset_from_address): Likewise.
15833         (mono_debug_address_from_il_offset): Likewise.
15834
15835 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15836
15837         * reflection.c: one more check for null type in custom attrs.
15838
15839 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15840
15841         * reflection.c: avoid warning (comparison is always false due to limited
15842         range of data type).
15843
15844 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15845
15846         * icall.c: throw an exception in Type.GetField if the argument 'name'
15847         is NULL.
15848
15849 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15850
15851         * reflection.c: fixed handling of enums in named arguments to custom
15852         attributes (bug #42123).
15853
15854 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15855
15856         * reflection.c: use the right array element type and handle
15857         a null for a Type argument, too.
15858
15859 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15860
15861         * reflection.c: handle arrays as arguments to custom attributes.
15862
15863 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15864
15865         * reflection.c: handle a string value in a custom attr
15866         ctor that takes an object.
15867
15868 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15869
15870         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15871         (fix bug #42063)
15872
15873 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15874
15875         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15876
15877 2003-04-27  Martin Baulig  <martin@ximian.com>
15878
15879         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15880         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15881         MONO_DEBUGGER_EVENT_BREAKPOINT.
15882         (mono_breakpoint_trampoline_code): Removed.
15883         (mono_debugger_event_handler): The last argument is now a
15884         `guint32'.
15885         (mono_debugger_insert_breakpoint_full): Removed the
15886         `use_trampoline' argument.
15887         (mono_debugger_method_has_breakpoint): Likewise.
15888         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15889         mono_debugger_breakpoint_callback(); take the method and
15890         breakpoint number as arguments.
15891
15892 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15893
15894         * metadata.c: fix off by one when loading parameters attributes.
15895
15896 2003-04-24  Martin Baulig  <martin@ximian.com>
15897
15898         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15899
15900 2003-04-24  Martin Baulig  <martin@ximian.com>
15901
15902         * mono-debug-debugger.c: Moved all code which interacts with the
15903         Mono Debugger here.
15904
15905         * debug-mono-symfile.c: This code now just deals with the symbol
15906         file itself, the debugger code is now in mono-debug-debugger.c.
15907
15908 2003-04-23  Martin Baulig  <martin@ximian.com>
15909
15910         * mono-debug.c (mono_debug_source_location_from_il_offset):
15911         New method; like mono_debug_source_location_from_address(), but
15912         takes an IL offset instead of a machine address.
15913
15914 2003-04-23  Martin Baulig  <martin@ximian.com>
15915
15916         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15917         `line' field; this is now computed by the debugger.
15918
15919 2003-04-23  Martin Baulig  <martin@ximian.com>
15920
15921         * mono-debug.[ch]: New files.  This is the new debugging interface.
15922
15923         * mono-debug-debugger.[ch]: New files.  Moved all code which
15924         interacts with the Mono Debugger here.
15925
15926 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15927
15928         * domain.c (mono_init): initialize mono_defaults.monitor_class
15929
15930 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15931
15932         * reflection.c (method_encode_code): Add a spicy exception to help
15933         future compiler authors.
15934
15935 2003-04-21  Martin Baulig  <martin@ximian.com>
15936
15937         * icall.c
15938         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15939         Make this work with relative pathnames; g_filename_to_uri() needs
15940         an absolute filename.
15941
15942 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15943
15944         * icall.c: Track name changes in Object and ValueType.
15945
15946 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15947
15948         * metadata.c (mono_type_stack_size): size should be a multiple of
15949         sizeof (gpointer)
15950
15951 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15952
15953         * gc.c:
15954         (internal_domain_finalize): moved into mono_domain_finalize. No need
15955         to create another thread because the finalizers will be run in the
15956         finalizer thread.
15957         
15958         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15959         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15960         to be run (MS does this too).
15961
15962 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15963
15964         * object.c (mono_class_compute_gc_descriptor): Update comment.
15965
15966         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15967
15968         * image.h: Add synchronized wrapper cache.
15969
15970         * image.c (do_mono_image_open): Initialize cache.
15971
15972         * reflection.c (create_dynamic_mono_image): Initialize cache.
15973
15974 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15975
15976         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
15977         ves_icall_System_Buffer_ByteLengthInternal.
15978
15979 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15980
15981         * reflection.c: setup klass->nested_in earlier. Allow
15982         a dash in the assembly name.
15983
15984 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
15985
15986         * metadata.c (mono_type_to_unmanaged): dont access
15987         type->data.klass for MONO_TYPE_OBJECT
15988         (mono_type_to_unmanaged): consider System.Delegate class
15989
15990 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
15991
15992         * class.c: just setup supertypes in the proper place instead of
15993         initializing the full element class for arrays.
15994
15995 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15996
15997         * class.c: ensure the element class of arrays is initialized.
15998         Setup the supertype info for array classes, too.
15999
16000 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16001
16002         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16003
16004 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16005
16006         * Makefile.am: re-added -m option when running cygpath. This way,
16007         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16008         separator.
16009         * mono-config.c: same codepath for locating mono config file for WIN32
16010         and the rest.
16011         * assembly.c: if mono_assembly_setrootdir is called, don't override
16012         the value set.
16013
16014 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16015
16016         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16017         MONO_ASSEMBLIES variable.
16018
16019 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16020
16021         * icall.c: added Assembly::GetNamespaces() icall.
16022
16023 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16024
16025         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16026
16027 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16028
16029         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16030         * object.c: fixed bug in the construction of vtable for proxies
16031
16032 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16033
16034         * object.c (mono_array_new): Mark mono_array_new as an icall.
16035
16036 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16037
16038         * class.c: fixed test for public method when overriding interfaces.
16039         Closes bug #40970.
16040
16041 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16042
16043         * appdomain.h, domain.c: added mono_domain_foreach() to
16044         be able to access the currently loaded appdomains.
16045         * object.c: make string interning work across sppdomains.
16046         Mark some functions for use as icalls.
16047
16048 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16049
16050         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16051
16052         * reflection.h reflection.c: Allocate long living data using 
16053         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16054
16055         * reflection.c: Double the allocation size in streams instead of
16056         increasing it, to prevent unneccesary copying on large assemblies.
16057         
16058         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16059         creation if the assembly does not have the Run flag set.
16060
16061 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16062
16063         * class.h: avoid the C++ keywords in header files (Jerome Laban
16064         spotted and fixed this).
16065
16066 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16067
16068         * object.c:
16069         (mono_unhandled_exception): fill in the arguments for the
16070         UnhandledException event. Only trigger that event for the default
16071         domain (as MS does).
16072
16073 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16074
16075         * object.c: Improve typed allocation stuff based on suggestions from
16076         Paolo. Also turn it on if the GC library supports it.
16077
16078 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16079
16080         * object.c object.h class.h: Added experimental typed allocation
16081         facility using the interfaces in gc_gcj.h.
16082
16083         * os/gc_wrapper.h: Added new include files.
16084         
16085 2003-04-03  Martin Baulig  <martin@ximian.com>
16086
16087         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16088         which is not yet enabled by default.
16089
16090         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16091         functions.
16092         (mono_gc_lock, mono_gc_unlock): New static functions.
16093
16094         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16095         functions; stop/start the world for the garbage collector.  This
16096         is using the windows API; we need to complete the SuspendThread()/
16097         ResumeThread() implementation in the io-layer to make this work on Unix.
16098         (mono_gc_push_all_stacks): New public function; tells the garbage
16099         collector about the stack pointers from all managed threads.
16100
16101 2003-04-03  Martin Baulig  <martin@ximian.com>
16102
16103         * object.h (MonoThread): Added `gpointer stack_ptr'.
16104
16105         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16106
16107 2003-04-03  Martin Baulig  <martin@ximian.com>
16108
16109         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16110
16111 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16112
16113         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16114         field.last.
16115
16116 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16117
16118         * loader.c (mono_lookup_internal_call): Report the corlib that is
16119         out of sync.
16120
16121 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16122
16123         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16124         System.DBNull (it's class not valuetype).
16125
16126 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16127
16128         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16129         if the array method was already assigned a token (fixes bug#40646).
16130
16131 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16132
16133         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16134         if no assembly is given.
16135
16136 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16137
16138         * metadata.h: Added the new tables.
16139
16140         * row-indexes.h: Added definitions for new tables.
16141
16142         * metadata.c: Add schemas for new tables, and add support for
16143         computing the sizes of them.
16144
16145         * class.c: Update for handling the new type cases.
16146
16147 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16148
16149         * metadata.h (MONO_TYPE_IS_VOID): new macro
16150
16151 2003-03-31  Martin Baulig  <martin@ximian.com>
16152
16153         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16154
16155         * threads.c (mono_thread_new_init): Call `thread_created' in the
16156         mono_thread_callbacks.
16157
16158 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16159
16160         * loader.h: added marshalbyrefobject_class to mono_defaults
16161         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16162         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16163           generation of output parameters.
16164           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16165         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16166           contextbound and the target object belongs to the context of the caller.
16167         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16168         * object.c: Implemented support for interfaces and abstract classes
16169           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16170           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16171
16172 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16173
16174         * class.h class.c (mono_class_is_subclass_of): New function.
16175         
16176         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16177         routines for most common case (calls from ArrayList::ToArray).
16178
16179         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16180         routine so programs which call Environment::Exit() can be profiled.
16181
16182         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16183         Added MONO_ARCH_SAVE_REGS.
16184
16185         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16186
16187 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16188
16189         * blob.h: Add a couple of new MonoType types definitions.
16190
16191         * tabledefs.h: Add a couple of new call convs.
16192
16193 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16194
16195         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16196         the layout of the class.
16197
16198         * reflection.c (alloc_table): double the size on overflow to avoid
16199         unnecessary copying.
16200
16201         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16202         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16203         null so it can be garbage collected.
16204         
16205 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16206
16207         * reflection.c (mono_reflection_get_type): Return the resolved type
16208         only if it is in the assembly we searched.
16209
16210         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16211
16212         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16213         method.
16214
16215 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16216
16217         * appdomain.c:
16218         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16219         the right one is 'file:///blah', but MS allows it.
16220         * assembly.c:
16221         (mono_assembly_open): allow 'file://blah'
16222
16223         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16224
16225 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16226
16227         * socket-io.c: fixes bug #40310.
16228
16229 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16230
16231         * reflection.c (mono_reflection_parse_type): handle deeply nested
16232         types correctly.
16233
16234         * reflection.c (mono_image_create_token): Use unique token values
16235         since they will be put into a hash table.
16236
16237         * class.c (mono_class_setup_vtable): If a method occurs in more than
16238         one place in the vtable, and it gets overriden, then change the
16239         other occurances too.
16240
16241         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16242         object as return type.
16243
16244 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16245
16246         * icall.c: Deleted "ToString" implementation for double and float
16247         because they are full implemented in managed code.
16248
16249 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16250
16251         * reflection.c, reflection.h: implemented and exported functions
16252         to retrieve info about custom attributes.
16253
16254 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16255
16256         * appdomain.c: moved Uri handling to assembly.c
16257         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16258         work when using a file Uri in *nix and windows.
16259
16260         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16261         GetReferencedAssemblies.
16262
16263 2003-03-18  Dick Porter  <dick@ximian.com>
16264
16265         * icall.c: Rename a couple of internal calls
16266
16267         * threads.c: Set the thread state to Stopped when a thread exits.
16268         Fixes bug 39377.
16269
16270 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16271
16272         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16273         New icall.
16274
16275         * object.c (mono_class_vtable): fix warning.
16276
16277 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16278
16279         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16280
16281         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16282         memory.
16283         (method_encode_clauses): Create exception info structures in the right
16284         order.
16285         (mono_reflection_setup_internal_class): Initialize supertypes field.
16286
16287         * class.c object.c: Handle interfaces which implement other interfaces 
16288         correctly.
16289
16290         * class.h class.c: Move the supertypes array initialization code into 
16291         a separate function so it can be used for dynamic types too. Also call
16292         it earlier, in mono_class_init(), since it can be used before the
16293         type is initialized.
16294
16295 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16296
16297         * Makefile.am:
16298         * assembly.c:
16299         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16300
16301         * appdomain.c:
16302         * appdomain.h:
16303         * marshal.c:
16304         * object.c: remove warnings.
16305
16306 2003-03-13  Martin Baulig  <martin@ximian.com>
16307
16308         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16309         (MonoDebugLexicalBlockEntry): New types.
16310
16311         * debug-mono-symfile.c
16312         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16313
16314 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16315
16316         * process.c: ret can be any non-zero value accroding to MS doc.
16317
16318 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16319
16320         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16321         fixing a warning for a miss-used prototype, would have cause
16322         random memory corruption.
16323
16324 2003-03-07  Martin Baulig  <martin@ximian.com>
16325
16326         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16327         getting really annoying ....
16328
16329 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16330
16331         * reflection.c (fixup_method): added support for array methods.
16332
16333 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16334
16335         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16336         (pointed out by Michael Adams).
16337
16338 2003-03-04  Dick Porter  <dick@ximian.com>
16339
16340         * icall.c: Temporarily reverted the Double and Single ToString()
16341         change, because it broke nunit.
16342
16343 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
16344
16345         * object.h, threads.h: make include files compatible with C++
16346         (patch by Jerome Laban <jlaban@wanadoo.fr>).
16347
16348 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16349
16350         * icall.c: Erased ToString helper functions for Double and Single.
16351         Now, that implementations ar all in managed code (Double and Single
16352         Formatters).
16353
16354 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
16355
16356         * appdomain.c: Added method for initializing the default context of
16357         a domain. Added internal call for getting the default context.
16358         * appdomain.h: Added context variable in MonoDomain struct.
16359         * domain.c: mono_domain_set also sets the default context of the domain
16360         * icall.c: Mapped internal method InternalGetDefaultContext.
16361         * object.c: mono_object_get_virtual_method returns always a remoting
16362         wrapper if the object is a transparent proxy.
16363         mono_runtime_invoke_array: when creating an object by calling the
16364         constructor, if the created object is a proxy, then the constructor should
16365         be called using the a remoting wrapper.
16366
16367 2003-03-03  Dick Porter  <dick@ximian.com>
16368
16369         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
16370         variable so it compiles on solaris.  Problem spotted by
16371         Christopher Taylor <ct@cs.clemson.edu>
16372
16373 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16374
16375         * appdomain.c:
16376         (get_info_from_assembly_name): don't leak value.
16377
16378         * icall.c:
16379         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
16380         result.
16381
16382 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
16383
16384         * assembly.c: export mono_image_load_references ().
16385         * class.c: handle function pointers. mono_class_from_name() now
16386         supports nested type names directly.
16387
16388 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
16389
16390         * reflection.h reflection.c: Encode already created dynamic methods 
16391         and fields correctly as a DEF instead of a REF.
16392
16393         * reflection.c: Get rid of the force_ref argument to 
16394         mono_image_typedef_or_ref since it was wrong in the first place.
16395
16396         * string-icalls.c: add error checking to string constructors according
16397         to the MSDN docs.
16398
16399         * reflection.c: Emit types in the order their TypeBuilders were 
16400         created. Previously, a new table index was assigned to each type before
16401         the tables were emitted. This was wrong because the signature blob
16402         might already refer to a type by its original table index.
16403
16404 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
16405
16406         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
16407         change.
16408         
16409 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16410
16411         * Makefile.am: make assemblies dir have \ instead of / on windows.
16412
16413 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
16414
16415         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
16416         iterate over the NESTEDCLASS table using a linear search since the
16417         table is not guaranteed to be sorted by the secondary key.
16418
16419         * class.c (mono_class_create_from_typedef): fixed up call to
16420         mono_metadata_nesting_typedef.
16421         
16422 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
16423
16424         * marshal.c (mono_string_to_byvalstr): clear the memory as
16425         suggested by Jerome Laban <jlaban@wanadoo.fr>
16426
16427 2003-02-26  Dick Porter  <dick@ximian.com>
16428
16429         * process.c: Cope with padding in .rsrc blocks
16430
16431 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16432
16433         * metadata.h: reverted the filter_len change, it breaks reflection
16434         
16435 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16436
16437         * metadata.h: added a new field to store the filter_len
16438         
16439
16440 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
16441
16442         * reflection.c: handle custom attributes for types and members
16443         created with Reflection.Emit (bug#38422).
16444
16445 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
16446
16447         * reflection.c: define RTSpecialName automatically for constructors for
16448         compatibility with MS.NET.
16449
16450         * reflection.c (mono_reflection_create_runtime_class): initialize
16451         nested_in field of dynamically created classes.
16452
16453 2003-02-22  Martin Baulig  <martin@ximian.com>
16454
16455         * debug-mono-symfile.h: Incremented version number.
16456
16457 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16458
16459         * object.h icall.c process.c: fix warnings.
16460
16461 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16462
16463         * appdomain.h appdomain.c:
16464         (mono_domain_try_type_resolve): split the 
16465         name_or_tb argument into a name and a tb argument.
16466         (mono_domain_has_type_resolve): new function to check whenever the
16467         application has registered a TypeResolve event handler.
16468         
16469         * icall.c reflection.h reflection.c: move the type resolve logic into
16470         mono_reflection_get_type () so it will be invoked when 
16471         Assembly::GetType () is called.
16472
16473         * reflection.c:
16474         (mono_reflection_get_type): renamed to get_type_internal.
16475         (mono_reflection_get_type): fixed type name generation so it works 
16476         for nested types too.
16477         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16478         costly type name generation if there is no resolve event handler.
16479
16480 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16481
16482         * class.c, image.c: load exported types from file references.
16483
16484 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16485
16486         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16487           used to cache the managed methods used to create proxies and make 
16488           remote invocation of methods.
16489         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16490           to be remotely created.
16491         * object.c: Modified the method mono_class_vtable(). It now initializes 
16492           the remote flag of the vtable. Modified mono_object_new_specific(), 
16493           so now it checks the remote flag.
16494         * icall.c: Added a couple of internal methods, one for enabling instance 
16495           creation interception for a type, and one for creating objects bypassing
16496           the remote check.
16497
16498 2003-02-18  Martin Baulig  <martin@ximian.com>
16499
16500         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16501         New interncall to get a method's metadata token.
16502
16503         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16504         New interncall for the debugger.
16505
16506 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16507
16508         * class.c (mono_class_setup_vtable): allocate supertype array
16509
16510 2003-02-18  Martin Baulig  <martin@ximian.com>
16511
16512         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16513
16514 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16515
16516         * reflection.c:
16517         (assembly_name_to_aname): jump over unknown properties (i've found
16518         something like: 'type, assembly, version=xxx, custom=null, public...',
16519         so now will ignore custom=null and still get the rest of the values).
16520
16521 2003-02-17  Dick Porter  <dick@ximian.com>
16522
16523         * threads.c: Have Thread.Start() wait for a semaphore to signal
16524         that the thread has set up all its local data.  This fixes bug
16525         34323, where Abort() raced the new thread's TLS data.
16526
16527         Also removes the handle_store() call from start_wrapper, because
16528         threads are now always created suspended and there is no longer a
16529         race between the parent and child threads to store the info.
16530
16531 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16532
16533         * image.c: explain the #- heap issue in a message, hopefully
16534         avoiding FAQs on mono-list.
16535
16536 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16537
16538         * icall.c:
16539         (GetEntryAssembly): if the domain has not invoked
16540         AppDomain.ExecuteAssembly yet, return the assembly of the default
16541         AppDomain.
16542
16543 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16544
16545         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16546
16547 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16548
16549         * metadata.c, reflection.c: simple speedup to type hash
16550         and equals code.
16551
16552 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16553
16554         * image.c, image.h, class.c, assembly.c: move module loading
16555         to MonoImage. When loading metadata, consider alignemnet from
16556         the start of metadata, not from the metadata address in memory.
16557
16558 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16559
16560         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16561         AssemblyBuilder objects. Factored out custom attribute creation into
16562         a separate function.
16563         (create_custom_attr): new function to create custom attributes.
16564
16565 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16566
16567         * Makefile.am: Got tired of typing the full pathname to pedump.
16568         Until there is another option, am installing this.
16569
16570 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16571
16572         * class.c (class_compute_field_layout): always set field->parent 
16573         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16574
16575 2003-02-11  Dick Porter  <dick@ximian.com>
16576
16577         * threads-types.h:
16578         * monitor.c: Rewrote Monitor, making lock much faster and
16579         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16580         creates them as needed.
16581
16582         * exception.c: Added SynchronizationLockException
16583
16584         * threads.c: Deleted old Monitor implementation.  The new one is
16585         in a new file.
16586
16587 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16588
16589         * class.c: handled TypedReference type code. Set the correct size for
16590         class data. Setup interface_offsets for interface classes, too.
16591
16592 2003-02-09  Martin Baulig  <martin@ximian.com>
16593
16594         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16595
16596 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16597
16598         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16599         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16600         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16601         * verify.c: check for code that runs after the end of the method.
16602
16603 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16604
16605         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16606         "System.Math::Round2".
16607         * sysmath.h: Added Floor, Round and Round2 definitions.
16608         * sysmath.c: Modified certain functions that were not 100% compliant
16609         with MS.NET (math precision) and added the implementation of Floor,
16610         Round and Round2.
16611
16612 2003-02-07  Martin Baulig  <martin@ximian.com>
16613
16614         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16615
16616 2003-02-07  Martin Baulig  <martin@ximian.com>
16617
16618         * debug-mono-symfile.c: Reflected latest symwriter changes.
16619         (mono_debug_create_mono_symbol_file): Removed.
16620         (mono_debug_open_mono_symbol_file): Take an argument which
16621         specifies whether to create a dynamic symbol file.
16622
16623 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16624
16625         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16626
16627 2003-02-05  Martin Baulig  <martin@ximian.com>
16628
16629         * reflection.c (mono_image_build_metadata): Make this public,
16630         protect it against being called multiple times, don't create
16631         resources and don't build the compressed metadata here.
16632         (mono_image_create_pefile): Do this here.
16633
16634         * icall.c
16635         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16636
16637 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16638
16639         * socket-io.c: fixed bug #36322.
16640
16641 2003-02-06  Piers Haken <piersh@friskit.com>
16642
16643         * appdomain.[ch]:
16644         * class.h:
16645         * debug-mono-symfile.c:
16646         * icall.c:
16647         * loader.c:
16648         * mono-config.c:
16649         * monosn.c:
16650         * reflection.c:
16651         * socket-io.c: warning cleanups
16652
16653 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16654
16655         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16656         function. works like remoting invoke, but does a check for the Proxy first.
16657
16658 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16659
16660         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16661
16662 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16663
16664         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16665         array of pointers.
16666         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16667         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16668
16669         * object.c (mono_store_remote_field_new): used by the new jit
16670         instead of mono_store_remote_field
16671         (mono_load_remote_field_new): used by the new jit
16672         instead of mono_load_remote_field
16673
16674 2003-02-05  Patrik Torstensson
16675
16676         * appdomain.c: changed unload to take the domain id instead
16677         of domain
16678         
16679         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16680
16681
16682 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16683
16684         * appdomain.c: don't look for assemblies in ApplicationBase if
16685         PrivateBinPathProbe is set.
16686
16687 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16688
16689         * object.c: make the first argument in main_args contain the absolute
16690         path to the assembly. Fixes bug #37511.
16691
16692 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16693
16694         * icall.c: get correct UTC offset for countries not using daylight
16695         time saving. Fixes bug #30030.
16696
16697 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16698
16699         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16700         and 1 are the family).
16701
16702 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16703
16704         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16705
16706         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16707
16708 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16709
16710         * reflection.c: added support for SignatureHelper tokens, which is
16711         needed by the Calli opcode.
16712
16713         * reflection.h: track changes to SignatureHelper class.
16714
16715         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16716
16717 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16718
16719         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16720
16721 2003-02-03  Patrik Torstensson
16722         * appdomain.[c|h], domain.c : 
16723          - Added support for getting a domain via domain id
16724          - Support for setting and getting domain from System.AppDomain 
16725            (used in cross appdomain channel)
16726          - Added support for get/set for a MonoAppContext on a thread 
16727            (Context class in System.Runtime.Remoting.Contexts),
16728          - Removed hack in Get/SetData and ExecuteAssembly.
16729         
16730         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16731         the managed world to get control when a proxy is created.
16732
16733         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16734         
16735 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16736
16737         * icall.c
16738         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16739         Populate the codebase field as well.
16740
16741 2003-02-02  Martin Baulig  <martin@ximian.com>
16742
16743         * debug-mono-symfile.c
16744         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16745         (mono_debug_symfile_add_method): Allow interncalls.
16746
16747 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16748
16749         * icall.c: throw parse exception if strtod fails or the string is empty.
16750
16751 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16752
16753         * marshal.c: handle object type separately from defined
16754         class types.
16755
16756 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16757
16758         * marshal.c: handle NATIVE_LPSTR for strings when it's
16759         explicitly specified.
16760
16761 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16762
16763         * reflection.c, reflection.h, icall.c: setup the reflection
16764         handle cache for ModuleBuilders and AssemblyBuilders.
16765
16766 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16767
16768         * reflection.c (reflection_methodbuilder_to_mono_method): set
16769         pinvoke flag
16770
16771 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16772
16773         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16774
16775 2003-01-29  Dick Porter  <dick@ximian.com>
16776
16777         * threads.c: No need for the fake_thread kludge now that Thread
16778         doesn't run a class constructor
16779         
16780 2003-01-29  Dick Porter  <dick@ximian.com>
16781
16782         * threads.c: Use g_direct_hash instead of the rather bogus
16783         g_int_hash
16784
16785 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16786
16787         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16788         (fix pinvoke12.exe)
16789         (mono_marshal_get_struct_to_ptr): generate valid IL code
16790         (mono_marshal_get_ptr_to_struct): generate valid IL code
16791         (*): correctly set sig->pinvoke, we need to memdup the signature
16792         to do that
16793
16794 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16795
16796         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16797         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16798
16799 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16800
16801         * profiler.c: provide more callers information.
16802
16803 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16804
16805         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16806
16807         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16808
16809         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16810
16811 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16812
16813         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16814         exception instead of going into an infinite loop on dates which it 
16815         can't yet handle.
16816
16817         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16818         out-of-range exception if needed.
16819
16820         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16821         an implementation for an interface method and to override an inherited
16822         method at the same time. 
16823         Imagine a scenario when a virtual method is used to override a
16824         virtual abstract method in a parent class, and this same method 
16825         provides an implementation for an method inherited from an interface. 
16826         In this case, the interface resolution code will set im->slot, which 
16827         means that the virtual method override pass will skip this method 
16828         which means a pointer to the abstract method inherited from the parent
16829         will remain in the vtable of this non-abstract class.
16830
16831         * class.c: (mono_class_setup_vtable): continue search for a real 
16832         method if only an abstract method is found.     
16833
16834 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16835
16836         * reflection.c: add size to encoding for ByValStr and ByValArray
16837         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16838
16839 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16840
16841         * class.c (mono_class_setup_vtable): pass the override info as an
16842         argument.
16843
16844         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16845         correctly.
16846         
16847         * reflection.c (ensure_runtime_vtable); add support for method 
16848         overrides.
16849         
16850 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16851
16852         * reflection.c (resolution_scope_from_image): Hack to work to work with
16853         dynamic assemblies.
16854
16855         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16856         added a 'force_ref' argument to force this function to allways return 
16857         a TypeRef. This is needed by mono_image_get_memberref_token ().
16858         
16859 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16860
16861         * reflection.c (mono_image_get_type_info): interfaces really don't have
16862         a parent.
16863
16864         * reflection.c (mono_image_basic_init): fill out missing fields of
16865         image structure.
16866
16867         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16868         dynamic assemblies. This is required so dynamic assemblies show up in
16869         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16870         Type::GetType() etc. This is consistent with MS behaviour.
16871
16872         * image.c image.h reflection.c: add newly created classes to the name 
16873         cache so mono_class_get () will find them.      
16874
16875 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16876
16877         First part of changes to get IKVM.NET running under mono.
16878         
16879         * appdomain.h, appdomain.c: added new function 
16880         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16881         This function will call AppDomain::DoTypeResolve to do the actual work.
16882
16883         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16884         moved existing code dealing with dynamic tokens to a new function 
16885         called mono_reflection_lookup_dynamic_token (). This function will 
16886         raise TypeResolve events when appropriate. Since reflection.c is not 
16887         part of libmetadata, a new hook function called 
16888         mono_lookup_dynamic_token() is added to class.c which will call this.
16889
16890         * assembly.h assembly.c: make the invoke_load_hook function public,
16891         so it can be called for dynamic assemblies.
16892
16893         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16894
16895         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16896         type isn't found.
16897
16898         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16899         MonoGHashTable, since it contains pointers to objects which the GC 
16900         needs to track.
16901
16902         * assembly.c (search_loaded): remove unused variable.
16903         
16904 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16905
16906         * object.c: fixed issue exposed by gcc-generated IL programs
16907         that use RVA data for pointers.
16908
16909 2003-01-25  Martin Baulig  <martin@ximian.com>
16910
16911         * threads.c (start_wrapper): Moved the initialization of
16912         `start_func' above the mono_new_thread_init() call to which we
16913         pass it as argument.
16914
16915 2003-01-24  Martin Baulig  <martin@ximian.com>
16916
16917         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16918         the MonoThread pointer.
16919
16920 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16921
16922         * icall.c: Rename `PowImpl' to Pow.
16923
16924 2003-01-23  Dick Porter  <dick@ximian.com>
16925
16926         * threads.c (start_wrapper): Create a Thread object if needed, so
16927         the Main() thread can do the class initialisation in a subthread
16928         that has been set up to allow managed code execution.
16929
16930         Pass the thread ID instead of the MonoThread pointer to the thread
16931         start and attach callbacks.  This change is required, because the
16932         jit thread start callback must be called _before_ the Thread
16933         object can be created.
16934         
16935         (mono_thread_init): Removed much object creation code that is no
16936         longer needed.  No managed code is called from here now.
16937
16938         * object.c (mono_runtime_exec_managed_code): Create a subthread
16939         for Main, and call back to the runtime to use it.
16940         Set the exit code when Main exits.
16941
16942         * gc.c: Make sure domain finalisation happens in a subthread.
16943         Re-enable threaded GC, fixing bug 31333 (again).
16944
16945         * environment.c: System.Environment internall calls (so far just
16946         ExitCode is here, the others are still in icall.c)
16947
16948         * appdomain.c (mono_runtime_cleanup): All threads running managed
16949         code should have finished before mono_runtime_cleanup() is
16950         reached, so no need to clean up threads.
16951
16952 2003-01-22  Martin Baulig  <martin@ximian.com>
16953
16954         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16955         `gpointer func' arguments.      
16956         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16957         but added `MonoThread *thread' argument.
16958         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16959
16960         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16961         and pass it to the mono_thread_start_cb callback.
16962         (mono_install_thread_callbacks): New public function to install a
16963         set of callbacks which are set by the debugger.
16964         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16965
16966 2003-01-22  Martin Baulig  <martin@ximian.com>
16967
16968         * Makefile.am: Install debug-mono-symfile.h.
16969
16970 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16971
16972         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16973
16974 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
16975
16976         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
16977         * class.c (mono_ptr_class_get): correctly set access levels of pointers
16978         (mono_array_class_get): correctly set access levels of arrays
16979
16980 2003-01-20      Patrik Torstensson
16981         * image.h (MonoAssemblyName): changed major, minor, build, revision
16982         from signed to unsigned.
16983
16984 2003-01-20  sean kasun <skasun@azstarnet.com>
16985
16986         * reflection.c (load_cattr_value): Now this handles
16987         MONO_TYPE_SZARRAY.  Fixes bug #35629
16988
16989 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
16990
16991         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
16992         integer value
16993
16994 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16995
16996         * decimal.c: fixed bug #26056.
16997
16998 2003-01-17  Martin Baulig  <martin@ximian.com>
16999
17000         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17001
17002 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17003
17004         * exception.[ch]:
17005         (mono_get_exception_type_initialization): new function.
17006
17007         * object.c: throw a TypeInitializationException when an exception is
17008         thrown invoking the class constructor.
17009
17010 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17011
17012         * reflection.c: fixed attribute reading.
17013
17014 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17015
17016         * icall.c:
17017         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17018         provided, look for the type in the calling assembly and then in
17019         mscorlib; if the assembly name is provided, only try that one.
17020
17021 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17022
17023         * object.c: register the vtable before there is a chance it's
17024         queried again recursively.
17025
17026 2003-01-13  Duncan Mak  <duncan@ximian.com>
17027
17028         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17029         gc-internal.h. 
17030         
17031 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17032
17033         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17034
17035 2003-01-11  Martin Baulig  <martin@ximian.com>
17036
17037         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17038         this to 20 for the release.
17039
17040 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17041
17042         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17043
17044         * loader.c (mono_method_get_marshal_info): bug fix
17045
17046         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17047         structures with explicit layout
17048
17049 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17050
17051         * profiler.c: made the output more readable (and sorted). 
17052         Added caller information for the allocation profiler.
17053
17054 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17055
17056         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17057
17058 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17059
17060         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17061         to get value types.
17062         
17063 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17064
17065         * object.c, profiler.h, profiler.c, profiler-private.h:
17066         Added object allocation profiler.
17067
17068 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17069
17070         * reflection.h, reflection.c: handle global methods.
17071         Compress blob entries.
17072
17073 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17074
17075         * marshal.c: fix compilation.
17076
17077 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17078
17079         * loader.c (mono_method_get_marshal_info): impl.
17080
17081         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17082
17083 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17084
17085         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17086         for reference types.
17087
17088 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17089
17090         * loader.c: fixed off by one error in loaded parameter names.
17091
17092 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17093
17094         * marshal.c (mono_marshal_get_icall_wrapper): like
17095         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17096         instead of a MonoMethod.
17097
17098 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17099
17100         * decimal.c: fixed bug #36537.
17101
17102 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17103
17104         * marshal.c: throw a missing method exception if a
17105         P/Invoke method is not found.
17106
17107 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17108
17109         * icall.c: allow a null this for constructors.
17110
17111 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17112
17113         * icall.c: raise the proper exceptions if the arguments to the
17114         internal Invoke are incorrect.
17115
17116 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17117
17118         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17119
17120 2003-01-03  Martin Baulig  <martin@ximian.com>
17121
17122         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17123
17124 2002-12-31  Martin Baulig  <martin@ximian.com>
17125
17126         * debug-mono-symfile.c: Completely rewrote the type section.
17127         Instead of using individual malloc()ed fields, we use one big
17128         continuous memory area and offsets into this area.
17129         See the comments in the source code for details.
17130
17131 2002-12-30  Martin Baulig  <martin@ximian.com>
17132
17133         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17134
17135 2002-12-30  Martin Baulig  <martin@ximian.com>
17136
17137         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17138         line number table in this data blob instead of using an external
17139         pointer.
17140
17141 2002-12-28  Martin Baulig  <martin@ximian.com>
17142
17143         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17144
17145 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17146
17147         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17148         as a boxed return type.
17149
17150 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17151
17152         * appdomain.c
17153         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17154         g_build_filename to properly get separators on the filename created.
17155
17156         * object.h: Small change, introduce MonoMarshalByRefObject to
17157         track the layout of that structure in the C# universe as we make
17158         changes there.
17159
17160 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17161
17162         * object.c: removed assert to allow static fields on interfaces.
17163         * loader.c: a TypeSpec may be used for any type, not just arrays.
17164
17165 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17166
17167         * class.c, class.h: added mono_class_array_element_size ().
17168         Ignore static methods in interfaces.
17169
17170 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17171
17172         * threads.c: fixed the build under cygwin.
17173
17174 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17175
17176         * reflection.c: handle nullref constants. Allocate keys for
17177         reflection handles with the GC.
17178
17179 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17180
17181         * threads.c, threads.h: added mono_thread_get_abort_signal()
17182         to get a suitable signal for thread abort.
17183
17184 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17185
17186         * metadata.c: fix handling of ExportedType table.
17187
17188 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17189
17190         * icall.c: added WriteWindowsDebugString internal call.
17191
17192 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17193
17194         * reflection.h: added fields to match C# implementation.
17195
17196 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17197
17198         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17199
17200 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17201
17202         * gc.h, gc-internal.h: Rename header for GC internal calls to
17203         gc-internal.h from gc.h as to not clash with Boehm GC having its
17204         header installed as <gc.h> in outside include paths.
17205         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17206         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17207
17208 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17209
17210         * icall.c: assign minor, build and revision in FillName.
17211
17212 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17213
17214         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17215         Added support for running code generated by Reflection.Emit.
17216
17217 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17218
17219         * appdomain.c: check for NULL argument in LoadFrom.
17220
17221 2002-12-10  Dick Porter  <dick@ximian.com>
17222
17223         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17224
17225 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17226
17227         * appdomain.c: fix buglet when building exe file name.  Handle full
17228         assembly name (needed after latest changes to AssemblyName).
17229         * image.c:
17230         (mono_image_close): free some hashtables.
17231
17232 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17233
17234         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17235         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17236         on some systems (redhat 7.3) 
17237
17238 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17239
17240         * threads.c: delete the critical section of a sync block,
17241         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17242
17243 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17244
17245         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17246
17247 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17248
17249         * appdomain.[ch]: handle the assembly preload event to try loading the
17250         assemblies using the paths we have in the current domain.
17251
17252         * assembly.[ch]: created an assembly preload hook that is called to try
17253         loading the assembly by other means that the ones provided here.
17254
17255         * domain.c: initialize the domain search path.
17256
17257         From now on, assemblies (TODO: except corlib and System) are loaded
17258         according to these rules when using mono_assembly_load ():
17259
17260                 1. It tries to load the assembly from the ApplicationBase
17261                 of the current domain appending .dll and .exe (TODO: have to
17262                 try loading from name/name.dll and name/name.exe).
17263
17264                 2. It tries the search path specified in PrivateBinPath for the
17265                 current domain (if any).
17266
17267                 3. Previous behavior.
17268
17269 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17270
17271         * icall.c: implemented GetInterfaceMap() related icall.
17272         * domain.c, loader.h: load MethodInfo in mono_defaults.
17273
17274 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17275
17276         * gc.c: disable the finalizer thread for now, untill all the issues
17277         with it are resolved.
17278
17279 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17280
17281         * string-icalls.c: handle embedded nulls in string ctor when the
17282         length is specified.
17283
17284 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17285
17286         * class.c: look for explicit interface implementation in parent
17287         classes, too.
17288
17289 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17290
17291         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17292
17293 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17294
17295         * gc.c: protect handles with a critical section.
17296
17297 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17298
17299         * icall.c:
17300         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17301         parameters. If no assembly specified, try getting the type from all
17302         the assemblies in the current domain, else, load the assembly and get
17303         the type from it.
17304
17305 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17306
17307         * marshal.c: applied patch from Aleksey Demakov that fixes
17308         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17309
17310 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17311
17312         * icall.c: fixed get_location.
17313
17314 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17315
17316         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17317         declarations to make it work with older gcc. 
17318
17319         * loader.c (mono_get_method): set signature->pinvoke for native calls
17320
17321 2002-11-20  Dick Porter  <dick@ximian.com>
17322
17323         * threads.c (mono_thread_init): Set the main thread's handle
17324
17325 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17326
17327         * gc.c: allow compilation without GC support. Changed to match the
17328         mono coding style.
17329
17330 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17331
17332         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17333
17334 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17335
17336         * reflection.c: set a public key token on the core assemblies.
17337
17338 2002-11-18  Dick Porter  <dick@ximian.com>
17339
17340         * threads.c: Split out some thread initialisation so that other
17341         files can set the start callback function.
17342
17343         * gc.c: Run finalisers in a separate thread, to avoid stack
17344         overflow.  Fixes bug 31333.
17345
17346         * appdomain.c: Set up GC finalisation thread.
17347
17348         * reflection.c: 
17349         * object.c: 
17350         * domain.c: Use gc.h macros for GC_malloc
17351         
17352 2002-11-15  Dick Porter  <dick@ximian.com>
17353
17354         * threadpool.c: 
17355         * threads.c:
17356         * appdomain.c: Removed mono_runtime_init_with_attach(),
17357         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
17358         merging the extra parameter with the existing function.  Removed
17359         unneeded code in mono_thread_attach().
17360
17361 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
17362
17363         * image.c (mono_image_loaded_by_guid): a method to get loaded
17364         images by guid. 
17365         (load_metadata_ptrs): we store the guid as string.
17366
17367 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
17368
17369         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
17370
17371         * metadata.c (mono_guid_to_string): imported method form Zoltan
17372         Varga (slightly modified)
17373
17374         * assembly.c (mono_assembly_open): load precompiled code
17375
17376         * loader.h (MonoMethod): we store the method token for use in the
17377         aot compiler. 
17378
17379 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17380
17381         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
17382         the hook function called when an assembly is loaded.
17383         
17384         * domain.c: Modified file.
17385         (mono_domain_assembly_load): removed hash table insertion of assemblies.
17386
17387         Fixes bug #33196.
17388
17389 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
17390
17391         * reflection.c: Map PEFileKind to the value expected by the WinNT
17392         image loader. 
17393
17394 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17395
17396         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
17397         Read until the buffer is filled completely.
17398
17399 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17400
17401         * icall.c: implemented MonoType.InternalGetEvent ().
17402
17403 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17404
17405         * appdomain.c: implemented InitAppDomainSetup. Delayed
17406         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
17407         the entry_assembly.
17408
17409         * assembly.c: base_dir is now an absolute path ending with
17410         G_DIR_SEPARATOR.
17411
17412         * icall.c: modified get_location according to the above changes.
17413
17414         * object.c: init AppDomain.SetupInformation for the default domain after
17415         we have the entry assembly.
17416
17417         * domain.c: when unloading a domain, setup = NULL.
17418
17419 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
17420
17421         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
17422
17423 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
17424
17425         * object.h, object.c: introduced mono_object_get_virtual_method ()
17426         to lookup the method invoked on an object when a callvirt is done on
17427         a method.
17428         * icall.c: make MethodInfo::Invoke() always do a virtual call.
17429
17430 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17431
17432         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
17433         current domain when loaded an assembly and failed to load it.
17434
17435         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
17436
17437 2002-10-31  Dick Porter  <dick@ximian.com>
17438
17439         * icall.c: 
17440         * file-io.h: 
17441         * file-io.c: Return the error status in a parameter, as the
17442         GetLastError() value has long since been blown away if we try and
17443         look it up in a subsequent internal call invocation.  Delete the
17444         GetLastError() internal call, because it's useless.
17445
17446 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
17447
17448         * class.[ch]: added cast_class to fix bug 29517
17449
17450 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
17451
17452         * marshal.c: create valid IL code in the filter clause:
17453         the new JIT is less forgiving:-)
17454
17455 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17456
17457         * icall.c: removed get_property internal call.
17458
17459 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
17460
17461         * appdomain.h domain.c: Added an ID to appdomains.
17462         
17463         * threads.c threads.h icall.c: Implement icall
17464         Thread:GetDomainID(), and remove unused icall 
17465         CurrentThreadDomain_internal.
17466
17467 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17468
17469         * icall.c: Don't recurse through the base types in GetConstructor.
17470         Fixes bug #32063. 
17471
17472 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17473
17474         * mempool.h, mempool.c: added mono_mempool_empty() and
17475         mono_mempool_stats().
17476
17477 2002-10-23  Dick Porter  <dick@ximian.com>
17478
17479         * file-io.c: 
17480         * file-io.h: 
17481         * icall.c: Added MonoIO.GetFileType internal call
17482
17483 2002-10-17  Dick Porter  <dick@ximian.com>
17484
17485         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17486         delegate semaphore before waiting for all threads to finish,
17487         because new threads can also call async delegates.  Fixes bug
17488         32004.
17489
17490         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17491         of 3 seconds, in case another async job is queued.  (This part is
17492         needed because the bug fix reintroduced the 3s exit lag.)  This
17493         makes the mono_runtime_shutdown flag superfluous.
17494
17495 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17496
17497         * reflection.c: include ehader size in method section headers.
17498         Really check for suplicated modules entries.
17499
17500 2002-10-17  Martin Baulig  <martin@gnome.org>
17501
17502         * debug-mono-symfile.c: Added back support for locals.
17503
17504 2002-10-14  Martin Baulig  <martin@gnome.org>
17505
17506         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17507         MONO_TYPE_VOID.
17508
17509 2002-10-14  Martin Baulig  <martin@gnome.org>
17510
17511         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17512         mono_class_get() instead of looking in the class cache. 
17513
17514 2002-10-13  Martin Baulig  <martin@gnome.org>
17515
17516         * debug-mono-symfile.c: Set version number to 28, include the
17517         signature in method names.
17518
17519 2002-10-13  Martin Baulig  <martin@gnome.org>
17520
17521         * debug-mono-symfile.h: Set version number to 27.
17522
17523 2002-10-11  Martin Baulig  <martin@gnome.org>
17524
17525         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17526
17527 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17528
17529         * metadata.c, metadata.h: added helper function to allocate signatures.
17530
17531 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17532
17533         * icall.c: added internal call to get the location of machine.config.
17534
17535 2002-10-08  Martin Baulig  <martin@gnome.org>
17536
17537         * debug-mono-symfile.c: Ignore classes with a pending init for the
17538         moment.
17539
17540 2002-10-03  Dick Porter  <dick@ximian.com>
17541
17542         * threads.c: Freebsd pthread_t is a pointer
17543
17544 2002-10-03  Dick Porter  <dick@ximian.com>
17545
17546         * socket-io.c: Implemented GetHostName_internal
17547
17548 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17549
17550         * mono-config.c:
17551         (mono_config_parse_file): don't leak the text.
17552
17553 2002-10-02  Martin Baulig  <martin@gnome.org>
17554
17555         * debug-mono-symfile.c: Added support for methods.
17556
17557 2002-10-01  Martin Baulig  <martin@gnome.org>
17558
17559         * debug-mono-symfile.c: Don't emit methods and line numbers for
17560         the dynamic symbol file, just write the type table.  We can easily
17561         have an external helper program which creates a symbol file for an
17562         IL file.        
17563
17564 2002-10-01  Dick Porter  <dick@ximian.com>
17565
17566         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17567         Only add the handle to the cleanup array when we're about to
17568         launch the thread.  Bug 31425 deadlocked when the test was run on
17569         mono under w32.
17570
17571 2002-10-01  Martin Baulig  <martin@gnome.org>
17572
17573         * debug-mono-symfile.c: Added support for properties.
17574
17575 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17576
17577         * reflection.c: unaligned store fix from Mark Crichton
17578         <crichton@gimp.org>.
17579
17580 2002-09-27  Martin Baulig  <martin@gnome.org>
17581
17582         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17583         New interncall.
17584
17585 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17586
17587         * assembly.h, assembly.c: use a sane API to hook into the assembly
17588         loading process instead of a useless special-purpouse hack
17589         (ngen needs a hook, too, for example).
17590
17591 2002-09-27  Dick Porter  <dick@ximian.com>
17592
17593         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17594         io-layer can set up some process handle info.  Not needed on w32,
17595         but doesn't hurt either.
17596
17597         * process.c: Pass the program name in the second parameter to
17598         CreateProcess, so the path is searched.  Include the working
17599         directory. Implemented process name, process enumeration, and some
17600         process detail internal calls.
17601         
17602         * icall.c: Added internal calls for process lookup, and some
17603         process details
17604
17605 2002-09-26  Martin Baulig  <martin@gnome.org>
17606
17607         * assembly.c (mono_install_open_assembly_hook): New global
17608         function to install a function to be invoked each time a new
17609         assembly is loaded.
17610         (mono_assembly_open): Run this callback function if set.
17611
17612         * debug-mono-symfile.c: Put back line numbers for the dynamic
17613         symbol file and also record the .il file as source file.  This
17614         allows us to install the temporary symbol file as `file.dbg' just
17615         like a compiler-generated one.
17616
17617 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17618
17619         * Corrected typo in gc.c (BOHEM vs BOEHM).
17620
17621 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17622
17623         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17624         GetProperties. Also avoid calling g_slist_length in GetProperties and
17625         GetMethods.
17626
17627 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17628
17629         * reflection.c: avoid unaligned stores (bug spotted by
17630         Mark Crichton  <crichton@gimp.org>).
17631
17632 2002-09-25  Martin Baulig  <martin@gnome.org>
17633
17634         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17635         instead of guint64 for addresses and added prologue/epilogue info.
17636
17637 2002-09-25  Martin Baulig  <martin@gnome.org>
17638
17639         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17640         store line number info.  For the dynamic symbol file, we only need
17641         to provide the JIT generated dynamic line number info for the dynamic
17642         symbol file.
17643
17644 2002-09-25  Martin Baulig  <martin@gnome.org>
17645
17646         * debug-mono-symfile.h: Incremented version number.
17647
17648 2002-09-24  Martin Baulig  <martin@gnome.org>
17649
17650         * class.c (mono_debugger_class_init_func): New global function
17651         pointer variable.
17652         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17653         call it.
17654
17655         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17656         function.  This is called via the mono_debugger_class_init_func
17657         hook to add all types to the dynamic type table.
17658         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17659         from its metadata token.
17660
17661         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17662         New interncall for the debugger.
17663
17664 2002-09-24  Nick Drochak <ndrochak@gol.com>
17665
17666         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17667         before using it in case it is null.
17668         
17669 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17670
17671         * metadata.c: allow custom modifiers in local var signatures
17672         (bug spotted by Zoltan Varga).
17673
17674 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17675
17676         * class.c: deal with the <Module> class that may have a NULL vtable.
17677         Eliminate warnings.
17678
17679 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17680
17681         * image.c, image.h: more strong name helpers.
17682         * monosn.c: more work: convert pem keys to cryptoapi format.
17683
17684 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17685
17686         * string-icalls.c: speedup IndexOf.
17687
17688 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17689
17690         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17691
17692 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17693
17694         * icall.c: cleanup: use mono_object_domain ().
17695
17696 2002-09-23  Martin Baulig  <martin@gnome.org>
17697
17698         * debug-mono-symfile.c: Improved type support.
17699
17700 2002-09-22  Martin Baulig  <martin@gnome.org>
17701
17702         * debug-mono-symfile.c: Added support for reference types and strings.
17703
17704 2002-09-22  Martin Baulig  <martin@gnome.org>
17705
17706         * debug-mono-symfile.c: Started to work on the type table.
17707
17708 2002-09-21  Martin Baulig  <martin@gnome.org>
17709
17710         * debug-mono-symfile.c: Largely reworked the symbol table format.
17711         The symbol table is now incrementally updated each time a new
17712         method is added.  We're now also using our own magic and version
17713         so that you don't need to recompile all your classes if the
17714         dynamic table changes.
17715         (mono_debug_update_mono_symbol_file): Removed.
17716         (mono_debug_symfile_add_method): New function to add a method.
17717
17718 2002-09-21  Martin Baulig  <martin@gnome.org>
17719
17720         * icall.c
17721         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17722         New interncall.
17723
17724         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17725         New interncall to get a method from its metadata token.
17726
17727 2002-09-21  Martin Baulig  <martin@gnome.org>
17728
17729         * debug-mono-symfile.c: Create type table.
17730
17731 2002-09-20  Martin Baulig  <martin@gnome.org>
17732
17733         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17734
17735 2002-09-20  Martin Baulig  <martin@gnome.org>
17736
17737         * debug-mono-symfile.c: Provide information about params and locals.
17738
17739 2002-09-20  Martin Baulig  <martin@gnome.org>
17740
17741         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17742         New interncall.
17743
17744         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17745         interncall to get a method from its metadata token.
17746
17747 2002-09-20  Martin Baulig  <martin@gnome.org>
17748
17749         * debug-mono-symfile.c: Added a few checks for method->header
17750         being non-NULL.  This should never happen, but for the moment
17751         let's use a g_warning() rather than a g_assert().
17752
17753 2002-09-19  Mark Crichton  <crichton@gimp.org>
17754
17755         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17756         even if support for it isn't present.  Added an #ifdef to fix this.
17757
17758         * socket-io.c: Added checks back for Solaris support.
17759
17760 2002-09-19  Martin Baulig  <martin@gnome.org>
17761
17762         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17763         changes in the symbol file format.
17764
17765 2002-09-18  Martin Baulig  <martin@gnome.org>
17766
17767         * debug-mono-symfile.c: Set version number to 21.
17768
17769 2002-09-18  Dick Porter  <dick@ximian.com>
17770
17771         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17772         on netbsd.  Fixes bug 30051.
17773
17774 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17775
17776         * reflection.c:
17777         (set_version_from_string): little fix.
17778
17779 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17780
17781         * monosn.c, Makefile.am: added strong name utility.
17782         * reflection.h, reflection.c: implemented delayed signing,
17783         locale, version and hash id assembly attributes.
17784
17785 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17786
17787         * loader.c, metadata.c: load param attributes in signatures.
17788
17789 2002-09-16  Martin Baulig  <martin@gnome.org>
17790
17791         * debug-mono-symfile.c: Added string table with all method names.
17792
17793 2002-09-14  Martin Baulig  <martin@gnome.org>
17794
17795         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17796         fast method lookup.
17797
17798 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17799
17800         * reflection.c: record the public key token of referenced assemblies.
17801
17802 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17803
17804         * image.c, image.h: added functions to get the strong name and the
17805         public key of an assembly.
17806         * pedump.c: use them.
17807
17808 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17809
17810         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17811
17812 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17813
17814         * marshal.c (mono_marshal_get_managed_wrapper): Added
17815         MONO_TYPE_BOOLEAN 
17816
17817 2002-09-11  Martin Baulig  <martin@gnome.org>
17818
17819         * gc.c: Call GC_unregister_disappearing_link() on all links when
17820         finalizing them, this is necessary to aviod a crash in boehm's
17821         finalize handler.
17822
17823 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17826         nick@chemlab.org.
17827
17828 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17829
17830         * icall.c: implemented MonoType::Module.
17831         * reflection.c, reflection.h: mono_module_get_object () from
17832         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17833
17834 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17835
17836         * icall.c: ignore overridden methods in GetMethods ().
17837         Fix for FieldInfo::SetValue().
17838         * object.c: handle float/double in runtime invoke.
17839
17840 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17841
17842         * object.c: allow a constructor to be called again on an object.
17843
17844 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17845
17846         * class.h, class.c: move field layout code to it's own function and
17847         export it. Get an interface id earlier. Move fields in MonoClass
17848         so they are more cache friendly and align the bitfields.
17849         * loader.c: temporary handle get_param_names() for a runtime method.
17850         * reflection.c, reflection.h: more code to handle runtime creation of
17851         types.
17852
17853 2002-09-09  Martin Baulig  <martin@gnome.org>
17854
17855         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17856         signature with the pinvoke field being set for the actual call.
17857
17858 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17859
17860         * icall.c: removed some unused icalls. Start of map of glib charsets
17861         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17862
17863 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17864
17865         * debug-helpers.c: break infinite loop (found and fixed by
17866         Holger Arnold <harnold@gmx.de>).
17867
17868 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17869
17870         * icall.c: target may be null in create_delegate.
17871
17872 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17873
17874         * marshal.c: handle a boolean return type.
17875
17876 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17877
17878         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17879
17880 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17881
17882         * gc.c: fix weakreferences.
17883
17884 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17885
17886         * icall.c: added icall to get default codepage.
17887
17888 2002-09-03  Dick Porter  <dick@ximian.com>
17889
17890         * threads.h: 
17891         * threads.c: Use MonoThread instead of MonoObject where
17892         apropriate.
17893
17894         Store running thread objects in a hash table, so that we have all
17895         the info to hand when waiting for them to finish
17896         (means we don't need OpenThread() any more, so mingw builds should
17897         be fully functional again.)
17898
17899         * verify.c:
17900         * object.h: Added thread ID to MonoThread
17901
17902 2002-09-03  Martin Baulig  <martin@gnome.org>
17903
17904         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17905
17906 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17907
17908         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17909
17910 2002-09-03  Martin Baulig  <martin@gnome.org>
17911
17912         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17913         argument to store the end address of the disassembled instruction.
17914
17915         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17916         here from debug-symfile.h.
17917         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17918         JIT into this struct.
17919         (MonoSymbolFile): Added `char *image_file' field.
17920         (MonoDebugGetMethodFunc): Removed.
17921         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17922         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17923         (mono_debug_find_method): New method.
17924
17925         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17926         create a full symbol file.
17927         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17928         and static symbol files.
17929         (mono_debug_find_method): The symbol file keeps an internal method hash,
17930         call this to get a MonoDebugMethodInfo from a MonoMethod.
17931
17932         * debug-symfile.[ch]: Removed.
17933
17934 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17935
17936         * image.c (do_mono_image_open): Remove linker version check.
17937
17938 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17939
17940         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17941         wrappers for instance methods.
17942         
17943 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17944
17945         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17946
17947 2002-08-28  Dick Porter  <dick@ximian.com>
17948
17949         * Makefile.am: Export HOST_CC for w32 builds
17950
17951 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17952
17953         * file-io.c process.c: MonoString are null terminated, no
17954         need for mono_string_to_utf16() anymore.
17955
17956 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17957
17958         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17959
17960 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17961
17962         * icall.c, reflection.h: speedup System.MonoType.
17963
17964 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17965
17966         * reflection.c: allow null as the value of a string argument in
17967         custom attributes constructors.
17968
17969 2002-08-27  Martin Baulig  <martin@gnome.org>
17970
17971         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17972         `trampoline_address' field.
17973
17974 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
17975
17976         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
17977         check (fixes bug #29486) 
17978
17979 2002-08-27  Martin Baulig  <martin@gnome.org>
17980
17981         * debug-mono-symfile.c: Changed the file format in a way that allows us
17982         open it read-only and to use a specially malloced area for all the
17983         dynamic data.  We can now also generate a symbol file on-the-fly if we're
17984         debugging IL code and there is no MCS generated symbol file for it.
17985
17986 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17987
17988         * object.c: added a define for a good string and array
17989         creation speedup (not enabled by default because we need to deal with
17990         the synch stuff).
17991
17992 2002-08-26  Martin Baulig  <martin@gnome.org>
17993
17994         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
17995         function to create a dynamic symbol file.  This is used by the
17996         debugger to create a symbol file for IL code on-the-fly.
17997
17998 2002-08-26  Martin Baulig  <martin@gnome.org>
17999
18000         * loader.c (mono_lookup_pinvoke_call): Include the error message
18001         from g_module_error() in the error message.
18002
18003 2002-08-24  Martin Baulig  <martin@gnome.org>
18004
18005         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18006         function to update the symbol file.  The symbol file is mmap()ed
18007         writable, but private.  This allows us to install the symbol file
18008         together with the assembly.
18009
18010 2002-08-24  Martin Baulig  <martin@gnome.org>
18011
18012         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18013         but they can read the new symbol file format which mcs is now creating.
18014
18015         * debug-symfile.c (mono_debug_find_source_location): Moved to
18016         debug-mono-symfile.c; this is now operating on the new symbol file.
18017
18018 2002-08-23  Martin Baulig  <martin@gnome.org>
18019
18020         * debug-helpers.c (mono_method_desc_from_method): New function to get
18021         a MonoMethodDesc from a MonoMethod.
18022
18023 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18024
18025         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18026         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18027
18028 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18029
18030         * string-icalls.[ch]: make helper methods static.
18031
18032 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18033
18034         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18035         types to it and to SetValueInternal.
18036
18037         * object.c: Moved handle_enum label to its proper place. This was the
18038         f... bug! ;-)
18039
18040         This time i compiled mcs and gtk-sharp and they both work.
18041
18042 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18043
18044         * icall.c: reverted partially my previous patch until 
18045         object.c:set_value handles enums correcly.
18046
18047 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18048
18049         * icall.c:
18050         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18051         (ves_icall_System_Environment_get_MachineName): removed warning when
18052         compiling under cygwin.
18053
18054 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18055
18056         * object.c: fixed field_get_value() for reference types.
18057
18058 2002-08-22  Dick Porter  <dick@ximian.com>
18059
18060         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18061         Don't free a buffer while it's still needed.  Patch from Jonathan
18062         Liger <Jonathan.liger@wanadoo.fr>
18063
18064 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18065
18066         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18067         internal call.
18068
18069 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18070
18071         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18072         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18073
18074         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18075         we call unmanaged code which throws exceptions.
18076
18077 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18078
18079         * appdomain.h: added per-domain entry_assembly.
18080         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18081         arguments.
18082         * icall.c: Assembly::GetEntryAssembly icall.
18083         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18084         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18085
18086 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18087
18088         * appdomain.h, gc.c: added mono_domain_finalize ().
18089
18090 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18091
18092         * object.c:
18093         (mono_print_unhandled_exception): changed g_warning by g_printerr
18094         because g_log has a 1024 characters limit (yeah, i got a big stack
18095         trace). Don't print exception name, that should be in ToString 
18096         returned string.
18097
18098 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18099
18100         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18101         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18102
18103 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18104
18105         * object.c:
18106         (mono_print_unhandled_exception): after previous commit, i realized
18107         that MS calls ToString on the exception. I changed this function to
18108         do that. This way we get stack_trace for free.
18109
18110 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18111
18112         * object.c:
18113         (mono_print_unhandled_exception): invoke Message property instead of
18114         getting 'message' field from Exception. Don't allocate memory for
18115         'trace' and 'message' if not needed.
18116
18117 2002-08-18  Dick Porter  <dick@ximian.com>
18118
18119         * unicode.c: Fix asserts to match Encoder.cs checks
18120
18121 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18122
18123         * marshal.c: fix unaligned store issue and a few wrong
18124         opcode argument types.
18125
18126 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18127
18128         * icall.c: added GetUninitializedObjectInternal internal call.
18129
18130 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18131
18132         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18133         to the right domain.
18134
18135 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18136
18137         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18138
18139         * class.c (class_compute_field_layout): set blittable to false for Strings
18140
18141         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18142
18143 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18144
18145         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18146         first chunk of code to create types at runtime. Code to
18147         handle ReflectedType/DeclaringType. Make reflection handles
18148         domain specific.
18149
18150 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18151
18152         * class.c: set correct name in arrays.
18153
18154 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18155
18156         * appdomain.c (mono_domain_transfer_object): make it work with
18157         valuetypes. bug fixes.
18158
18159 2002-08-12  Dick Porter  <dick@ximian.com>
18160
18161         * object.h: Rename some parameters to avoid c++ keywords (Patch
18162         from Joseph Wenninger <kde@jowenn.at>)
18163
18164 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18165
18166         * icall.c: added icall to implement Assembly.GetFile*.
18167
18168 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18169
18170         * reflection.h, reflection.c: code to embed managed resources.
18171
18172 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18173
18174         * class.c: move all the type size stuff into
18175         class_compute_field_layout().
18176
18177 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18178
18179         * class.c: ensure enums have always the correct instance size.
18180         * unicode.c: remove wrong assert.
18181
18182 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18183
18184         * assembly.c: fix mem corruption issue.
18185         * image.h, image.c: added mono_image_get_resource () to access
18186         managed resources.
18187         * icall.c: implemented Assembly.EntryPoint property and some
18188         Managed Resources related internalcalls.
18189
18190
18191 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18192
18193         * image.c, image.h: impemented mono_image_get_entry_point ().
18194         * appdomain.c: use mono_image_get_entry_point.
18195
18196 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18197
18198         * reflection.c: support the object type argument when loading
18199         custom attributes.
18200
18201 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18202
18203         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18204         String as return type.
18205
18206 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18207
18208         * reflection.c: fix encoding of named args for custom attrs to match
18209         the ms implementation. Read them back when instantiating custom
18210         attributes.
18211
18212 2002-08-02  Radek Doulik  <rodo@ximian.com>
18213
18214         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18215         by Dietmar as quick fix
18216         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18217         16 as stack size, used on more places as quick fix before Dietmar
18218         will fix it properly
18219
18220 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18221
18222         * object.h, object.c: added accessors for fields and properties.
18223
18224 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18225
18226         * class.c, class.h: made mono_class_get_field_from_name ()
18227         loop on parent types.
18228         Added mono_class_get_property_from_name ().
18229
18230 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18231
18232         * class.c, class.h: move the code to setup the type vtable in its own
18233         function so that it can be reused also for types created at runtime.
18234         Eliminate the "class" identifier from the header file.
18235         * reflection.c: setup the vtable for enums so that we can create
18236         objects for use in SetConstant ().
18237
18238 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18239
18240         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18241         instead of the delegate itself as this pointer (bug #28383)
18242
18243 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18244
18245         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18246         conversions.
18247
18248 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18249
18250         * loader.c: don't set the pinvoke bit on icalls.
18251
18252 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18253
18254         * debug-helpers.c (mono_method_full_name): only print a number to
18255         indicate wrapper type (so that the output is more readable in traces).
18256
18257 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18258
18259         * class.c (mono_class_init): include method override patch from Paolo
18260
18261 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18262
18263         * icall.c: fixed GetTypeCode().
18264
18265 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18266
18267         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18268         use real delegate invoke function to make it work with multicast
18269         delegates (fix bug# 28291).
18270
18271 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18272
18273         * object.c: load constant strings.
18274
18275 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18276
18277         * reflection.c: no magic numbers.
18278         * tabledefs.h: security action enum.
18279
18280 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18281
18282         * assembly.c: fix possible memory corruption.
18283
18284 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18285
18286         * reflection.h, reflection.c: added support for linking resources.
18287         * verify.c: check we have an updated corlib.
18288
18289 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18290
18291         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18292         string arrays.
18293         (mono_marshal_string_array): null terminate unmanaged string arrays.
18294         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18295
18296 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18297
18298         * icall.c: Type.GetType () can now return also types from the
18299         calling assembly.
18300
18301 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18302
18303         * loader.h, loader.c: stack walking support.
18304         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18305         GetCallingAssembly.
18306
18307 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18308
18309         * marshal.c: added optimisations for blittable types 
18310
18311         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18312         (mono_class_setup_mono_type): set blittable attribute for single
18313         and double.
18314
18315         * marshal.c (mono_string_utf8_to_builder): impl.
18316         (mono_string_builder_to_utf8): impl.
18317         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18318
18319 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18320
18321         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18322         (mono_marshal_get_managed_wrapper): impl. byref types
18323
18324 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18325
18326         * icall.c:
18327         (search_method): don't display debug message. 
18328
18329 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18330
18331         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18332
18333 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18334
18335         * appdomain.c: set the missing filename when throwing exception.
18336
18337 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18338
18339         * metadata.c (mono_type_size): code cleanup
18340         (mono_type_stack_size): removed some test code
18341
18342 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
18343
18344         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
18345         mono_get_exception_file_not_found now.
18346
18347         * exception.c (mono_exception_from_name_two_strings): New version
18348         that will call a constructor with two string arguments. 
18349         (mono_get_exception_file_not_found): New helper routine, used to
18350         report file-not-found errors.
18351
18352 2002-07-20  Dick Porter  <dick@ximian.com>
18353
18354         * process.h:
18355         * process.c: Pass file handles to CreateProcess
18356         
18357         * icall.c:
18358         * file-io.h:
18359         * file-io.c: Implemented CreatePipe
18360
18361 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18362
18363         * metadata.c (mono_get_param_info): set alignment for value types
18364
18365 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18366
18367         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
18368         Constify mono_domain_assembly_open().
18369         * loader.c: handle null namespace in icalls.
18370
18371 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18372
18373         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
18374         (emit_str_to_ptr_conv): marshal object as structs
18375
18376         * metadata.c (mono_type_to_unmanaged): marshal object as structs
18377
18378         * marshal.c (mono_marshal_get_runtime_invoke): support value types
18379
18380 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
18381
18382         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
18383         (mono_marshal_get_native_wrapper): we an now return value types
18384
18385 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18386
18387         * verify.c: more checks implemented.
18388
18389 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
18390
18391         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
18392         (fix bug #27695)
18393         (mono_marshal_get_native_wrapper): allow byref arguments
18394         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
18395         impl. PtrToStringXXX methods
18396         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
18397         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
18398         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
18399         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
18400         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
18401
18402 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18403
18404         * reflection.c: fix buglet in parsing an assembly name.
18405
18406 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18407
18408         * marshal.c (emit_ptr_to_str_conv): first impl.
18409
18410 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18411
18412         * object.c, class.h: cache the vtable in the class as suggested by
18413         vargaz@freemail.hu (Zoltan Varga).
18414
18415 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18416
18417         * class.h, loader.c: added mono_field_from_token().
18418         * verify.c: first cut of type checking code.
18419
18420 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18421
18422         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
18423
18424 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
18425
18426         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
18427         (fix bug #27782)
18428         (mono_marshal_get_remoting_invoke): impl.
18429         (mono_delegate_begin_invoke): impl.
18430         (mono_mb_emit_save_args): impl.
18431         (mono_delegate_end_invoke): impl.
18432         (mono_marshal_get_delegate_begin_invoke):
18433         (mono_marshal_get_delegate_end_invoke):
18434         (mono_marshal_get_delegate_invoke): generate a special name for
18435         those methods (including the signature) and associate them whith
18436         the delegate class. 
18437
18438 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
18439
18440         * reflection.[ch]: 
18441         (mono_reflection_type_from_name): now it has a MonoImage parameter
18442         which is used as the default image to search the type in. If the image
18443         is NULL or getting the type from it fails, it defaults to corlib.
18444
18445         * icall.c: changed 1 call to mono_reflection_type_from_name to match
18446         new parameter.
18447
18448 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18449
18450         * reflection.c: update the parameter table index.
18451
18452 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18453
18454         * domain.c: don't include the mark byte in the string hash.
18455
18456 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18457
18458         * icall.cs: icall for Type.GetTypeCode ().
18459         * verify: a couple of fixes and disabled local initialization checks.
18460
18461 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
18462
18463         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
18464
18465         * debug-helpers.c (mono_method_full_name): print the type of the
18466         runtime wrapper
18467
18468         * metadata.c (mono_signature_hash): a hash function for signatures
18469         (mono_signature_hash): better hash algorithm
18470
18471         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
18472
18473         * debug-helpers.c (mono_method_full_name): this can now generate
18474         method names with signatures
18475
18476         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18477         method dont have this pointers.
18478
18479 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18480
18481         * reflection.c: fixup typebuilder tokens.
18482         * image.c: fix buglet.
18483         * marshal.h: remove whitespace.
18484         * metadata.h, metadata.c: reinstate code that was removed.
18485         * verify.c: handle catch directives and fix another couple of bugs.
18486
18487 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18488
18489         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18490         (mono_marshal_get_native_wrapper): make it comp. with the old code
18491         (mono_marshal_get_native_wrapper): support boolean
18492         (mono_marshal_get_managed_wrapper): support more types
18493
18494 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18495
18496         * class.c (class_compute_field_layout): compute class->blittable attribute.
18497
18498 2002-07-09  Dick Porter  <dick@ximian.com>
18499
18500         * threads.c: Make the thread cleaning up cope with threads that
18501         call ExitThread()
18502
18503 2002-07-08  Radek Doulik  <rodo@ximian.com>
18504
18505         * reflection.c (method_encode_code): use non-translated values to
18506         compute finally_start, this fixes exception handling on ppc, yay!
18507
18508         * decimal.h (struct signscale): fix endianess
18509
18510 2002-07-07  Radek Doulik  <rodo@ximian.com>
18511
18512         * reflection.c: swap box_val and not val
18513
18514 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18515
18516         * reflection.c, reflection.h: handle full assembly info in type name.
18517         Handle Type arguments when loading custom attributes.
18518         * icall.c: updated to use new mono_reflection_type_from_name () method.
18519
18520 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18521
18522         * loader.c:
18523         (method_from_memberref): also print assembly name when method not found.
18524
18525 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18526
18527         * icall.c:
18528         (ves_icall_TypeGetProperties): fixed bug #27473. 
18529
18530 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18531
18532         * reflection.c: display image name and token when cannot find the
18533         .ctor for an attribute.
18534
18535 2002-07-05  Martin Baulig  <martin@gnome.org>
18536
18537         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18538
18539 2002-07-04  Dick Porter  <dick@ximian.com>
18540
18541         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18542         compile on mingw.  This will cause mingw builds to not wait for
18543         subthreads to terminate after the main thread does.  I've lodged a
18544         bug with the mingw developers for them to wrap OpenThread().
18545
18546 2002-07-03  Dick Porter  <dick@ximian.com>
18547
18548         * threads.c: Store thread IDs instead of handles, because
18549         GetCurrentThread() returns a pseudohandle and therefore stores
18550         useless values.  mono_thread_cleanup() continues checking the
18551         array of threads until it is empty, to cope with subthreads
18552         spawning new threads after the main thread has finished.
18553
18554         * profiler.h:
18555         * profiler.c:
18556         * profiler-private.h: Pass the thread ID to thread profiler
18557         functions, instead of a handle
18558
18559 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18560
18561         * verify.c: fixes to make it more usable.
18562         * pedump.c: added --verify code to verify IL code in an assembly.
18563
18564 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18565
18566         * reflection.c: turn errors into warnings to allow compiling corlib.
18567
18568 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18569
18570         * reflection.c: add special cases to compile corlib.
18571
18572 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18573
18574         * reflection.c: handle properties with only a set method.
18575
18576 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18577
18578         * opcodes.h: add enum with opcodes in opval order.
18579
18580 2002-07-01  Dick Porter  <dick@ximian.com>
18581         
18582         * object.h:
18583         * object.c (mono_runtime_run_main): Removed unneeded argument
18584
18585 2002-06-28  Martin Baulig  <martin@gnome.org>
18586
18587         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18588
18589 2002-06-27  Dick Porter  <dick@ximian.com>
18590
18591         * threads.c: Store the handle in both the parent thread and in the
18592         subthread, to minimise the time between starting a new thread and
18593         storing its ID.
18594
18595 2002-06-26  Dick Porter  <dick@ximian.com>
18596
18597         * appdomain.c (mono_runtime_cleanup): Close the socket library
18598         after all the threads have finished, not before
18599
18600 2002-06-26  Martin Baulig  <martin@gnome.org>
18601
18602         * debug-symfile.c (mono_debug_find_source_location): Added
18603         `guint32 *line_number' argument.  If it's not NULL, store the line number
18604         there and return the file name without the line number.
18605
18606 2002-06-25  Dick Porter  <dick@ximian.com>
18607
18608         * icall.c:
18609         * process.h:
18610         * process.c: Process forking and other support functions
18611
18612 2002-06-25  Dick Porter  <dick@ximian.com>
18613
18614         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18615         things dont happen when the image is closed.
18616         (mono_image_lookup_resource): Walk the resource section looking
18617         for a particular entry
18618
18619         * cil-coff.h: PE resource section decoding
18620
18621 2002-06-25  Dick Porter  <dick@ximian.com>
18622         
18623         * assembly.h:
18624         * assembly.c: 
18625         (mono_assembly_foreach): Accessor functions to walk the list of
18626         loaded assemblies
18627         (mono_assembly_set_main):
18628         (mono_assembly_get_main): Process methods need to know which
18629         assembly is the "main" one
18630
18631         * object.c (mono_runtime_run_main): Record the main assembly
18632
18633         * debug-helpers.c: Fix typo
18634
18635 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18636
18637         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18638         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18639
18640 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18641
18642         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18643
18644 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18645
18646         * image.c (do_mono_image_open): Initialize reference count,
18647         otherwise we leak the MonoImage.
18648
18649 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * reflection.c: small tweak to handle self-hosting.
18652
18653 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18654
18655         * reflection.c: fix type name parse code.
18656
18657 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18658
18659         * reflection.c: break out of the loop.
18660         * image.c: special case corlib.
18661
18662 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18663
18664         * reflection.c: add all the custom attrs at the end to ensure the
18665         ctors have been properly initialized when the attributes are defined
18666         in the current assembly.
18667
18668 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18669
18670         * reflection.c: handle correctly multiple-nested types.
18671
18672 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18673
18674         * row-indexes.h: fix typos.
18675         * reflection.c: adjust for typos and fix method_def_or_ref
18676         encoding in MethodImpl table.
18677
18678 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18679
18680         * reflection.c: fix entry point patching (thanks Serge!).
18681
18682 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18683
18684         * verify.c: add check for System.Exception
18685
18686 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18687
18688         * image.c, class.c: minifix for code just c&p'ed.
18689         * reflection.c: warning fix.
18690         * object.h, loader.h, domain.c: load also StringBuilder.
18691
18692 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18693
18694         * marshal.h, marshal.c: some support code to handle complex marshaling.
18695
18696 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18697
18698         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18699         Better signatures with vtable error dump.
18700
18701 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18702
18703         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18704
18705 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18706
18707         * icall.c (ves_icall_Type_GetField): impl.
18708
18709 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18710
18711         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18712         to retrieve a marshal description blob for a field or param.
18713
18714 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18715
18716         * reflection.h, reflection.c: change order of nested type emission
18717         to avoid table corruption. The NestedTypes table is sorted.
18718         * icall.c: change order of GetConstructor results to workaround mcs bug.
18719
18720 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18721
18722         * reflection.h, reflection.c: handle field and param marshal
18723         information.
18724
18725 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18726
18727         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18728
18729 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18730
18731         * reflection.c: fix call convention.
18732
18733 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18734
18735         * reflection.h, reflection.c: mono_image_get_memberref_token()
18736         takes a type instead of a class, now. Added
18737         mono_image_get_array_token() to create tokens for the special
18738         multi-dim array methods.
18739
18740 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18741
18742         * assembly.c: handle modules (no assembly table). Split
18743         loading references in its own function.
18744         * class.c: handle moduleref resolution scope.
18745         * image.c, image.h: cache module name in image.
18746
18747 2002-06-07  Martin Baulig  <martin@gnome.org>
18748
18749         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18750         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18751
18752 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18753
18754         * icall.c: more signature fixes that used uint instead of int.
18755
18756 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18757
18758         * reflection.c: fixed signature of field refs.
18759
18760 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18761
18762         * class.c, reflection.c: handle typerefs of nested types
18763         (both on read and when writing files).
18764
18765 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18766
18767         * icall.c: fix method signatures that tried to workaround the previous
18768         typo, d'oh!
18769
18770 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18771
18772         * debug-helpers.c: fix typo.
18773
18774 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18775
18776         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18777         rewrote the PE/COFF writing code (our programs are understood by the
18778         ms runtime, now).
18779
18780 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18781
18782         * gc.c, gc.h, icall.c: weakreference support.
18783
18784 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18785
18786         * Makefile.am, mono-config.c: use $(sysconfdir).
18787
18788 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18789
18790         * icall.c: changed default precision of Double.ToString() to 15.
18791         Fixed memory leak. Unified with Single.ToString.
18792
18793 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18794
18795         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18796
18797 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18798
18799         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18800         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18801         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18802         and myself.
18803
18804 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18805
18806         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18807
18808 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18809
18810         * reflection.c, socket-io.c: more compilation fixes.
18811
18812 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18813
18814         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18815         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18816         unicode.c: warning and compiler compatibility fixes.
18817
18818 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18819
18820         * class.h, metadata.c: fixed warnings/compilation errors.
18821
18822 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18823
18824         * Makefile.am, mono-config.c, mono-config.h: configuration file
18825         support routines.
18826         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18827         config file. Export methods to insert and lookup mappings.
18828
18829 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18830
18831         * reflection.c: handle types and boxed objects in custom attr
18832         constructors.
18833
18834 2002-05-30  Martin Baulig  <martin@gnome.org>
18835
18836         * debug-symfile.c
18837         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18838
18839 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18840
18841         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18842         to lookup the implmap row for a P/Invoke method.
18843         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18844         P/Invoke method from the runtime on an as needed basis.
18845
18846 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18847
18848         * metadata.c (mono_metadata_parse_signature): impl.
18849
18850 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18851
18852         * class.c: handle .pack directive.
18853
18854 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18855
18856         * object.c: initialize static fields with RVA data.
18857
18858 2002-05-25  Martin Baulig  <martin@gnome.org>
18859
18860         * debug-symfile.c
18861         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18862
18863 2002-05-24  Martin Baulig  <martin@gnome.org>
18864
18865         * debug-symfile.c
18866         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18867         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18868         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18869
18870 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18871
18872         * object.c: special case string ctros in invoke.
18873         * gc.c: silly whitespace changes.
18874
18875 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18876
18877         * threadpool.[ch]: impl. a threadpool that can
18878         be used by mint and mono.
18879
18880 2002-05-22  Martin Baulig  <martin@gnome.org>
18881
18882         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18883         The first argument is now a `MonoReflectionModuleBuilder *', the return
18884         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18885         `methods' field to get the method builder.  The `token' argument is the
18886         unfixed token.
18887
18888         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18889         invalid characters instead of g_assert_not_reached()ing.  This seems
18890         to be the behaviour of mscorlib.
18891
18892 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18893
18894         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18895         Hestilow to fix bug #25104
18896
18897 2002-05-21  Martin Baulig  <martin@gnome.org>
18898
18899         * debug-symfile.c (mono_debug_find_source_location): New function.
18900         Looks up an IL offset in the line number table and returns the source
18901         location as a string.
18902
18903 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18904
18905         * icall.c:
18906         (mono_double_ToStringImpl): changed %f by %g until we have something
18907         better.
18908
18909 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18910
18911         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18912         parameters first in C#.
18913
18914 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18915
18916         * icall.c, reflection.h: added icall to get info about an event.
18917
18918 2002-05-20  Radek Doulik  <rodo@ximian.com>
18919
18920         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18921         endian
18922         (mono_value_box): don't use memcpy for small sizes on
18923         architectures with unaligned access
18924
18925 2002-05-20  Martin Baulig  <martin@gnome.org>
18926
18927         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18928         if `tb->parent == NULL'.
18929         (mono_reflection_create_internal_class): New function.  This is
18930         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18931         for enum types.
18932
18933         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18934         New interncall.
18935
18936 2002-05-19  Martin Baulig  <martin@gnome.org>
18937
18938         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18939         argument to get the length, don't default to the array length.
18940
18941 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18942
18943         * assembly.c (mono_assembly_setrootdir): New function used to
18944         override the MONO_ASSEMBLIES directory.
18945
18946 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18947
18948         * icall.c: ValueType_GetHashCode() initialize local var.
18949
18950 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18951
18952         * reflection.c: sort custom attributes table.
18953
18954 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18955
18956         * reflection.c: support named args in custom attributes (write support).
18957
18958 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18959
18960         * reflection.c: fix finally position calculation.
18961
18962 2002-05-15  Radek Doulik  <rodo@ximian.com>
18963
18964         * reflection.c: fixed endianess at many places
18965
18966         * icall.c (ves_icall_InitializeArray): comment out debug msg
18967
18968 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18969
18970         * object.c (mono_unhandled_exception): new function to handle
18971         unhandled exceptions.
18972         (mono_unhandled_exception): call the UnhandledException event.
18973         (mono_runtime_delegate_invoke): impl.
18974
18975 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
18976
18977         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
18978         returns the RVA, not the direct pointer to the data. Handle the case
18979         when the class size is fixed.
18980
18981 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18982
18983         * reflection.c: fix some endianess issues.
18984
18985 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
18986
18987         * object.c (mono_runtime_invoke): is now able to catch exceptions.
18988
18989         * threads.c (mono_thread_init): added a callback which is invoked
18990         at thread start.
18991
18992 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18993         
18994         * icall.c: make GetHashCode return non-negative values.
18995
18996 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
18997
18998         * object.c, icall.c, gc.c: revert to address-based hashcode.
18999
19000 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19001
19002         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19003
19004 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19005
19006         * icall.c, class.c: special case <Module>.
19007
19008 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19009
19010         * icall.c: fix bug in GetNow().
19011
19012 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19013
19014         * object.c (mono_runtime_class_init): make sure that we call all
19015         static class constructors.
19016
19017 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19018
19019         * reflection.c: sort methodsemantics table.
19020
19021 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19022
19023         * reflection.h, reflection.c: honour init locals setting.
19024
19025 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19026
19027         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19028
19029 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19030
19031         * reflection.c: support ContructorBuilders in attribute blob creation.
19032
19033 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19034
19035         * reflection.c: some changes to build a binary that can be run
19036         directly in windows.
19037
19038 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19039
19040         * loader.c: print a big message when an icall can't be found.
19041
19042 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19043
19044         * string-icalls.c: fix bug 24248.
19045
19046 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19047
19048         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19049         icall.c, reflection.h: separate assembly loading by pathname and by
19050         assembly name. Use the MONO_PATH env var to search for assemblies.
19051
19052 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19053
19054         * assembly.c, image.h: add some support for assemblies
19055         with multiple modules.
19056         * class.c, class.h: export mono_class_from_typeref().
19057         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19058         instead.
19059
19060 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19061
19062         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19063         documentation says (the ECMA one is correct).
19064
19065 2002-05-02  Dick Porter  <dick@ximian.com>
19066
19067         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19068         Don't name the synchronisation mutex.
19069
19070 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19071
19072         * rand.c
19073         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19074         Make the prototypes match.
19075         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19076         Same.
19077
19078         * icall.c
19079         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19080         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19081         all systems have tm.tm_zone, so use strftime() with %Z to print
19082         the timezone abreviation into a temp string.
19083
19084         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19085         rather than mono_array_addr() on a MonoString on Big Endian
19086         machines.
19087
19088 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19089
19090         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19091         fix bug 24041
19092
19093 2002-04-30  Dick Porter  <dick@ximian.com>
19094
19095         * socket-io.c: Cope with SOCKET being an integer rather than a
19096         pointer now.
19097
19098         * threads.c: Added Thread_free_internal, to deal with thread
19099         handle cleanup.  Moved calls to handle_store() and handle_remove()
19100         to start_wrapper(), so each can only be called once.  Allocate
19101         synchronisation blocks with GC_malloc(), and use GC finalisation
19102         to close the handles.
19103
19104         * icall.c: added System.Threading.Thread::Thread_free_internal
19105
19106 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19107
19108         * icall.c: support Environment.Exit, CommandLineArgs().
19109
19110 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * object.c, object.h: added mono_runtime_run_main () and
19113         mono_runtime_get_main_args () for use in System.Environment.
19114
19115 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19116
19117         * gc.c: fix thinko, enable actual finalization since the jit is now
19118         fixed.
19119
19120 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19121
19122         * gc.c, object.c: take into account that an object may be offset wrt the address
19123         returned by GC_malloc().
19124
19125 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19126
19127         * image.c: handle files without entries in the assembly table (modules).
19128
19129 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19130
19131         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19132         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19133         allowed to be null when it's System.Object class setup.
19134
19135 2002-04-27  Martin Baulig  <martin@gnome.org>
19136
19137         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19138         if `tb->parent == NULL' rather than crashing.
19139
19140 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19141
19142         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19143         calling acos() where asin() should have been called.
19144
19145 2002-04-26  Martin Baulig  <martin@gnome.org>
19146
19147         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19148         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19149         there's a subdirectory called `System', but we don't want to read that
19150         subdirectory as an assembly.
19151
19152 2002-04-25  Martin Baulig  <martin@gnome.org>
19153
19154         * debug-symfile.c: Reflect latest MonoString changes.
19155
19156 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19157
19158         * rand.c, rand.h: instance method icalls need to have an explicit
19159         this pointer as first argument in the C implementation.
19160
19161 2002-04-25  Nick Drochak <ndrochak@gol.com>
19162
19163         * icall.c: Fix typo in map for GetNonZeroBytes
19164
19165 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19166
19167         * string-icalls.c : String does now passes unit tests without any 
19168         errors, the following changes has been made:
19169         
19170         Implemented replace methods.
19171         Renaming of methods to (try) follow the standard.
19172         Fixed compare ordinal
19173         Made all memory allocated directly to function instead of via icall function.
19174         Small performance fix in is_in_array function
19175                         
19176  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19177
19178         c (mono_string_Internal_ctor_charp_int_int):
19179         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19180         sindex < 0, throw ArgumentOutOfRangeException instead of
19181         ArgumentNullException.
19182
19183         Added new check for length == 0, however
19184         I need to make it return String.Empty from the C code.
19185         
19186         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19187         that calculate the length for us here.
19188         
19189         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19190         mono_string_new_utf16 with mono_string_new, since value is utf8.
19191
19192 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19193
19194         * object.c: register the object for finalization if needed.
19195         Allocate one more char in the string for the terminating 0 char.
19196
19197 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19198
19199         * class.c, class.h, image.c: check if a type implemenst a destructor.
19200         Use the proper key for array class lookups.
19201         * icall.c: register the icalls in the System.GC class.
19202         * gc.c, gc.h: GC-related functions and icalls.
19203
19204 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19205
19206         * icall.c:
19207         * socket-io.c:
19208         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19209         changed a couple of free () by g_free ().
19210
19211         * decimal.c: one-liner in the comments for decimal2string ().
19212
19213 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19214
19215         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19216
19217 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19218
19219         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19220         * object.c (mono_runtime_invoke_array) : handle null in params
19221
19222 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19223
19224         * string-icalls.c: fixed bug in split (one off bug)
19225
19226 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19227
19228         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19229         * icalls.c: added String::Equals as internal method
19230
19231 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19232
19233         * threads.c: fixed bug in the double interlocked functions
19234
19235 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19236
19237         * threads.c: implemented all of the new interlocked icalls.
19238         * string-icalls.c: fix a bug in insert.
19239         * icalls.c: added the icalls for interlocked, removed old string functions.
19240         
19241 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19242
19243         * loader.c: fix off-by-one error when reading argument names.
19244
19245 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19246
19247         * profiler.c: win32 counter implementation (untested).
19248         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19249         (the latter needs testing and more complete impl. from win32 folks).
19250
19251 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19252
19253         * object.c: mono_array_new_full workaround mono_array_class_get
19254         problem.
19255
19256 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19257
19258         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19259         * object.h (mono_string_chars): Changed casting type.
19260
19261 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19262
19263         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19264                            method signatures to use gunichar2 instead of gint16.
19265
19266 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19267
19268         * object.h, object.c: domain-specific versions of mono_object_new and
19269         mono_array_new.
19270
19271 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19272
19273         * object.c: changed String layout
19274
19275         * string-icalls.c (mono_string_Internal_ctor_chara): added
19276         internal string constructors.
19277
19278 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19279
19280         * threads.c: pass 'this' to the thread start routine.
19281
19282 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19283
19284         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19285         InternalCompareStr don't call twice mono_string_cmp_char for the last
19286         character. Improved performance in mono_string_cmp_char.
19287
19288 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19289
19290         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19291         code into its own library: libmonoruntime.
19292
19293 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19294
19295         * object.h, object.c: changed array format so that szarrays do not
19296         require a bounds structure.
19297         * icall.c, appdomain.c: support for new szarray format.
19298
19299 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19300
19301         * metadata.c: compare also the retuns type when comparing signatures:
19302         we didn't do this as an optimization since really overloaded methods
19303         must differ also in the arguments, but this doesn't work with
19304         low-level IL code (or when using explicit conversion operators: see
19305         bug#23498 for an example).
19306
19307 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19308
19309         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19310
19311 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19312
19313         * icall.c: make MonoType::GetElementType its own icall.
19314
19315 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19316
19317         * icall.c: remove MonoMethod_get_Name().
19318         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19319         object.
19320
19321 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19322
19323         * string-icalls.c: optimized a few methods.
19324
19325 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19326
19327         * icall.c: added all new string internal calls
19328         * string-icalls.c: added, new string internal call implementation.
19329         * object.c: added mono_string_new_size for allocating a string a size
19330
19331 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19332
19333         * object.c (mono_object_isinst): use the same code as in the
19334         optimized x86 version.
19335
19336 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19337
19338         * profiler.c: TSC-based timer code (faster and more accurate).
19339         Not hooked up in configure, yet (set USE_X86TSC to 1).
19340
19341 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
19342
19343         * profiler.c, profiler.h: track time spent compiling methods.
19344         * threads.c: track thread creation/destruction.
19345
19346 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
19347
19348         * profiler.c, profiler.h, profiler-private.h: profiling interface
19349         and sample implementation. Moved here so that it can be used also by
19350         the jit.
19351
19352 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
19353
19354         * reflection.c, reflection.h: keep types and other handles separate in
19355         the hash tables for referred tokens. Add guid for modules.
19356
19357 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19358
19359         * assembly.c: fix bugs found with valgrind.
19360         * metadata.h, metadata.c: added mono_metadata_guid_heap().
19361
19362 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
19363
19364         * threads: added icall support for getting current domain for
19365                    the thread.
19366  
19367 2002-04-13  Martin Baulig  <martin@gnome.org>
19368
19369         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
19370         (MonoDebugVarInfo): Added `index' field for register based addresses.
19371         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
19372         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
19373         `MonoDebugVarInfo *params' and `guint32 this_offset' with
19374         `MonoDebugVarInfo *this_var'.
19375
19376         * debug-symfile.c (relocate_variable): New static function to write
19377         a location description for a local variable or method parameter.
19378
19379 2002-04-12  Martin Baulig  <martin@gnome.org>
19380
19381         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
19382         stack offset and begin/end scope address of a local variable.
19383         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
19384         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
19385         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
19386
19387         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
19388         Added new relocation types for start/end scope of a local variable.
19389
19390 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19391
19392         * object.h: add mono_object_domain() macro.
19393         * reflection.c: handle typespecs.
19394         * icall.c: MonoMethod::get_Name() implementation.
19395
19396 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19397
19398         * icall.c: String::GetHashCode() icall implementation.
19399
19400 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19401
19402         * icall.c: String::IndexOfAny icall.
19403         * object.c, object.h: make array->max_length more useful.
19404         Intrduced mono_object_class() and mono_string_length() macros.
19405
19406 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19407
19408         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
19409         instead of g_unichar_isdigit.
19410
19411 2002-04-11  Nick Drochak  <ndrochak@gol.com>
19412
19413         * icall.c: Implement a simple Double.ToString().
19414
19415 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19416
19417         * appdomain.h: only io-layer.h is supposed to be included.
19418         * icall.c: explicitly import environ. Fix warning.
19419
19420 2002-04-10  Nick Drochak  <ndrochak@gol.com>
19421
19422         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
19423                 return true even if it's not Daylight Savings time.
19424                 Only return false for the case where the function isn't
19425                 implemented for a plaform (read Windows).
19426
19427 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19428
19429         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
19430         data with a mutex.
19431
19432 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
19433
19434         * mempool.c (mono_mempool_alloc): only use g_malloc when
19435         absolutely necessary.
19436
19437 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19438
19439         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
19440
19441         * class.c (mono_class_vtable): use domain mempool to allocate vtable
19442         (mono_class_proxy_vtable): use domain mempool
19443
19444 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19445
19446         * appdomain.h, appdomain.c: split initialization that requires the
19447         execution engine support into mono_runtime_init().
19448
19449 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19450
19451         * class.c (mono_class_init): don't include vtable inside MonoClass
19452         to save some memory, gather some statistics.
19453         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
19454
19455 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19456
19457         * icall.c: internalcall implementation for ValueType.Equals().
19458
19459 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
19460
19461         * object.c (mono_message_init): moved 
19462         (mono_runtime_exec_main): new arch. independent impl.
19463         (mono_runtime_invoke_array): new method - like
19464         mono_runtime_invoke, but you can pass an array of objects.
19465         (mono_remoting_invoke): new arch. independent impl.
19466         (mono_message_invoke): new arch. independent impl.
19467         (mono_runtime_class_init): new arch. independent impl.
19468         (mono_runtime_object_init): new arch. independent impl.
19469
19470 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19471
19472         * metadata.c, object.c, reflection.c: documented the exported
19473         functions.
19474
19475 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19476
19477         * icall.c: simpler code to pass the assembly builder data to corlib.
19478         Implement GetNestedTypes() internalcall.
19479
19480 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19481
19482         * class.c: warn if a type can't be loaded.
19483
19484 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19485
19486         * image.h: typedef MonoImageOpenStatus
19487         * types.h: removed unused file
19488         
19489 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19490
19491         * icall.c: Enum_ToObject accepts enum value arguments.
19492
19493 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19494
19495         * class.c: move initialization of properties, events and nested
19496         classes, so that they happen for interfaces, too.
19497
19498 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19499
19500         * icall.c: cleanup some ugly casts in Array_SetValue*.
19501
19502 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19503
19504         * icall.c: the values array fro enums is of the correct type, now.
19505         Implement (correctly) getFullName instead of assQualifiedName for
19506         MonoType.
19507         * reflection.h, reflection.c: added mono_type_get_name ().
19508
19509 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19510
19511         * assembly.c, image.h: for each MonoImage, record from wich assembly
19512         it was loaded.
19513         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19514         Make Type.Assembly work.
19515
19516 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19517
19518         * debug-symfile.h: use char* instead of gpointer to avoid
19519         unnecessary casts.
19520
19521         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19522
19523         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19524         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19525
19526 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19527
19528         * icall.c (mono_message_init): impl. (code cleanup)
19529         (ves_icall_InternalExecute): impl. FieldGetter
19530
19531         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19532         defined we call all (non-static)methods through the vtable. 
19533
19534 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19535
19536         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19537         finalizer even though the memory is still referenced (and the chunk of
19538         memory is not freed).
19539
19540 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19541
19542         * assembly.c: fix brokeness.
19543
19544 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19545
19546         * class.c: kill some warnings. Check explicit interface method
19547         implementation also without considering the namespace.
19548         Load also literal strings in static class data.
19549
19550 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19551
19552         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19553         (default_assembly_name_resolver): Make the resolver take the
19554         "base" directory where the assembly was originally defined, so we
19555         can load DLLs that are in the same directory as the assembly that
19556         is being referenced.
19557
19558 2002-03-28  Dick Porter  <dick@ximian.com>
19559
19560         * file-io.h: 
19561         * file-io.c:
19562         * socket-io.c: 
19563         * unicode.h: 
19564         * unicode.c: Warning cleanups
19565
19566 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19567
19568         * object.h, reflection.h: use the correct type instead of MonoObject.
19569
19570 2002-03-28  Martin Baulig  <martin@gnome.org>
19571
19572         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19573         (mono_debug_update_symbol_file): Initialize classes if necessary.
19574
19575 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19576
19577         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19578         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19579
19580 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19581
19582         * assembly.h: fix function prototype.
19583         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19584         * mono-endian.h: use const cast.
19585
19586 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19587
19588         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19589
19590 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19591
19592         * loader.c: don't assert when a typeref can't be loaded, give
19593         a chance to the runtime to trow an exception instead.
19594         * loader.h: fix warning.
19595
19596 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19597
19598         * class.c (mono_class_proxy_vtable): added proxy support
19599
19600 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19601
19602         * icall.c: removed last of PAL calls, added System.Environment
19603         * file-io.h, file-io.c: MonoIO implementation
19604         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19605
19606 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19607
19608         * appdomain.c: do not use the byte marker in ldstr table lookup.
19609         * debug-helpers.c: allow two ':' to separate class and method name.
19610         * object.c: allocate arrays bounds with the GC, too.
19611         * verify: add a few more checks.
19612
19613 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19614
19615         * reflection.c: output also literal strings. Allocate parameter data
19616         with GC_malloc() (thanks, Martin, for catching this!).
19617
19618 2002-03-26  Martin Baulig  <martin@gnome.org>
19619
19620         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19621         include the `this' offset in the `param_offsets'.
19622
19623 2002-03-25  Martin Baulig  <martin@gnome.org>
19624
19625         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19626         mono_debug_get_class() function to get the classes. Added new
19627         relocation types for arrays and strings.
19628         (mono_debug_get_class): New static function to search in all
19629         referenced assemblies for a metadata token.
19630
19631         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19632
19633 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19634
19635         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19636         hold gc-allocated objects. Make the string heap a stream like the
19637         others. Removed duplicated code when writing stream info.
19638         Added asserts to catch possible buffer overflows. Set the sorted map
19639         for tables that need sorting. Added some documentation.
19640
19641 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19642
19643         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19644         for interned strings and vtables.
19645
19646 2002-03-24  Martin Baulig  <martin@gnome.org>
19647
19648         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19649         it in the array since it was created with g_slist_prepend().
19650
19651 2002-03-24  Martin Baulig  <martin@gnome.org>
19652
19653         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19654         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19655         (mono_debug_method_from_token): Renamed to
19656         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19657         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19658
19659         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19660         relocation types.
19661
19662         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19663
19664 2002-03-24  Martin Baulig  <martin@gnome.org>
19665
19666         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19667         (mono_debug_method_from_token): New func.
19668
19669         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19670         New interncall, calls mono_debug_local_type_from_signature().
19671         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19672         calls mono_debug_method_from_token().
19673
19674 2002-03-23  Martin Baulig  <martin@gnome.org>
19675
19676         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19677         specifies the number of bytes to be converted, not the array size.
19678         Return the number of chars, not the number of bytes.
19679         (ves_icall_iconv_get_chars): The `byteCount' argument
19680         specifies the number of bytes to be converted, not the array size.
19681
19682 2002-03-23  Martin Baulig  <martin@gnome.org>
19683
19684         * reflection.h (MonoReflectionSigHelper): New type.
19685
19686         * reflection.c (mono_reflection_sighelper_get_signature_local),
19687         (mono_reflection_sighelper_get_signature_local): New functions.
19688
19689         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19690         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19691         interncalls.
19692
19693 2002-03-23  Martin Baulig  <martin@gnome.org>
19694
19695         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19696         is_writeable is set.
19697         (mono_raw_buffer_update): New function to write the modified map
19698         back to disk.
19699
19700         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19701
19702         * debug-symfile.c (mono_debug_update_symbol_file): Call
19703         mono_raw_buffer_update() when done writing.
19704
19705 2002-03-23  Martin Baulig  <martin@gnome.org>
19706
19707         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19708
19709         * debug-symfile.c: Added support for arguments and local variables.
19710
19711 2002-03-23  Dick Porter  <dick@ximian.com>
19712
19713         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19714         protected by ifdefs, hence breaking the w32 build.
19715
19716 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19717
19718         * object.c: implement is_interned() the right way.
19719
19720 2002-03-21  Martin Baulig  <martin@gnome.org>
19721
19722         * debug-symfile.[ch]: New files to handle debugging information
19723         files. There's also support to dynamically update these symbol
19724         files to include machine dependent information.
19725
19726 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19727
19728         * threads.c (mono_thread_create): new function to create thread
19729         from C
19730
19731 2002-03-20  Martin Baulig  <martin@gnome.org>
19732
19733         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19734         method is a constructor.
19735         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19736         points to ves_icall_InternalInvoke().
19737
19738 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19739
19740         * file-io.c: Flush shouldn't throw exceptions.
19741
19742 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19743
19744         * file-io.c: FileStream flush support; FileSetLength now
19745         restores file pointer.
19746
19747 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19748
19749         * class.c: set image for pointer classes.
19750
19751 2002/03/19  Nick Drochak <ndrochak@gol.com>
19752
19753         * sysmath.c: Forgot one.
19754
19755 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19756
19757         * sysmath.c: Avoid redefining existing names.
19758
19759 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19760
19761         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19762         handled by runtime as icall rather than dllimport from libm.so
19763         * file-io.c, file-io.h: fixed handle argument type.
19764
19765 2002-03-18  Dick Porter  <dick@ximian.com>
19766
19767         * reflection.c (mono_image_get_type_info): rename interface to
19768         iface, because of "#define interface struct" on windows.
19769
19770 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19771
19772         * class.c, class.h: rename and export mono_ptr_class_get().
19773         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19774         * reflection.c, reflection.h, icall.c: better/saner type name
19775         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19776         method signatures.
19777
19778 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19779
19780         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19781
19782         * icall.c (ves_icall_InternalInvoke): impl.
19783
19784 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19785
19786         * reflection.c: output the interface map table, too.
19787
19788 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19789
19790         * class.c (class_compute_field_layout): separate computation of 
19791         static field layout
19792
19793 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19794
19795         * icall.c: added System.Buffer support.
19796         * file-io.c: moved file icalls from PAL to FileStream.
19797
19798 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19799
19800         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19801
19802 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19803
19804         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19805
19806 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19807
19808         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19809
19810 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19811
19812         * debug-helpers.{c,h}: moved here from monograph some useful functions
19813         to locate a method by name/signature in a class or image. Included
19814         also a small and flexible IL disassembler.
19815
19816 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19817
19818         * reflection.c: fixup tokens in methods with small header size, too.
19819
19820 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19821
19822         * object.c (mono_string_to_utf8): remove assert(!error), instead
19823         print a warning. 
19824
19825 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19826
19827         * icall.c: update to the new mono_Array_class_get interface.
19828
19829 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19830
19831         * appdomain.c, object.c: Boehm-GC enable.
19832         * icall.c: make get_data_chunk() support split data requests.
19833         Ensure a class is initialized in more cases. Return only the first
19834         property found in GetProperties() or the compiler gets confused. 
19835         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19836         * reflection.h, reflection.c: add fixup mechanism for field and method
19837         tokens. Initialize assembly->typeref in a single place. Output
19838         properties after events. Support custom attributes for events, too.
19839         Typo fix for paramter custom attrs.
19840
19841 2002-03-07  Martin Baulig  <martin@gnome.org>
19842
19843         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19844
19845 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19846
19847         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19848
19849 2002-03-06  Martin Baulig  <martin@gnome.org>
19850
19851         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19852         non-zero lower bounds. See testcases #F10-#F13.
19853
19854 2002-03-05  Martin Baulig  <martin@gnome.org>
19855
19856         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19857
19858         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19859         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19860         here.
19861         (ves_icall_System_Array_SetValue): Likewise.
19862         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19863         as argument and does the actual work. This function is used when copying a
19864         multi-dimensional array.
19865         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19866         now do all the widening conversions of value types.
19867         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19868
19869 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19870
19871         * class.c: remove some magic numbers and use the smbolic names,
19872         instead. Added init_events() to load event info at class init time.
19873         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19874         and mono_metadata_methods_from_event().
19875         * reflection.h, reflection.c: added support for writing out the evnets
19876         related information.
19877
19878 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19879
19880         * reflection.h, icall.c: use a different method (GetInterfaces)
19881         to gather interface info and add isbyref, isprimitive and
19882         ispointer to the ves_icall_get_type_info() return value.
19883
19884 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19885
19886         * class.h: stared adding support for events.
19887         * icall.c: split find_members implementation. Added debug icall to get
19888         the address of an object.
19889         * reflection.c: handle TypeBuilders in mono_type_get_object().
19890
19891 2002-03-01  Martin Baulig  <martin@gnome.org>
19892
19893         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19894         ArgumentOutOfRangeException(), not an ArgumentException().
19895         (ves_icall_System_Array_GetLowerBound): Likewise.
19896         (ves_icall_System_Array_GetValue): Improved argument checking.
19897         (ves_icall_System_Array_SetValue): Improved argument checking.
19898
19899 2002-03-01  Martin Baulig  <martin@gnome.org>
19900
19901         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19902         called with invalid arguments rather than just dying with g_assert().
19903         (ves_icall_System_Array_SetValue): Likewise.
19904         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19905         raise a NotImplementedException instead.
19906         (ves_icall_System_Array_GetLength): Added argument checking.
19907         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19908
19909 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19910
19911         * object.h (mono_assert): new macros mono_assert and
19912         mono_assert_not_reached
19913
19914 2002-02-28  Martin Baulig  <martin@gnome.org>
19915
19916         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19917         and "System::String::IsInterned" to "System::String::_IsInterned".
19918
19919 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19920
19921         * icall.c: remove hacks for typebuilder. Added icall to create a
19922         modified type from a tybebuilder.
19923         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19924         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19925         to create a backing MonoClass for a TypeBuilder.
19926
19927 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19928
19929         * class.c, class.h: more refactoring of class init.
19930         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19931
19932 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19933
19934         * marshal.c, marshal.h: start of marshaling interface.
19935
19936 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19937
19938         * icall.c: fix order in assembly qualified name icall.
19939
19940 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19941
19942         * class.c: do not free str, since we store it in the hash table.
19943         * reflection.h: add label field to MonoILExceptionInfo.
19944         * reflection.c: handle references to more than one assembly. Handle
19945         case when there isn't a module created in the assembly.
19946
19947 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19948
19949         * class.c: Fix typo. Start refactoring of class init code.
19950
19951 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19952
19953         * appdomain.c: exit with 1 on error.
19954         * class.c: we already have the name in MonoClassField.
19955         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19956         MonoStreamHeader instead of an offset of image->raw_metadata.
19957
19958 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19959
19960         * appdomain.c (mono_init): Be even more descriptive about the error.
19961
19962 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19963
19964         * appdomain.c: give the user an informative message when corlib can't
19965         be loaded.
19966
19967 2002-02-26  Martin Baulig  <martin@gnome.org>
19968
19969         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19970         New icall to get the time zone data.
19971
19972 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19973
19974         * reflection.c: set virtual and raw size of section correctly.
19975         * threads.c: transfer domain information to newly created threads.
19976
19977 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19978
19979         * class.c: when instancing a class in a domain, load the default
19980         vaules for static fields from the constant table. Fix System.Enum to
19981         not be an enum.
19982         * icall.c: implement Object::GetType() internalcall. Implemented
19983         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
19984         Fixed checking of binding flags in find_members().
19985         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
19986         * reflection.c: handle enumerations when writing to the constant
19987         table. Use a different object cache for types.
19988
19989
19990 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
19991
19992         * object.c (mono_object_isinst): fix for arrays
19993
19994         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
19995
19996 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19997
19998         * object.c: don't use mprotect ()  and fix intern pool hash table
19999         lookup for big endian systems.
20000
20001 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20002
20003         * icall.c: change type_is_subtype_of () signature.
20004
20005 2002-02-21  Mark Crichton  <crichton@gimp.org>
20006
20007         * rand.c, rand.h: Added random number generator for
20008         System.Security.Cryptography classes.
20009
20010         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20011
20012         * icall.c: Added System.Security.Cryptography calls.
20013
20014 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20015
20016         * class.c, icall.c, metadata.c: better support for pointer types.
20017         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20018         * reflection.c: Add support for getting custom attrs for properties
20019         and simplify some code.
20020
20021 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20022
20023         * icall.c: change getToken () and add custom attribute GetBlob()helper
20024         method.
20025         * reflection.h: add custom attrs array to the reflection builder structures.
20026         * reflection.c: encode and emit custom attributes for all the relevant
20027         reflection objects. Cache fieldref and methodref tokens. Change
20028         mono_image_create_token() interface to take a MonoDynamicAssembly.
20029         More complete custom attributes decoder. Load custom attributes for
20030         Assembly, Field, Method and Constructor objects, too. Make the
20031         returned array an Attribute[] one, not object[]. Added
20032         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20033         custom attribute constructor.
20034
20035 2002-02-20  Dick Porter  <dick@ximian.com>
20036
20037         * icall.c:
20038         * rawbuffer.c:
20039         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20040         problem code out for now).
20041
20042 2002-02-19  Radek Doulik  <rodo@ximian.com>
20043
20044         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20045
20046 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20047
20048         * icall.c: register the GetCustomAttributes method.
20049         * object.c, object.h: add mono_string_new_len ().
20050         * reflection.h, reflection.c: added mono_runtime_invoke(),
20051         mono_install_runtime_invoke(). Added
20052         mono_reflection_get_custom_attrs () to load custom attributes and
20053         create the attribute objects.
20054
20055 2002-02-19  Dick Porter  <dick@ximian.com>
20056         * threads-dummy-types.c:
20057         * threads-dummy-types.h:
20058         * threads-dummy.c:
20059         * threads-dummy.h:
20060         * threads-pthread-types.c:
20061         * threads-pthread-types.h:
20062         * threads-pthread.c:
20063         * threads-pthread.h:  Deleted obsolete files
20064
20065 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20066
20067         * class.c (mono_class_vtable): runtime init the class when we
20068         allocate static class data.
20069
20070         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20071
20072         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20073         and String - but we will need generic marshalling support in the
20074         future. 
20075         (mono_init): set the domain name in a ms compatible way
20076
20077         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20078         String[].
20079
20080 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20081
20082         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20083         for sizes
20084
20085         * appdomain.c (mono_domain_unload): impl.
20086
20087 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20088
20089         * appdomain.c, object.c: fix intern pool implementation.
20090         * class.c: fix alignment code.
20091
20092 2002-02-16  Radek Doulik  <rodo@ximian.com>
20093
20094         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20095         and s2 > s1, just copy lower bytes to be compatible with little
20096         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20097         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20098
20099         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20100         force big_endian to be 1 for big endian machines 
20101         (ves_icall_iconv_new_decoder): ditto
20102
20103 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20104
20105         * socket-io.c (convert_sockopt_level_and_name): If the system
20106         doesn't define SOL_IP or SOL_TCP, get them by hand using
20107         getprotobyname() and caching the values (because this could be a
20108         slow operation).
20109         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20110         Use the appropriate struct when the system does support it. Ie,
20111         not all systems have struct ip_mreqn so use struct ip_mreq when
20112         appropriate.
20113
20114 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20115
20116         * reflection.c: handle finally clauses.
20117
20118 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20119
20120         * socket-io.c: use g_snprintf() instead of snprintf.
20121
20122 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20123
20124         * reflection.c (mono_param_get_objects): Cast second argument to
20125         mono_method_get_param_names to a const char** to silence the
20126         compiler warning.
20127
20128         * appdomain.c (mono_domain_assembly_open): Put parens around the
20129         truth statement in the for-loop.
20130
20131         * unicode.c (iconv_convert): Got rid of a compiler warning about
20132         int i being unused when the system has a new iconv.
20133         (iconv_get_length): Same.
20134
20135         * image.c (load_class_names): Cast the second argument to
20136         g_hash_table_insert() to char* to hush compiler warnings about the
20137         arg being a const.
20138         (mono_image_open): Same here.
20139
20140         * socket-io.c: Don't conditionally include sys/filio.h or
20141         sys/sockio.h here anymore since we now get them from
20142         io-layer/io-layer.h
20143         (inet_pton): If the system doesn't support inet_aton, implement
20144         using inet_addr and also #define INADDR_NONE if it isn't defined
20145         by the system.
20146
20147 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20148
20149         * metadata.c, metadata.h: added function to get packing and size info
20150         of a typedef.
20151         * reflection.h, reflection.c: handle field RVA data. Save info about
20152         the table layout if needed. Assign typedef indexes to all the types
20153         before dumping the info about them to avoid forward reference problems.
20154
20155 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20156
20157         * socket-io.c (convert_sockopt_level_and_name): ifdef
20158         SO_ACCEPTCONN because it is not defined on my system (old debian)
20159
20160 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20161
20162         * opcode.c: use stddef.h to get NULL.
20163
20164 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20165
20166         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20167         for FIONBIO, FIONREAD and SIOCATMARK.
20168         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20169         define INADDR_NONE and besides, inet_addr() is deprecated and
20170         should not be used. Use inet_pton() instead - it also has the
20171         added bonus that it can easily handle IPv6 addresses as well.
20172         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20173
20174 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20175
20176         * decimal.c: remove _MSC_VER conditional.
20177
20178 2002-02-13  Dick Porter  <dick@ximian.com>
20179
20180         * socket-io.c: 
20181         * icall.c: Internal calls for Blocking, Select, Shutdown,
20182         GetSocketOption and SetSocketOption
20183
20184 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20185
20186         * assembly.cs: better resolver: use it instead of some kludgy
20187         code.
20188
20189 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20190
20191         * reflection.c: the best way to speed-up the compiler is to avoid
20192         infinite loops.
20193
20194 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20195
20196         * class.c (mono_class_vtable): changed the object layout
20197         (obj->vtable->class). 
20198         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20199
20200 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20201
20202         * assembly.c: look for assemblies in the assembly dir, too.
20203
20204 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20205
20206         * class.c: fix thinko in mono_class_from_type().
20207
20208 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20209
20210         * exception.h, exception.c: added TypeLoadException.
20211         * object.h, object.c: added mono_array_clone ().
20212         * icall.c: handle throwOnError in AssemblyGetType().
20213         Added Array.Clone().
20214         * opcode.h, opcode.c: use a single value for the opcode val.
20215         Compile fix for non-gcc compilers.
20216
20217 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20218
20219         * opcodes.c, opcodes.h: export interesting info about opcodes.
20220
20221 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20222
20223         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20224         icalls. 
20225
20226         * class.c (class_compute_field_layout): set element_class for enums
20227         (mono_class_create_from_typedef): set element_class for normal classes
20228
20229         * icall.c (ves_icall_System_Enum_get_value): impl.
20230
20231         * class.c (mono_class_create_from_typedef): do not set valuetype
20232         flag for System.ValueType and System.Enum
20233
20234 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20235
20236         * unicode.c (iconv_convert): fix big endian problem.
20237
20238 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20239
20240         * class.c: add asserts if we are ever going to scribble over memory.
20241         * socket-io.c: not all systems have AF_IRDA defined.
20242
20243 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20244
20245         * class.c (class_compute_field_layout): do not consider static
20246         fields to compute alignment
20247
20248 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20249
20250         * appdomain.c (mono_appdomain_get): impl.
20251         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20252
20253 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20254
20255         * icall.c: ignore "file://" prefix when loading an assembly.
20256
20257 2002-01-23  Dick Porter  <dick@ximian.com>
20258
20259         * socket-io.c:
20260         * icall.c:
20261         * Makefile.am: Added socket support
20262
20263 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20264
20265         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20266         code back.  This should return the assemblies that are loaded by
20267         the runtime on behalf of an application domain. 
20268
20269         The current implementation is still broken, it just returns every
20270         assembly loaded, but until we get real applications domain this
20271         will do.
20272
20273 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20274
20275         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20276         AppDomain object.
20277
20278 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20279
20280         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20281         the mono_class_from_name lookup.
20282         (ves_icall_get_parameter_info): ditto.
20283         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20284         method.
20285         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20286
20287 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20288
20289         * class.c: load also nested classes on class init.
20290         System.ValueType instance methods gets passed boxed
20291         values, unless methods in derived classed that get a pointer to the
20292         data.
20293         * icall.c: use better name parsing code in GetType().
20294         * image.c, image.h: add mono_image_loaded ().
20295         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20296         * reflection.c, reflection.h: added mono_reflection_parse_type().
20297
20298 2002-01-22  Veronica De Santis <veron78@interfree.it>
20299
20300         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20301         * threads.c : Added the implementation of internal calls for events
20302         * threads.h : Added prototypes of internal calls for events
20303         
20304 2002-01-21  Radek Doulik  <rodo@ximian.com>
20305
20306         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20307
20308 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20309
20310         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20311         (mono_class_value_size): use min_align
20312
20313 2002-01-20  Dick Porter  <dick@ximian.com>
20314
20315         * threads.h:
20316         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20317         so it compiles on w32.
20318
20319 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20320
20321         * metadata.c (mono_type_stack_size): impl.
20322
20323         * class.c (mono_class_get_field): impl. memberref token
20324
20325 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20326
20327         * icall.h : Added the internal calls mapping for CreateMutex_internal
20328                     and ReleaseMutex_internal.
20329         * threads.h : Added the prototype of mutexes internal calls.
20330         * threads.c : Added the implementations of mutexes internal calls.
20331
20332 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20333
20334         * metaparse.h: removed unused file.
20335         * reflection.c, reflection.h: added stream_data_align () function 
20336         to align data in streams and keep stream aligned. Add support for
20337         exception support in method headers.
20338
20339 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
20340
20341         * unicode.c: make iconv_convert () return the number of bytess written
20342         in the output buffer.
20343
20344 2002-01-15  Dick Porter  <dick@ximian.com>
20345         * threads.c: Make the runtime's idea of infinite timeouts coincide
20346         with the class library's
20347
20348         Fix a particularly egregious bug in mono_thread_cleanup(). That
20349         code was so utterly bogus it must have been written on a Monday.
20350
20351 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20352
20353         * reflection.h: add subtypes field to TypeBuilder.
20354         * reflection.c: encode constants for literal fields.
20355         Handle subtypes. Fix user string token (and add a zero byte)
20356         at the end.
20357         
20358 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
20359
20360         * class.c (mono_class_init): bug fix: assign slot numbers for
20361         abstract methods.
20362
20363 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20364
20365         * reflection.c: don't try to output a code RVA for abstract methods.
20366         Small fixes for method header format. Output parameter info to the
20367         ParamDef table. Save method overriding info to MethodImpl table.
20368         Fix property support. Allow typedef.extends to be a type in the
20369         building assembly.
20370         * verify.c: fix off-by-one error.
20371
20372 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
20373
20374         * class.c: fix mono_class_from_mono_type () for szarray types.
20375         Remove unused cache check in mono_class_from_type_spec().
20376         * icall.c: *type_from_name () functions handle simple arrays and byref.
20377         * reflection.c: handle byref and szarray types. Handle methods without
20378         body (gets P/Invoke compilation working). Handle types and fields in
20379         get_token ().
20380         * reflection.h: add rank to MonoTypeInfo.
20381
20382 2002-01-10  Dick Porter  <dick@ximian.com>
20383
20384         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
20385         internal calls
20386
20387 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20388
20389         * icall.c: initialize class in type_from_handle ().
20390         Loop also in parent classes for get_method ().
20391         * reflection.c: properly encode class and valuetype types.
20392         Start on encoding TypeBuilder types. Handle fieldrefs.
20393         Use correct length when registering a user string.
20394         Handle ConstructorBuilder and MonoMethod in get_token ().
20395         Make mono_type_get_object () aware of cached types.
20396         * object.c: back out change to mono_string_new ().
20397
20398 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
20399         * object.c: mono_string_new should return a NULL when the string 
20400         passed in is NULL -- not try to deference it.
20401         
20402 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20403
20404         * icall.c: hack to make IsSubType work for TypeBuilders.
20405         * reflection.c: emit constructors before methods.
20406         Retrieve param names in mono_param_get_objects().
20407
20408 2002/01/05  Nick Drochak  <ndrochak@gol.com>
20409
20410         * Makefile.am: fix list of headers and sources so automake 1.5
20411         doesn't complain. Removed \# at end of list.
20412
20413 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20414
20415         * reflection.c: get token for a method ref. Set return type of
20416         constructor to void.
20417         * loader.c: debug message.
20418         * class.c: typo fix.
20419
20420 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
20421
20422         * icall.c: fix array init with rank > 1. FindMembers
20423         loops in parent class as well.
20424         * image.c: do not insert nested types in name cache.
20425         * reflection.c: warning fix.
20426         * reflection.h: add override method (for interface impl).
20427
20428 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
20429
20430         * metadata.c: fix customattr decoding.
20431
20432 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
20433
20434         * rawbuffer.cs: Added native Win32 implementation, avoids using
20435         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
20436
20437 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
20438
20439         * class.c: make the low-level routines handle the cache.
20440
20441 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
20442
20443         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
20444
20445 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
20446
20447         * class.c: fix mono_array_element_size() for objects.
20448         * class.h, class.c: add properties to MonoClass and load them
20449         at init time.
20450         * icall.c: check with isinst() when assigning a value to an array
20451         instead of requiring the classes to match exactly.
20452         Implemented icall for System.Type::GetType().
20453         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
20454         enums. Handle bindingflags when looking for methods and fields.
20455         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
20456         and mono_metadata_methods_from_property().
20457         * reflection.h, reflection.c: added structures for propreties,
20458         parameters and enums. Implemented mono_property_get_object() and
20459         mono_param_get_objects().
20460
20461 2001-12-18  Dick Porter  <dick@ximian.com>
20462
20463         * file-io.c: Use mono_string_to_utf16() instead of
20464         mono_string_chars()
20465
20466         * object.c: Added mono_string_to_utf16(), which copies the non
20467         NULL-terminated MonoString into a new double-null-terminated
20468         buffer.
20469
20470 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
20471
20472         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20473
20474 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20475
20476         * file-io.c: raise exceptions if handle is invalid.
20477
20478 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20479
20480         * assembly.c: yet another check for mscorlib.
20481         * class.c, class.h: load nesting info for classes.
20482         * icall.c: many new functions to support the Reflection classes.
20483         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20484         * reflection.h, reflection.c: mono_image_create_token(),
20485         mono_assembly_get_object(), mono_type_get_object(),
20486         mono_method_get_object(), mono_field_get_object(): methods to return
20487         objects that parallel the C representation of assemblies, types,
20488         methods, fields.
20489
20490 2001-12-11  Dick Porter  <dick@ximian.com>
20491
20492         * icall.c:
20493         * file-io.c: Internal calls for file IO.
20494
20495 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20496
20497         * tabledefs.h: missing FileAttributes.
20498         * verify.h, verify.c: use is_valid_string () to simplify and check for
20499         valid strings more correctly. Fix warnings and speeling.
20500         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20501         Check code: branches, maxstack, method calls.
20502
20503 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20504
20505         * object.c (mono_object_allocate): removed static, so that the jit
20506         can allocate value types.
20507
20508         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20509
20510 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20511
20512         * class.c: init enum types right away and register the
20513         token->MonoClass map in mono_class_create_from_typedef ().
20514         * verify.h, verify.c: first cut of the verifier.
20515         * pedump.c: add --verify switch to verify metadata tables.
20516         * tabledefs.h: add some missing enums.
20517
20518 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20519
20520         * class.c (mono_install_runtime_class_init): impl.
20521         (mono_class_init): renamed mono_class_metadata_init to
20522         mono_class_init, also removed the metadata_inited flag
20523
20524         * object.c (mono_object_isinst): use faster algorithm
20525
20526 2001-11-30  Radek Doulik  <rodo@ximian.com>
20527
20528         * mono-endian.h: reverted last change
20529         added function prototypes
20530
20531         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20532         add mono-endian.c back
20533
20534         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20535         for unaligned access, I've mistaked it with endianess. I am
20536         sorry.
20537         (mono_read16): fix reverted endianess
20538         (mono_read64): ditto
20539         (mono_read32): ditto
20540
20541 2001-11-30  Dick Porter  <dick@ximian.com>
20542
20543         * exception.c: Implement mono_exception_from_name()
20544
20545 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20546
20547         * metadata.h, metadata.c: remove params_size and locals_size and their
20548         calculation from the metadata code: they are only usefult to the
20549         interp.
20550
20551 2001-11-29  Radek Doulik  <rodo@ximian.com>
20552
20553         * object.c (mono_ldstr): swap bytes here, it's probably not the
20554         best place, but works for me now, I'll redo it once I know mono
20555         better, also note that I add PROT_WRITE and don't reset back, also
20556         note that it's only affects big endians, so x86 should be OK
20557
20558         * mono-endian.h (read16): use just glib macros for both endians
20559
20560         * mono-endian.c: removed as glib macros are used in in
20561         mono-endian.h so we don't need to care about endianess for read
20562         macros as glib does that for us already
20563
20564 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20565
20566         * class.h, class.h: take minimum alignment into consideration so
20567         that the fields of a class remain aligned also when in an array.
20568
20569 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20570
20571         * loader.h, loader.c: add mono_method_get_param_names().
20572         * class.c: 0-init class fields.
20573
20574 2001-11-26  Dick Porter  <dick@ximian.com>
20575
20576         * icall.c:
20577         * threads-types.h:
20578         * threads.c: New file that handles System.Threading on all platforms
20579
20580         * object.c: 
20581         * object.h: Remove the synchronisation struct from MonoObject,
20582         replace it with a pointer that gets initialised on demand
20583
20584         * Makefile.am: Replace all the system-specific threading code with
20585         a single file that uses the new wrapper library
20586
20587 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20588
20589         * class.c, class.h: add mono_install_trampoline() so that the runtime
20590         can register a function to create a trampoline: removes the ugly
20591         requirement that a runtime needed to export arch_create_jit_trampoline.
20592         * object.h, object.c: added mono_install_handler() so that the runtime
20593         can install an handler for exceptions generated in C code (with
20594         mono_raise_exception()). Added C struct for System.Delegate.
20595         * pedump.c: removed arch_create_jit_trampoline.
20596         * reflection.c: some cleanups to allow registering user strings and
20597         later getting a token for methodrefs and fieldrefs before the assembly
20598         is built.
20599         * row-indexes.h: updates and fixes from the new ECMA specs.
20600
20601 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20602
20603         * class.h, class.c: add enum_basetype field to MonoClass.
20604         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20605         to get index in the constant table reated to a field, param or
20606         property.
20607         * reflection.h, reflection.c: handle constructors. Set public-key and
20608         version number of the built assembly to 0.
20609         * row-indexes.h: update from new ECMA spec.
20610
20611 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20612
20613         * class.h, class.c: add a max_interface_id to MonoClass.
20614         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20615         since it's used to do that. Added mono_type_type_from_obj().
20616         Make GetType() return NULL instead of segfaulting if the type was not
20617         found. Handle simple arrays in assQualifiedName.
20618         * object.h: add a struct to represent an Exception.
20619         * reflection.c: output call convention in method signature.
20620         Add code to support P/Invoke methods and fixed offsets for fields.
20621
20622 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20623
20624         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20625         the value.
20626         * icall.c: use mono_array_addr instead of array->vector: fixes the
20627         reflection image writing.
20628         * reflection.c: init call convention byte to 0 in method signature.
20629         Encode the property signature. Don't output property-related methods
20630         twice. Really process the properties for a type (don't cast a field to
20631         a property, my mom always told me that).
20632         Fix 64 bit issues in pointer alignment in a different and more
20633         readable way.
20634
20635 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20636
20637         * loader.h: Removed type class from MonoDefaults, added monotype
20638
20639         * loader.c: Loaded MonoType, removed loading of Type
20640
20641         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20642         and fills in System.Type._impl with a RuntimeTypeHandle rather
20643         than the actual MonoClass *
20644
20645         (ves_icall_type_from_handle): change from type_class to
20646         monotype_class
20647
20648         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20649         implemented
20650
20651         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20652         implemented
20653
20654         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20655
20656         (ves_icall_System_Reflection_Assembly_GetType): implemented
20657
20658         (ves_icall_System_MonoType_assQualifiedName): implemented
20659
20660         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20661
20662 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20663
20664         * assembly.c (mono_assembly_open): Implement a cache for the
20665         assemblies. 
20666
20667         (mono_assembly_close): only destroy the assembly when the last
20668         reference is gone.
20669         
20670 2001-11-09  Dick Porter  <dick@ximian.com>
20671
20672         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20673
20674 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20675
20676         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20677
20678 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20679
20680         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20681         from Martin Weindel.
20682         * object.h: add mono_string_chars ().
20683
20684 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20685
20686         * reflection.c (build_compressed_metadata): Eliminates warnings
20687         and uses 64-bit clean code.
20688
20689         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20690         (mono_type_equal): Change signature to eliminate warnings.
20691
20692 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20693
20694         * icall.c, loader.c: remove the internalcall array constructors.
20695         Changes to match the new MonoArray structure.
20696         * object.h, object.c: an array object doesn't allocate an extra
20697         vector. Add mono_array_new_full () to create jagged arrays easily.
20698
20699 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20700
20701         * metadata.h, metadata.c: add mono_metadata_field_info () to
20702         retreive all the info about a field from vairous tables.
20703         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20704         * class.h, class.c: augment MonoClassField with more info.
20705         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20706         policy and load a field's RVA if needed.
20707
20708 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20709
20710         * class.c (mono_class_metadata_init): create a trampoline for all
20711         virtual functions instead of actually compiling them.
20712
20713 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20714
20715         * class.h, class.c: include name in MonoClassField.
20716         * class.c: fix fundamental type of System.Object and System.String.
20717         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20718         tokens in ldtoken.
20719         * icall.c: remove internalcalls for the Reflection stuff that is now
20720         done in C# code.
20721         * loader.c: mono_field_from_memberref () implementation.
20722         * mono-endian.c: thinko (s/struct/union/g).
20723         * object.c, object.h: make the mono_string_* prototypes actually use
20724         MonoString instead of MonoObject.
20725         * reflection.c, reflection.h: updates for changes in the reflection
20726         code in corlib: we use C structures that map to the actual C# classes.
20727         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20728         fat method header if needed and use the info from the ILGenerator for
20729         methods. Handle fields in types. Misc fixes.
20730
20731 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20732
20733         * class.c (mono_class_metadata_init): bug fix: always allocate
20734         space for static class data
20735
20736 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20737
20738         * class.c (mono_compute_relative_numbering): use relative
20739         numbering to support fast runtime type checks.
20740
20741 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20742
20743         * class.c (mono_class_create_from_typeref): added debugging output
20744         to print class name when MonoDummy is returned instead of real class
20745
20746 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20747
20748         * class.c (mono_class_metadata_init): interface offset table now
20749         contains pointers into the vtable - this is more efficient for the jit
20750
20751 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20752
20753         * class.c (mono_class_metadata_init): use a temporary vtable (the
20754         old algorithm only worked for the interpreter, but not for the jit)
20755
20756 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20757
20758         * loader.c (method_from_memberref): use mono_class_get to get the
20759         class of an array instead of using System.Array directly.
20760         (mono_get_method): also add MEMBERREF methods to the method cache
20761         which usefull for arrays.
20762
20763 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20764
20765         * pedump.c (arch_compile_method): added to compute vtable entry
20766
20767         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20768         number of interfaces.
20769         
20770         * class.h: merged MonoArrayClass into MonoClass
20771
20772         * class.c (mono_class_create_from_typedef): compute the vtable size and
20773         allocate space to include the vtable inside MonoClass
20774         (mono_class_metadata_init): initialize the vtable
20775
20776 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20777
20778         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20779         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20780         * image.c: endian fixes by Laurent Rioux.
20781         * object.h, object.c: rename MonoStringObject to MonoString and
20782         MonoArrayObject to MonoArray. Change some function names to conform to
20783         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20784         guint16* as first argument, so don't use char*.
20785         Provide macros to do the interesting things on arrays in a portable way.
20786         * threads-pthread.c: updates for the API changes and #include <sched.h>
20787         (required for sched_yield()).
20788         * icall.c: updates for the API changes above.
20789         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20790         platforms that need them.
20791
20792 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20793
20794         * class.c: set the correct type for all the fundamental
20795         type when loading the class.
20796
20797 2001-10-05  Dick Porter  <dick@ximian.com>
20798
20799         * threads-pthread.c (pthread_mutex_timedlock): Simple
20800         compatibility version for C libraries that lack this call.
20801
20802 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20803
20804         * class.c: MonoTypes stored in MonoClass are stored as
20805         fundamental MonoTypes when the class represents a
20806         fundamental type (System.Int32, ...).
20807         The TypeHandle return by ldtoken is a MonoType*.
20808         * icall.c: ves_icall_get_data_chunk () write out all the
20809         PE/COFF stuff. Implement ves_icall_define_method (),
20810         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20811         * image.c: properly skip unknown streams.
20812         * loader.h, loader.c: add type_class to mono_defaults.
20813         * metadata.c, metadata.h: export compute_size () as
20814         mono_metadata_compute_size () with a better interface.
20815         Typo and C&P fixes.
20816         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20817         * reflection.c, reflection.h: many cleanups, fixes, output method
20818         signatures and headers, typedef and typeref info, compress the metadata
20819         tables, output all the heap streams, cli header etc.
20820         * row-indexes.h: typo fixes.
20821
20822 2001-10-04  Dick Porter  <dick@ximian.com>
20823
20824         * object.h: Add a synchronisation mutex struct to MonoObject
20825
20826         * object.c (mono_new_object): Initialise the object
20827         synchronisation mutexes
20828
20829         * icall.c: System.Threading.Monitor internal calls
20830         
20831         * threads-pthread.h:
20832         * threads-pthread.c: System.Threading.Monitor internal calls
20833
20834         * threads-types.h: New file, includes the system-specific thread
20835         structures
20836         
20837         * threads-pthread-types.h:
20838         * threads-pthread-types.c: New files, handle pthread-specific
20839         synchronisation types
20840
20841         * threads-dummy-types.h: 
20842         * threads-dummy-types.c: New files of dummy support for
20843         thread-specific types
20844
20845         * metadata.c:
20846         * image.c:
20847         * pedump.c: include mono-endian.h not endian.h
20848         
20849         * Makefile.am: More threads files.
20850         Name mono-endian.h not endian.h
20851
20852 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20853
20854         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20855         stuff and implement a few more bits.
20856         * icall.c: a field needs to be dereferenced twice. Do not use the same
20857         name for two variables in the same scope.
20858         * image.c, image.h: cleanups.
20859
20860 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20861
20862         * class.c (mono_class_metadata_init): bug fix: compute the right size
20863
20864 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20865
20866         * icall.c: implemented some of the Reflection internalcalls.
20867         * image.c, image.h: start writing out the PE/COFF image.
20868         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20869         that does the reverse than decode_blob_size ().
20870         * object.c: use mono_metadata_encode_value (). Move here
20871         temporary implementation of mono_string_to_utf8 ().
20872         * rawbuffer.c: make malloc_map static.
20873
20874 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20875
20876         * metadata.c: fix type comparison for arrays.
20877         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20878         Added a couple of new classes to monodefaults.
20879         * icall.c: added a couple of Reflection-related internalcalls.
20880         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20881         Added a byval_arg MonoType to MonoClass.
20882
20883 2001-09-28  Dick Porter  <dick@ximian.com>
20884
20885         * icall.c:
20886         * threads-pthread.h: 
20887         * threads-pthread.c: Implemented internal calls for
20888         LocalDataStoreSlot operations.  Applied mutexes around all shared
20889         data.  Reworked the thread creation and Start() operations to
20890         avoid a race condition.
20891         
20892         * threads-dummy.h:
20893         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20894
20895 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20896
20897         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20898
20899 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20900
20901         * class.c, loader.c: warn and return NULL instead of erroring out.
20902         * icall.c: added System.AppDomain::getCurDomain().
20903         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20904
20905 2001-09-25  Dick Porter  <dick@ximian.com>
20906
20907         * threads-pthread.h:
20908         * threads-pthread.c: Implemented timed thread joining and added
20909         System.Threading.Thread::Join_internal internal call
20910
20911         * icall.c: Added System.Threading.Thread::Join_internal internal call
20912
20913         * threads-dummy.h:
20914         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20915
20916 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20917
20918         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20919         mono_string_intern () to implement the semantics of the ldstr opcode
20920         and the interning of System.Strings.
20921         * icall.c: provide hooks to make String::IsIntern and String::Intern
20922         internalcalls.
20923
20924 2001-09-23  Dick Porter  <dick@ximian.com>
20925
20926         * threads-dummy.c: 
20927         * threads-dummy.h: New files of dummy threading routines
20928
20929         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20930         support code based on system specifics
20931
20932         Rename PTHREAD_LIBS to THREAD_LIBS
20933         
20934 2001-09-23  Dick Porter  <dick@ximian.com>
20935
20936         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20937         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20938         internal calls.
20939         (mono_thread_init): Set up a Thread object instance to return when
20940         the main thread calls Thread.CurrentThread
20941         (mono_thread_cleanup): Wait for all subthreads to exit
20942
20943         * icall.c: New internal calls for System.Threading.Thread::Sleep
20944         (including Schedule) and CurrentThread
20945
20946         * threads.h: New file, to insulate thread-specific stuff from the
20947         rest of the code
20948
20949 2001-09-21  Dick Porter  <dick@ximian.com>
20950
20951         * threads-pthread.h: 
20952         * threads-pthread.c: New file, for handling pthreads-style
20953         threading support.  Start() now starts a new thread and executes
20954         the ThreadStart delegate instance.
20955
20956         * icall.c: Added the internalcall for
20957         System.Threading.Thread::Start_internal
20958
20959         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20960
20961 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20962
20963         * loader.c: work around the different signatures for delegates
20964         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20965
20966 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20967
20968         * class.h, class.c: add mono_class_get_field_from_name ().
20969         * *: Fix C comments and other ANSI C issues.
20970
20971 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20972
20973         * endian.h, assembly.c: fix some endianness issues.
20974
20975 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
20976
20977         * loader.h, load.c: add delegate_class to mono_defaults.
20978         Handle runtime provided methods in mono_get_method ().
20979
20980 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
20981
20982         * loader.c (mono_get_method): use pinvoke for internal call
20983
20984         * icall.c: use pinvoke for internal call
20985
20986         * loader.c (method_from_memberref): set the method name
20987
20988 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
20989
20990         * metadata.c: help the compiler generate better code for
20991         mono_class_from_mono_type ().
20992
20993 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
20994
20995         * class.c (mono_class_metadata_init): delayed computing of the
20996         class size to mono_class_metadata_init ()
20997
20998 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
20999
21000         * class.c, class.h: add an interfaces member to MonoClass.
21001         * image.c, image.h: add assembly_name field to MonoImage
21002         from the assembly table.
21003         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21004
21005 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21006
21007         * class.c: Handle Array in mono_class_from_mono_type ().
21008         * metadata.c, pedump.c: some endian fixes.
21009
21010 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21011
21012         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21013         * metadata.c: fix small problem introduced with the latest commit.
21014
21015 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21016
21017         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21018         We don't need a MonoMetadata pointer anymore to compare signatures in
21019         mono_metadata_signature_equal (), update callers.
21020         Reduced memory usage an number of allocations for MonoMethodHeader and
21021         MonoMethodSignature.
21022
21023 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21024
21025         * metadata.c: added compare for szarray.
21026
21027 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21028
21029         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21030         and add a couple more types to it and mono_defaults. Give an hint on
21031         classes that need implementing in our corlib and are referenced
21032         in mscorlib.
21033
21034 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21035
21036         * class.h, class.c: keep track if a class is also an Enum.
21037         * loader.c: Implement a couple more types for use in libffi
21038         marshalling. Gives better diagnostics when failing to dlopen
21039         a library. Set method->klass for P/Invoke methods, too.
21040
21041 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21042
21043         * class.c, class.h: add a MonoType this_arg to MonoClass that
21044         represents a pointer to an object of the class' type that
21045         can be used by the interpreter and later the type cache.
21046         Add best guess alignment info for valuetype objects.
21047
21048 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21049
21050         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21051         into MonoType: one less level of indirection and allocation and
21052         simplifies quite a bit of code. Added cache for MonoTypes that are
21053         used frequently, so that we don't need to allocate them all the time.
21054
21055 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21056
21057         * class.c (mono_class_create_from_typedef): System.Enum is also a
21058         value type, although it does not derive from System.ValueType
21059         (maybe a bug in the ms compiler?)
21060
21061         * metadata.c (mono_type_size): return the right size for value types
21062
21063         * loader.c (mono_get_method): only initialize method header if not abstract
21064
21065         * class.c (mono_class_from_mono_type): use mono_default values. 
21066
21067 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21068
21069         * *: use MonoClass pointers instead of <type_tokens>
21070         
21071         * class.h: new flag: metadata_inited.
21072
21073         * class.c (mono_class_metadata_init): impl.
21074         (mono_class_instance_size): impl.
21075         (mono_class_data_size): impl.
21076
21077 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21078
21079         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21080         MonoClass now has the name and name_space fields. 
21081         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21082         mono_get_method () takes and optional MonoClass as argument.
21083         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21084         instead that takes advantage of a map from class names to typedef
21085         tokens in MonoImage.
21086
21087 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21088
21089         * metadata.c: zero is not a valid alignment boundary.
21090         Merge MONO_TYPE_VOID in default decoding code.
21091
21092 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21093
21094         * image.h: merged MonoMetadata into MonoImage
21095
21096         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21097         identify the type of elements.
21098
21099 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21100
21101         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21102         * cil-coff.h: split MonoMSDOSHeader and add size info.
21103         * image.c: add some consistency checks.
21104         * metadata.c: fix row size computation: one programmer
21105         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21106         add explanation for the locator routine.
21107         Fix decoding of size in method header.
21108         
21109 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21110
21111         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21112         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21113         function from gnome-libs.  This uses the right path separator
21114         based on the OS, and also works around a bug in some systems where
21115         a double slash is not allowed. 
21116         (default_assembly_name_resolver): Use g_concat_dir_and_file
21117         (mono_assembly_open): ditto.
21118
21119 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21120
21121         * metadata.c (mono_metadata_signature_equal): impl.
21122
21123         * *: void is now a realy MonoType (instead of using NULL)
21124         
21125         * metadata.c (do_mono_metadata_parse_type): use
21126         mono_metadata_parse_type to parse void value.
21127
21128 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21129
21130         * metadata.c, metadata.h: in the signature and method header store
21131         only the space required for holding the loca vars and incoming arguments.
21132
21133 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21134
21135         * metadata.c (do_mono_metadata_parse_type): treat void like any
21136         other type (instead of assigning NULL);
21137
21138 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21139
21140         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21141
21142 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21143
21144         * image.c (do_mono_image_open): added a cache for arrays.
21145
21146 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21147
21148         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21149         decode a single column from a row in a metadata table and changes
21150         to take advantage of it in the typedef locator (gives a nice speed up).
21151         Store offset info for function params.
21152
21153 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21154
21155         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21156
21157 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21158
21159         * assembly.c: how could mono_assembly_close () had ever worked?
21160         * metadata.c, metadata.h: provide offset info for local vars.
21161         Implement mono_type_size () to take care of alignment as well
21162         as size (it was mono_field_type_size in cli/class.c before).
21163
21164 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21165
21166         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21167
21168         * assembly.h (CORLIB_NAME): set to corlib.dll
21169
21170         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21171
21172 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21173
21174         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21175         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21176         tokentype.h: massive namespace cleanup.
21177
21178 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21179
21180         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21181
21182 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21183
21184         * metadata.c (mono_metadata_free_type): added check for type !=
21185         NULL (void) before calling mono_metadata_free_type()
21186
21187 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21188
21189         * metadata.h, row_indexes.h: added header with enumerations to use
21190         to index in the columns from tables in metadata and to decode coded
21191         tokens: we should start using this instead of embedding magic numbers
21192         all over the code.
21193
21194 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21195
21196         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21197         Move metadata_t info from cli_image_info_t to MonoImage, where
21198         it's easily accessible. Changed all the uses accordingly.
21199         Added the method and class caches to MonoImage.
21200         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21201         and mono_metadata_decode_value () signature to be more consistent
21202         with the other parse functions (and simplify code). Taken advantage
21203         of zero-length array allocation with GCC. Removed reduntant (and
21204         wrong) MonoFieldType struct and use MonoParam instead. Changed
21205         mono_metadata_parse_field_type () to use common code for parsing.
21206         Added mono_metadata_typedef_from_field () and
21207         mono_metadata_typedef_from_method () to lookup a typedef index from a
21208         field or method token.
21209         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21210
21211 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21212
21213         * metadata.c (mono_metadata_parse_field_type): Implement. 
21214         (do_mono_metadata_parse_type): Split engine from
21215         mono_metadata_parse_type, so that we can create smaller structures
21216         for things that just have one pointer to the MonoType (look at
21217         the MonoFieldType)
21218
21219 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21220
21221         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21222         as Jan Gray found out, it is incorrect. 
21223
21224 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21225
21226         * assembly.c: Implement asssembly loading.  This loads an image
21227         and loads all the referenced assemblies.  Come to think of it, we
21228         could always do lazy loading of the assemblies. 
21229
21230         * image.c (mono_image_open): Keep loaded images in a hashtable.
21231
21232         * image.h (MonoImage): Add reference count.
21233
21234 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21235
21236         * assembly.c (mono_assembly_open): Keep track of the file name in
21237         case the assembly has no ASSEMBLY table.
21238
21239         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21240         from get.c here.
21241
21242 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21243
21244         * metadata.c, metadata.h: decode local vars in method header
21245         parse function. Change callers accordingly.
21246
21247 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21248
21249         * metadata.h, cil-coff.h: protect against multiple inclusion.
21250         Added some new structures to hold information decoded from metadata:
21251         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21252         and relevant decoding/free functions.
21253         * metadata.c: implement decoding functions. Add warning for out of bounds
21254         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21255         all the info about a method signature and invocation. Remove check on
21256         uninitialized local var in parse_mh() and fix memory leak.
21257
21258 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21259
21260         * metadata.h: More macros.
21261
21262         * tokentype.h: New file.
21263
21264 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21265
21266         * assembly.c: added a consistency check and initialize
21267         some structures with g_new0().
21268         * metadata.c: fixed a couple more bugs in table size computation
21269         and add other checks for out-of bound access to metadata.
21270
21271 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21272
21273         * metatada.c: fix bugs computing table sizes. Spew a
21274         warning when index in string heap is out of bounds.
21275
21276 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21277
21278         * metadata.h: Add a couple of macros to manipulate tokens. 
21279
21280 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21281
21282         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21283         cli_section_tables).
21284
21285 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21286
21287         * metadata.c (mono_metadata_user_string): New function, provides
21288         access to the UserString heap. 
21289
21290 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21291
21292         * metadata.c: Add inline documentation.
21293
21294 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21295
21296         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21297         files. 
21298
21299 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21300
21301         * typeattr.h: New file, TypeAttribute flags. 
21302
21303 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21304
21305         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21306         mono_assembly_ensure_section): Section loading code.
21307         (load_section_tables): Load the sections.
21308
21309         * mono/metadata/metadata.c (mono_metadata_locate_token,
21310         mono_metadata_locate): Functions to locate the information
21311         definition given a token or a table and an index.
21312         (mono_metadata_compute_table_bases): New.
21313         (compute_size): New function to compute the sizes of the various
21314         tables.
21315
21316         * mono/metadata/metadata.h: Finish listing the different index
21317         types. 
21318
21319         * mono/metadata/pedump.c: Improve to dump new information.
21320
21321 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21322
21323         * mono/metadata/metadata.c: Entered all the tables matching
21324         Beta2. 
21325
21326         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21327
21328
21329