2007-06-08 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
2
3        * metadata.c: Move variable declarations to top of scope.
4        * verify.c: Move variable declarations to top of scope.
5
6        Code is contributed under MIT/X11 license.
7
8 2007-06-08  Raja R Harinath  <rharinath@novell.com>
9
10         * reflection.c (mono_class_bind_generic_parameters): Replace
11         open-coded loop with mono_metadata_inflate_generic_inst.
12
13         * class.c (get_shared_generic_class): Don't call
14         mono_get_shared_generic_inst.  Use the container's own
15         'class_inst'.
16
17         * metadata.c (mono_metadata_load_generic_params): Move
18         initialization of 'context' field here from ...
19         * class.c (mono_class_create_from_typedef): ... here, and ...
20         * loader.c (mono_get_method_from_token): ... here.
21
22         * class.c (get_shared_generic_class): Rename from
23         mono_get_shared_generic_class and make static.
24         (mono_get_shared_generic_inst): Move to metadata.c.
25         * loader.c (mono_get_shared_generic_method): Likewise.
26         * class-internals.h, metadata-internals.h: Update to changes.
27
28         Fix #81830
29         * class.c (mono_class_from_generic_parameter): Don't assume a
30         generic container owner exists.  Generic containers from monodis
31         don't have any.
32
33 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
34
35         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
36         * verify.h: new typedefs to returns the non-verifiable status
37         * verify.c: initial implementation of generics, stack merging and object compatibility check
38
39 2007-06-06  Mark Probst  <mark.probst@gmail.com>
40
41         * class.c, image.c, class-internals.h (MonoImage): class_cache is
42         a MonoInternalHashTable again (fixed bug in internal hash table
43         code).
44
45 2007-06-06  Mark Probst  <mark.probst@gmail.com>
46
47         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
48         MonoInternalHashTable again (fixed bug in internal hash table
49         code).
50
51 2007-06-06  Mark Probst  <mark.probst@gmail.com>
52
53         * class.c, image.c, class-internals.h, domain.c,
54         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
55         changes.  Have to figure out what makes them break the SWF
56         regression.
57
58 2007-06-04  Mark Probst  <mark.probst@gmail.com>
59
60         * class.c, image.c, class-internals.h (MonoImage): class_cache is
61         a MonoInternalHashTable now.
62
63 2007-06-04  Mark Probst  <mark.probst@gmail.com>
64
65         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
66         MonoInternalHashTable now.
67
68 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
69
70         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
71         invoke_impl code.
72
73         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
74
75         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
76         dependent trampoline.
77
78         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
79
80         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
81
82 2007-05-29  Robert Jordan  <robertj@gmx.net>
83
84         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
85
86 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
87
88         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
89
90 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
91
92        * marshal.c: Fix interface lookup loops for
93        cominterop_get_com_slot_for_method and 
94        cominterop_get_method_interface. Only need to lookup
95        if type is a class, else use interface type method is on.
96
97        Code is contributed under MIT/X11 license.
98
99 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
100
101         * reflection.c: HasSecurity can be present even if no specially 
102         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
103         SecurityAttribute). Fix CAS regression tests on buildbot.
104
105 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
106
107        * appdomain.c: Add configure checks for header files.
108        * image.c: Add configure checks for header files.
109        * file-io.c: Add configure checks for header files.
110        * debug-mono-symfile.c: Add configure checks for header files.
111        * threadpool.c: Add configure checks for header files.
112        * console-io.c: Add configure checks for header files.
113        * profiler.c: Add configure checks for header files.
114        * rawbuffer.c: Add configure checks for header files.
115        * icall.c: Add configure checks for header files.
116        * rand.c: Add configure checks for header files.
117        * socket-io.c: Add configure checks for header files.
118
119        Code is contributed under MIT/X11 license.
120
121 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
122
123         * reflection.c (mono_custom_attrs_from_builders): Remove the 
124         assertion as it breaks the build.
125         
126         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
127
128         * reflection.c (lookup_custom_attr): Make a copy here too.
129
130         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
131         dynamic images.
132
133         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
134         images.
135
136         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
137         info.
138
139 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
140
141         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
142         (load_cattr_value): Ditto.
143
144 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
145
146         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
147
148 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
149
150         * threads.c: In "start_wrapper", set apartment_state to MTA if
151         apartment_state is Unknown and we're running on 2.0 profile or
152         higher.
153         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
154         to main method, then set apartment_state to Unknown on 1.0 profile,
155         and MTA on 2.0 profile.
156
157 2007-05-16  Jb Evain  <jb@nurv.fr>
158
159         * class-internals.h (MonoDefaults): Add an attribute_class and
160           customattribute_data_class.
161         * domain.c (mono_init_internal): Populate them.
162         * reflection.c: Use them to remove duplicates. Make a vew
163         MonoClass variables `static'.
164
165 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
166
167         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
168         step in implementing IMT, so that all isinst checks now can go
169         through the bitmap.
170         This was needed because vtables for TransparentProxy need to look
171         like the vtable of the "target" class, so they need to point to
172         its interface bitmap directly.
173
174         * object.c: inside "mono_class_create_runtime_vtable" and
175         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
176
177 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
178
179         * object-internals.h
180           culture-info.h : added territory field in MonoCulture and
181           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
182         * locales.c : fill territory field above too.
183         * culture-info-table.h : regenerated.
184
185 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
186
187         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
188         Fixes #81599.
189
190 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
191
192         * object.c: Always initialize apartment, even if 
193         there is no custom attributes on entry point.
194         
195         Code is contributed under MIT/X11 license.
196
197 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
198
199         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
200         * metadata.c: If no encoding is set, check for unicode
201         on class.
202         
203         Code is contributed under MIT/X11 license.
204
205 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
206
207         * threads.c: Handle if mono_thread_current returns NULL 
208         
209         Code is contributed under MIT/X11 license.
210
211 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
212
213         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
214         in start_wrapper. Added mono_thread_init_apartment_state and
215         mono_thread_cleanup_apartment_state.
216         * object.c: Initialize thread apartment state on main thread
217         by checking for STAThreadAttribute on entry point.
218         * object-internals.h: Add apartment_state field to MonoThread.
219         * threads-types.h: Add unmanaged definition of 
220         System.Threading.ApartmentState, MonoThreadApartmentState.
221         
222         Code is contributed under MIT/X11 license.
223         
224 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
225
226         * class.c: Fix windows build.
227         * class-internals.h: Fix windows build.
228         
229         Code is contributed under MIT/X11 license.
230
231 2007-05-08  Robert Jordan  <robertj@gmx.net>
232
233         * process.c (CreateProcess_internal):
234         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
235         .CreateNoWindow was specified. Fixes #81496.
236
237 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
238
239         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
240         step in implementing IMT, replaced it with two compact arrays
241         (interfaces_packed and interface_offsets_packed) and a bitmap that
242         is used for isinst checks (interface_bitmap).
243
244         * class.c: (compare_interface_ids): compare function to pass to
245         bsearch when looking for an interface with a given id.
246         (mono_class_interface_offset): reimplemented using bsearch on
247         interfaces_packed, getting the offset from interface_offsets_packed.
248         (print_implemented_interfaces): utility debugging function.
249         (setup_interface_offsets): reworked to initialize interfaces_packed,
250         interface_offsets_packed and interface_bitmap.
251
252         * object.c: replaced all accesses to "MonoClass.interface_offsets"
253         with uses of interfaces_packed and interface_offsets_packed.
254
255 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
256
257         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
258         mono_class_interface_offset prototype to wrap all accesses to
259         "MonoClass.interface_offsets".
260
261         * class.c: Implemented mono_class_interface_offset, and wrapped all
262         accesses to "MonoClass.interface_offsets".
263
264         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
265         "MonoClass.interface_offsets".
266
267 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
268
269         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
270         GetMethodFromHandle overloads (bug #78637).
271
272 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
273
274         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
275         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
276
277 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
278
279         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
280         #81498.
281
282         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
283         gracefully.
284         (mono_custom_attrs_from_index): Ditto.
285
286         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
287         Fixes #81501.
288
289 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
290
291         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
292         is now allocated from a mempool.
293
294 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
295
296         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
297         caller holds threads_lock, leading to deadlocks. Fixes #81476.
298
299 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
300
301         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
302         mono_loader_clear_error () too late. Fixes #81463.
303
304 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
305
306         * culture-info-table.h : regenerated.
307
308 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
309
310         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
311         is missing.
312
313 2007-04-25  Dick Porter  <dick@ximian.com>
314
315         * Makefile.am: Put the mingw enforced-optimisation back into the
316         PLATFORM_WIN32 section.
317
318 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
319
320         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
321         patch.
322
323         * image.c (mono_image_load_module): New API function to load a module reference.
324
325         * image.c (load_modules): Load modules lazily. Fixes #80812.
326
327         * class.c (mono_class_from_typeref): Use mono_image_load_module.
328         
329         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
330
331         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
332         to mono_image_load_module_dynamic.
333
334 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
335
336         * marshal.c: Fix calling convention for CCW on non-windows
337         platforms. STDCALL on windows, CDECL everywhere else to work 
338         with XPCOM and MainWin COM.
339         
340         Code is contributed under MIT/X11 license.
341
342 2007-04-23  Martin Baulig  <martin@ximian.com>
343
344         Fix #80969.
345
346         * loader.c
347         (method_from_memberref): Added `gboolean *used_context' argument.
348         (mono_get_method_from_token): Likewise.
349         (mono_get_method_full): Don't insert the method in the cache when
350         `used_context' is true.
351
352 2007-04-23  Raja R Harinath  <rharinath@novell.com>
353
354         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
355
356         * reflection.c (mono_reflection_bind_generic_parameters): Don't
357         create new MonoTypes for returned types.
358         * class.c (mono_generic_class_get_class): Export mono-internal.
359         * class-internals.h: Update to changes.
360
361 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
362
363         * threadpool.c, threadpool.h, icall-def.h: patch from
364         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
365
366 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
367
368         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
369         
370         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
371
372         * threads.c (mono_thread_get_stack_bounds): New helper function.
373
374         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
375         Correctly compute stack bounds when attaching. Fixes #81394.
376
377 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
378
379         * reflection.c: fix handling of doubles in custom attributes
380         for the arm-fpa format (bug #81368).
381
382 2007-04-18  Raja R Harinath  <rharinath@novell.com>
383
384         * reflection.c (assembly_add_win32_resources): Mildly relax an
385         bounds check to let the end pointer point just past the end of the
386         allocated buffer.  (may fix #81384)
387
388 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
389
390         * culture-info-table.h : regenerated.
391
392 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
393
394         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
395         the thread is aborted early.
396
397 2007-04-05  Dick Porter  <dick@ximian.com>
398
399         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
400         FindFirstFile()/FindNextFile() to find entries.  This lets the
401         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
402         81038.
403
404         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
405         the parameters of
406         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
407
408 2007-04-04  Martin Baulig  <martin@ximian.com>
409
410         * debug-helpers.c
411         (mono_method_desc_full_match): Add support for nested classes.
412
413 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
414
415         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
416
417 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
418
419         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
420         waiting for too many threads.
421
422 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
423
424         * environment.c: Fix return value check on uname so we can get the 
425         executing version on Solaris operating systems.
426
427 2007-03-28  Jb Evain  <jbevain@gmail.com>
428
429         * class.c (mono_type_get_name_recurse): Complete the
430         fix for the creation of assembly qualified names for
431         pointer types. Fixes #81208.
432
433 2007-03-27  Dick Porter  <dick@ximian.com>
434
435         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
436         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
437         changed.
438
439         * threads.c
440         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
441         the value of ReleaseMutex().
442
443 2007-03-27  Dick Porter  <dick@ximian.com>
444
445         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
446         in little-endian order, not network endian, so must be converted
447         to host endian here.  Fixes bug 80593.
448
449 2007-03-22  Jb Evain  <jbevain@gmail.com>
450
451         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
452         qualified names for pointer types. Fixes #81208.
453
454 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
455
456         * marshal.c: Add support for PreserveSigAttribute. 
457         
458         Code is contributed under MIT/X11 license.
459
460 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
461
462         * process.c: Fix endianness issues. Fixes #81126.
463
464         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
465         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
466
467         * image.c (mono_image_lookup_resource): Make this work on big-endian
468         machines.Change API contract so the caller needs to free the return value.
469         
470         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
471         API change.
472         
473 2007-03-14  Martin Baulig  <martin@ximian.com>
474
475         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
476         mono_type_get_desc() as well.
477
478 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
479
480         * icall.c:  Fix environ access in VS.  
481         
482 2007-03-13  Alp Toker  <alp@atoker.com>
483
484         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
485         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
486         #63841.
487
488 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
489
490         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
491         circular references among dynamic methods. Fixes #81091.
492
493         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
494
495 2007-03-09  Martin Baulig  <martin@ximian.com>
496
497         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
498
499 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
500
501         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
502         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
503         
504         Code is contributed under MIT/X11 license.
505         
506 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
507
508         * loader.c: Reapply patch for bug #79424.
509
510 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
511
512         * metadata.c (mono_type_to_unmanaged): Only convert object to
513         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
514
515 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
516
517         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
518         (and incorrectly set) is_reference field from MonoGenericInst.
519
520 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
521
522         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
523         a little earlier.
524
525         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
526
527         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
528
529 2007-03-05  Miguel de Icaza  <miguel@novell.com>
530
531         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
532         FileOptions.1 value to mean "temporary", map that to
533         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
534
535         Fixes 80688
536
537 2007-03-03  Marek Habersack  <mhabersack@novell.com>
538
539         * appdomain.c: implement MS .Net style shadow copying. Copies of
540         the assemblies are made in a subdirectory of the dynamic base
541         directory, the assembly names are preserved.
542         Copy .mdb and .config files along with the assemblies being shadowed.
543
544 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
545
546         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
547         (emit_marshal_handleref): Ditto.
548
549         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
550         on Visual C++. Fixes #80671.
551
552 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
553
554         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
555         for clone operations.
556
557 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
558
559         * marshal.c: Fix warnings.
560
561 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
562
563         * loader.c: allow case-insensitive matching of the dll name
564         in dllmap handling when prefixed with "i:".
565
566 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
567
568         * threads.c: Fix #ifdef for dummy_apc function for VS.
569
570 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
571
572         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
573
574 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
575         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
576         giving precedence to the methods with a fully qualified name
577         (InterfaceName.MethodName) when building the interface sections
578         of the vtable.
579
580 2007-02-16  Dick Porter  <dick@ximian.com>
581
582         * threadpool.c (append_job): Fix fast-path array handling, so it's
583         less likely the array will grow exponentially when the load is
584         heavy.
585
586 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
587
588         * metadata-internals.h, loader.c: fix dllmap lookup order
589         for non-function maps, too, and prepare for fallback code.
590
591 2007-02-12  Robert Jordan  <robertj@gmx.net>
592
593         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
594         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
595         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
596         GlobalFree. Fixes a part of bug #77075.
597
598 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
599
600         * loader.c: implemented typedef parent in field memberref.
601
602 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
603
604         * marshal.c: Fix warnings and remember to call Release on
605         IUnknown of RCW.
606         
607         Code is contributed under MIT/X11 license.
608
609 2007-02-10  Miguel de Icaza  <miguel@novell.com>
610
611         * class-internals.h: Add MonoHandleRef definition, and
612         handleref_class to mono_defaults. 
613
614         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
615         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
616
617         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
618         (do nothing on this stage)
619         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
620         (emit_marshal_handleref): New method, used for argument handling
621         of HandleRefs. 
622
623 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
624
625         * class.c (mono_class_setup_parent): Lazily init com types.
626         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
627         init com types.
628         * object.c (mono_remote_class_vtable): Lazily init com types.
629         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
630         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
631         * domain-internals.h: Expose mono_init_com_types.
632         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
633         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
634         Add support for COM Callable Wrapper marshalling.
635         * marshal.h: Add icall definitions.
636         * gc.c: Handle freeing of CCWs in finalizer code.
637         
638         Code is contributed under MIT/X11 license.
639
640 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
641
642         * reflection.c: changed all the signature encoding code to use
643         a variable-sized buffer.
644
645 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
646
647         * marshal.c: locking fixes: never take the loader lock
648         or other runtime locks when holding the marshal lock
649         (fixes bug#80664).
650
651 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
652
653         * marshal.c: make the delegate function pointer mapping
654         work for the moving GC.
655
656 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
657
658         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
659         for bug #80618.
660
661 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
662
663         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
664         gmodule.
665
666 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
667
668         * threadpool.c: made the code moving-GC safe.
669
670 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
671
672         * assembly.c, boehm-gc.c, class-internals.h, class.c,
673         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
674         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
675         warning cleanup.
676         * reflection.c: warning cleanup, some threading and moving GC fixes.
677
678 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
679
680         * class.c, loader.c: create the needed Set/Get/Address array methods
681         as well as the .ctors in mono_class_init (), fixes bug #80567.
682
683 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
684
685         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
686         we doesn't decrease its alignment. Should fix the sparc build.
687
688 2007-01-24  Dick Porter  <dick@ximian.com>
689
690         * socket-io.c
691         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
692         Create the returned object if we need to ignore an unsupported
693         socket option.  Fixes a segfault reported by Atsushi.
694
695 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
696
697         * class.c, object.c: restrict GC-tracked fields to
698         UIntPtr fields used inside corlib, so we provide better
699         type info to the GC and also allow broken packing as in
700         bug #80580.
701
702 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
703
704         * sgen-gc.c: removed duplicated function.
705
706 2007-01-19  Miguel de Icaza  <miguel@novell.com>
707
708         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
709         value that means that the value is not supported, but that we
710         should not return a failure, but instead report this as a
711         successful operation.
712
713 2007-01-19  Raja R Harinath  <rharinath@novell.com>
714
715         Fix tests/bug79956.2.il
716         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
717         (mono_generic_class_get_class): If the generic definition in an
718         enum, copy over other fields related to it.
719
720 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
721
722         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
723         genericinst enums (bug #79215).
724
725 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
726         * class.c: Fix bug 80307.
727
728 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
729
730         * image.c: if the file table is not present, try to load
731         all the modules, since we don't have info about them
732         having or not metadata (bug #80517).
733         * assembly.c: allow mono_assembly_load_references () to
734         work for netmodules.
735
736 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
737
738         * image.c, metadata-internals.h, object.c: execute module
739         cctors when running on the 2 runtime if present (bug #80487).
740
741 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
742
743         * icall.c: optimized InitializeArray() on bigendian.
744
745 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
746
747         * icall.c: fix for the broken ARM FPA double format.
748
749 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
750
751         * icall.c: handle endian issues for r4 and r8 types, too, in
752         the InitializeArray() icall.
753
754 2007-01-15  Miguel de Icaza  <miguel@novell.com>
755
756         * loader.c (mono_loader_error_prepare_exception): Clear the error
757         once we have extracted the information from it, do this before we
758         call into the JIT's class loading mechanisms.
759
760         * object.c (mono_class_create_runtime_vtable): Do not clear the
761         loader error before calling mono_class_get_exception_for_failure
762         as the loader error is needed inside
763         mono_class_get_exception_for_failure to throw the error (thinko).
764
765         Fixes #80521
766         
767 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
768
769         * reflection.c: align fields rva data so it's faster to load at
770         runtime.
771
772 2007-01-12  Raja R Harinath  <rharinath@novell.com>
773
774         Prepare to simplify GenericMethod handling.
775         * class-internals.h (mono_method_get_context): New accessor function.
776         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
777         rather than directly accessing '->context' field.
778
779         * class-internals.h (_MonoGenericParam.method): Move ...
780         (_MonoGenericContainer): ... here.  Add into union with klass field.
781         * class.c, icall.c, loader.c, metadata.c, reflection.c:
782         Update to changes.
783
784 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
785
786         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
787         the wrapper type enum and reduce relocations.
788
789 2007-01-12  Raja R Harinath  <rharinath@novell.com>
790
791         * reflection.c (inflate_mono_method): Reuse method instantiation
792         from the generic method, if available.
793
794 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
795
796         * marshal.c (emit_marshal_variant): Fix conv_arg
797         type in last commit, based on whether parameter is byref.
798         
799 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
800
801         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
802         marshalling.
803         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
804         MONO_TYPE_OBJECT back for VARIANT support.
805
806 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
807
808         * marshal.c, marshal.h, icall-def.h: Implement 
809         Marshal.ReAllocCoTaskMem.
810
811 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
812
813         * marshal.c: memory retention fixes: use the proper
814         image cache for runtime_invoke method lookups.
815
816 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
817
818         * mempool.c: added code to help debug mempool allocations.
819
820 2007-01-11  Dick Porter  <dick@ximian.com>
821
822         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
823         support (experimenting with faking it with IP_MTU_DISCOVER for
824         systems that don't have IP_DONTFRAGMENT.)
825         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
826         icall.
827
828         * icall-def.h: new System.Net.Sockets.Disconnect icall.
829
830         * socket-io.h: Add new fields to MonoSocketAsyncResult
831         corresponding to the new ones in Socket.cs.
832
833 2007-01-11  Raja R Harinath  <rharinath@novell.com>
834
835         Fix IronPython regression mentioned in #80249
836         * metadata.c (do_mono_metadata_parse_generic_class): Clear
837         'cached_context' field, since it may have been initialized as a
838         side-effect of metadata parsing.
839
840         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
841         (_MonoGenericClass.cached_class): Move here and rename from lone
842         remaining field of ...
843         (_MonoInflatedGenericClass): ... this.  Remove.
844         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
845         to changes.
846
847         Fix mcs/tests/test-128.cs regression.
848         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
849         2007-01-10 change below.
850         [MONO_TYPE_OBJECT]: Recurse into array case.
851
852 2007-01-11  Raja R Harinath  <harinath@gmail.com>
853
854         * class-internals.h (mono_get_inflated_generic_class): Remove.
855         * class.c (mono_get_inflated_generic_class): Remove.
856         (mono_generic_class_get_class): Rename from
857         mono_class_create_generic.
858         (mono_class_from_mono_type) [GENERICINST]: Use it.
859         * reflection.c, metadata.c: Update to changes.  Use
860         'mono_class_from_mono_type'.
861
862 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
863
864         * reflection.c: use passed type when encoding an array element
865         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
866
867 2007-01-09  Robert Jordan  <robertj@gmx.net>
868
869         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
870         result arguments (someDelegate.EndInvoke (unrelatedAres)).
871         Fixes bug #80392.
872
873 2007-01-09  Raja R Harinath  <rharinath@novell.com>
874
875         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
876
877         * object.c (set_value): Avoid aliasing between type->data.klass
878         and type->data.generic_class.
879
880         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
881
882 2007-01-08  Raja R Harinath  <rharinath@novell.com>
883
884         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
885         between type->data.klass and type->data.generic_class.
886
887 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
888
889         * marshal.c: In MS.NET, StringBuilder objects are not copied by
890         value in out parameters.
891
892 2007-01-08  Raja R Harinath  <rharinath@novell.com>
893
894         Simplify invariant for MonoGenericClass::klass field.
895         * class.c (mono_class_create_generic): Verify 'klass' is null.
896         * metadata.c (do_mono_metadata_parse_generic_class): Don't
897         initialize 'klass' field.
898
899 2007-01-05  Raja R Harinath  <rharinath@novell.com>
900
901         Ongoing work to avoid redundant data and simplify invariants.
902         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
903         'generic_class', and change type to a GenericInst.
904         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
905         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
906
907 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
908
909         * class.c : skip io-layer under PLATFORM_WIN32.
910
911 2007-01-03  Tor Lillqvist  <tml@novell.com>
912
913         Fix #80305: In a bundled executable, look in the bundled exe
914         assembly to determine the runtime version. Add the possibility to
915         bundle also the machine.config file.
916         
917         * assembly.c (mono_assembly_open_from_bundle): Make
918         non-static. Allow being called even if we have no bundled
919         assemblies, and return NULL right away in that case.
920
921         * domain-internals.h: Declare mono_assembly_open_from_bundle()
922         here.
923
924         * domain.c (app_config_parse): Take an assembly exe file name as
925         parameter instead of a config file name. Check for a bundled
926         config file for that assembly by calling
927         mono_config_string_for_assembly_file() (see below) before looking
928         for one in the file system.
929         (get_runtimes_from_exe): Corrsponding change to call of
930         app_config_parse().
931         (get_runtimes_from_exe): Check for bundled assembly exe file first
932         by calling mono_assembly_open_from_bundle(). If no bundled
933         assembly exe file is found, call mono_image_open() as before to
934         look it up in the file system.
935
936         * mono-config.c: Add variable bundled_machinec_onfig.
937         (mono_config_string_for_assembly_file): New function.
938         (mono_config_for_assembly): Move code snippet that looks for a
939         bundled assembly .config file into the above new function. Call
940         it.
941         (mono_register_machine_config, mono_get_machine_config): New
942         functions to set and retrieve
943
944         * assembly.h: Declare mono_register_machine_config().
945
946         * mono-config.h: Declare mono_get_machine_config() and
947         mono_config_string_for_assembly_file().
948
949         * icall.c: No declaration of environ necessary on Win32. It is
950         declared (as a macro expanding to a function call) in stdlib.h.
951         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
952         New internal mono function. Returns the value of
953         mono_get_machine_config() as a Mono string.
954
955         * icall-def.h: Add get_bundled_machine_config().
956
957 2007-01-04  Raja R Harinath  <rharinath@novell.com>
958
959         Remove redundant field
960         * class-internals.h (_MonoGenericContext.container): Remove field.
961         * loader.c (mono_method_get_signature_full): Don't parse a
962         "container" for a signature parse when the signature is inflated
963         immediately.
964         (method_from_methodspec): Likewise, for a generic_inst.
965         * class.c, metadata.c, reflection.c: Update to changes.
966
967 2006-01-04  Raja R Harinath  <rharinath@novell.com>
968
969         * class-internals.h (_MonoGenericClass): Rename 'context' field to
970         'cached_context', and change semantics -- it starts off NULL, and
971         is initialized on demand.
972         * class.c (mono_generic_class_get_context): New accessor to
973         replace 'context' field accesses.
974         (mono_class_get_context): New helper.
975         (*): Update to changes.
976         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
977
978 2007-01-03  Miguel de Icaza  <miguel@novell.com>
979
980         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
981         before the memcpy.   Fixes Marshal2 regression.
982
983 2007-01-02  Jb Evain  <jbevain@gmail.com>
984
985         * blob.h: add a MONO_TYPE_ENUM definition
986         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
987         fix the encoding of arrays of enums in custom attributes.
988
989         Fixes #79666.
990
991 2007-01-01  Miguel de Icaza  <miguel@novell.com>
992
993         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
994         string is null terminated, but only cut the string short if it
995         overflows the buffer.   
996         
997         (mono_string_to_byvalstr): Also fix this routine.   The code here
998         was not properly terminating a string (it was only terminated
999         because of the previous catch-all memset). 
1000
1001         I left the memset, because I do not know if applications expect
1002         the runtime to clear this region. 
1003
1004         Fixes #79944.
1005
1006         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1007         Clear the error before returning to unmanaged code to prevent the
1008         runtime from being confused later on (fixes  80420).
1009         (ves_icall_type_from_name): Always call mono_loader_clear_error
1010         after parsing a type that could have failed.
1011         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1012
1013         * loader.c (mono_loader_clear_error): Fix indentation.
1014
1015 2006-12-28  Martin Baulig  <martin@ximian.com>
1016
1017         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1018
1019 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1020
1021         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1022         getting a token for an EnumBuilder.
1023
1024 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1025
1026         * reflection.c: be more careful in case resource generation
1027         fails to create the data array.
1028
1029 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1030
1031         * sgen-gc.c: write barrier for clone and fix unregister handles.
1032
1033 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1034
1035         * reflection.c: some fixes needed in the generics code for the moving GC.
1036
1037 2006-12-22  Robert Jordan  <robertj@gmx.net>
1038
1039         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1040         account. Fixes bug #80299.
1041
1042 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1043
1044         Fix WaitHandle usage in delegates.
1045         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1046         * object.c (mono_wait_handle_new): Use the property set method to
1047         initialize the handle.
1048         (mono_wait_handle_get_handle): New.
1049         * threadpool.c (mono_async_invoke): Use it.
1050         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1051         Likewise.
1052         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1053
1054 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1055
1056         * marshal.c (emit_marshal): Call emit_marshal_variant and
1057         emit_marshal_com_interface when applicable.
1058         (emit_marshal_variant, emit_marshal_com_interface): Add
1059         methods for this case and remove if's from emit_marshal_object.
1060         
1061 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1062
1063         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1064
1065 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1066
1067         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1068         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1069         and GlobalFree on Windows. Remove FIXME.
1070
1071 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1072
1073         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1074         implementation for managed objects.
1075
1076 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1077
1078         * object.c: implemented code to be used for checking
1079         that no reference field overlaps with non-references.
1080
1081 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1082
1083         * threadpool.c: fix queue code to be compatible with the
1084         moving GC.
1085
1086 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1087
1088         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1089         in structures by throwing ArgumentNullException.
1090
1091         (emit_marshal_safehandle): Also when they are null parameters.
1092
1093         (emit_marshal_safehandle): Add support for ref
1094         SafeHandles parameters
1095
1096 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1097
1098         * profiler.c: updated to use the mono-dl API instead of
1099         gmodule.
1100
1101 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1102
1103         * profiler.c: updated to use the mono-dl dynamic loading
1104         API instead of gmodule.
1105
1106 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1107
1108         * profiler.c: use readlink, older versions of glib don't have
1109         g_file_read_link ().
1110
1111 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1112
1113         * profiler.c: try to detect the path to mono if libc fails to provide
1114         a useful name (bug #80286).
1115
1116 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1117
1118         Fix #80242
1119         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1120         instance, use the generic type definition instead.
1121         (ves_icall_Type_GetNestedTypes): Likewise.
1122         * class.c (mono_class_create_generic): Always set the
1123         nested_classes of a generic instance to NULL, even if the generic
1124         type definition has nested types.
1125
1126 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1127
1128         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1129         and fix on Linux.
1130         
1131 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1132
1133         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1134         my arguments were in the wrong order.   I also fixed the Windows
1135         version which seems to have had the same issue.
1136
1137         (mono_free_bstr): On Unix, this is g_free.
1138         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1139         conversions (for the tests in corlib to pass).
1140
1141 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1142
1143         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1144         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1145         exception if a ref SafeHandle in a struct has changed).
1146         
1147         (emit_struct_conv): Do not perform layout checks for classes
1148         derived from SafeHandle, as those are specially handled. 
1149
1150         (emit_object_to_ptr_conv): Add support for
1151         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1152
1153         (emit_marshal_safehandle): Implement conversion of return values
1154         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1155         
1156         * threads.c: WaitHandle now is compiled with two different handles
1157         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1158         for 2.0.
1159         
1160         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1161         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1162         these routines to cope with both kinds of fields.
1163
1164 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1165
1166         * metadata.c (mono_type_to_unmanaged): Handle the case where
1167         type->data.klass is a SafeHandle, and in that case, return the
1168         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1169         MONO_MARSHAL_CONV_SAFEHANDLE. 
1170
1171 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1172
1173         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1174         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1175         calling emit_marshal_object.
1176
1177         (emit_marshal_safehandle): Implement marshalling of
1178         SafeHandle parameters (no ref support yet).
1179
1180         (MarshalAction): Document the defines as I implement
1181         them for SafeHandle.
1182
1183         (emit_marshal_object): indentation police.
1184
1185         * class-internals.h: Define MonoSafeHandle.
1186         Add safehandle_class to MonoDefaults type.
1187
1188         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1189         list of classes to check for fields. 
1190
1191         * domain.c (mono_init_internal): Add SafeHandle to the list of
1192         mono_defaults loaded.
1193
1194 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1195
1196         Fix #80253
1197         * reflection.c (mono_reflection_bind_generic_parameters): If the
1198         generic type definition is a type builder, ensure that it is fully
1199         initialized before instantiating it.  Kill some dead code.
1200
1201 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1202
1203         * object.c: clear the loader_error () before loading
1204         more metadata stuff (bug #80258).
1205
1206 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1207
1208         * icall.c, icall-defs.h: type modifiers icalls for
1209         parameters and properties.
1210
1211 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1212
1213         * object.c, icall.c: fixed warnings.
1214
1215 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1216
1217         * marshal.c: fixed a couple of leaks and coding style in a few places.
1218
1219 2006-12-08  Dick Porter  <dick@ximian.com>
1220
1221         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1222         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1223         80173.
1224
1225 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1226
1227         * process.c: ProcessStartInfo may have only filename set and
1228         arguments can be NULL.
1229
1230 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1231
1232         * icall.c: fix leak found by Robert Jordan.
1233
1234 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1235
1236         * marshal.c, marshal.h: generate managed method to access an element
1237         of a multi-dimensional array.
1238
1239 2006-11-30  Paolo Molaro (lupus@ximian.com)
1240
1241         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1242
1243 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1244
1245         * icall.c: back out GetFields () fix until the serialization code is
1246         fixed to not depend on the incorrect behaviour.
1247
1248 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1249
1250         * profiler.c: provide defaults if none are set.
1251
1252 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1253
1254         * Makefile.am, attrdefs.h: new public header file with
1255         constants for attributes for use by embedders.
1256
1257 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1258
1259         * icall.c: GetFields () fix for bug #80064.
1260
1261 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1262
1263         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1264         removed long unused icalls.
1265
1266 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1267   
1268         * marshal.c: 
1269                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1270                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1271                 can be generated without a delegate class.
1272                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1273         
1274         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1275
1276 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1277
1278         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1279         #80069.
1280
1281 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1282
1283         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1284         icall-def.h: added icalls needed by System.GC.
1285
1286 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1287
1288         * loader.c: ensure the class in catch clauses is handled
1289         correctly for generics methods (fixes bug#79980).
1290
1291 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1292
1293         * monitor.h, monitor.c: added mono_locks_dump () function
1294         to help debug deadlocks involving managed locks.
1295
1296 2006-11-13  Dick Porter  <dick@ximian.com>
1297
1298         * file-io.c (get_file_attributes): If the file is a symlink try
1299         and get the stat data for the target, but also add the
1300         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1301         the specs for the windows symlink support, but will probably have
1302         to be reworked when I have test data from a vista machine.  Fixes
1303         bug 79887.
1304
1305 2006-11-13  Dick Porter  <dick@ximian.com>
1306
1307         * gc.c (mono_domain_finalize): 
1308         * marshal.c (mono_delegate_begin_invoke): 
1309         * threadpool.c (socket_io_init, mono_thread_pool_init)
1310         (mono_thread_pool_finish): 
1311         * monitor.c (mono_monitor_try_enter_internal): 
1312         * threads.c (mono_thread_resume, mono_thread_init)
1313         (mono_thread_suspend_all_other_threads)
1314         (mono_thread_execute_interruption): 
1315         * appdomain.c (mono_domain_unload): Check for NULL error returns
1316         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1317         75733.
1318
1319 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1320
1321         * process.c
1322         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1323         Only close the handle if the value of the handle is not
1324         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1325         robust.
1326
1327         Improvement for #75733, so that we do not run into this problem. 
1328
1329         
1330         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1331         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1332         internal variables.  Fixes #79462 
1333         
1334
1335 2006-11-09  Dick Porter  <dick@ximian.com>
1336
1337         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1338         Use poll() not select().  Fixes bug 79397.
1339
1340 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1341
1342         Fix #79872
1343         * assembly.c (mono_assembly_load_from_full): Check that the given
1344         image has an assembly manifest.
1345
1346 2006-11-09  Ankit Jain  <jankit@novell.com>
1347
1348         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1349         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1350         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1351
1352 2006-11-07  Dick Porter  <dick@ximian.com>
1353
1354         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1355         Put the old resolver behaviour back for pre-2.0 profiles.
1356
1357 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1358
1359         * threadpool.c: precise GC and locking fixes.
1360
1361 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
1362
1363         * class.c: don't load types that have an explicit unaligned
1364         managed reference. Provide better info in the TypeLoad exception.
1365         Part of the fix for bug #79744.
1366         * object.c: use the correct check for class type load issues.
1367
1368 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1369
1370         * class.c: enforce alignment of fields with managed references
1371         even when Pack=1 is forced by the user (bug #77788).
1372
1373 2006-11-03  Dick Porter  <dick@ximian.com>
1374
1375         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1376         If the address reverse lookup fails, return it as the hostname
1377         anyway.  Fixes bug 79721.
1378
1379 2006-11-03  Dick Porter  <dick@ximian.com>
1380
1381         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
1382         Fix build on Windows.
1383
1384 2006-11-02  Dick Porter  <dick@ximian.com>
1385
1386         * icall-def.h: 
1387         * object-internals.h: 
1388         * exception.c (mono_get_exception_thread_interrupted): 
1389         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
1390         Fixes bug 74525.
1391
1392         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
1393         Check for pending Thread.Interrupt.
1394
1395 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
1396         * loader.c: Fixed bug 79684.
1397
1398 2006-10-27  Dick Porter  <dick@ximian.com>
1399
1400         * file-io.c (get_file_attributes): Force symlinks to directories
1401         to be returned as a regular file.  Fixes bug 79733.
1402 2006-10-26  Dick Porter  <dick@ximian.com>
1403
1404         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
1405         CreateFile to open a directory then we need to set the
1406         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
1407
1408 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
1409
1410         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
1411         friends.
1412
1413 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1414
1415         * sgengc.c: small cleanup of timer code.
1416
1417 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1418
1419         * sgen-gc.c: fix some warnings and start adding support for
1420         complete object removal on domain unload.
1421
1422 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
1423
1424         * assembly.c: build_assembly_name should not consider a version
1425         number without build or revision number invalid. Fixes bug #79715.
1426
1427 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
1428
1429         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
1430         call kernel32 function OutputDebugString directly.
1431         
1432         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1433         
1434 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
1435
1436         * reflection.c: small cleanup, using a function to insert a MonoString
1437         in the string heap.
1438
1439 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
1440
1441         * reflection.c: moving GC fixes.
1442
1443 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
1444
1445         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
1446         all the objects with finalizers belonging to an unloading appdomain.
1447
1448 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
1449
1450         * sgen-gc.c: added ability to allocate even when the nursery is fully
1451         pinned and fixed a couple of bugs.
1452
1453 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1454
1455         * threads.h: Revert the last change for now.
1456
1457         * threads.h (mono_thread_get_pending_exception): Rename this to
1458         mono_thread_get_undeniable_exception ().
1459
1460 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1461
1462         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
1463         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
1464         when fname does not refer to valid assembly. This result in a more
1465         meaningful error message.
1466         * exception.c: added mono_get_exception_bad_image_format2 which 
1467         constructs a BadImageFormatException using the ctor taking a custom
1468         message and the file name. Passing in a NULL msg results in a default
1469         message.
1470         * exception.h: define mono_get_exception_bad_image_format2 function.
1471         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
1472         when file name pointed to an invalid IL image. Use 
1473         mono_get_exception_file_not_found2 to construct FileNotFoundException,
1474         as this results in a more meaningful error message.
1475
1476 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1477
1478         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
1479         #79465.
1480
1481 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
1482
1483         * metadata.c (mono_type_size): Change the align parameter to guint32 for
1484         consistency with the other _size functions.
1485         (mono_type_stack_size): Ditto.
1486
1487         * class.c object.c icall.c: Fix warnings caused by the above change.
1488
1489         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
1490
1491         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
1492
1493         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
1494
1495 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1496
1497         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1498         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1499         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1500         threadpool.h, threads-types.h: mark more internal functions.
1501
1502 2006-10-11  Dick Porter  <dick@ximian.com>
1503
1504         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1505         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1506         reproduce the bug even before applying the fix.)
1507
1508 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1509
1510         * reflection.c: allow retrieving attributes for arguments in generic
1511         methods (bug #79241).
1512
1513 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1514
1515         * debug-mono-symfile.c: properly check fopen () result (found by
1516         coverity).
1517
1518 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1519
1520         * reflection.c: make error message clearer and fixed two
1521         issuelets found by Coverity.
1522
1523 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1524
1525         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1526
1527 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1528
1529         * object-internals.h, gc-internal.h, profiler-private.h:
1530         mark internal functions.
1531
1532 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1533
1534         * reflection.c: put data in the text section.
1535         * icall.c: recognize more types in type_from_typename ().
1536         * process.c, marshal.c: added some GC FIXMEs.
1537
1538 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1539
1540         * loader.c: check for NULL before initializing.
1541
1542 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1543
1544         * gc.c (finalizer_thread): Use a non-alertable wait here.
1545
1546         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1547         until the correct solution is found.
1548
1549 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1550
1551         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1552         modules with no metadata. Fixes #79596.
1553
1554         * image.c (load_metadata_ptrs): Put back the error message when
1555         the #- heap is encountered since the support is not complete yet.
1556
1557 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1558
1559         * gc.c: do not allow the user to SuppressFinalize () a
1560         delegate because it would leak the trampoline if present.
1561
1562 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1563
1564         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1565         PropertyPtr table.
1566
1567 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1568
1569         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1570
1571         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1572
1573         * row-indexes.h: Add definitions for *Ptr tables.
1574
1575         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1576
1577         * metadata.c (mono_metadata_translate_token_index): New helper function to
1578         translate table indexes used in uncompressed metadata.
1579         (mono_metadata_decode_table_row): Ditto.
1580         (mono_metadata_decode_table_row_col): Ditto.
1581
1582         * metadata.c: Add table schema for *Ptr tables.
1583
1584         * class.c loader.c: Use the new helper function to access the affected metadata
1585         tables.
1586         
1587         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1588         #38532.
1589         
1590 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1591
1592         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1593         sequences which can be unbounded in size. Fixes #79583.
1594
1595 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1596
1597         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1598         static initialization.
1599
1600         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1601
1602         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1603
1604         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1605
1606         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1607         ctor fails, i.e. throw the same exception on subsequent accesses.
1608         
1609 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1610
1611         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1612         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1613         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1614         Handle marshalling of interfaces and VARIANTs contained in structs.
1615         
1616         Code is contributed under MIT/X11 license.
1617         
1618 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1619
1620         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1621         
1622         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1623         mempool.
1624
1625 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1626
1627         * console-io.c: ignore previous SIGINT handler.
1628
1629 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1630
1631         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1632         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1633         #79460, #79461, #79485.
1634
1635         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1636
1637         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1638         #79217.
1639
1640 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1641
1642         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1643         could be generated from it.
1644
1645 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1646
1647         * rand.c: fix read loop to correctly handle EINTR.
1648
1649 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1650
1651         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1652         internal calls are defined to keep methods closer to the declaring
1653         type and allow a significant reduction in runtime relocations and
1654         memory usage.
1655
1656 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1657
1658         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1659         exception message to have FileNotFoundException use the default
1660         assembly load error message. Fixes bug #79426.
1661         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1662
1663 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1664
1665         * threadpool.c: (start_thread_or_queue) use the root domain when
1666         creating the thread instead of the async object one.
1667
1668 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1669
1670         * class.c, object.c, class-internals.h, reflection.c:
1671         for arrays, store element_size inside MonoClass (speedup
1672         for array object creation).
1673
1674 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1675
1676         * icall.c: fixed CodeBase to use the file name and not the module
1677         name (bug #79365).
1678
1679 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1680
1681         * mono-debug.c, mono-debug.h: export find_method as
1682         mono_debug_find_method ().
1683
1684 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1685
1686         * debug-helpers.c, class-internals.h: added a few functions useful
1687         when debugging under gdb.
1688
1689 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1690
1691         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1692         characters that need special handling.
1693
1694 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1695
1696         * mono-config.c: make the os/cpu specification more flexible,
1697         allowing lists and negation.
1698
1699 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1700
1701         * marshal.c: COM Interop fixes. Handle case where method->klass.
1702         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1703         calling convention on non-windows platforms. This is for
1704         compatibility with XPCOM and MainWin COM.
1705         
1706         Code is contributed under MIT/X11 license.
1707         
1708
1709 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1712         correctly. Fixes #79217.
1713
1714         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1715
1716 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1717
1718         * mono-config.c: allow both an os and cpu attribute for dllmap
1719         and dllentry elemnets to enable a single config file to be used
1720         for multiple architectures.
1721
1722 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1723
1724         * loader.c: MonoLoaderError was cleared too soon on load failure.
1725         Fixes bug #79424.
1726
1727 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1728
1729         * icall.c: use the defining class vtable when accessing a
1730         static field, not a pobblibly derived class.
1731
1732 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1733
1734         * icall.c string-icalls.c: Remove references to unicode.h.
1735
1736         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1737
1738         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1739
1740         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1741         indicating the image where custom marshaller types should be looked up.
1742         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1743         custom marshallers, instead of corlib. Fixes #79425.
1744
1745 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1746
1747         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1748
1749 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1750
1751         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1752         Implement Environment.ProcessorCount.
1753         
1754         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1755         Implement Environment.ProcessorCount.
1756         
1757         * icall.c: 
1758         Add Environment.ProcessorCount icall.
1759         
1760         Patch by Jason McFall.
1761
1762 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1763
1764         * assembly.c: don't append .exe/.dll when the filename already contains
1765         one of those extensions.
1766
1767 2006-09-12  Martin Baulig  <martin@ximian.com>
1768
1769         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1770         to array interfaces.
1771
1772 2006-09-11  Martin Baulig  <martin@ximian.com>
1773
1774         * reflection.c (mono_image_build_metadata): Create the
1775         MethodImpl's after emitting all types and methods, so we don't
1776         need another fixup pass for them.
1777
1778 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1779
1780         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1781         change.
1782
1783 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1784
1785         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1786         unload.
1787
1788 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1789
1790         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1791         args is not set. Fixes #78926.
1792
1793 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1794
1795         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1796
1797         * image.c (load_class_names): Move this to class.c, and rename it to 
1798         'mono_image_init_name_cache'.
1799         (load_modules): Fix a warning.
1800
1801         * class.c icall.c image.c: Initialize image->name_cache lazily.
1802
1803         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1804         on its name using information in the AOT file.
1805
1806         * class.c (mono_class_from_name): Use the new hook function.
1807
1808 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1809
1810         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1811         correctly.
1812
1813         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1814         Fixes #79289.
1815         
1816 2006-09-06  Martin Baulig  <martin@ximian.com>
1817
1818         * icall.c (mono_lookup_internal_call): Small fix.
1819
1820 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1821
1822         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1823         double g_free.
1824
1825 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1826
1827         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1828         when --debug is specified.
1829
1830 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1831
1832         * class.c (setup_generic_array_ifaces): Fix a warning.
1833
1834 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1835
1836         * Temporarily remove the patch to assemly.c that checks the
1837         assembly versions as it breaks our gacutil.
1838
1839 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1840
1841         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1842
1843         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1844         a net 1.0 runtime.
1845
1846         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1847         created using the default ctor. Fixes #79152.
1848         (mono_string_builder_to_utf16): Ditto.
1849
1850 2006-09-01  Martin Baulig  <martin@ximian.com>
1851
1852         Fix handling of the generic array interfaces.
1853
1854         * class-internals.h
1855         (MonoDefaults): Removed `generic_array_class' and added
1856         `generic_ilist' class.
1857
1858         * class.c
1859         (mono_bounded_array_class_get): Add the new generic array interfaces.
1860         (setup_generic_array_ifaces): New static method; create vtable
1861         entries for each method in the generic array interfaces.
1862
1863         * metadata.c
1864         (select_container): Allow "parent-less" generic methods.
1865
1866         * marshal.c
1867         (mono_marshal_get_generic_array_helper): New public method.
1868
1869         * icall.c
1870         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1871         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1872         moved the interncall into System.Array.
1873
1874 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1875
1876         A few more cases of avoiding work on types with ->byref set.
1877         Has the real fix for #79238
1878         * icall.c (is_generic_parameter): New helper.
1879         (ves_icall_Type_GetGenericParameterPosition): Use it.
1880         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1881         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1882         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1883         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1884         reference types.
1885         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1886         reference types.
1887         (ves_icall_Type_get_IsGenericInstance): Likewise.
1888         (ves_icall_Type_get_IsGenericType): Likewise.
1889
1890 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1891
1892         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1893         class if possible.
1894
1895         * mempool.h (mono_mempool_get_allocated): New helper function.
1896
1897         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1898         change.
1899
1900         * mempool.c: Fix warnings and the calculation of stats.
1901
1902         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1903
1904         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1905
1906         * loader.c (mono_get_method_from_token): Update method_count stat.
1907
1908         * class-internals.h (MonoStats): Add some stats.
1909
1910 2006-08-31 Robert Jordan  <robertj@gmx.net>
1911
1912         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1913         with managed variants.
1914         All code is contributed under the MIT/X11 license.
1915         
1916 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1917
1918         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1919         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1920
1921         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1922
1923         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1924         with cycles in classes.
1925
1926         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1927
1928         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1929         missing a [MarshalAs] directive. Fixes #79203.
1930
1931         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1932         klass->marshal_info. Fixes #79217.
1933
1934 2006-08-30  Martin Baulig  <martin@ximian.com>
1935
1936         Committing a patch from Joachim Ante <joe@otee.dk>:
1937         Add support for binary data symbol stores.
1938
1939         * debug-mono-symfile.c
1940         (mono_debug_open_mono_symbol_file): Renamed into
1941         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1942         arguments.
1943
1944         * mono-debug.c
1945         (mono_debug_open_image): Added `raw_contents' and `size' args.
1946         (mono_debug_init_2_memory): New public function.
1947
1948 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1949
1950         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1951
1952 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1953
1954         * appdomain.c: implement support for ShadowCopyFiles.
1955
1956 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1957
1958         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1959         when value is NULL (and should remove CID #51).
1960
1961 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1962
1963         * image.c: moved 2 functions to ../utils.
1964
1965 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1966
1967         * gc.c: cope with the target object of a GC handle being NULL
1968         (bug #78877).
1969
1970 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1971
1972         * class.c: recursively check parent's explicit implementations
1973         of interface methods (fixes bug #79125).
1974
1975 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1976
1977         * filewatcher.c: Avoid warnings when building, do not redefine
1978         constants that are defined.
1979
1980         Remove warnings.
1981
1982 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1983
1984         * image.c: don't fail when the link points to an absolute path.
1985
1986 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
1987
1988         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
1989         Fix CID #3.
1990
1991 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1992
1993         * image.c (full_path): A new method used to obtain the actual path
1994         of an assembly even in the presence of symbolic links.  
1995
1996         This is necessary for the case where we are running a binary that
1997         has been GACed, but we are using the "published" path name
1998         ($prefix/mono/1.0/blah.exe) which happens to point to the real
1999         file in the GAC.
2000
2001         This was the source of the failure for the `xsp' command with the
2002         recent AppDomain changes, as far as the runtime was concerned,
2003         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2004         $prefix/mono/gac/blah/version/blah.exe.
2005
2006         (do_mono_image_open): use full path
2007
2008 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2009
2010         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2011
2012 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2013
2014         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2015         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2016
2017 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2018
2019         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2020         small structures. Fixes #78990.
2021
2022 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2023
2024         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2025
2026         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2027
2028 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2029
2030         * appdomain.c:
2031         * marshal.c: don't load all the assemblies from a domain into newly
2032         created ones. The new domains might have different rules and load
2033         assemblies from different locations. Fixes bug #76757.
2034
2035         Patch by Lluis. Conflicts resolved by Brian Crowell.
2036
2037 2006-08-16  Alp Toker  <alp@atoker.com>
2038
2039         * socket-io.c: First half of the fix for #79084.
2040         Set sa_size to the length of the content, not that of the struct.
2041         Don't add NULL suffix to the content, this should be done in
2042         managed code if needed.
2043
2044 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2045
2046         Fix part of #79012
2047         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2048         mono_metadata_parse_type returns NULL.
2049
2050 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2051
2052         * normalization-tables.h : new file for string normalization data.
2053         * locales.c, locales.h, icall.c :
2054           added load_normalization_resource() for string normalization,
2055           and icall as well.
2056         * Makefile.am : added normalization-tables.h to the sources.
2057
2058 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2059
2060         * marshal.c: Add more helper functions to reduce code duplication and use them
2061         everywhere.
2062
2063 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2064
2065         * marshal.c: Fix non-x86 stdcall warnings.
2066         
2067         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2068         them everywhere.
2069
2070 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2071
2072         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2073         type check on multi-dimensional arrays. Fixes #79000.
2074
2075 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2076
2077         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2078         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2079         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2080         * class-internals.h: add is_com_object to class structure.
2081         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2082         null checks to COM object marshalling. Fix .ctor call on RCW.
2083         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2084         
2085         All code is contributed under the MIT/X11 license.
2086
2087 2006-08-09  Dick Porter  <dick@ximian.com>
2088
2089         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2090         racing mono_monitor_allocator_lock() somewhere, so don't delete
2091         the critical section for now.  Found by running and exiting
2092         monodevelop.
2093
2094 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2095
2096         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2097         (ves_icall_System_ComObject_FindInterface): Ditto.
2098         (ves_icall_System_ComObject_CacheInterface): Ditto.
2099
2100         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2101         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2102
2103 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2104
2105         * threadpool.c: treat pipes from process asynchronous reads as sockets
2106         when reading from them, so we get select/poll or epoll to wait for
2107         data.
2108
2109 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2110
2111         * loader.c: Fix a typo (CID #233) in the null check.
2112
2113 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2114
2115         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2116         Hopefully fixes #78949.
2117         
2118         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2119         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2120         bytes. Fixes #78972.
2121
2122 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2123
2124         * filewatcher.c: we need to set errno here.
2125
2126 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2127
2128         * filewatcher.c: let Win32Exception get the error value.
2129
2130 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2131
2132         * filewatcher.c: translate errno into win32 errors for Win32Exception
2133         to know what happened.
2134
2135 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2136
2137         * threadpool.c: Fix more warnings.
2138
2139         * assembly.c (search_loaded): Fix warnings.
2140
2141         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2142         (mono_async_invoke): Ditto.
2143
2144 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2145
2146         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2147         entries for __ComObject type in addition to ComImport types.
2148         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2149         about hash table.
2150         
2151         All code is contributed under the MIT/X11 license.
2152
2153 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2154
2155         * image.c: avoid tentative loading of modulerefs that contain
2156         no metadata (P/Invoke library names).
2157
2158 2006-07-28  Dick Porter  <dick@ximian.com>
2159
2160         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2161         mono_loader_lock() somewhere, so don't delete the critical section
2162         for now.  Found by running and exiting monodevelop.
2163
2164 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2165
2166         * filewatcher.c: define the inotify syscalls when we're building on
2167         linux and have sys/syscall.h. The build system might not have support
2168         for inotify but the target system might have it.
2169
2170 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2171
2172         * domain.c: Documentation updates.
2173
2174         * loader.c (mono_free_method): Do not release the method
2175         information if we are being profiled, as profilers will use this
2176         information at shut down to present some data to the user.
2177
2178         This is needed so that the profiler does not crash, as the
2179         profiler tends to keep MonoMethods around, and they might become
2180         invalid if we free these.
2181
2182         (mono_get_method_constrained): Return the original CIL stream
2183         method as well, so verification can be performed against it.
2184
2185 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2186
2187         * filewatcher.[ch]: support for inotify file system watcher.
2188         * icall.c: add new internal calls for the inotify file system watcher.
2189
2190 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2191
2192         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2193         #78888.
2194
2195 2006-07-20  Dick Porter  <dick@ximian.com>
2196
2197         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2198         warning.
2199
2200 2006-07-20  Dick Porter  <dick@ximian.com>
2201
2202         * threads.c (start_wrapper): Do the thread cleanup while we still
2203         hold a reference to its object.  Fixes bug 78123.
2204
2205 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2206
2207         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2208         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2209           "managed-to-managed".
2210         * icall.c: Redirect string constructors that take sbyte* to
2211           ves_icall_System_String_ctor_RedirectToCreateString.
2212         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2213           to CreateString () methods with matching signature.
2214         * reflection.c: Use original security informations for
2215           MONO_WRAPPER_MANAGED_TO_MANAGED.
2216         * security-manager.c: Use original security informations for
2217           MONO_WRAPPER_MANAGED_TO_MANAGED.
2218         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2219           that is a placeholder and only its address should be used.
2220         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2221           that is a placeholder and only its address should be used.
2222
2223 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2224
2225         Begin implementing COM Interop.
2226         * appdomain.c: Increment corlib version.
2227         * class.c: Set ComImport classes' parent to __ComObject.
2228         * loader.c: Mark cominterop methods as such.
2229         * domain.c: Add __ComObject class to MonoDefaults structure.
2230         * image.c: Add 2 hashtables to the image for COM Interop related methods
2231         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2232         using the mempool allocator
2233         
2234         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2235         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2236         declaration for mono_metadata_type_dup_mp.
2237         
2238         * debug-helpers.c: Added strings for two additional wrapper types
2239         * object.c: Create proxy objects for ComImport classes
2240         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2241         and added __ComObject class to MonoDefaults structure.
2242         
2243         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2244         MonoComInteropProxy and MonoComObject.
2245         
2246         * marshal.c: Added support for COM Interop
2247         (signature_cominterop): Converts managed signature to corresponding
2248         unmanaged COM signature.
2249         (cominterop_get_function_pointer): gets unmanaged function pointer via
2250         COM object vtable
2251         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2252         (cominterop_get_method_interface): returns interface type that method is defined on
2253         (mono_mb_emit_cominterop_call): emits native call to function pointer
2254         gotten from vtable
2255         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2256         that matches signature of unmanaged function.
2257         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2258         (cominterop_get_invoke): forwards call from proxy to __ComObject
2259         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2260         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2261         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2262         
2263         * marshal.h: Added Marshal icall declarations.
2264         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2265         so we can access them in finalizer
2266         
2267 2006-07-14  Dick Porter  <dick@ximian.com>
2268
2269         * object.c (mono_type_initialization_cleanup): Fix a race
2270         condition by temporarily commenting out the critical section
2271         deletion.
2272
2273 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2274
2275         * reflection.c (create_custom_attr): Fix some warnings.
2276         (create_custom_attr_data): Ditto.
2277         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2278         types. Fixes #78855.
2279
2280 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2281
2282         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2283
2284         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2285
2286 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2287
2288         * reflection.c (resolve_object): Add support for DynamicMethod.
2289
2290         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2291         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2292
2293 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2294
2295         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2296         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2297
2298 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2299
2300         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2301         Fixes #77888.
2302
2303 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2304
2305         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2306         slightly: remove a shadow local variable.
2307
2308 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2309
2310         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2311         definition that introduces the virtual function slot.
2312         Also fix Coverity #105.
2313
2314 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2315
2316         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2317         for dynamic assemblies. Fixes #78724.
2318
2319 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2320
2321         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2322         Fixes #78722.
2323
2324 2006-06-21  Martin Baulig  <martin@ximian.com>
2325
2326         * reflection.c
2327         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2328         fixes #76484.
2329
2330 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2331
2332         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2333
2334 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2335
2336         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2337         nor TYPEREFs.
2338         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2339         Inflate result if necessary.
2340         (mono_class_get_full): Remove old version.  Rename from
2341         'mono_class_get' and add 'context' argument.  Pass it to
2342         ..._create_from_typespec.
2343         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2344         (mono_ldtoken): Revert change below.
2345
2346 2006-06-20  Martin Baulig  <martin@ximian.com>
2347
2348         * class.c (mono_ldtoken): Don't pass the generic context to
2349         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2350
2351 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2352
2353         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2354         and later freeing it. Fixes #78638.
2355
2356 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2357
2358         * icall.c (mono_class_get_throw): Revert over-zealous error
2359         throwing, the caller for mono_class_get_throw will cope with
2360         errors when classes are not properly initialized already.
2361
2362         The code still copes with loader exceptions though.
2363
2364         Fixes the regression in reftype1 and reftype3 from the CAS tests.
2365         
2366 2006-06-14  Miguel de Icaza  <miguel@novell.com>
2367
2368         Fixes the `make run1' version of RuntimeAbort (to be commited,
2369         source is in Bugzilla).
2370         
2371         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
2372         FALSE on class loading failure instead of returning true.
2373
2374         * class.c (mono_class_create_from_typedef): It is possible for
2375         mono_metadata_interfaces_from_typedef_full to fail if a class is
2376         not found, cope with this.
2377         
2378
2379 2006-06-14  Dick Porter  <dick@ximian.com>
2380
2381         * socket-io.c: 
2382         * process.c: Fix a bunch of signed/unsigned warnings from gcc
2383         4.1.1
2384
2385 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
2386
2387         * culture-info-table.h : oops, forgot to make it nsync with r61548.
2388
2389 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2390
2391         * icall.c: Another fix for building mono in Visual Studio.
2392
2393 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2394
2395         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
2396         
2397 2006-06-09  Martin Baulig  <martin@ximian.com>
2398
2399         * debug-mono-symfile.c: Put this back and really fix it this
2400         time. Sorry for all the trouble.
2401
2402 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
2403
2404         * icall.c (mono_class_get_throw): Fix a warning.
2405         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
2406         ReflectionTypeLoadException if needed. Fixes #78606.
2407
2408         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
2409         (mono_class_init): Ditto.
2410
2411         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
2412         ref_only exceptions.
2413         (mono_loader_clear_error): Make this work even if there is no error.
2414
2415 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
2416
2417         * object-internals.h marshal.c marshal.h icall.c: Implement method 
2418         Marshal.GetComSlotForMethodInfo using internal call.
2419
2420 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
2421
2422         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
2423         a function for signalling it.
2424
2425         * class.c (mono_class_from_typeref): Use the new kind of loader error when
2426         a referenced assembly is not found.
2427
2428         * loader.c (mono_loader_error_prepare_exception): Add support for 
2429         LOADER_ERROR_ASSEMBLY. Fix formatting.
2430
2431 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2432
2433         * domain.c appdomain.c class-internals.h marshal.c: Add support 
2434         for VARIANT marshalling on windows and increment corlib version
2435         since Variant struct was added.
2436
2437 2006-06-03  Miguel de Icaza  <miguel@novell.com>
2438
2439         * debug-mono-symfile.c: Revert Martin's previous patch which broke
2440         stack trace line information:
2441
2442         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
2443         (Martin) when looking up B which is between A and C, return A not C.
2444
2445         Bug is #78573.
2446
2447         Thanks to Alexander Olk for tracking this down.
2448
2449 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
2450
2451         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
2452         
2453         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
2454         avoid clobbering its value.
2455         (mono_string_to_lpstr): Fix a warning on windows.
2456
2457 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2458
2459         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
2460
2461         * reflection.c loader.c: Removed references to 'dummy' flag.
2462
2463         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
2464
2465         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
2466         it gets GC tracking.
2467
2468         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
2469         GC tracking.
2470         
2471         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
2472
2473         * marshal.c threadpool.c: Update callers of mono_async_result_new.
2474
2475         * appdomain.c: Bump corlib version.
2476
2477 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2478
2479         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2480         CEE_STIND_REF when working with object references.
2481
2482 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2483
2484         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
2485         Fixes #78539.
2486
2487 2006-05-30  Miguel de Icaza  <miguel@novell.com>
2488
2489         * loader.c (method_from_memberref): Fix argument value for
2490         mono_loader_set_error_method_load (I was passing the MonoClass
2491         instead of the class name char *).
2492
2493 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2494
2495         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2496         CEE_STIND_REF when working with object references.
2497
2498 2006-05-30  Martin Baulig  <martin@ximian.com>
2499
2500         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2501         mono_method_full_name() change and replace the ':' with a '.'
2502         here.
2503
2504 2006-05-30  Martin Baulig  <martin@ximian.com>
2505
2506         * debug-mono-symfile.c
2507         (mono_debug_symfile_lookup_location): Fix the algorithm:
2508         when looking up B which is between A and C, return A not C.
2509
2510 2006-05-29  Martin Baulig  <martin@ximian.com>
2511
2512         * mono-debug.h
2513         (MonoDebugMethodInfo): Make the typedef public.
2514         (MonoDebugSourceLocation): New public struct.
2515
2516         * mono-debug.c
2517         (mono_debug_source_location_from_address): Removed.
2518         (mono_debug_source_location_from_il_offset): Removed.
2519         (mono_debug_il_offset_from_address): Removed.
2520         (mono_debug_address_from_il_offset): Removed.
2521         (mono_debug_lookup_method): New public function.
2522         (mono_debug_lookup_source_location): New public function; replaces
2523         the old mono_debug_source_location_from_*() functions; see the
2524         inline documentation.
2525         (mono_debug_free_source_location): New public function.
2526         (mono_debug_print_stack_frame): New public function; see the
2527         inline documentation.
2528
2529         * debug-mono-symfile.c
2530         (mono_debug_find_source_location): Renamed into
2531         mono_debug_symfile_lookup_location(); only take a
2532         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2533         documentation.
2534         (mono_debug_find_method): Renamed into
2535         mono_debug_symfile_lookup_method().
2536
2537 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2538
2539         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2540         returned by mono_image_open_full ().
2541
2542         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2543         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2544         #78517.
2545
2546         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2547         #78518.
2548
2549 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2550
2551         * class.c (mono_class_from_typeref): handle missing images
2552         earlier, deals with bug #78418.   Refactor code; 
2553
2554         Fix a warning introduced in my previous commit (some stale code
2555         from before I revisited my patch).
2556
2557         * class.c (mono_class_create_from_typedef): On failure, remove the
2558         class from the MonoImage->class_cache as the class is not
2559         initialized;   Fixes the leak pointed out by Paolo.
2560
2561 2006-05-25  Dick Porter  <dick@ximian.com>
2562
2563         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2564         DeleteCriticalSections until I figure out which one may still be
2565         sometimes locked when mono_thread_cleanup is called.
2566
2567 2006-05-24  Dick Porter  <dick@ximian.com>
2568
2569         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2570         of mono_thread_manage and back into its own function, so it can be
2571         called after the finalizer thread has finished.
2572
2573         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2574
2575 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2576
2577         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2578         Fixes #78495.
2579
2580         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2581         with non-blittable elements.
2582         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2583
2584 2006-05-24  Martin Baulig  <martin@ximian.com>
2585
2586         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2587         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2588
2589         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2590         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2591         `mono_debugger_event_handler' to NULL.
2592
2593 2006-05-24  Martin Baulig  <martin@ximian.com>
2594
2595         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2596
2597 2006-05-24  Martin Baulig  <martin@ximian.com>
2598
2599         * mono-debug-debugger.h
2600         (mono_debugger_create_notification_function): Added
2601         `MonoCodeManager *' argument.
2602
2603 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2604
2605         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2606
2607 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2608
2609         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2610         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2611         implementation.
2612
2613 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2614
2615         * icall.c: precise GC support: objects can't be stored in unmanaged
2616         memory anymore, even if they are kept alive by other references: since
2617         they can move the GC needs to be able to always find them.
2618
2619 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2620
2621         * object.c: precise GC support for static fields. Support
2622         for moving GCs: write barriers and pinned allocation for interned
2623         strings.
2624
2625 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2626
2627         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2628         structure.
2629
2630 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2631
2632         * class.c, gc.c: sgen and precise GC updates.
2633
2634 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2635
2636         * marshal.h, marshal.c: added write barrier wrapper and precise type
2637         fixes.
2638
2639 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2640
2641         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2642         support.
2643
2644 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2645
2646         * reflection.c: precise and sgen GC updates.
2647
2648 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2649
2650         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2651
2652 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2653
2654         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2655
2656 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2657
2658         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2659         MONO_TYPE_OBJECT. Fixes #78462.
2660
2661 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2662
2663         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2664         and blittable types.
2665
2666 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2667
2668         * class.c (mono_class_get_exception_for_failure): Implement parts
2669         of a TODO: if the loader error is set (instead of the class
2670         error), we return a Loader exception that can be properly thrown
2671         elsewhere.
2672
2673         This was exposed by some Winforms 2.0 code that I tried to run
2674         (Atsushi pointed me to it).
2675
2676 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2677
2678         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2679         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2680         
2681         * marshal.c (emit_marshal_vtype): Add limited support for 
2682         UnmanagedType.LPStruct. Fixes #78427.
2683
2684         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2685         Applied a patch from kangaroo to fix #77523.
2686
2687 2006-05-17  Martin Baulig  <martin@ximian.com>
2688
2689         * threads.c
2690         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2691         (debugger_thread_created): Removed.
2692         (debugger_thread_exited): Removed.
2693
2694 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2695
2696         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2697
2698         * object-internals.h (MonoReflectionResource): Sync with managed version.
2699
2700 2006-05-12  Wade Berrier <wberrier@novell.com>
2701
2702         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2703
2704 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2707         functions try to allocate from the image mempool.
2708
2709 2006-05-12  Dick Porter  <dick@ximian.com>
2710
2711         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2712
2713 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2714
2715         * object.c: The FieldGetter and FieldSetter methods require the full
2716         name of the class, not only the name. Fixes bug #78277.
2717
2718 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2719
2720         * loader.c (method_from_memberref): Do not pass the NULL klass to
2721         mono_loader_set_error_() methods.  Pass the non-NULL value
2722         (class). 
2723
2724 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2725
2726         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2727         (mono_assembly_close): Null out assembly->image->references after freeing it.
2728
2729         * image.c (mono_image_close): Free image->references.
2730         
2731         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2732
2733 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2734
2735         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2736         before checking if it's NULL (g_assert).
2737
2738 2006-05-10  Martin Baulig  <martin@ximian.com>
2739
2740         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2741         I thought I already killed that two months ago, but now it somehow reappeared.
2742
2743 2006-05-10  Martin Baulig  <martin@ximian.com>
2744
2745         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2746
2747 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2748
2749         * reflection.c: Allocate memory for dynamically created methods in the image
2750         mempools.
2751
2752 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2753
2754         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2755         don't use the ad pointer before checking if it's NULL (g_assert).
2756
2757 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2758
2759         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2760         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2761
2762         * marshal.c: Allocate all signatures from mempools.
2763
2764         * marshal.c: Allocate some more signatures from mempools.
2765
2766 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2767
2768         * object.c (mono_load_remote_field): The code used to provide a
2769         temporary variable for returning results if the user did not
2770         provide a result pointer.  But our temporary variable was allocted
2771         on the satck.
2772
2773         Fix calling code to always pass a result area.   Coverity ID 103.
2774
2775 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2778         value, not the old. Fixes #78312.
2779         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2780
2781         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2782         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2783         per-image cache.
2784
2785         * assembly.c (mono_assembly_close): Free image->references.
2786
2787         * assembly.c (mono_assembly_names_equal): Fix a warning.
2788         (mono_assemblies_cleanup): Cleanup more global data.
2789
2790         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2791
2792         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2793         ptr_cache and image->modules.
2794
2795         * image.c (mono_image_init): Allocate array_cache lazily.
2796         
2797 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2798
2799         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2800         behavior was changed recently and has bad side effects.
2801
2802 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2803
2804         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2805         
2806         * assembly.c (mono_assembly_close): Remove a debug printf.
2807
2808         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2809
2810         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2811         to also allow for temporary references between mono_image_open ()/close ().
2812
2813         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2814
2815 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2816
2817         * marshal.c: Fix support for dynamic methods.
2818
2819         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2820
2821         * marshal.c (mono_marshal_cleanup): New cleanup function.
2822
2823         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2824         image mempools.
2825
2826         * class.c (mono_class_init): Fix leaking class->nested_classes.
2827
2828         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2829
2830         * image.c (mono_image_init): Initialize the new cashes.
2831
2832         * image.c (mono_image_close): Destroy the new cashes.
2833
2834         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2835
2836         * mempool.c (mono_mempool_strdup): New helper function.
2837
2838         * class-internals.h: Add prototype for mono_loader_unlock ().
2839
2840         * domain.c (mono_jit_info_table_find): Fix a warning.
2841         (mono_debugger_check_runtime_version): Ditto.
2842
2843         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2844         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2845         functions to these modules.
2846
2847         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2848         metadata modules.
2849         
2850         * marshal.c (mono_free_bstr): Fix a warning.
2851
2852         * assembly.c (mono_assembly_open_full): Fix another small leak.
2853
2854         * object.c: Fix some unload leaks in the remoting code.
2855
2856         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2857         function.
2858
2859         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2860
2861         * reflection.c: Fix some unload leaks in dynamic assemblies.
2862
2863 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2864
2865         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2866         * marshal.h: Add BSTR support on Win32
2867         * icall.c: Add BSTR icalls
2868         * metadata.h: Add BSTR enums
2869
2870 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2871
2872         Work to catch the crash from #76795 and turn it into an
2873         exception.   As I stubbed out pieces of the VisualBasic support,
2874         I found a number of places where the code was failing and I added
2875         checks to those places. 
2876         
2877         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2878         function return a status code.  If we fail to parse the signature
2879         from mono_metadata_parse_generic_inst, return FALSE.
2880
2881         * loader.c (mono_get_method_from_token): If we fail to load the
2882         method (mono_class_get) return NULL.   
2883
2884         * (method_from_memberref): Return NULL if we are unable to parse
2885         the method signature
2886
2887         (mono_loader_error_prepare_exception): Since we now use the
2888         loader_error flag internally to stop processing, and obtaining
2889         exceptions that might be thrown will walk this code path the
2890         proper way of going from a MonoLoaderError into a
2891         MonoException was convoluted.   This new routine encapsulates the
2892         process of turning the error into an exception and *clearing* the
2893         error afterwards.
2894         
2895 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2896
2897         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2898         with missing assemblies), and to cope with:
2899
2900                 * Missing fieldref from a non-existing assembly.
2901                 * Missing methodref from a non-existing assembly.
2902
2903         The first batch of work to address *some* of the issues from 76661.
2904         
2905         * object.c (mono_class_create_runtime_vtable): If we fail to
2906         initialize the class raise the exception here. 
2907
2908         * metadata.c (mono_class_get_overrides_full): If any methods fail
2909         to load return the failure to the caller.
2910
2911         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2912         flagging assemblies that failed to load.   
2913
2914         Do not crash if we are unable to load the assembly.
2915
2916         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2917         assemblies. 
2918
2919         * loader.c (mono_loader_set_error_type_load): Change the
2920         convention to always pass unallocated strings, so we make our own
2921         copies (I know our own code had duplicated strings before, but
2922         this keeps the normal conventions).
2923         (method_from_memberref): Call mono_loader_set_error_method_load
2924         for all possible failures of loading the class. 
2925         Remove assert, turn into a loader error.
2926
2927         (mono_loader_error_to_exception): Move this routine from mini
2928         (mini_loader_error_to_exception) there was no need to have that in
2929         mini. 
2930
2931         * class.c (mono_class_from_typeref): If we were not able to load
2932         the assembly with mono_assembly_load_reference, call the
2933         mono_loader_set_error_type_load to register the problem.
2934
2935         (mono_class_setup_fields): If we fail to load the type from
2936         mono_metadata_parse_type_full, call mono_class_set_failure and
2937         break from the loop.
2938
2939         If class->exception_type is set, we do not layout the fields as
2940         that might crash the runtime, and instead return (from breaking
2941         from the previous loop).
2942
2943         (mono_class_setup_vtable): This now returns a boolean indicating
2944         whether the table was properly setup.   The decision is driven by
2945         mono_class_get_overrides_full which might run into non-existing
2946         methods. 
2947         
2948         (mono_class_init): Returns TRUE on success or FALSE if there was a
2949         problem in loading the type (incorrect assemblies, missing
2950         assemblies, methods, etc).
2951
2952         When we call mono_class_setup_fields we also check for a potential
2953         error inside this call (either a class exception or a general
2954         loader exception).
2955
2956         (mono_class_create_from_typedef): If the parent fails to load
2957         (calling mono_class_get_full) return NULL.
2958         
2959         ** Important **
2960
2961         calls to mono_metadata_parse_type_full should be checked
2962         everywhere and set the mono_class_set_failure
2963         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2964
2965         The current patch checks the places where my manually constructed
2966         tests show the errors are showing up, but we should do it
2967         everywhere. 
2968
2969         ** Important2 **
2970
2971         mono_class_init return values should be tested everywhere, like
2972         the previous case this is something that we should audit
2973         everywhere and not only on the cases exposed by the tests I
2974         created. 
2975
2976 2006-04-26  Miguel de Icaza  <miguel@novell.com>
2977
2978         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
2979         boolean parameter and instead pass the information on `options'
2980         parameter (FileOptions).
2981
2982         * icall.c: Register the new signature for MonoIO.Open.
2983
2984         * debug-helpers.c (dis_one): Trying to understand how coverity
2985         works.  Fix Run 5, item 78.
2986
2987 2006-04-26  Dick Porter  <dick@ximian.com>
2988
2989         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
2990         dereference.
2991
2992 2006-04-25  Martin Baulig  <martin@ximian.com>
2993
2994         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
2995
2996         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
2997         debugger_thread_created().
2998         (debugger_gc_push_all_stacks): Don't handle the main thread in any
2999         special way.
3000         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3001         (mono_debugger_finalize_threads): New function; undo the effects
3002         of mono_debugger_init_threads().
3003         (mono_debugger_create_all_threads): Removed.
3004
3005 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3006
3007         * image.c (mono_image_close): Tidy up trace messages.
3008
3009         * assembly.c (mono_assembly_close): Ditto.
3010
3011         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3012         no longer references an already freed assembly. Fixes #78168.
3013
3014 2006-04-21  Dick Porter  <dick@ximian.com>
3015
3016         * threads.c (mono_thread_detach): Fix reference counting when
3017         detaching threads.
3018
3019 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3020
3021         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3022         #78155.
3023
3024 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3025
3026         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3027         (mono_type_to_stind): Ditto.
3028
3029         * marshal.c: Use the new helper functions to simplify code.
3030
3031         * image.c (mono_image_close): Add some code for help debug assembly unloading
3032         problems.
3033
3034         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3035         image mempool.
3036
3037         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3038         assembly was already loaded in another appdomain. Fixes #78083.
3039
3040 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3041
3042         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3043         referenced assemblies.
3044         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3045
3046         * domain.c (mono_domain_free): Add a trace message.
3047
3048         * appdomain.c (add_assemblies_to_domain): Ditto.        
3049
3050         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3051         field.  
3052
3053 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3054
3055         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3056
3057 2006-04-12  Martin Baulig  <martin@ximian.com>
3058
3059         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3060         `USE_INCLUDED_LIBGC'.   
3061
3062 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3063
3064         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3065         the patch contains ../ and a small directory name later. Hopefully fixes
3066         #78035.
3067
3068 2006-04-10  Martin Baulig  <martin@ximian.com>
3069
3070         Clean up the debugger's thread-handling code.
3071
3072         The debugger's thread-handling code has been moved from
3073         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3074         over the `threads' hash, keep track of exiting threads and also
3075         use proper locking.
3076
3077         We can now debug XSP and XSP based applications with the debugger.
3078
3079         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3080
3081         * threads.h
3082         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3083         (mono_install_thread_callbacks): Likewise.      
3084
3085         * threads.c (mono_thread_callbacks): Removed.
3086         (debugger_thread_created, debugger_thread_exited): New static functions.
3087         (start_wrapper): Call debugger_thread_created().
3088         (thread_cleanup): Call debugger_thread_exited().
3089         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3090         (mono_debugger_init_threads): New public function.
3091         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3092         iterate directly over the `threads' hash and also use proper locking.
3093
3094         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3095
3096         * mono-debug-debugger.h
3097         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3098
3099 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3100
3101         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3102         argument type=array. Fixes #78057.
3103
3104 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3105
3106         * culture-info-table.h : regenerated. Fixed bug #69652.
3107
3108 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3109
3110         * loader.c metadata.c: Reapply a variant r59116.
3111         
3112         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3113
3114         * class.c (mono_class_setup_interface_offsets): New internal function.
3115
3116         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3117         interfaces too. Fixes #77398.
3118
3119         * reflection.c (encode_cattr_value): Add support for 
3120         parameter type=object, argument type=array.
3121         (load_cattr_value): Ditto. Fixes #77916.
3122
3123         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3124         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3125
3126         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3127         a byval char array and CharSet is Ansi.
3128
3129         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3130
3131 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * metadata.c: Add some locking comments.
3134         
3135         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3136         mempool.
3137         (mono_metadata_free_method_signature): Don't free the signature itself.
3138
3139         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3140
3141         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3142         reference the same MonoImage.
3143         (mono_assembly_load_from_full): Add an assert.
3144
3145 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3146
3147         * image.c (mono_image_close): Don't put the image we are about to free into the
3148         loaded_images_guid_hash.
3149
3150         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3151         to reduce code duplication.
3152
3153         * marshal.c: Register the native functions called by this module as icalls, to
3154         somewhat centralize the creation of MonoMethodSignature's.
3155
3156         * loader.c (mono_method_signature): Add a cache for method signatures.
3157
3158         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3159         the parameter attributes of a method.
3160         (mono_metadata_parse_method_signature_full): Refactored the computation of
3161         parameter attributes into a separate function. Also avoid one allocation in
3162         most cases.
3163
3164         * assembly.c (mono_assembly_close): Ditto.
3165
3166         * image.c (mono_image_close): Log trace messages with INFO level.
3167
3168         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3169
3170         * image.c reflection.c: Correct reference counting of image modules.
3171         
3172         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3173         of this function from the image mempool.
3174         
3175         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3176         to allow more cached types to be used.
3177
3178         * mono-debug.c (mono_debug_add_method): Appled patch from
3179         David S. Miller  <davem@sunset.davemloft.net>: Access 
3180         minfo->lexical_blocks[] entry elements using read32().
3181
3182 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3183
3184         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3185         methods as it is allocated from the mempool.
3186
3187         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3188         image mempool.
3189
3190         * metadata-internals.h: Add comments describing the reference counting scheme
3191         used for MonoImage and MonoAssembly.
3192
3193         * image.c assembly.c reflection.c: Rework reference counting of images and 
3194         assemblies so they are freed when the runtime is shut down. Free some 
3195         additional memory structures when an image is unloaded.
3196         
3197 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3198
3199         * class.c loader.c reflection.c: Allocate more data structures in
3200         the image mempool.
3201
3202 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3203
3204         * icall.c
3205         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3206         build on pre glib 2.4 systems.
3207
3208 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3209
3210         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3211
3212         * icall.c: Fix some warnings.
3213
3214 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3215
3216         * culture-info-table.h : regenerated.
3217
3218 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3219
3220         * threads.c, object-internals.h, verify.c: changed the culture caching
3221         code to use a normal MonoArray for storage so the GC can keep track of
3222         them easily. Fixed bits of the cache logic, too and simplified the
3223         code.
3224
3225 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3226
3227         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3228         thread for non-Boehm GCs.
3229
3230 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3231
3232         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3233         needed to keep track of the data for static fields.
3234
3235 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3236
3237         Fix #75172
3238         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3239         for interface classes.  Use 'num_methods' instead.
3240         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3241         before using '->vtable_size' field.
3242
3243 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3244
3245         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3246         doesn't contain managed pointers, so use a normal hashtable.
3247
3248 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3249
3250         * reflection.c, class-internals.h, domain.c: fixed handling of types
3251         used as values for objects in custom attributes (bug #77915):
3252
3253 2006-03-24  Martin Baulig  <martin@ximian.com>
3254
3255         * class.c (mono_class_setup_fields): Added support for generic
3256         instances; fixes #77580.
3257
3258 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3259
3260         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3261
3262 2006-03-24  Dick Porter  <dick@ximian.com>
3263
3264         * file-io.c (get_file_attributes): More stat macro breakage.
3265         Fixes bug 77759.
3266
3267 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3268
3269         * profiler.c: added the file=filename option in the default profiler
3270         to output the profile data to filename.
3271
3272 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3273
3274         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3275         bug #77877.
3276
3277 2006-03-22  Martin Baulig  <martin@ximian.com>
3278
3279         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3280         allocated `MonoClassField *' in `fb->handle'.
3281
3282 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3283
3284         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3285         allocate interface ID to save memory and allow better ID reuse on
3286         appdomain unload. setup_generic_vtable () removal from Martin.
3287
3288 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3289
3290         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3291         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3292         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3293         write barriers for reference stores with managed objects accessed with
3294         C structures in the runtime and in embedding programs.
3295
3296 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3297
3298         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3299         'interface_id' and 'max_interface_id' fields of MonoClasses
3300         representing open generic types.
3301
3302 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3303
3304         * object.h, object.c, icall.c: added functions to deal with
3305         storing valuetypes that contain references in managed objects.
3306         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3307         fixes and comments around uses of mono_array_addr ().
3308
3309 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3310
3311         * object.h, icall.c, monitor.c: object.GetHashCode ()
3312         implementation that supports the moving garbage collector.
3313
3314 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3315
3316         * icall.c, threads-types.h, threads.c: implemented finalizer for
3317         LocalDataStoreSlot.
3318
3319 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3320
3321         * metadata.c (mono_type_size): Add a fixme.
3322         (mono_type_stack_size): Ditto.
3323
3324         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3325         'type_forwarders' field.
3326
3327         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3328         attribute from net 2.0.
3329
3330         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3331         from class.c.
3332
3333         * class.c (mono_class_setup_fields): Fix a warning.
3334         
3335         * class.c (mono_class_from_name): Add support for assemblyref entries
3336         in the EXPORTEDTYPE table.
3337
3338         * reflection.c: Add support for handling type forwarders under net 2.0.
3339
3340         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3341         
3342 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3343
3344         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3345         overwriting entries in ModuleBuild->types, also clean up the code
3346         a little. Fixes #77774.
3347
3348 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3349
3350         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3351         load friend assembly info when present.
3352
3353 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3354
3355         Fix crasher on gtest-158.cs.
3356         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3357         the return value if the MonoClass we want is yet in an
3358         inconsistent state.
3359         * class.c (mono_class_create_from_typedef): Add an comment
3360         explaining an order dependency between mono_class_setup_parent and
3361         mono_class_setup_mono_type.
3362
3363 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
3364
3365         * class.c: documentation updates and events bug fix.
3366
3367 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3368
3369         * class.c: some cleanup, locking fixes.
3370
3371 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3372
3373         * class.c: fix the generics code to setup nested
3374         type info to the instantiated type (bug #77770).
3375
3376 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3377
3378         * marshal.c: fixed a few type correctness issues.
3379
3380 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3381
3382         * loader.c: the Set/Get/Addrtess array methods should be public.
3383
3384 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3385
3386         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
3387         
3388         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
3389         info->wrapper.
3390
3391 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3392
3393         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
3394
3395         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
3396
3397         * mempool.c (mono_mempool_alloc): Speed this up a bit.
3398         (mono_mempool_alloc0): Ditto.
3399
3400 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3401
3402         * socket-io.c:
3403         (create_object_from_sockaddr): it was allocating 4 extra bytes
3404         for the AF_UNIX data. Fixes bug #77747.
3405
3406 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3407
3408         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
3409
3410 2006-03-09  Dick Porter  <dick@ximian.com>
3411
3412         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
3413         Fixes bug 76966 again.
3414
3415 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3416
3417         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
3418         names from r57532
3419         * appdomain.c: Bumped corlib version to 48 (due to r57532)
3420
3421 2006-03-07  Martin Baulig  <martin@ximian.com>
3422
3423         * object.c
3424         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
3425
3426 2006-03-07  Martin Baulig  <martin@ximian.com>
3427
3428         * class.c
3429         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
3430         regression introduced in r56970; see gtest-252.cs.
3431
3432         * loader.c (mono_get_method_constrained): Correctly handle generic
3433         methods; see gtest-253.cs.
3434
3435 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3436
3437         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
3438
3439 2006-03-04  Martin Baulig  <martin@ximian.com>
3440
3441         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
3442         compute the parent type at runtime, just like we're already doing
3443         it for interfaces.
3444
3445         * reflection.c
3446         (mono_reflection_bind_generic_parameters): Don't compute the
3447         parent type anymore.
3448
3449         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
3450
3451 2006-03-04  Martin Baulig  <martin@ximian.com>
3452
3453         * mono-debug-debugger.h
3454         (mono_debugger_create_notification_function): Allocate memory at
3455         runtime and return a pointer to it.
3456
3457 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
3458
3459         * assembly.c: Fix windows build.
3460         
3461         * assembly.c: Fix build.
3462
3463         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
3464
3465         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
3466         
3467 2006-03-03  Dick Porter  <dick@ximian.com>
3468
3469         * process.c
3470         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3471         Check parameters before dereferencing them.  Fixes Aaron's part of
3472         bug 77393.
3473
3474 2006-03-03  Raja R Harinath  <rharinath@novell.com>
3475
3476         Fix performance regression.
3477         * loader.c (find_method_in_class): Add 'from_class' argument.
3478         Rename 'klass' argument to 'in_class'.  The signature is compared
3479         against the method in 'in_class', and the corresponding method is
3480         returned from 'from_class'.
3481         (find_method): Walk both 'in_class' and 'from_class' in parallel.
3482         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
3483         type definition and generic instantiation in parallel.
3484         (mono_get_method_constrained): Update to changes.
3485
3486 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3487
3488         * threads.c: make sure the domain is correct, too when doing
3489         mono_thread_attach ().
3490
3491 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
3492
3493         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
3494         windows. Fixes #77683.
3495
3496 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3497
3498         * object.h, *: introduced specific way to set elements of an array
3499         of references to be used as write barrier. Still need to audit the
3500         uses of mono_array_addr.
3501
3502 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3503
3504         * object-internals.h: New field to cache the assmebly name, patch
3505         from Tambet Ingo (tambet@ximian.com)
3506
3507 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3508
3509         * decimal.h, class-internals.h, metadata-internals.h,
3510         file-io.h: mark a few function declarations as internal, to
3511         reduce the number of PLT entries.
3512
3513 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3514
3515         * file-io.c: fix typo in warning message.
3516
3517 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3518
3519         * loader.c: on unix, lookup the "*A" version of a function
3520         if charset is auto as a second option before failing.
3521
3522 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3523
3524         * class.h (mono_class_inflate_generic_method): Revert to two
3525         argument version.
3526         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3527         (mono_class_inflate_generic_method_full): Add.
3528         * class.c (mono_class_inflate_generic_method_full): Rename from
3529         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3530         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3531         * loader.c, reflection.c: Update to changes.
3532
3533 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3534
3535         * icall.c: const fixes and small improvements.
3536
3537 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3538
3539         * threadpool.c: for asynchronous connect(), enable the same workaround
3540         for BSD 6 as for the Mac. Fixes bug #77637.
3541
3542 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3543
3544         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3545         formatted classes. Fixes #77524.
3546
3547 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3548
3549         * class.c (inflate_generic_type): Add a couple more
3550         micro-optimizations.
3551         (inflate_generic_context): Don't use the 'gmethod' from
3552         'inflate_with'.
3553         (mono_class_inflate_generic_method): If the method has generic
3554         parameters, but the passed-in context doesn't have a 'gmethod',
3555         create one.  Use the possibly simplified generic instantiation
3556         from the declaring class instead of the one passed in.
3557
3558 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3559
3560         Make generic method signature and method header handling lazy.
3561         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3562         (inflate_generic_header): Likewise.
3563         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3564         parameter to avoid inflating types.
3565         (mono_get_inflated_method): Empty out.
3566         * class.h (mono_class_inflate_generic_method): Update to changes.
3567         * loader.c (mono_get_method_from_token): Don't parse signature for
3568         generic methods, nor methods of generic classes.
3569         (mono_method_signature): Rename from 'mono_method_signature'.
3570         Inflate signature on demand.
3571         (mono_method_get_header): Inflate method header on demand.
3572         * reflection.c: Update to changes.
3573
3574 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3575
3576         * metadata.c (mono_metadata_inflate_generic_inst): If the
3577         instantiation is closed, don't bother expanding it in the new
3578         context.
3579         * class.c (inflate_generic_class): If the generic instantiation
3580         doesn't change after inflation, return the argument itself.
3581         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3582         Add bounds checks.
3583         (inflate_generic_context): If neither the generic class nor the
3584         generic method instantiations change, return the original context.
3585         * reflection.c (mono_method_get_object): Do
3586         'mono_get_inflated_method' before accessing the ->klass field.
3587         (inflate_mono_method): Don't create a MonoGenericMethod unless
3588         necessary.
3589         (inflate_method): Don't pass a constructed type as the declaring
3590         type of a methodbuilder.
3591
3592 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3593
3594         * object.c: fix memory overwrite.
3595
3596 2006-02-22  Dick Porter  <dick@ximian.com>
3597
3598         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3599         it doesn't work any more.
3600         (mono_threads_request_thread_dump): Fix unused variable warnings.
3601
3602 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3603
3604         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3605         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3606         the public header file.
3607
3608 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3609
3610         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3611
3612 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3613
3614         * class-internals.h, object.c: reduce the size of MonoVTable
3615         and store the interface_offsets array at negative offsets.
3616
3617 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3618
3619         * metadata.c: tweak table descriptors data structures to reduce
3620         size and runtime relocations.
3621
3622 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3623
3624         * marshal.c: fix some types and opcodes to be type-safe
3625         in marshaling wrappers.
3626
3627 2006-02-21  Ankit Jain  <jankit@novell.com>
3628
3629         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3630
3631 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3632
3633         * metadata.c (get_constraints): Relax debugging checks for monodis.
3634
3635 2006-02-21  Ankit Jain  <jankit@novell.com>
3636
3637         * metadata.c (mono_metadata_load_generic_params): Move the code
3638         checking for ambiguous generic params from here to mono/dis/get.c
3639         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3640
3641 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3642
3643         Fix assertion triggered when compiling nemerle.
3644         * class.c (mono_get_shared_generic_inst): Rename from
3645         get_shared_inst and make non-static.
3646         * loader.c (mono_get_shared_generic_method): New.  Used to create
3647         the MonoGenericContext-equivalent of a MonoGenericContainer.
3648         (mono_get_method_from_token): Initialize the 'context' field of
3649         the created MonoGenericContainer.
3650         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3651         * metadata.c (get_constraints): Add sanity check.
3652         * class-internals.h: Add new internal methods.
3653
3654         * reflection.c (verify_safe_for_managed_space): New sanity check.
3655         Currently checks that owner-less generic parameters aren't allowed
3656         in managed space.
3657         (mono_type_get_object): Use it.
3658         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3659         that are now in mono_type_get_object.
3660         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3661
3662 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3663
3664         * metadata.c (mono_type_create_from_typespec): Rename from
3665         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3666         argument and caching of types in the generic container.
3667         (unwrap_arrays, find_generic_param): Remove.
3668         * metadata-internals.h: Update.
3669         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3670
3671 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3672
3673         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3674
3675         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3676         return values. Fixes #77581.
3677
3678         * class.c (mono_fnptr_class_get): Switch name and name_space.
3679
3680         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3681         classes and add support for [In, Out] attributes.
3682         (mono_marshal_free_asany): Ditto. Fixes #77524.
3683
3684 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3685
3686         * class.c (mono_class_from_generic_parameter): Make more robust to
3687         incomplete MonoGenericContainers from monodis.
3688
3689 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3690
3691         * class-internals.h: added some more exception types.
3692         * class.c, metadata.c: added a few checks to handle missing
3693         types.
3694
3695 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3696
3697         Use owner-less generic-params some more.
3698         * class.c (my_mono_class_from_generic_parameter): Remove.
3699         (mono_class_from_generic_parameter): Handle null image,
3700         param->name and param->owner.
3701         (mono_class_from_mono_type): Update.
3702         (mono_class_create_from_typespec): Remove 'container' parameter.
3703         If that parameter is non-null, the result is always inflated by
3704         'mono_class_get_full' anyway.
3705         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3706         parameter.
3707         (mono_class_get_full): Update.
3708
3709         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3710         instance is not open, don't bother inflating.
3711         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3712         parse metadata for inflated classes.
3713         (_mono_class_get): Change GenericContext* parameter to
3714         GenericContainer*.
3715         (mono_class_create_from_typespec): Likewise.  Simplify, and
3716         implement trivially.  All the cases are handled in
3717         mono_class_from_mono_type.  Don't inflate returned class.
3718         (mono_class_get_full): Delegate GENERICINST optimization to
3719         inflate_generic_type.
3720         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3721
3722 2006-02-16  Dick Porter  <dick@ximian.com>
3723
3724         * socket-io.c (create_object_from_sockaddr): Fix typo.
3725         (create_sockaddr_from_object): Check array lengths before
3726         potentially accessing items off the end.
3727         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3728         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3729         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3730         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3731         length checks to avoid wraparound overflows.
3732         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3733         contents of the array of sockets
3734         (hostent_to_IPHostEntry2)
3735         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3736         Check return value of inet_ntop ().
3737         (addrinfo_to_IPHostEntry): Fix typo
3738
3739 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3740
3741         Type metadata parsing doesn't use generic-instantiation information.
3742         * metadata.c (mono_metadata_parse_array_full): Change
3743         MonoGenericContext* parameter to MonoGenericContainer*.
3744         (mono_metadata_parse_type_full): Likewise.
3745         (mono_type_create_from_typespec_full): Likewise.
3746         (mono_metadata_parse_mh_full): Likewise.
3747         (mono_metadata_parse_generic_inst): Likewise.
3748         (do_mono_metadata_parse_generic_class): Likewise.
3749         (do_mono_metadata_parse_type): Likewise.
3750         * metadata-internals.h: Update to changes.
3751         * class.c (mono_class_find_enum_basetype): Likewise.
3752         (mono_class_setup_fields): Likewise.
3753         (mono_class_create_from_typespec): Likewise.
3754         * loader.c (method_from_methodspec): Likewise.
3755         (mono_get_method_from_token): Likewise.
3756         (mono_method_get_header): Likewise.
3757
3758 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3759
3760         * marshal.c: handle additional GENERICINST case (patch from
3761         Thong Nguyen <tum@veridicus.com>).
3762         Fix a few cases where LDIND_I/STIND_I was used for references.
3763
3764 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3765
3766         * reflection.c (mono_reflection_get_token): Remove unused variable.
3767
3768 2006-02-16  Martin Baulig  <martin@ximian.com>
3769
3770         * reflection.c (mono_reflection_get_token): Add support for fields
3771         in instantiated generic types.
3772
3773         * icall.c
3774         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3775
3776 2006-02-15  Martin Baulig  <martin@ximian.com>
3777
3778         * icall.c
3779         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3780         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3781         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3782         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3783
3784 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3785
3786         * class.c, metadata.c, metadata.h, object.c, icall.c,
3787         marshal.c: changed mono_type_get_underlying_type () to do
3788         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3789         Fixed handling of instantiated generic valuetypes (bug #75479).
3790
3791 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3792
3793         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3794         Delegate to mono_metadata_decode_value, and work on the returned value.
3795
3796         * icall.c (ves_icall_MonoType_GetGenericArguments):
3797         Add consistency check here too.
3798         
3799 2006-02-15  Ankit Jain  <jankit@novell.com>
3800
3801         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3802         char/short etc.
3803
3804 2006-02-15  Ankit Jain  <jankit@novell.com>
3805
3806         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3807         signed values, used only for representing lower bounds of arrays.
3808         (mono_metadata_parse_array_full): Use new
3809         mono_metadata_decode_signed_value to decode lower bounds.
3810
3811 2006-02-14  Martin Baulig  <martin@ximian.com>
3812
3813         * reflection.c
3814         (mono_reflection_get_token): Support "MonoGenericMethod" and
3815         "MonoGenericCMethod" and allow generic instances / methods.
3816
3817 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3818
3819         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3820         to obtain the terminal size using an ioctl.
3821
3822         * object.c (mono_nullable_init): Revert this as nullable reference
3823         types are not valid.
3824         (mono_nullable_box): Ditto.
3825
3826 2006-02-09  Dick Porter  <dick@ximian.com>
3827
3828         * threads.c (mono_thread_detach): Drop a reference to the thread
3829         we're detaching.
3830
3831 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3832
3833         * object.c (mono_nullable_init): Handle nullable reference types.
3834         (mono_nullable_box): Ditto. Fixes #77446.
3835
3836 2006-02-07  Martin Baulig  <martin@ximian.com>
3837
3838         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3839
3840 2006-02-07  Ankit Jain  <jankit@novell.com>
3841
3842         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3843         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3844         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3845         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3846         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3847         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3848
3849 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3850
3851         * class.c (mono_class_create_generic): Set type_token as well.
3852
3853         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3854         compatible with MS.
3855
3856 2006-02-02  Martin Baulig  <martin@ximian.com>
3857
3858         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3859         has never been used so far.
3860
3861 2006-02-02  Martin Baulig  <martin@ximian.com>
3862
3863         * mono-debug-debugger.h: Changed comment at the top of this file;
3864         the header is not installed, but it's safe to #include it from
3865         within the JIT.
3866
3867         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3868         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3869
3870 2006-02-02  Martin Baulig  <martin@ximian.com>
3871
3872         * mono-debug.h
3873         (MonoSymbolTable): Removed the `metadata_info' field.
3874
3875         * mono-debug.c
3876         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3877
3878         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3879         (mono_debugger_add_builtin_types): Removed.
3880         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3881         (mono_debugger_create_notification_function): We now operate on a
3882         pre-allocated area; take a `gpointer' and return `void'.
3883
3884         * mono-debug-debugger.c
3885         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3886         (mono_debugger_add_builtin_types): Removed.
3887
3888 2006-02-02  Martin Baulig  <martin@ximian.com>
3889
3890         * threads.c (mono_debugger_create_all_threads): New public method.
3891
3892 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3893
3894         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3895         breaks on several platforms.
3896
3897 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3898
3899         * assembly.c: the VS.NET build doesn't supply default values for
3900         MONO_ASSEMBLIES and MONO_CFG_DIR.
3901
3902 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3903
3904         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3905         helper function.
3906
3907         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3908
3909         * loader.c (method_from_memberref): Fix a warning.
3910
3911         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3912
3913         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3914         with explicit layout. Fixes #77433.
3915
3916 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3917
3918         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3919         max_interface_id is initialized before using it. Fixes #77398.
3920         (ves_icall_Type_GetInterfaces): Ditto.
3921
3922 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3923
3924         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3925         allocate memory for parameter attributes when parsing memberref
3926         signatures.
3927         * loader.c (mono_loader_set_error_method_load): Don't warn.
3928         (method_from_memberref): Ensure MissingMethodException gets thrown
3929         if method is not found.  Make warning more informative.
3930
3931 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3932
3933         Fix #77397
3934         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3935         return true if is byref.
3936         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3937         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3938         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3939
3940 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3941
3942         Fix tests/find-method.2.il
3943         * loader.c (find_method, find_method_in_class): Remove is_inflated
3944         argument.  Revert 2006-01-18 change.
3945         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3946         is generic, search for method in its generic definition.
3947         * class.c (mono_class_setup_vtable_general): Print generic
3948         arguments of generic types in debugging printf.
3949
3950 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3951
3952         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3953
3954         * threads.c (mono_threads_request_thread_dump): New helper function.
3955
3956 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3957
3958         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3959
3960 2006-01-25  Ankit Jain  <jankit@novell.com>
3961
3962         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3963         move definition to ..
3964         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3965         
3966 2006-01-25  Ankit Jain  <jankit@novell.com>
3967             Raja R Harinath  <rharinath@novell.com>
3968
3969         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3970         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3971         as necessary.
3972
3973 2006-01-25  Martin Baulig  <martin@ximian.com>
3974
3975         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
3976         `MonoDebuggerThread' into debug-debugger.c.
3977
3978 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
3979
3980         * profiler.c: fix printing of data.
3981
3982 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
3983
3984         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
3985           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
3986
3987 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
3988
3989         * object.c: fix deadlock related to string interning.
3990
3991 2006-01-23  Martin Baulig  <martin@ximian.com>
3992
3993         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3994
3995         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
3996
3997 2006-01-23  Martin Baulig  <martin@ximian.com>
3998
3999         * mono-debug.h: Moved the prototypes of some functions which are
4000         used by the JIT here from mono-debug-debugger.h.
4001
4002 2006-01-21  Martin Baulig  <martin@ximian.com>
4003
4004         * Makefile.am: Don't install mono-debug-debugger.h.
4005
4006 2006-01-21  Martin Baulig  <martin@ximian.com>
4007
4008         * mono-debug-debugger.h: Enforce the private status of this header
4009         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4010         Moved some stuff from mono-debugger-jit-wrapper.h here.
4011
4012 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4013
4014         * class.c (mono_class_from_typeref): Add a sanity test to help
4015         catch lack of assembly load/search hooks.
4016
4017 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4018
4019         * marshal.c (emit_struct_conv): Relax the fields with same offset
4020         check even more. Fixes #77230.
4021
4022 2006-01-18  Martin Baulig  <martin@ximian.com>
4023
4024         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4025         argument; if false, we compare the uninstantiated signatures.
4026         (method_from_memberref): Compare the uninstantiated signatures;
4027         fixes #76417.
4028
4029 2006-01-18  Robert Jordan  <robertj@gmx.net>
4030
4031         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4032         Clear the weak link. Fixes bug #77170.
4033
4034         * gc.c (mono_gchandle_free):
4035         Reflect *-gc.c changes (tiny optimization).
4036
4037 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4038
4039         * metadata.c (mono_metadata_signature_dup): Applied patch from
4040         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4041         Fixes #77288.
4042
4043 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4044
4045         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4046         marshalling from native to managed code. Fixes #77230.
4047
4048 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4049
4050         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4051         connect. Fixes bug #77020.
4052
4053 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4054
4055         * class.c: fixed id assignement for nested interfaces (bug #77275).
4056         Added also better info for --print-vtable debugging.
4057
4058 2006-01-12  Martin Baulig  <martin@ximian.com>
4059
4060         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4061         interfaces on-the-fly; fixes #76625.
4062
4063         * class-internals.h
4064         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4065         don't need that anymore.
4066
4067 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4068
4069         * socket-io.c
4070         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4071         To avoid initing the nested_classes when not needed I turned the
4072         PeerCredData as a toplevel internal class, as it has to be shared
4073         anyways. 
4074
4075         Fixes the CASA issue.
4076
4077 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4078
4079         * domain.c: Accessors for MonoJitInfo
4080
4081         * profiler-private.h: Add jitinfo to the end jit hook
4082
4083         * profiler.[ch]: Define new hooks, called after jitting which give
4084         the MonoJitInfo that was compiled
4085
4086 2006-01-10  Martin Baulig  <martin@ximian.com>
4087
4088         * class.c (mono_class_setup_events): Add support for generic
4089         classes; fixes #76440.
4090
4091 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4092
4093         Fix #77160.
4094         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4095         on passed-in method.
4096
4097 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4098
4099         * object.c (mono_runtime_invoke_array): Add Nullable support.
4100
4101         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4102
4103 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4104
4105         * file-io.c: Don't consider sockets as directory and avoid an endless
4106         loop. Fix bug #76966.
4107
4108 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4109
4110         * object.c (mono_nullable_init): New helper function.
4111         (mono_nullable_box): Ditto.
4112
4113         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4114
4115         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4116
4117         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4118         
4119 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4120
4121         * class.c (mono_class_is_assignable_from): Make T assignable to 
4122         Nullable<T>.
4123
4124 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4125
4126         * appdomain.c: Bump corlib version to 46.
4127         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4128         serialization purpose) and changed ves_icall_System_Reflection_
4129         Assembly_get_code_base signature to accept a boolean (to escape, or 
4130         not, the assembly code base).
4131
4132 2005-12-23  Dick Porter  <dick@ximian.com>
4133
4134         * icall.c: 
4135         * threads-types.h: 
4136         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4137         CreateEvent icall now returns "created" boolean parameter.
4138
4139 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4140
4141         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4142         #76967.
4143
4144         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4145         when attr_klass is an interface. Fixes #77045.
4146
4147 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4148
4149         * marshal.c (emit_struct_conv): Fix previous patch.
4150         
4151         * marshal.c (emit_struct_conv): Add a check for fields with the same
4152         offset.
4153
4154 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4155
4156         Fix regression in Mono.C5.
4157         * class.c (mono_class_create_generic): If 'klass' is an interface
4158         set up the interface offsets.
4159         (mono_class_is_assignable_from): Don't throw away generic arguments.
4160
4161 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4162
4163         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4164         type parameters.
4165
4166 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4167
4168         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4169         dead store.
4170         (do_mono_metadata_parse_generic_class): Don't pass the current
4171         generic context when parsing the type being instantiated: it
4172         cannot use it, anyway.
4173
4174         * loader.c (method_from_memberref): Don't inflate a signature if
4175         it doesn't contain any type parameters.
4176
4177 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4178
4179         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4180
4181 2005-12-14  Martin Baulig  <martin@ximian.com>
4182
4183         * class.c
4184         (mono_type_get_name_recurse): Don't return null for type
4185         parameters and open generic classes.
4186         (mono_class_setup_methods): Don't exclude generic instances.
4187         (mono_get_unique_iid): Use different IDs for different
4188         instantiations of the same generic type.
4189         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4190         open generic instances; create a normal vtable for closed generic
4191         instances.
4192         (mono_class_setup_vtable_general): We're now also called for
4193         closed generic instances.
4194
4195         * reflection.c
4196         (mono_reflection_bind_generic_parameters): Correctly use
4197         mono_metadata_lookup_generic_inst() everywhere.
4198
4199 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4200
4201         * object.c (mono_class_create_runtime_vtable): Call 
4202         mono_class_setup_vtable ().
4203
4204         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4205         function.
4206         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4207         #76959.
4208
4209         * loader.c (mono_loader_set_error_type_load): Print the type load
4210         warnings to the console so they are more visible to the user.
4211         (mono_loader_set_error_method_load): Ditto.
4212
4213         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4214         is still broken.
4215         
4216         * reflection.c (ensure_runtime_vtable): Fix build.
4217
4218         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4219         doesn't work in all cases.
4220
4221 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4222
4223         * object.c (mono_array_new_full): Treat a single dimensional array
4224         with 0 lower bounds as an szarray. Fixes #76973.
4225
4226         * reflection.c (custom_attr_visible): Really fix this.
4227
4228 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4229
4230         * reflection.c (custom_attr_visible): Allow nested public attributes
4231         as well.
4232
4233         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4234         interface check.
4235
4236 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4237
4238         * class.c (set_generic_param_owner): Delete.
4239         (mono_class_create_from_typedef): Don't set ->owner field of
4240         generic parameters to "param containers" of enclosing classes.
4241         * reflection.c (mono_reflection_initialize_generic_parameter):
4242         Likewise.
4243
4244 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4245
4246         * reflection.c (custom_attr_visible): Fix build.
4247
4248 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4249
4250         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4251         private attributes.
4252         
4253         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4254         handling of null parameter defaults.
4255
4256 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4257
4258         * class.c (mono_class_from_generic_parameter): Don't set
4259         klass->generic_container.
4260         (my_mono_class_from_generic_parameter): Likewise.
4261
4262 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4263
4264         * reflection.c (load_public_key): Fix a warning.
4265         (method_encode_code): Fix unaligned accesses.
4266
4267 2005-12-07  Martin Baulig  <martin@ximian.com>
4268
4269         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4270
4271         * reflection.c
4272         (write_generic_param_entry): Encode our custom attrs.
4273
4274         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4275
4276 2005-12-07  Martin Baulig  <martin@ximian.com>
4277
4278         * reflection.c (encode_new_constraint): Removed; we don't use the
4279         `NewConstraintAttribute' anymore.
4280
4281 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4282
4283         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4284         not fire a TypeResolve event when Assembly.GetType () is called.
4285
4286 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4287
4288         Beginning of support for nullable types in the runtime. Parts of
4289         this patch are from Martin.
4290
4291         * appdomain.c (MONO_CORLIB_VERSION): Bump
4292
4293         * domain.c (mono_init_internal): get the nullable type
4294
4295         * class.c (mono_class_is_nullable): New method
4296         (mono_class_get_nullable_param): New mehod
4297         (mono_class_create_generic): In types T? set cast_class to T
4298
4299         * class-internals.h (MonoDefaults): new nullable default class
4300         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4301         new methods.
4302
4303 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4304
4305         * metadata.c (select_container): New.  Refactor code to select the
4306         appropriate GenericContainer given the type of generic parameter
4307         we are looking for.
4308         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4309         not a MonoGenericContext.  Use select_container.  Update parameters.
4310         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4311         and MONO_TYPE_MVAR.
4312         (unwrap_arrays): Remove duplicate tests.
4313         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4314         generic instantiated class to find any arguments that are generic
4315         parameters.
4316         (mono_type_create_from_typespec_full): Use find_generic_param to
4317         avoid evicting some generic instantiations from the typespec
4318         cache.
4319
4320 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4321
4322         * reflection.c: fixed writing of doubles on ARM FPA.
4323
4324 2005-12-02  Robert Jordan  <robertj@gmx.net>
4325
4326         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4327
4328 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4329
4330         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4331         least on SUSE 10 they are not the same (on debian, they are just the
4332         same thing).
4333
4334 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4335
4336         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4337         DeclaringType for VARs and MVARs.
4338         * class.c (set_generic_param_owner): Fix initialization of owner
4339         fields.
4340
4341 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4342
4343         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4344
4345 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4346
4347         * threadpool.c: workaround for a bug that shows up on the Mac:
4348         select()+connect() on a blocking socket is not like it should
4349         be, so we proceed to connect() in that case, wasting the I/O
4350         threadpool thread until connect succeedes. Fixes bug #75436.
4351
4352 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4353
4354         * threadpool.c: fix typo when setting file descriptor states.
4355
4356 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4357
4358         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4359         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4360         create a temporary signature container.
4361         (mono_metadata_parse_generic_param): Update to changes.
4362         (mono_type_create_from_typespec_full): Update to changes.
4363         * loader.c (method_from_memberref): Don't use a
4364         MonoGenericContainer while parsing a memberref signature.
4365         (method_from_methodspec): Remove dead-store of the 'container'
4366         variable.  It's overwritten before use.
4367
4368         * metadata.c (mono_type_create_from_typespec_full): Make debugging
4369         checks tighter.
4370         (mono_metadata_parse_generic_param): Likewise.
4371         * loader.c (find_method_in_class): Does not need a
4372         MonoGenericContainer.  Use 'mono_method_signature' rather than
4373         'mono_method_signature_full'.
4374         (find_method, mono_get_method_constrained, method_from_memberref):
4375         Update to changes.
4376
4377         * metadata.c (mono_type_create_from_typespec_full): Ensure that
4378         owner-less generic-parameters are never evicted from the typespec
4379         cache.
4380
4381         * loader.c (method_from_memberref): Don't use the current context
4382         when parsing signatures.
4383         (method_from_methodspec, mono_get_method_from_token): Update to changes.
4384
4385         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
4386         side-effects in g_assert.
4387         * loader.c (mono_get_method_from_token): Resolve klass earlier so
4388         that we don't potentially lose information.
4389
4390 2005-11-26  Dick Porter  <dick@ximian.com>
4391
4392         * icall.c:
4393         * threads.c: icalls to implement basic (ie, not named)
4394         System.Threading.Semaphore.
4395
4396 2005-11-24  Dick Porter  <dick@ximian.com>
4397
4398         * process.c
4399         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4400         Use GetProcessId() if it's available.
4401
4402 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
4403
4404         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
4405
4406 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4407             Ankit Jain  <jankit@novell.com>
4408
4409         * loader.c (mono_get_method_from_token): Initialize 'method' field
4410         of all generic parameters before parsing the signature.  Remove
4411         code that "fixed"-up MVAR references.
4412
4413 2005-11-23  Ankit Jain  <jankit@novell.com>
4414
4415         * metadata.c (mono_metadata_has_generic_params):
4416         (mono_metadata_load_generic_param_constraints):
4417         (mono_metadata_load_generic_params): Move duplicate code ...
4418         (mono_metadata_get_generic_param_row): ... here. Returns the
4419         first row-id in GenericParam table for a given owner (token).
4420         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
4421         prototype.
4422
4423 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4424             Ankit Jain  <jankit@novell.com>
4425
4426         * metadata.c (mono_metadata_class_equal): Pass signature_only when
4427         comparing VARs too.
4428         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
4429         type->data.generic_param only if the type is an MVAR.
4430         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
4431         leak owner-less VARs and MVARs into managed space.
4432
4433 2005-11-21  Martin Baulig  <martin@ximian.com>
4434
4435         * class-internals.h
4436         (MonoMethod): Moved the `generic_container' here from
4437         `MonoMethodNormal' since we now also need it for
4438         `MonoMethodPInvoke';
4439         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
4440         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
4441         an union containing both `MonoMethodNormal' and
4442         `MonoMethodPInvoke'.
4443
4444         * loader.c
4445         (mono_get_method_from_token): Allow implementing generic methods
4446         as interncalls.
4447
4448         * threads.c
4449         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
4450         icall.
4451
4452 2005-11-17  Dick Porter  <dick@ximian.com>
4453
4454         * icall.c: 
4455         * process.h: 
4456         * process.c: Split the Process Start_internal icall into
4457         ShellExecuteEx_internal and CreateProcess_internal, which are
4458         called depending on whether UseShellExecute is true.  Fixes bug
4459         76670.
4460
4461         * appdomain.c (MONO_CORLIB_VERSION): Incremented
4462
4463 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4464
4465         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
4466         'msize' parameters, use the information in 'mspec' instead.
4467         (emit_object_to_ptr_conv): Ditto.
4468
4469         * marshal.c (emit_struct_conv): Handle explicit layout structs with
4470         fields out of order. Fixes #76733.
4471
4472 2005-11-17  Ankit Jain  <jankit@novell.com>
4473
4474         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
4475
4476 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
4477
4478         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
4479           bug #76575.
4480
4481 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4482
4483         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
4484         for types with non-auto layout. Fixes #76717.
4485
4486 2005-11-16  Ankit Jain  <jankit@novell.com>
4487
4488         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
4489         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
4490         if generic_context is null.
4491           (mono_metadata_generic_param_equal): param->owner can be null.
4492           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
4493         null.
4494
4495 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4496
4497         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4498         the correct value.
4499
4500 2005-11-15  Martin Baulig  <martin@ximian.com>
4501
4502         * object.c (set_value): Use mono_class_from_mono_type() instead of
4503         the hack for generic instances; fixes #76136.
4504
4505 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4506
4507         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4508         fields.
4509
4510         * image.c (load_metadata_ptrs): Initialize the new fields.
4511
4512         * reflection.c (create_dynamic_mono_image): Ditto.
4513
4514         * reflection.c (build_compressed_metadata): Use the new fields.
4515
4516         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4517         icall.
4518
4519         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4520         icall.
4521         
4522 2005-11-15  Ankit Jain  <jankit@novell.com>
4523             Raja R Harinath  <harinath@gmail.com>
4524
4525         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4526         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4527         new per-generic_container cache if the cached MonoType's context matches
4528         the current context.
4529           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4530         to the expected context.
4531           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4532
4533 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4534
4535         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4536         we changed the signature of an icall.
4537         * icall.c: Modify to mono_double_ParseImpl return true/false 
4538         depending on the success, instead of throwing the exception. This will
4539         help us in Double.TryParse methods.
4540         
4541 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4542
4543         * marshal.c (emit_marshal_object): Throw an exception when
4544         marshalling 'object' instead of crashing. Fixes #76696.
4545
4546 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4547
4548         * class-internals.h: Add prototype for mono_type_get_full_name ().
4549
4550 2005-11-11  Dick Porter  <dick@ximian.com>
4551
4552         * threads.c (mono_thread_manage): Make sure the main thread has
4553         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4554
4555 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4556
4557         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4558         console about the missing type.
4559         (mono_loader_set_error_method_load): Ditto.
4560
4561 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4562
4563         * mono-config.c (mono_get_config_dir): Set the system defaults if
4564         none is specified.
4565
4566         * assembly.c (mono_set_dirs): New API entry point to set the
4567         assembly and the config directory in one call
4568
4569 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4570
4571         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4572         the ftnptr was created from a delegate in a domain other than the
4573         current domain. Fixes #75377.
4574
4575         * exception.h exception.c: Add mono_get_exception_not_supported ().
4576
4577 2005-11-08  Martin Baulig  <martin@ximian.com>
4578
4579         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4580
4581 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4582
4583         * security-manager.h: Added definitions to deal with strongname key 
4584         pairs bigger (and smaller) than 1024 bits.
4585         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4586         adjust wrt the public key length being used.
4587
4588 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4589
4590         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4591           Windows build (r51396-51397).
4592
4593 2005-11-03  Martin Baulig  <martin@ximian.com>
4594
4595         * class.c (mono_class_setup_vtable_general): Also add generic
4596         methods to the vtable; fixes #76581.
4597
4598 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4599
4600         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4601         sure that we lookup GetString method from the System.Text.Encoding
4602         class, not the derived class or we get an empty method.
4603
4604         Fixed class #76612.
4605
4606 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4607
4608         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4609         if it has been previously set (embedders). 
4610
4611         Make mono_set_rootdir available also on Unix.
4612
4613 005-10-24  Robert Jordan  <robertj@gmx.net>
4614
4615         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4616
4617 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4618
4619         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4620         only calls which are made to native code use this flag.
4621
4622         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4623
4624 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4625
4626         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4627         Add support for FieldBuilders.
4628
4629 2005-10-29  Martin Baulig  <martin@ximian.com>
4630
4631         * mono-debug.c
4632         (mono_debug_using_mono_debugger): New public method; returns
4633         whether we're running inside the debugger.
4634
4635 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4636
4637         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4638         for Method/Constructor/FieldBuilders.
4639
4640 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4641
4642         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4643         and fields as well.
4644
4645 2005-10-26  Martin Baulig  <martin@ximian.com>
4646
4647         * mono-debug-debugger.c
4648         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4649
4650 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4651
4652         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4653         integer to isspace.
4654
4655 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4656
4657         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4658         when passing valuetypes byref. Fixes #76502.
4659
4660 2005-10-19  Jackson Harper  <jackson@ximian.com>
4661
4662         * profiler.c: Don't put a . in front of types that are not in a
4663         namespace.
4664
4665 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4666
4667         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4668
4669 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4670
4671         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4672         #76436.
4673         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4674
4675 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4676
4677         * assembly.c metadata-internals.h icall.c: Define an additional
4678         parameter for mono_assembly_name_parse_full, so we can avoid creating
4679         S.R.AssemblyName.Version when no version info wasn't passed.
4680         
4681 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4682
4683         * class.c (mono_type_get_full_name): Reimplement method that was
4684         removed. 
4685
4686         * image.c: Some docs
4687
4688 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4689
4690         * profiler.c (output_newobj_profile): Fix printing of Total memory
4691         on x86.
4692
4693 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4694
4695         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4696
4697 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4698
4699         * threads.c: remove debug output.
4700
4701 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4702
4703         * threads.c (mono_thread_manage): Fix crashes if more than 64
4704         threads need to be aborted. Hopefully fixes #75899.
4705
4706         * assembly.c (mono_stringify_assembly_name): New helper function.
4707
4708         * class.c: Use mono_stringify_assembly_name instead of the similar
4709         static function.
4710
4711         * assembly.h assembly.c: Add support for calling a postload search 
4712         hook if an assembly cannot be loaded.
4713
4714         * appdomain.c: Register new search hooks which call the AssemblyResolve
4715         events in AppDomain. Fixes #75231
4716
4717 2005-10-07  Martin Baulig  <martin@ximian.com>
4718
4719         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4720         methods without debug info.
4721
4722 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4723
4724         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4725         wrappers.
4726
4727 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4728
4729         * file-io.c: now that we return symlinks, use lstat and, when the file
4730         is a symbolic link, stat, to get the file attributes. Also avoid the
4731         conversion to/from utf16/external.
4732
4733 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4734
4735         * class.c (mono_class_layout_fields): Compute klass->has_references
4736         correctly if an embedded valuetype is not yet initialized. Fixes
4737         #76331.
4738
4739 2005-10-04  Martin Baulig  <martin@ximian.com>
4740
4741         * metadata.c
4742         (mono_metadata_load_generic_param_constraints): New public
4743         function; splitted the constraints loading out from
4744         mono_metadata_load_generic_params().
4745
4746         * class.c (mono_class_create_from_typedef): Call
4747         mono_metadata_load_generic_param_constraints() after setting up
4748         the type and creating our parent; fixes #75329.
4749
4750 2005-10-04  Martin Baulig  <martin@ximian.com>
4751
4752         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4753         non-dynamic parent classes.
4754
4755 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4756
4757         * file-io.c : win32 build fix (ETXTBSY seems not found).
4758
4759 2005-10-04  Martin Baulig  <martin@ximian.com>
4760
4761         * reflection.c
4762         (mono_image_get_methodspec_token): Make the cache actually work;
4763         fixes #75974.
4764
4765 2005-10-04  Martin Baulig  <martin@ximian.com>
4766
4767         * class.c (mono_class_name_from_token): Removed the unneccessary
4768         `MonoGenericContext *' argument.
4769
4770 2005-10-04  Martin Baulig  <martin@ximian.com>
4771
4772         * loader.c
4773         (method_from_methodspec): Make the caching work again; fixes the
4774         performance regression from #76262.
4775
4776 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4777
4778         * file-io.c:
4779         * file-io.h:
4780         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4781         GetFileSystemEntries that performs the same work but without going
4782         into io-layer, locking, etc.
4783
4784 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4785
4786         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4787         ThreadState_Stopped as well. Fixes #76047.
4788
4789 2005-09-29  Martin Baulig  <martin@ximian.com>
4790
4791         * class.c
4792         (inflate_generic_context): If the new context has a `gmethod', set
4793         its `container' that that gmethod's `container'.
4794
4795         * metadata.c
4796         (mono_metadata_parse_generic_param): Simplify things;
4797         `generic_container = generic_context->container;' is just fine.
4798
4799         * loader.c (method_from_methodspec): Code cleanups.
4800
4801 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4802
4803         * decimal.c: fix warning (and let gcc generate correct
4804         code on ARM with optimizations).
4805
4806 2005-09-28  Martin Baulig  <martin@ximian.com>
4807
4808         * loader.c
4809         (method_from_memberref): Added `MonoGenericContext *class_context'
4810         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4811         (method_from_methodspec): If we're a memberref, use the enclosing
4812         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4813
4814 2005-09-28  Martin Baulig  <martin@ximian.com>
4815
4816         * object.c (mono_runtime_invoke_array): Added support for
4817         MONO_TYPE_GENERICINST; fixes #75917.
4818
4819 2005-09-27  Martin Baulig  <martin@ximian.com>
4820
4821         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4822         `k->byval_arg.type' to determine the actual type.
4823
4824         * loader.c (method_from_methodspec): Removed some hacks.
4825
4826 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4827
4828         * class-internals.h (mono_field_is_deleted): Do the test for
4829         rtspecialname before we check the actual name of the field. This
4830         prevents us from dereferencing a pointer into the string table,
4831         saving us from accessing a few pages
4832
4833         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4834         macros. This will allow a deadlock debugger to easily be plugged
4835         in.
4836
4837 2005-09-27  Martin Baulig  <martin@ximian.com>
4838
4839         * loader.c (method_from_methodspec): Create a "signature"
4840         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4841
4842 2005-09-27  Martin Baulig  <martin@ximian.com>
4843
4844         * class.c
4845         (inflate_generic_class): Correctly set the new context's
4846         container.
4847
4848         * loader.c
4849         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4850         instead of a `MonoGenericContext *'.
4851         (mono_method_signature_full): Take a `MonoGenericContainer *'
4852         instead of a `MonoGenericContext *'.
4853
4854         * metadata.c
4855         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4856         instead of a `MonoGenericContext *'.
4857         (mono_metadata_parse_method_signature_full): Likewise.
4858
4859 2005-09-26  Martin Baulig  <martin@ximian.com>
4860
4861         * class.c
4862         (mono_class_from_generic_parameter): Set `klass->generic_container'
4863         (mono_class_from_generic_parameter): Likewise.
4864         (mono_bounded_array_class_get): We inherit the generic container
4865         from the element class.
4866
4867         * loader.c
4868         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4869         argument rather than computing it here.
4870         (method_from_memberref): Correctly set the generic context before
4871         parsing the signature.  Fixes #75681.
4872
4873 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4874
4875         * object.c (mono_class_has_special_static_fields): Fix warnings.
4876
4877 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4878
4879         * assembly.c: Add parse_public_key function, to
4880         par the public keys. Also added mono_assembly_name_parse_full,
4881         to define it the parsed key should be freed or not.
4882         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4883         to parse a long format assembly name.
4884         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4885         private, since calling it to preserve the key requires
4886         freeing it manually.
4887         
4888 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4889
4890         * locales.c : removed HAVE_ICU part.
4891
4892 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4893
4894         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4895         field_is_special_static if the klass has no special static fields.
4896
4897         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4898         (MonoCachedClassInfo): Likewise.
4899
4900         * object.c (mono_class_has_special_static_fields): New helper function.
4901
4902 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4903
4904         * class.c (mono_class_create_from_typedef): Don't call 
4905         interfaces_from_typedef_full for enums.
4906         (mono_class_create_from_typedef): Compute the base types of enums directly
4907         without calling mono_class_setup_fields ().
4908         (mono_class_find_enum_basetype): New helper function.
4909
4910         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4911         one place inside the string heap.
4912         
4913 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4914
4915         * class.c: locking fixes, code cleanups, some docs added.
4916         Allocate some data structures in the image mempool.
4917
4918 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4919
4920         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4921         the example code.
4922         
4923 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4924
4925         * class-internals.h, class.c, reflection.c: reduce memory taken by
4926         MonoClass.
4927
4928 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4929
4930         * metadata.c, metadata.h, loader.h: documentation updates, code and
4931         API cleanups.
4932
4933 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4934
4935         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4936         the example code.
4937
4938         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4939         page faults caused by the runtime while reading metadata.
4940
4941 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4942
4943         * socket-io.c: the field names were changed 3 months ago and no one
4944         realized until bug #76077 got filed!
4945
4946 2005-09-20  Martin Baulig  <martin@ximian.com>
4947
4948         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4949
4950 2005-09-20  Martin Baulig  <martin@ximian.com>
4951
4952         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4953         write the rank into the class entry.
4954
4955 2005-09-20  Martin Baulig  <martin@ximian.com>
4956
4957         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4958
4959 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4960
4961         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4962
4963         * icall.c (custom_attrs_defined_internal): New icall.
4964
4965         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4966         function.
4967         (mono_custom_attrs_construct_by_type): New helper function.
4968
4969 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4970
4971         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4972         terminate the resulting string. Fixes #76123.
4973
4974 2005-09-16  Martin Baulig  <martin@ximian.com>
4975
4976         * mono-debug.c
4977         (mono_debug_add_method): Ignore inflated methods for the moment.
4978
4979 2005-09-14  Martin Baulig  <martin@ximian.com>
4980
4981         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
4982
4983 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
4984
4985         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
4986         return a success/failure indication.
4987         (mono_metadata_interfaces_from_typedef_full): Ditto.
4988         (get_constraints): Ditto.
4989
4990 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
4991
4992         * marshal.c (emit_marshal_array): Fix handling of null arrays.
4993         
4994         * marshal.c (emit_marshal_array): Add support for returning string
4995         arrays from delegates. Fixes #76063.
4996
4997         * marshal.c: Use the emit_ldloc/stloc macros where possible.
4998
4999 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5000
5001         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5002         icall.
5003
5004 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5005
5006         * reflection.c icall.c: Fix after mono_get_exception_type_load
5007         signature change.
5008
5009         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5010         (mono_assembly_load_reference): Use the new helper.
5011
5012         * class-internals.h (MonoLoaderError): New structure containing 
5013         information about type loading errors.
5014
5015         * class-internals.h loader.c: Add APIs to store per-thread loader
5016         error information.
5017
5018         * loader.c class.c: Set the loader error if needed.
5019
5020         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5021
5022 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5023
5024         * decimal.c: fixed to handle the broken ARM fp format.
5025
5026 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5027
5028         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5029         broken.
5030
5031 2005-09-06  Martin Baulig  <martin@ximian.com>
5032
5033         * domain.c (supported_runtimes): Added v2.0.50727.
5034
5035 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5036
5037         * culture-info.h: reduce the size of some structures.
5038
5039 2005-09-05  Martin Baulig  <martin@ximian.com>
5040
5041         Reflect latest API changes in the August CTP.
5042
5043         * icall.c
5044         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5045         ("MonoType.HasGenericArguments"): Removed.
5046         ("MonoMethod.BindGenericParameters"): Renamed to
5047         "MakeGenericMethod".
5048         ("MethodBuilder.BindGenericParameters"): Renamed to
5049         "MakeGenericMethod".    
5050
5051 2005-09-05  Martin Baulig  <martin@ximian.com>
5052
5053         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5054
5055 2005-09-05  Martin Baulig  <martin@ximian.com>
5056
5057         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5058
5059         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5060         generic_container is non-NULL.
5061
5062 2005-09-05  Martin Baulig  <martin@ximian.com>
5063
5064         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5065
5066         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5067
5068 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5069
5070         * reflection.c (encode_locals,
5071         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5072         for large generic types.
5073
5074 2005-09-05  Martin Baulig  <martin@ximian.com>
5075
5076         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5077
5078         * class.c (mono_dup_array_type): New public method.
5079         (mono_metadata_signature_deep_dup): New public method.
5080         (dup_type): Correctly duplicate array and function types.
5081
5082 2005-09-05  Martin Baulig  <martin@ximian.com>
5083
5084         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5085
5086         * reflection.c (get_default_param_value_blobs): Handle generic types
5087         and generic methods.
5088
5089 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5090
5091         * class.c: Fixed error reporting (method/class were inversed) for 
5092         inheritance demands.
5093         * security-manager.c|h: Added the AppDomain when calling the managed
5094         System.Security.SecurityManager.InheritanceDemand method.
5095
5096 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5097
5098         * reflection.c (encode_marshal_blob): 'marshaltype' and
5099         'marshaltyperef' are alternate sources for the custom marshaler
5100         name.
5101
5102 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5103
5104         * class.c: fix creation of array classes with rank == 1
5105         (patch by Ankit Jain <jankit@novell.com>).
5106
5107 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5108
5109         * object.c: fix check for creating the bound data for arrays vs
5110         szarrays.
5111
5112 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5113
5114         * object.c: configuration file name is now based on the executable name,
5115         not the image name. Fixes bug #75931.
5116
5117 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5118
5119         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5120         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5121
5122 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5123
5124         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5125
5126 2005-08-24  Ankit Jain  <jankit@novell.com>
5127             Raja R Harinath  <rharinath@novell.com>
5128
5129         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5130           called by it recursively.
5131           (mono_class_init): Remove special case in pending_init handling, since it's
5132           superseded by the fix to mono_class_from_typeref.
5133
5134 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5135
5136         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5137         BROKEN_THREAD_START stuff.
5138
5139 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5140
5141         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5142         trampoline.
5143
5144         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5145         
5146         * object.c (mono_delegate_ctor): Replace the original function address with
5147         a delegate trampoline.
5148
5149 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5150
5151         * icall.c: add boolean argument to base64_to_byte_array and 
5152         InternalFromBase64String to control whether a whitespace-only string
5153         is allowed (or should casue a FormatException to be thrown). We need
5154         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5155         to match the MS behaviour in both profiles.
5156         * appdomain.c: Bump corlib version.
5157
5158 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5159
5160         This patch implements a big portion of publisher policy
5161         support, used to bind assembly versions and redirect
5162         one assembly from version A to version B.
5163
5164         * assembly.c:
5165         New GSList loaded_assembly_bindings, for storing the cached
5166         assembly bindings.
5167         (assembly_binding_maps_name): New static function for checking if a 
5168         assembly binding information maps an assembly name.
5169         (mono_assembly_binding_info_free): New function for freeing
5170         assembly binding information resources.
5171         (get_publisher_policy_info): New static function for retrieving 
5172         assembly binding information from a MonoImage.
5173         (compare_versions): New static function for comparing an assembly
5174         binding information data and the version of an assembly name.
5175         (check_policy_versions): New static function for checking if an
5176         assembly binding info mapping an assembly name is valid for it.
5177         (mono_assembly_load_publisher_policy): New static function for
5178         loading the 'policy.major.minor.MyAssembly' image for an assembly
5179         with an assembly name 'aname'.
5180         (mono_assembly_bind_version): New static function for updating
5181         assembly redirection.
5182         (mono_assembly_apply_binding): New static function for applying
5183         assembly binding.
5184         (search_binding_loaded): New static function for searching 
5185         loaded assembly binding infos in the cache domain.
5186         (mono_assembly_load_full): Don't apply assembly binding for
5187         reflection only assemblies.
5188
5189         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5190         which contains information about assembly binding. Also
5191         declare signature for mono_config_parse_publisher_policy ()
5192         function, used to retrieve pub policy info.
5193         
5194         * mono-config.c:
5195         (publisher_policy_start): New static function used to parse publisher 
5196         policy config files.
5197         (publisher_policy_parser): New static MonoParseHandler containing 
5198         the functions used when parsing config files.
5199         (mono_config_parse_publisher_policy): New function for parsing
5200         publisher policy files.
5201         
5202 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5203
5204         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5205
5206         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5207
5208         * object.c (mono_get_addr_from_ftnptr): New helper function.
5209
5210         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5211
5212         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5213
5214 2005-08-19  Dick Porter  <dick@ximian.com>
5215
5216         * threads.c, threads.h, appdomain.c, appdomain.h,
5217         profiler-private.h, monitor.c, object.c, object-internals.h,
5218         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5219         store the thread ID, so it can hold a 64 bit value if needed.
5220
5221 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5222
5223         * reflection.c (mono_reflection_create_dynamic_method): Store the
5224         handle class into the method references as well so ldtoken works in
5225         dynamic methods.
5226
5227         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5228         types.
5229
5230 2005-08-19  Ankit Jain <jankit@novell.com>
5231
5232         Fix #75847.
5233         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5234           here rather than using the method signature of a arbitrary function
5235           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5236           two arguments.
5237           Hack done with Harinath.
5238
5239 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5240
5241         * threadpool.c: disable printing stack traces when we get a exception
5242         in a threadpool thread. I need to do more testing to figure out which
5243         cases actually print this. Fixes bug #75828.
5244
5245 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5246
5247         * icall.c: there might be ignored whitespace after the last '='. This
5248         fixes length computation and bug #75840.
5249
5250 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5251
5252         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5253         well. Fixes #75809.
5254
5255         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5256         #75784.
5257         
5258         * reflection.c (create_custom_attr_data): Ditto.
5259
5260 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5261
5262         * locales.c, culture-info.h : removed RegionLCIDMap.
5263         * culture-info-tables.h : regenerated.
5264
5265 2005-08-16  Martin Baulig  <martin@ximian.com>
5266
5267         * class.c (mono_type_get_name_recurse): Small fix.
5268
5269 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5270
5271         * locales.c : indentation fixie.
5272
5273 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5274
5275         * object-internals.h,
5276           locales.h,
5277           locales.c,
5278           culture-info.h,
5279           icall.c : added RegionInfo table support.
5280         * culture-info-table.h : regenerated for region support.
5281
5282 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5283
5284         * reflection.c (resolve_object): handle all kinds of MonoMethod
5285         including generic ones
5286
5287 2005-08-12  Ankit Jain <jankit@novell.com>
5288
5289         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5290           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5291
5292 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5293
5294         * process.c: Don't close a thread handle when it's NULL. This is a
5295         workaround for bug #75733.
5296
5297 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5298
5299         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5300
5301 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5302
5303         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5304
5305 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5306
5307         * threadpool.c: if a work item in the thread pool has a callback that
5308         catches a exception, don't propagate it after invoking the callback.
5309         Fixes bug #75336.
5310
5311 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5312
5313         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5314
5315         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5316
5317         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5318
5319         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5320
5321 2005-08-03  Ankit Jain  <jankit@novell.com>
5322
5323         Fix #75683.
5324         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5325           PInvoke calling convention is 0.
5326
5327 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5328
5329         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5330         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5331
5332 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5333
5334         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5335         to handle threads not started by the GC (patch by Michael Meeks
5336         <michael.meeks@novell.com>).
5337
5338 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5339
5340         * reflection.c: Make buffer used in emitting types larger for some
5341         big generic types (patch by Michal Moskal).
5342
5343 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5344
5345         * mono-debug.c: Fix some (not all) alignment problems.
5346
5347 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5348
5349         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5350         Invoke mono_image_load_from_data_full passing the refonly
5351         parameter.
5352
5353         * assembly.c
5354         (mono_assembly_open_from_bundle): Add the refonly argument, 
5355         in order to pass it to other methods it calls to.
5356         (do_mono_assembly_open): Add the refonly argument, in order 
5357         to pass it to other methods it calls to.
5358         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5359         the refonly parameter to it.
5360
5361         * image.c: Add loaded_images_refonly_hash and
5362         loaded_images_refonly_guid_hash to cache the reflection
5363         only loaded images.
5364         (mono_images_init): Initialize the hash tables used for
5365         caching the reflection only images.
5366         (load_modules): Invoke mono_image_open_full passing the refonly
5367         parameter to load the modules the correct way.
5368         (build_guid_table): Add the refonly argument, to re-build the 
5369         correct hash table.
5370         (do_mono_image_open): Added the refonly argument, in order to
5371         define it for the loaded image.
5372         (mono_image_loaded_full): New function, which receives an
5373         additional parameter to look for the image in the refonly or
5374         non-refonly section.
5375         (mono_image_loaded): Updated, using mono_image_loaded_full.
5376         (mono_image_loaded_by_guid_full): The same case that happens
5377         with mono_image_loaded_full.
5378         (mono_image_loaded_by_guid): Likewise.
5379         (register_image): Use the ref_only variable inside MonoImage
5380         to decide in which hash table store the current image.
5381         (mono_image_open_from_data_full): Rename
5382         mono_image_open_from_data to mono_image_open_from_data_full,
5383         adding the refonly argument, to define the ref_only variable 
5384         inside MonoImage.
5385         (mono_image_open_from_data): Return 
5386         mono_image_open_from_data_full.
5387         (mono_image_open_full): Rename mono_image_open to
5388         mono_image_open_full, receiving the new refonly argument,
5389         to pass it to inner methods.
5390         (mono_pe_file_open): Update this function, to open
5391         a MonoImage as a non-refonly image.
5392         (mono_image_close): Use the refonly variable inside
5393         MonoImage to remove the image from the correct caches.
5394
5395         * image.h: Add the signatures of mono_image_open_full,
5396         mono_image_open_from_data_full, mono_image_loaded_full,
5397         mono_image_loaded_by_guid_full.
5398
5399         * metadata-internals.h: Add the ref_only field to 
5400         MonoImage.
5401         
5402 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5403
5404         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
5405         Fix the last behavior, which used to load the assemblies and
5406         extract MonoReflectionAssemblyName information, instead of
5407         extract it from the metadata tables. Needed for Reflection
5408         Only assemblies.
5409         
5410 2005-07-29  Martin Baulig  <martin@ximian.com>
5411
5412         * mono-debug-debugger.c
5413         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
5414         not initialized.
5415
5416         * mono-debug.c
5417         (mono_debug_address_from_il_offset): Check whether we have
5418         debugging support before attempting to take the lock.
5419         (mono_debug_source_location_from_address): Likewise.
5420         (mono_debug_source_location_from_il_offset): Likewise.
5421         (mono_debug_il_offset_from_address): Likewise.
5422         (mono_debug_address_from_il_offset): Likewise.
5423
5424 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
5425
5426         * class.c (mono_class_from_name_case): Add support for dynamic images.
5427         Fixes #75650.
5428
5429         * object.c (mono_class_compute_gc_descriptor): Add a workaround
5430         for #75479.
5431
5432 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5433         
5434         * reflection.c (mono_method_get_object): Fix warning.
5435
5436 2005-07-28  Martin Baulig  <martin@ximian.com>
5437
5438         * mono-debug.c
5439         (mono_debug_add_wrapper): Also write the wrapper type.
5440
5441 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5442
5443         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
5444         
5445         * class.c (mono_class_init): Avoid reading nested classes if the AOT
5446         data indicates the class has none.
5447
5448 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
5449
5450         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
5451         loader lock with the debugger lock. Prevents deadlocks for beagle.
5452
5453         Beagle can now run on an smp box for a weekend without any
5454         issues. Woohoo!
5455
5456 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
5457
5458         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
5459         in a module. Fixes #75629.
5460
5461 2005-07-26  Martin Baulig  <martin@ximian.com>
5462
5463         * mono-debug.c (mono_debug_add_wrapper): New static method.
5464         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
5465         interncall or a wrapper.
5466
5467         * mono-debug.h (MonoDebugWrapperData): New public typedef.
5468         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
5469         (MONO_DEBUGGER_VERSION): Bump to 51.
5470
5471         * mono-debug-debugger.c
5472         (mono_debugger_add_type): Removed this empty function.
5473         (mono_debugger_add_method): Likewise.
5474
5475 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5476
5477         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
5478         before accessing method->slot.
5479
5480 2005-07-21  Jb Evain  <jbevain@gmail.com>
5481
5482         * reflection.c (method_encode_clauses/class): Handle filters clauses.
5483         Fixes #75010.
5484
5485 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5486
5487         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
5488         #75587.
5489
5490 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5491
5492         * image.h image.c: Add mono_image_get_guid () API function.
5493
5494 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
5495
5496         There were issues when multiple threads tried to load
5497         assemblies. A deadlock was created between assemblies_mutex and
5498         mono_domain_assemblies_lock. This fixes the issue by making the
5499         assembly ref counting be lock free. See bug 75586.
5500         
5501         * image.c (mono_image_close): The add ref function here was using
5502         Interlocked operations while the unref was using a mutex and a
5503         --. I don't think this was ever a bug that would be exposed in a
5504         non-pendantic way (ie, by an embedder doing a ref on one thread
5505         and an unref on another), but for the sake of correctness, this is
5506         now Interlocked.
5507
5508         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5509         (mono_assembly_load_reference): Call mono_assembly_addref rather
5510         than touching the refcount ourselves.
5511         (mono_assembly_close): Use InterlockedDecrement to unref the
5512         assembly. Don't acquire the lock unless it is actually needed.
5513
5514 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5515
5516         * class.c (mono_class_layout_fields): Fix calculation of has_references
5517         for generic types.
5518
5519 2005-07-12  Martin Baulig  <martin@ximian.com>
5520
5521         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5522
5523         * metadata.c
5524         (mono_type_hash): Provide better hashing for generic instances.
5525         (mono_generic_inst_hash): Improve hashing.
5526         (mono_generic_class_hash): Likewise.
5527
5528         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5529         generic instances.
5530
5531 2005-07-12  Martin Baulig  <martin@ximian.com>
5532
5533         * reflection.c (mono_reflection_create_runtime_class): Remove the
5534         hack for generic type definitions and non-`Run' assemblies.
5535         (mono_reflection_bind_generic_parameters): Also use
5536         `klass->wastypebuilder' to check for TypeBuilders.
5537
5538 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5539
5540         * class.c (mono_class_layout_fields): Fix calculation of has_references
5541         for generic types.
5542
5543         * class.c (inflate_generic_class): Fix a leak.
5544         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5545         for generic types.
5546
5547 2005-07-11  Martin Baulig  <martin@ximian.com>
5548
5549         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5550         on error.
5551
5552 2005-07-11  Martin Baulig  <martin@ximian.com>
5553
5554         * loader.c (find_method): Also lookup in
5555         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5556
5557 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5558
5559         * appdomain.c (mono_domain_unload): Don't free the error message
5560         before passing it to mono_get_exception_...
5561
5562         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5563         
5564 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5565
5566         * threads.c: try to better guess an available RT signal (bug #75387).
5567
5568 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5569
5570         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5571         and CACHE_OBJECT.
5572
5573 2005-07-07  Martin Baulig  <martin@ximian.com>
5574
5575         * class.c (mono_type_get_name_full): Return NULL for
5576         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5577         fixes #75408.
5578
5579 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5580
5581         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5582         exit the appdomain as well being aborted.
5583
5584         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5585         change back to the root domain after calling managed code. This enables
5586         appdomains using threadpools to be unloaded.
5587
5588 2005-07-07  Martin Baulig  <martin@ximian.com>
5589
5590         * class-internals.h
5591         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5592         into `MonoDynamicGenericClass' since we only need it for dynamic
5593         types.
5594
5595         * reflection.c (mono_class_bind_generic_parameters): We don't need
5596         to compute the `parent' here.
5597
5598 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5599
5600         * culture-info-table.h : regenerated.
5601
5602 2005-07-06  Martin Baulig  <martin@ximian.com>
5603
5604         * icall.c
5605         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5606
5607         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5608
5609 2005-07-06  Martin Baulig  <martin@ximian.com>
5610
5611         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5612         we're doing a signature-only comparision; fixes #74945.
5613
5614 2005-07-06  Martin Baulig  <martin@ximian.com>
5615
5616         * class-internals.h (MonoGenericClass): Moved some things out into
5617         a new `MonoInflatedGenericClass' type.  
5618         (MonoInflatedGenericClass): New type; the `klass' of a
5619         `MonoGenericClass' is now computed lazyly in
5620         mono_get_inflated_generic_class().      
5621
5622         * class.c (mono_get_inflated_generic_class): New public function.
5623         (mono_class_inflate_generic_method): Removed the unused
5624         `MonoClass *' argument.
5625         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5626         all the methods.
5627         (mono_class_create_generic): Make this static and merge it with
5628         mono_class_create_generic_2(); we're now called automatically from
5629         mono_get_inflated_generic_class().
5630
5631         * loader.c (mono_method_signature): Call
5632         mono_get_inflated_method() here.
5633
5634 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5635
5636         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5637         type of fields with RVA.
5638
5639         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5640         for this pseudo class.
5641         (my_mono_class_from_generic_parameter): Likewise.
5642         (mono_class_init): Allow interfaces to have cctors.
5643
5644 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5645
5646         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5647         lazily for AOT methods.
5648
5649 2005-07-05  Martin Baulig  <martin@ximian.com>
5650
5651         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5652         returns FALSE for a successful match, not TRUE.
5653
5654 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5655
5656         * loader.c (mono_method_get_index): Optimize this a bit.
5657
5658 2005-07-04  Martin Baulig  <martin@ximian.com>
5659
5660         * class.c
5661         (class_compute_field_layout): Move the check for generic type
5662         definitions into mono_class_layout_fields().  Fixes #74684.
5663         (mono_class_from_generic_parameter): Correctly compute
5664         `klass->parent'; fixes #75457.
5665
5666         * reflection.c (register_assembly, register_module): Make sure
5667         `domain->rejobject_hash' is already created.
5668
5669 2005-07-02  Martin Baulig  <martin@ximian.com>
5670
5671         * class-internals.h
5672         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5673         `MonoDynamicGenericClass'.      
5674
5675 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5676
5677         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5678         returned by a field getter is null, since null is a valid value.
5679
5680 2005-07-01  Martin Baulig  <martin@ximian.com>
5681
5682         * reflection.c (mono_reflection_generic_class_initialize): Update
5683         the `dgclass->fields [i].parent' to the correct class.
5684         (mono_image_get_fieldref_token): Use the declaring type, not the
5685         reflected type.
5686
5687 2005-07-01  Martin Baulig  <martin@ximian.com>
5688
5689         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5690
5691 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5692
5693         * threads.c (thread_cleanup): assert that thread != NULL
5694         (wait_for_tids_or_state_change): We were using the wrong variable
5695         when accessing wait->threads. `i' was always out of the bounds of
5696         the array.
5697
5698 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5699
5700         * loader.c: map user32 and kernel32 to libMonoSupportW
5701
5702 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5703
5704         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5705
5706 2005-06-28  Martin Baulig  <martin@ximian.com>
5707
5708         * loader.c (method_from_methodspec): Fix #75334.
5709
5710 2005-06-28  Martin Baulig  <martin@ximian.com>
5711
5712         Fix #74953 - Arrays now implement the generic IList<T> interface
5713         on the 2.0 platform.
5714
5715         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5716
5717         * reflection.c (mono_class_bind_generic_parameters): New public
5718         function; similar to mono_reflection_bind_generic_parameters(),
5719         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5720
5721         * domain.c (mono_init_internal): Try to initialize.
5722         `mono_defaults.generic_array_class' here; this'll only succeed if
5723         we're using the 2.0 corlib.
5724
5725         * icall.c
5726         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5727         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5728         (mono_lookup_internal_call): Added support for nested classes.
5729
5730         * loader.c
5731         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5732         we're an interncall and have generic arguments.
5733
5734         * class.c
5735         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5736         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5737         instance of System.Array.InternalArray<T> for arrays, so they
5738         implement the generic IList<T> interface.
5739
5740 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5741
5742         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5743         (chastamar@yahoo.com). Fixes #75374.    
5744
5745 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5746
5747         * culture-info-table.h: regenerated.
5748
5749 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5750
5751         * icall.c: handle spaces correctly for base64 strings.
5752
5753 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5754
5755         * *.c: Kill some warnings.
5756
5757 2005-06-23  Duncan Mak  <duncan@novell.com>
5758
5759         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5760         that this builds on Solaris 10 (x86).
5761
5762 2005-06-23  Martin Baulig  <martin@ximian.com>
5763
5764         * class.c
5765         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5766         generic type definitions.
5767
5768 2005-06-23  Martin Baulig  <martin@ximian.com>
5769
5770         Fix #75331.
5771
5772         * metadata.c (mono_class_get_overrides): Renamed to
5773         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5774         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5775         pass it to mono_get_method_full().
5776
5777 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5778
5779         * reflection.c (mono_reflection_create_runtime_class): take the
5780         mono_domain_lock in this method. Prevents deadlocks
5781
5782 2005-06-22  Martin Baulig  <martin@ximian.com>
5783
5784         * loader.c (method_from_methodspec): Fix #75330.
5785
5786 2005-06-22  Martin Baulig  <martin@ximian.com>
5787
5788         * reflection.c (type_get_qualified_name): Use
5789         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5790         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5791         argument; use it if we don't have an assembly name.
5792
5793 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5794
5795         * object.c: In mono_message_init, set "copy out" flag for in
5796         parameters with the [Out] flag.
5797
5798 2005-06-21  Martin Baulig  <martin@ximian.com>
5799
5800         * class.c
5801         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5802         and MONO_TYPE_PTR.
5803
5804 2005-06-21  Martin Baulig  <martin@ximian.com>
5805
5806         * class.c (mono_class_init): Don't initialize `class->fields' for
5807         generic instances since they're initialized again in
5808         compute_field_layout(). 
5809         (compute_field_layout): Set the field's `generic_info' here; fix
5810         #75320. 
5811
5812 2005-06-21  Martin Baulig  <martin@ximian.com>
5813
5814         * class-internals.h
5815         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5816
5817         * metadata.c (mono_metadata_generic_method_equal): Also
5818         distinguish the `generic_class'; fixes #75334.
5819
5820 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5821
5822         * domain.c:
5823         * appdomain.c:
5824         * domain-internals.h:
5825         * reflection.c: 'domain_assemblies' field is now protected by its own
5826         lock. Don't call into managed code to run the AssemblyLoad event if we
5827         now there are no registered delegates for it.
5828
5829 2005-06-20  Martin Baulig  <martin@ximian.com>
5830
5831         * class.c (mono_class_is_assignable_from): Use a custom version of
5832         mono_class_has_parent() to make things work for generic instances;
5833         fix #75300.
5834
5835 2005-06-20  Martin Baulig  <martin@ximian.com>
5836
5837         * loader.c (method_from_methodspec): Apply a patch from
5838         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5839
5840 2005-06-20  Martin Baulig  <martin@ximian.com>
5841
5842         * class.c (mono_class_init): Reverted Zoltan's last change; it
5843         breaks generics.
5844
5845 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5846
5847         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5848
5849 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5850
5851         * socket-io.c: fix the index in the socket array for writable/error
5852         sockets. Fixes bug #75306.
5853
5854 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5855
5856         * class.c (mono_class_init): Allow interfaces to have static ctors.
5857
5858 2005-06-17  Martin Baulig  <martin@ximian.com>
5859
5860         * loader.c (method_from_methodspec): Use `context->container' when
5861         parsing the `gmethod->inst'.
5862
5863 2005-06-17  Martin Baulig  <martin@ximian.com>
5864
5865         * class.c (mono_type_get_name_recurse): Don't add the assembly
5866         name for type arguments.
5867
5868 2005-06-15  Martin Baulig  <martin@ximian.com>
5869
5870         * reflection.c (mono_image_get_inflated_method_token): Encode
5871         correct klass; fixes #75260.
5872
5873 2005-06-13 Michal Moskal <malekith@nemerle.org>
5874
5875         * icall.c: Make GetCorrespondingMethod/Constructor take
5876         MonoReflectionMethod method not MonoMethod. Removed
5877         MonoType.GetCorrespondingField, and make
5878         MonoGenericType.GetCorrespondingField take name not
5879         MonoClassField.
5880
5881 2005-06-13  Michal Moskal <malekith@nemerle.org>
5882
5883         * reflection.c (field_encode_signature, encode_locals):
5884          Make sizes of buffers for types larger (for big generic types).
5885          (create_generic_typespec,
5886          mono_reflection_sighelper_get_signature_local,
5887          mono_reflection_sighelper_get_signature_field):
5888          Add asserts for too small buffers.
5889
5890 2005-06-15  Martin Baulig  <martin@ximian.com>
5891
5892         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5893         if our parent is not a dynamic type.
5894
5895 2005-06-15  Martin Baulig  <martin@ximian.com>
5896
5897         * class-internals.h (MonoTypeNameFormat): New enum.
5898
5899         * class.c
5900         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5901         (mono_type_get_full_name): Removed.
5902         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5903         argument instead of the boolean's.
5904
5905         * icall.c (ves_icall_System_MonoType_getFullName):
5906         Added `gboolean assembly_qualified'.    
5907
5908         * reflection.h
5909         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5910
5911         * reflection.c (mono_reflection_parse_type): Parse the new type
5912         name format.
5913
5914 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5915
5916         * icall.c: no need to convert from utf16 to utf8 and then back again
5917         after the call to GetLogicalDrives.
5918
5919 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5920
5921         * icall.c: frombase64. Fix problems exposed by new tests.
5922
5923 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5924
5925         * icall.c: added internal calls for converting char [] and strings in
5926         base64 into byte [].
5927
5928 2005-06-10  Martin Baulig  <martin@ximian.com>
5929
5930         * class.c (mono_class_create_generic_2): Read the nested classes
5931         from the metadata rather than from `gklass->nested_classes' since
5932         `gklass' might not be initialized yet.
5933
5934 2005-06-09  Duncan Mak  <duncan@novell.com>
5935
5936         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5937         all public headers. Fixes #74919.
5938
5939 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5940
5941         * domain.c: The key for proxy_vtable_hash is now a pointer
5942         array. Added new GHashFunc and GCompareFunc functions for this.
5943
5944         * class.h: The list of interfaces in MonoRemoteClass is known in
5945         advance and can't grow (we create a new MonoRemoteClass if needed),
5946         so now the interface array can be allocated together with
5947         MonoRemoteClass.
5948         
5949         * object.c: Added a new method create_remote_class_key.
5950         Fixed mono_remote_class so it does not depend on
5951         mono_upgrade_remote_class.
5952         Removed extend_interface_array.
5953         Added new method clone_remote_class(), which makes a copy of a remote
5954         class and adds a new interface or class to it.
5955         mono_upgrade_remote_class() now creates a new remote class (or gets
5956         it from the cache) if an vtable upgrade is needed. In this way
5957         we make sure that other objects sharing the same remote class
5958         don't get the new vtable with unwanted interfaces.
5959         
5960         * object-internals.h:
5961         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5962         
5963         * marshal.c: Track changes in mono_upgrade_remote_class().
5964
5965 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5966         * icall.c: Add runtime methods for obtaining members of inflated
5967         class, which were created from supplied non-inflated members. It
5968         is used in internal Get{Method,Constructor,Field} methods in
5969         System.Type
5970
5971 2005-06-09  Martin Baulig  <martin@ximian.com>
5972
5973         * reflection.c
5974         (mono_reflection_bind_generic_method_parameters): Fix #75169.
5975
5976 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5977         * reflection.c (mono_image_basic_init): Define
5978         Version in MonoDynamicAssembly. 
5979         
5980 2005-06-08  Martin Baulig  <martin@ximian.com>
5981
5982         Fix #75136.
5983
5984         * loader.c
5985         (mono_method_signature_full): New public method; takes a
5986         `MonoGenericContext *'.
5987         (find_method): Use mono_method_signature_full() and pass the
5988         klass'es context to it.
5989
5990         * class.c (mono_class_is_inflated_method): Use
5991         mono_method_signature_full() and pass the context to it.
5992
5993 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
5994
5995         * object.c: add proper locking in mono_remote_class_vtable(),
5996         fixes possible memory corruption.
5997
5998 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
5999
6000         * marshal.c (mono_remoting_marshal_init): set
6001         initialized after initialization.
6002
6003 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6004
6005         * locales.c : hush.
6006
6007 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6008
6009         * object.c (extend_interface_array): fix really silly
6010         memory corrupting / comparison bug.
6011
6012 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6013
6014         * reflection.c: Functions added to support the creation
6015         of CustomAttributeData, which includes Attribute data
6016         used by ReflectionOnly methods.
6017
6018         * reflection.h:  mono_reflection_get_custom_attrs_data and
6019          mono_custom_attrs_data_construct added (functions exposed).
6020
6021          * icall.c: Added mono_reflection_get_custom_attrs_data
6022          as icall.
6023         
6024 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6025
6026         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6027         lupus's request.
6028
6029 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6030
6031         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6032
6033         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6034         dynamic DllImportAttribute.
6035
6036         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6037         dynamic DllImportAttribute.
6038
6039         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6040         Fixes #75162.
6041
6042 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6043
6044         * threads.c: avoid segfault when an unstarted thread is aborted.
6045
6046 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6047
6048         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6049         Returns the name and version of the runtime for reporting.
6050
6051 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6052
6053         * appdomain.c: bump corlib version.
6054         * object-internals.h: new field in MonoReflectionAssembly.
6055
6056 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6057
6058         * object-internals.h: Carlos forgot to add this field.
6059
6060 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6061
6062         * icall.c: Added create_version to create instances
6063         of Version of MonoReflectionAssemblyName. This change helps
6064         the AssemblyName tests to keep running fine.
6065         
6066 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6067   
6068         * object.c (mono_method_return_message_restore): A somehow less
6069         intrusive fix for #75138.
6070
6071 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6072
6073         * object.c (mono_method_return_message_restore): Fix computation
6074         of expected number of out args.
6075
6076 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * reflection.c (mono_image_get_method_info): Fix the case when the
6079         charset is empty.
6080
6081 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6082
6083         * object.c: Added missing null check in
6084           mono_method_return_message_restore.
6085
6086 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6087
6088         * reflection.c (mono_image_get_method_info): Handle the case when
6089         dllentry is empty.
6090
6091 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6092
6093         * object.c: When creating the vtable for a proxy, take into account
6094         all inherited interfaces, not only the ones registered in
6095         iclass->interfaces. This fixs bug #74996.
6096         Also, in mono_method_return_message_restore, verify that the array
6097         of out args has the expected lengh.
6098
6099 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6100
6101         * socket-io.c: update the timeout in Poll when the call is interrupte.
6102
6103 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6104
6105         * socket-io.c: support abort/suspend in Select_internal after last
6106         change.
6107
6108 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6109
6110         * threadpool.c: remove warning.
6111
6112 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6113
6114         * icall.c:
6115         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6116         removing the 1024 limit from select(). Runtime part of the fix for
6117         bug #71203.
6118
6119 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6120
6121         * socket-io.c: when resolving the addresses for the same
6122         host returned by gethostname(), get the local IPs from the interface
6123         list. Loopback addresses are discarded if the are interfaces up with
6124         non-loopback ones. Fixes bug #63265.
6125
6126 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6127
6128         * appdomain.c, verify.c, object-internals.h, reflection.c:
6129         bumped corlib number to 36, and added new extra_flags field
6130         to ReflectionMethodBuilder and friends.  Fixes #75060.
6131
6132 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6133
6134         * gc.c: register a new weak link only if the object is non-null
6135         (fixes bug#75047).
6136
6137 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6138
6139         * culture-info.h : short time pattern too.
6140
6141 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6142
6143         * culture-info.h : expand long time pattern string length.
6144
6145 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6146
6147         * culture-info-table.h : update (more French date format; #72788).
6148
6149 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6150
6151         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6152         the method is static. Fixes #75029.
6153
6154 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6155
6156         * reflection.c: Update the table_idx field of method builders after
6157         saving the module, since it can change. This is a workaround for
6158         bug #74914. 
6159
6160 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6161
6162         * culture-info-table.h : update (additional French date format).
6163
6164 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6165
6166         * icall.c (ves_icall_type_Equals): Revert last change.
6167         
6168         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6169
6170         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6171
6172 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6173
6174         * class-internals.h: Added executioncontext_class field to 
6175         MonoDefaults structure.
6176         * domain.c: Cache System.Threading.ExecutionContext class in 
6177         mono_defaults.
6178         * object.c: Capture the ExecutionContext for asynchroneous calls in
6179          mono_async_result_new.
6180         * object-internals.h: Added execution_context and original_context 
6181         fields to MonoAsyncResult. Added execution_context to MonoThread.
6182         * security-manager.c|.h: Added mono_get_context_capture_method to 
6183         return the capture method (if required by the security manager or by
6184         the framework version used).
6185         * threadpool.c: Apply capture (if present) ExecutionContext in 
6186         mono_async_invoke and revert to original context after it completes.
6187
6188 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6189
6190         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6191
6192 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6193
6194         * culture-info-table.h : zh-CHT related workaround.
6195
6196 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6197
6198         * marshal.c (emit_marshal_custom): Add some error checking and call the
6199         methods in the ICustomMarshaler interface. Fixes #74875.
6200         
6201         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6202         native->managed wrappers.
6203
6204 2005-05-12  Martin Baulig  <martin@ximian.com>
6205
6206         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6207         here and use the loader lock.
6208
6209         * mono-debug.c: Properly lock when the debugger is not attached.
6210         (mono_debug_init): Release the initial lock if we're not running
6211         in the debugger.
6212
6213 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6214
6215         * marshal.c (emit_marshal_custom): Pass through NULL values without
6216         calling the custom marshalling routines.
6217
6218         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6219         conversion in structures. Fixes #74882.
6220
6221 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6222
6223         * culture-info-table.h : zh-* cultures were missing.
6224
6225 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6226
6227         * threads.c: Added a new event background_change_event which is signaled
6228         when a thread changes its background mode.
6229         Moved here several checks previously done in managed code. The checks
6230         require the thread lock, and using the thread lock in managed code
6231         can result in deadlocks.
6232         Merged Start_internal and Thread_internal into a single method. Now 
6233         Thread_internal does all work of creating and starting a thread.
6234         Added icalls for setting and getting the state of the object. Moved from
6235         managed code to avoid locking there.
6236         Added wait_for_tids_or_state_change() which is called instad of
6237         wait_for_tids when waiting for non-backround threads to end. This method
6238         will return if one of the threads ends or the background_change_event
6239         is signaled.
6240         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6241         the background mode. This method signals the background_change_event
6242         event.
6243         * icall.c:
6244         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6245         removed Start_internal.
6246         
6247 2005-05-11  Martin Baulig  <martin@ximian.com>
6248
6249         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6250         to order of some fields to get proper alignment on 64-bit machines.
6251
6252 2005-05-11  Martin Baulig  <martin@ximian.com>
6253
6254         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6255         changes as they're broken and completely fuck up the debugger.
6256
6257         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6258
6259 2005-05-10  Martin Baulig  <martin@ximian.com>
6260
6261         * reflection.c (mono_reflection_generic_class_initialize): Don't
6262         call mono_class_setup_parent() here.
6263
6264 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6265
6266         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6267         send/receive timeout use an integer in milliseconds. We were using a
6268         struct timeval.
6269
6270 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6271
6272         * locales.c:
6273         (internal_get_cultures): reserve the first slot of the array for the
6274         InvariantCulture, which will be filled in managed code.
6275
6276 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6277
6278         * reflection.c (mono_image_fill_module_table): Initialize the
6279         GENERATION field as well.
6280
6281 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6282
6283         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6284         Monitor.Enter on the object.
6285
6286 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6287
6288         * threads.c: Enable the wait for running threads when exiting.
6289         * icall.c: Suspend all threads before exiting.
6290
6291 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6292
6293         * assembly.c (mono_assembly_load_reference): Fix warning.
6294
6295 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6296
6297         * threadpool.c: changed the default number of threads per cpu. From now
6298         on, the default will be 20 + (5 * number of cpus) instead of 50.
6299
6300 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6301
6302         * loader.c (mono_method_get_signature_full): Add locking here.
6303
6304 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6305
6306         * appdomain.c: Moved methods for parsing and freeing assembly
6307         names to assembly.c.
6308         * assembly.c, domain-internals.h: Created public methods for parsing
6309         assembly names. Fixed mono_assembly_load_with_partial_name:
6310         it now finds the best match, taking into account the version,
6311         token and culture specified in the partial name. Also return
6312         the latest version if no version information is specified.
6313
6314 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6315
6316         * threadpool.c: replace check for SocketAsyncCall class.
6317
6318 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6319
6320         * threadpool-internals.h:
6321         * Makefile.am: added threadpool-internals.h
6322
6323         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6324         that happen in threadpool threads (tested on MS).
6325         (mono_thread_pool_remove_socket): new function that dispatch any pending
6326         AIO call on a socket that is closing. By now only epoll really needs it,
6327         as select/poll wake up when the socket closes.
6328
6329
6330         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6331
6332 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6333
6334         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6335
6336 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6337
6338         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6339
6340 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6341
6342         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6343         has an abort request, convert it into a suspend request.
6344
6345 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6346
6347         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6348         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6349         is not supported yet.
6350
6351 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6352
6353         * image.c: register assemblies loaded from data (bundles) in the loaded
6354         assemblies hash. Fixes bug #74772.
6355
6356 2005-04-29  Martin Baulig  <martin@ximian.com>
6357
6358         * class.c (mono_type_get_name_recurse): Update to the new naming
6359         schema from the latest .NET 2.x beta2.
6360         (mono_class_setup_vtable_general): If we're a generic instance,
6361         copy the vtable from our generic type definition and inflate all
6362         the methods in it.
6363
6364         * loader.c (find_method): Update to the new naming schema from the
6365         latest .NET 2.x beta2.
6366
6367 2005-04-29  Raja R Harinath  <harinath@gmail.com>
6368
6369         * class.c (mono_class_init): Add a mono_loader_unlock to the
6370         #74734 fix.
6371
6372 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
6373
6374         * icall.c (ves_icall_System_Environment_Exit): Remove the 
6375         suspend_all_other_threads () call for the time being, since it can hang.
6376
6377         * threads.c (mono_thread_manage): Similarly, disable the waiting for
6378         the background threads to exit, since it can also hang.
6379
6380         * class.c (mono_class_init): Applied patch from Ankit Jain 
6381         (radical@gmail.com). Avoid pending init errors when a field refers
6382         to a nested class using a typeref. Fixes #74734.
6383
6384         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
6385         this for dynamic modules.
6386
6387 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6388
6389         * threads.c: don't wait for threads that are in the process of aborting
6390         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
6391         and waiting for background threads to finish. This makes xsp and
6392         mod-mono-server exit without random length delays and/or hangs.
6393
6394 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6395
6396         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
6397
6398 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
6399
6400         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
6401         dynamic types to prevent infinite loops. Fixes #74727.
6402
6403         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
6404         ..._is_assignable_to.
6405
6406 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
6407
6408         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
6409
6410 2005-04-25  Martin Baulig  <martin@ximian.com>
6411
6412         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
6413
6414         * domain.c
6415         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
6416
6417         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
6418
6419         * reflection.c (build_compressed_metadata): Set metadata header
6420         version to 2.0.
6421
6422 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
6423
6424         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
6425         number into an integral and a decimal part. Fixes #70473.
6426
6427         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
6428
6429 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
6430
6431         * culture-info-table.h : reflected the latest locale-builder output.
6432
6433 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6434
6435         * threadpool.c: check for SuspendRequested too when deciding if
6436         mono_thread_interruption_checkpoint should be called.
6437
6438 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6439
6440         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
6441         * threads.c: remove interruption_mutex and use Interlocked instead. When
6442         suspending all the threads, wait for all the suspended events at once.
6443         If we're shutting down and get an APC that is going to be queued,
6444         call mono_thread_execute_interruption immediately, as the thread might
6445         be sleeping on a pthread condition or mutex.
6446
6447         * icall.c: call mono_runtime_set_shutting_down before suspending the
6448         threads.
6449
6450         Fixes bug #74693. And now xsp is happier when exiting.
6451
6452 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
6453
6454         * loader.c (mono_stack_walk): Fix #74690.
6455
6456 2005-04-22  Martin Baulig  <martin@ximian.com>
6457
6458         * mono-debug.h (MonoDebugMethodJitInfo): Added
6459         `MonoDebugMethodJitInfo *jit'.
6460
6461         * mono-debug.c (mono_debug_read_method): Cache the
6462         MonoDebugMethodJitInfo in `address->jit'.
6463         (mono_debug_free_method_jit_info): New public method.
6464
6465 2005-04-22  Martin Baulig  <martin@ximian.com>
6466
6467         * class.c (mono_class_is_assignable_from): Disallow
6468         type parameter -> interface.
6469
6470 2005-04-21  Dick Porter  <dick@ximian.com>
6471
6472         * threads.c (mono_thread_create): Turn an assertion into an error.
6473
6474 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
6475
6476         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
6477         
6478         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
6479         Fix some gcc 4.0 warnings.
6480
6481 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
6482
6483         * file-io.c: fix alt dir separator char on unix systems
6484         and cleanup (fixes bug #71214).
6485
6486 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
6487
6488         * marshal.c: Use CALLVIRT instead of CALL when dispatching
6489         a call to a remote domain, since the method may be an
6490         interface method in the client domain. This fixes bug #74192.
6491
6492 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6493
6494         * threadpool.c: recv/send are now performed before going back to managed
6495         code to save one transition.
6496
6497 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6498
6499         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6500
6501         * metadata/threadpool.c: removed hack to workaround the bug above.
6502
6503         Fixes bug #74618.
6504
6505 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6506
6507         * reflection.c reflection.h: Fix handling of parameter defaults in
6508         dynamic methods. Also fixes handling of parameter attributes.
6509         Fixes #74609.
6510
6511         * mono-debug.c (mono_debug_close_image): Fix warning.
6512
6513 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6514
6515         * socket-io.h: replaced old unused field with new 'blocking'.
6516         * threadpool.c: restore socket blocking state on windows(tm).
6517
6518 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6519
6520         * icall.c: don't return the codebase in the AssemblyName[] returned by
6521         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6522         * object-internals.h: Removed FIXME (fields were presents) and fixed
6523         versioncompat declaration.
6524
6525 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6526
6527         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6528         not closed, so don't cleanup when it happens.
6529
6530 2005-04-13  Chris Toshok  <toshok@ximian.com>
6531
6532         * mono-debug-debugger.h: change prototype for
6533         mono_debugger_lookup_type.
6534
6535         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6536         this function, although it should probably be named
6537         mono_debugger_init_type.
6538
6539 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6540
6541         * threadpool.c: fix non-AIO case.
6542
6543 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6544
6545         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6546         the built-in profiler to measure just JIT compilation times.
6547
6548 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6549
6550         * threadpool.c: the epollfd might be closed by another thread at
6551         any time, so ignore EBADF at treat it as a "we're closing" sign.
6552
6553 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6554
6555         * threadpool.c: release the semaphores with a count equals to the number
6556         of working threads in both IO and regular pools. Fixed typo that messed
6557         up the count of IO pool threads. Don't initialize the pipe handles if
6558         we're using epoll.
6559
6560 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6561
6562         * threadpool.c: some systems don't like a NULL when deleting the socket
6563         from epoll.
6564
6565 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6566
6567         * threadpool.c: fix semaphore allocation.
6568
6569 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6570
6571         * threadpool.c: added epoll() based implementation for asynchronous IO
6572         that is used instead of the default poll() when available.
6573         It can be disabled by setting MONO_DISABLE_AIO.
6574
6575 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6576
6577         * threadpool.c: windows needs 'closesocket' and instead of returning
6578         0 when the stream is closed while in select, it returns -1. Fixes bug
6579         #74573.
6580
6581 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6582
6583         * class.c (class_compute_field_layout): Fix the regression caused by
6584         the previous try.
6585
6586 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6587
6588         * threadpool.c: separate pool for socket async. IO.
6589         * threadpool.h: mono_max_worker_threads is not a global any more.
6590
6591 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6592
6593         * class.c (class_compute_field_layout): Fix #74549.
6594
6595 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6596
6597         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6598         use 2 connected sockets instead.
6599
6600 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6601
6602         * mono-config.c: Add new entry point for mkbundle
6603         mono_config_parse_memory. 
6604
6605 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6606
6607         * threadpool.c: removed another unused function.
6608
6609 2005-04-08  Ankit Jain  <radical@corewars.org>
6610
6611         * reflection.c (get_default_param_value_blobs): Add 'types'
6612         parameter to get the types encoded in the constant table.
6613         (mono_param_get_objects): Use the type from the constant table,
6614         not the type of the parameter, when creating default values.
6615         Handle null default values correctly.
6616
6617 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6618
6619         * file-io.c:
6620         * file-io.h:
6621         * threadpool.c:
6622         * threadpool.h:
6623         * icall.c:
6624         * socket-io.c: removed dead code for async IO.
6625
6626 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6627
6628         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6629
6630         * threadpool.c: intercept socket async. calls and pass them to a thread
6631         that is polling and dispatching the job items to the threadpool as
6632         socket become ready. Fixes bugs #71217, #71933.
6633
6634         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6635         between char and short/ushort arrays.
6636
6637         * socket-io.c: remove dead code.
6638
6639 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6640
6641         * locales.c,
6642           icall.c : removed InternalToUpper_Comp() and
6643           InternalToLower_Comp().
6644
6645 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6646
6647         * char-conversions.h : The tables were incorrectly generated. Should
6648           be generated against invariant culture.
6649
6650 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6651
6652         * object.c (mono_runtime_invoke_array): Fix return value when 
6653         passing pre-created valuetype objects to ctors.
6654
6655         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6656         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6657         Fixes #74338.
6658
6659 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6660
6661         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6662         only used with --security and hides the wrong corlib version error.
6663
6664 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6665
6666         * class.c: Changed mono_class_name_from_token so that types
6667         outside of a namespace don't have an initial period.  Improved
6668         the g_warning message used in _mono_class_get when loading
6669         fails.
6670         * assembly.c: In mono_assembly_load_reference, when an assembly
6671         can't be found, "No such file or directory" is misleading and
6672         unhelpful because a few paths were checked for the presence of
6673         the assembly.  When that happens (ENOENT), display a nicer
6674         message indicating the directories that were searched.  In all
6675         cases, the warning is made easier to read for non-hackers.
6676
6677 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6678
6679         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6680         project/solution.
6681         * appdomain.h|domain.c: Removed inline from functions.
6682         * appdomain.c: Reduced warnings when compiling on windows.
6683         * icall.c: Fixed output_debug declaration to gunichar2*.
6684         * mono-config.c: Reduced warnings when compiling on windows.
6685         * rand.c: Added missing "windows.h". Added missing return value.
6686         * rawbuffer.c: Added missing winsock2.h for windows.
6687         * sysmath.h: Added mono-compiler.h header to allow/ease 
6688         compilation with non-GCC compilers.
6689         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6690         Removed cast warnings.
6691
6692         Adapted from the work of J Lothian (for VC6).
6693
6694 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6695
6696         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6697         from default_path.
6698
6699 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6700
6701         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6702         the 2.0 profile.
6703
6704 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6705
6706         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6707         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6708         stuff, and it would probably use $(prefix)/share rather than
6709         $(prefix)/lib.
6710
6711 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6712
6713         * console-io.c: added 2 includes that might be missing.
6714
6715 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6716
6717         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6718         profile.
6719
6720         * reflection.c (create_custom_attr): Allocate the params array using
6721         alloca so it gets GC tracking.
6722
6723 2005-03-23  Chris Toshok  <toshok@ximian.com>
6724
6725         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6726         out some spew.
6727
6728 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6729
6730         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6731         changes to pick up any changes in prefix, etc.
6732
6733 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6734
6735         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6736         
6737         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6738         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6739
6740 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6741
6742         * class-internals.h object-internals.h class.c reflection.c: Extend the
6743         mono_lookup_dynamic_token () function to return the class of the
6744         token as well. 
6745
6746         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6747         well. Fixes #73848.
6748
6749 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6750
6751         * security-manager.c: Skip inheritance checks for intra-corlib
6752         class inheritance and method overrides. This skips a lot of checks
6753         and (anyway) permissions cannot work until corlib is loaded.
6754
6755 2005-03-23  Martin Baulig  <martin@ximian.com>
6756
6757         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6758         MONO_TYPE_GENERICINST.  
6759
6760 2005-03-23  Martin Baulig  <martin@ximian.com>
6761
6762         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6763
6764 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6765
6766         * class.c: added locking comments to some functions.
6767         Cache the interface offsets arrays (saves about 20 KB
6768         of runtime memory in a typical app).
6769         Reduce the time overhead in mono_class_setup_supertypes ().
6770
6771 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6772
6773         * icall.c: speedup and fix leaks in GetMethodsByName and
6774         GetPropertiesByName.
6775
6776 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6777
6778         * reflection.c: some locking fixes.
6779
6780 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6781
6782         * metadata.c: added missing break in case statement.
6783
6784 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6785
6786         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6787         typedbyref return values. Fixes #73941.
6788
6789 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6790
6791         * security-manager.c|h: Added demandunmanaged method and 
6792         suppressunmanagedcodesecurity class to MonoSecurityManager.
6793         Renamed aptc class to allowpartiallytrustedcallers.
6794
6795 2005-03-17  Martin Baulig  <martin@ximian.com>
6796
6797         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6798
6799 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6800
6801         * file-io.c: disabled file async. IO using aio_*. It uses the
6802         threadpool now. Workaround for bug #73718.
6803
6804 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6805
6806         * assembly.h, mono-config.c: added code to deal with bundled configs
6807         for bundled assemblies.
6808
6809 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6810
6811         * *.c, private.h: cleanup, removing old private.h header file.
6812
6813 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6814
6815         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6816         and throw_on_unmappable_char attributes.
6817
6818 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6819
6820         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6821         _ProcessName_internal.
6822
6823 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6824
6825         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6826         #73631.
6827
6828         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6829         are no longer used.
6830
6831 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6832
6833         * object.c (compute_class_bitmap): Add support for generics. Fixes
6834         #73527.
6835
6836 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6837
6838         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6839
6840 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6841
6842         * filewatcher.c: commented out the code for windows watcher, as we don't
6843         use it (we use the managed implementation instead).
6844
6845 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6846
6847         * object-internals.h (MonoThread): Remove 'unused1' field.
6848
6849         * appdomain.c: Bump corlib version.
6850
6851         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6852
6853         * reflection.c (mono_reflection_create_runtime_class): Remove the
6854         AssemblyBuilder.Save optimization since it causes too many problems.
6855
6856 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6857
6858         * exception.c|h: Added mono_get_exception_reflection_type_load to
6859         create a ReflectionTypeLoadException object.
6860         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6861         to return NULL is a InheritanceDemand fails during reflection. Updated
6862         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6863         ReflectionTypeLoadException if an InheritanceDemand fails during 
6864         reflection. Added icall mapping for GetLinkDemandSecurity.
6865         * security-manager.c|h: Added ves_icall_System_Security_
6866         SecurityManager_GetLinkDemandSecurity internal call to return the
6867         class and methods permissions set for a LinkDemand. Removed unused
6868         fields in MonoSecurityManager.
6869
6870 2005-03-10  Martin Baulig  <martin@ximian.com>
6871
6872         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6873         it's a generic instance.
6874
6875 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6876
6877         * reflection.c (mono_get_object_from_blob): Applied patch from
6878         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6879
6880         * class.c (mono_class_is_assignable_from): Another try at fixing 
6881         #73469 without breaking anything.
6882
6883 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6884
6885         * class.c: (mono_class_is_assignable_from): Revert the last changes
6886         since they don't work with generics.
6887         
6888         * class.c (mono_class_is_assignable_from): Fix build bustage.
6889
6890         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6891         the managed IsAssignableFrom method. Fixes #73469.
6892
6893         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6894         function.
6895
6896 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6897
6898         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6899         memory when the remoting callback does not sets the out arguments.
6900         Fixes #73007.
6901
6902         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6903         by mistake.
6904
6905         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6906
6907         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6908
6909         * appdomain.c: Bump corlib version.
6910
6911 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6912
6913         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6914         function.
6915
6916         * threads.c (mono_thread_attach): Detect threads which are not started
6917         by the GC pthread wrappers.
6918
6919 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6920
6921         * icall.c: Added new icall for RNG.
6922         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6923         single handle on Linux to access /dev/urandom and fix #73183.
6924
6925 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6926
6927         * object.c: setting the new vtable in a transparent proxy object must
6928         not change the GC descriptor.
6929
6930 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6931
6932         * object.c: fixed compilation without GCJ support.
6933         * reflection.c: for runtime-created types ensure klass->has_references
6934         is correct (bug #73215).
6935
6936 2005-03-02  Martin Baulig  <martin@ximian.com>
6937
6938         * class.c (mono_class_is_assignable_from): Make this work if
6939         `oklass' is a generic instance; fixes #72831.
6940
6941 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6942
6943         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6944         with hasthis set.
6945         
6946         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6947
6948         * marshal.c: Reorganize native->managed marshalling code to also use
6949         the emit_marshal_... functions.
6950
6951 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6952
6953         * object.c: typed allocs have issues with bitmap sizes > 30,
6954         so check for max_set >= 30.
6955
6956 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6957
6958         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6959         managed code. Fixes #73012.
6960
6961         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6962
6963         * metadata.c reflection.c: Load/Emit elem_mult as well.
6964         
6965         * metadata.h (MonoMarshalSpec): Add comment.
6966
6967         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6968
6969         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6970         num_elem to -1 if not given.
6971
6972         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6973
6974         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
6975         given values.
6976
6977 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
6978
6979         * null-gc.c (mono_gc_free_fixed): Was not compilable.
6980
6981 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
6982
6983         * reflection.c (encode_marshal_blob): Encode param_num field as well.
6984
6985         * object-internals.h (MonoReflectionMarshal): Add param_num field.
6986
6987 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6988
6989         * object.c: generalized the reference bitmap creation
6990         and added hooks for the new GC.
6991         * class-internals.c: removed the gc_bitmap field from MonoClass.
6992
6993 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6994
6995         * domain.c: help the compiler to produce better code
6996         in mono_jit_info_table_find ().
6997
6998 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6999
7000         * object.c: make all allocations look typed.
7001
7002 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7003
7004         * socket-io.c: load Mono.Posix if it's not loaded already
7005         (fixes bug#73033).
7006
7007 2005-02-24  Martin Baulig  <martin@ximian.com>
7008
7009         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7010         * reflection.c (dup_type): Likewise.
7011
7012 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7013
7014         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7015         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7016
7017 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7018
7019         * domain.c, threads.c, object-internals.h: make the critical thread
7020         local vars use the fast access mode (even when we're compiled in
7021         a lib). Provide accessors to be used by the jit during codegen.
7022
7023 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7024
7025         * appdomain.c: Changed hook functios behavior to include
7026         support for the reflection only assemblies. Some icalls were changed
7027         to support the mentioned assemblies too. Signatures of static methods
7028         try_assembly_resolve and real_load now have an additional parameter:
7029         refonly.
7030
7031         * assembly.c: General changes to mono_assembly_ methods to support
7032         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7033         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7034         suffix, to support an additional gbool parameter to specify whether
7035         the assembli is reflection only or not. Created some new hook functions 
7036         to add support for reflection only assemblies. Signatures of static 
7037         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7038         have now an additional parameter: refonly.
7039
7040         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7041         indicating whether the assembly is reflection only or not.
7042
7043         * exception.c: Add mono_get_exception_invalid_operation.
7044
7045         * icall.c: Throw an InvalidOperationException when trying to invoke
7046         a property/method/event, or trying to set/get the value of a field.
7047         Also add an icall to retrieve the ref_only flag to the
7048         MonoReflectionAssembly.
7049
7050 2005-02-23  Chris Toshok  <toshok@ximian.com>
7051
7052         Part of fix for #72827.
7053         * mono-debug.c (mono_debug_add_method): add lexical block data to
7054         the info we write.  Kind of a hack at the moment - we copy the
7055         lexical block info from the MonoDebugMethodInfo to the
7056         MonoDebugMethodJitInfo here, before writing it.
7057         (mono_debug_read_method): read the lexical block info.
7058
7059         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7060
7061         * debug-mono-symfile.h: add lexical block support.
7062
7063         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7064         support.
7065
7066 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7067
7068         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7069
7070         * object.c (mono_runtime_free_method): Call mono_free_method () and
7071         put the TODOs there.
7072
7073         * loader.c (mono_free_method): Free up most memory allocated for 
7074         dynamic methods.
7075
7076 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7077
7078         * reflection.c: properly flag a Type argument to a
7079         named custom attr value (bug #72248).
7080
7081 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7082
7083         * reflection.c: reduce code duplication in named custom
7084         attribute encoding.
7085
7086 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7087
7088         * reflection.c: properly encode custom attrs of type object
7089         (bug #72649).
7090
7091 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7094
7095 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7096
7097         * socket-io.c: load System.dll if it's not loaded already
7098         (bug #72850 and #70477).
7099
7100 2005-02-21  Martin Baulig  <martin@ximian.com>
7101
7102         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7103         generic instances.
7104
7105 2005-02-21  Martin Baulig  <martin@ximian.com>
7106
7107         * reflection.c (mono_image_build_metadata): We also need to
7108         "fixup" the MethodImpl table after we computed the final method
7109         indices.  Call fixup_methodimpl() to do that.
7110         (fixup_methodimpl): New private method.
7111
7112 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7113
7114         * assembly.c: special case mscorlib.dll (bug#72536),
7115         patch from Carlos Alberto Cortez.
7116
7117 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7118
7119         * threads-types.h threads.c: Fix build bustage.
7120
7121         * threads.c: Use a union for long<->double conversions.
7122
7123         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7124         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7125
7126         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7127         containing the checkpoint call with NOT_TAKEN.
7128         
7129         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7130         checkpoint before pushing the arguments, so they won't have to be
7131         spilled to stack.
7132
7133 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7134
7135         * domain.c, assembly.c, domain-internals.h: make some data
7136         const and relocation-free.
7137
7138 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7139
7140         * object.c, appdomain.c, class-internals.h: introduce the
7141         MonoClassRuntimeInfo structure to hold the info needed to
7142         use a class at runtime. Made mono_class_vtable() lock-free
7143         for all the appdomains.
7144
7145 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7146
7147         * metadata-internals.h, image.c: introduce a per-image mempool to
7148         be used for memory that has the same lifetime as the image.
7149
7150 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7151
7152         * domain.c: In mono_init_internal(), instead of selecting the first
7153         runtime version supported by an executable, get a list of all
7154         supported versions and select the one for which an mscorlib exists
7155         (since even if the runtime supports a given version, it doesn't mean
7156         that the framework for that version is installed).
7157         Modified get_runtimes_from_exe to support this behavior.
7158         In supported_runtimes, added information about additional system
7159         assembly versions.
7160         
7161         * assembly.c: Added support for more than one system assembly version
7162         per runtime version. Updated the assembly list.
7163         In mono_assembly_remap_version, removed the initial version check,
7164         since we don't know to which version we need to compare until we
7165         get the version set on which the assembly is based.
7166         Moved the code for loading corlib into the new method
7167         mono_assembly_load_corlib(), so it can be used by the initialization
7168         code.
7169         
7170         * domain-internals.h: Updated data structures and added declaration
7171         for mono_assembly_load_corlib.
7172
7173 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7174
7175         * reflection.c (resolve_object): Fix the creation of the signature in 
7176         the SignatureHelper case.
7177
7178         * assembly.c (mono_assembly_remap_version): Fix binary search.
7179         
7180 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7181  
7182         * class.c: Added inheritance check when a method is overloaded (from a
7183         virtual method or when implementing an interface) and when a class is
7184         inherited. Added functions to set a failure for a class and to 
7185         retreive the exception from a failure.
7186         * class-internals.h: Added fields to MonoClass to keep the exception
7187         information status for inheritance (or other exceptions) to be thrown
7188         later (i.e. not at load time).
7189         * object.c: Throw the inheritance SecurityException when a type is to 
7190         be created with either class or method inheritance violations.
7191         * reflection.c|h: Fix when getting declsec from a class. Removed 
7192         unrequired code for class. Improved sanity in parameter naming.
7193         * security-manager.c|h: Added functions to check for class and method
7194         inheritance.
7195
7196 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7197
7198         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7199         and has_finalize in dynamic types as well.
7200
7201 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7202
7203         * culture-info-table.h : fixed currency format for en-GB (and so on).
7204
7205 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7206
7207         * gc.c: ensure the GC handles never have 0 as a value.
7208
7209 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7210
7211         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7212         a pointer to a struct to unmanaged code. Fixes #72625.
7213
7214 2005-02-16  Martin Baulig  <martin@ximian.com>
7215
7216         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7217
7218 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7219
7220         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7221
7222 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7223
7224         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7225
7226         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7227         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7228         etc. Fixes #71471.
7229
7230         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7231
7232         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7233
7234 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7235
7236         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7237         changes to make the current context a field in MonoThread.
7238
7239 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7240
7241         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7242         the last change.
7243         
7244         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7245         extracted from mono_marshal_get_native_wrapper.
7246
7247         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7248         to create wrappers around native functions.
7249
7250         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7251         delegates for arbitrary function pointers. Fixes #71472.
7252
7253 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7254
7255         * threads.c: cleaned up the code a little.
7256
7257 2005-02-15  Martin Baulig  <martin@ximian.com>
7258
7259         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7260         the data table.
7261
7262         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7263         allocate larger chunks if needed.
7264
7265 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7266
7267         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7268         in by mistake.
7269
7270 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7271
7272         * domain.c: keep the domains in an array and ensure the domain ids
7273         are kept small, so they can be used as indexes to domain-specific data
7274         with a small memory overhead.
7275
7276 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7277
7278         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7279
7280 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7281
7282         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7283
7284 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7285
7286         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7287
7288         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7289         values.
7290
7291         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7292         
7293 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7294
7295         * domain-internals.h: add the hashtable here.
7296
7297         * class-internals.h: Remove `info' from MonoMethod
7298
7299         * domain.c: Add a new hashtable, jit_trampoline_hash
7300
7301 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7302
7303         * object.c: don't set the value of static fields
7304         (fixes bug#72494).
7305
7306 2005-02-11  Martin Baulig  <martin@ximian.com>
7307
7308         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7309         (mono_debug_add_method): Silently ignore the method if it's too big.
7310         (mono_debug_add_type): Likewise.
7311
7312 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7313
7314         * threads.c, appdomain.c: remove #ifdefs from the code.
7315
7316 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7317
7318         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7319         common security informations. This allows us to stay in unmanaged code
7320         when doing LinkDemand and it's special cases (except for the first 
7321         time for initialization). The flags a very much used with --security.
7322         * reflection.c|h: Added code to get declarative security attributes 
7323         for LinkDemand and InheritanceDemand. This required to refactor the
7324         existing code for Demand.
7325         * security-manager.c|h: Added new method fields for the special cases
7326         of LinkDemand.
7327
7328 2005-02-10  Martin Baulig  <martin@ximian.com>
7329
7330         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7331         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7332
7333 2005-02-10  Martin Baulig  <martin@ximian.com>
7334
7335         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7336         debugging code; this is almost a complete rewrite.
7337
7338         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7339
7340 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7341
7342         * domain.c, object.h: expose mono_string_equal () and 
7343         mono_string_hash ().
7344         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7345         it's implemented in managed code.
7346
7347 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7348
7349         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7350         lo leak objects between appdomains.
7351
7352 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7353
7354         * assembly.c: old compilers compilation fix from 
7355         robertj@gmx.net (Robert Jordan).
7356
7357 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7358
7359         * class-internals.h: Little reminder for the future.
7360
7361         * debug-helpers.c: Fix up wrapper_type_names
7362
7363 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7364
7365         * image.c, metadata-internals.h: when loading an image from a file,
7366         mmap all of it and use the same codepaths as when using a
7367         in-memory image: the code is simpler and we use less memory
7368         (both writable and readonly).
7369
7370 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7371
7372         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
7373         API to alloc runtime data structures that need to be tracked by the
7374         GC and contain pointers.
7375         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
7376         make the code more readable and eventually use a different GC.
7377
7378 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
7379
7380         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
7381         for out arguments.
7382         
7383 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
7384
7385         * object.c: In release_type_locks(), don't release the cctor lock
7386         if it has already been released. This fixes a crash in the
7387         thread5 test.
7388
7389 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7390
7391         * gc.c, marshal.c, icall.c: register a delegate for finalization
7392         only when the native function pointer has been allocated for it.
7393
7394 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7395
7396         * object.c: cleaned up some code, allocate objects that are
7397         pointer free with the atomic malloc variant. Allocate memory
7398         for static data from the mempool if it's pointer-free.
7399         Allocate the bounds array at the end of the array data, when needed.
7400         * object-internals.h, object.h: move a private function in a private
7401         header.
7402         * class.c: handle missing case in tracking references in fields.
7403
7404 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7405
7406         * class.c, class-internals.h: keep track if a type has
7407         reference fields in either the instance or static fields.
7408
7409 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
7410
7411         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
7412         and renamed to MonoRuntimeInfo. Added fields to store the expected
7413         framework assembly version. Changed mono_get_framework_version and
7414         mono_get_runtime_version for a single mono_get_runtime_info method.
7415         
7416         * assembly.c: Added method to remap system assembly versions to the
7417         current executing runtime version. Removed old mapping code.
7418         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
7419         
7420         * icall.c, reflection.c: Track api changes.
7421
7422 2005-02-06  Miguel de Icaza  <miguel@novell.com>
7423
7424         * loader.c (method_from_memberref): Improve error reporting,
7425         produce the class name instead of the typeref/typedef index. 
7426
7427 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
7428
7429         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
7430
7431 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7432
7433         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
7434         stdcall and charset name mangling.  Reorganize the code and add
7435         some tracing stuff.
7436
7437 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7438
7439         * monodiet.c: More iters!
7440
7441         * marshal.c: Iter usage.
7442
7443         * icall.c: Iter usage.
7444
7445         * object.c: Use iters.
7446
7447         * debug-helpers.c: More iters
7448
7449 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7450
7451         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
7452         under win32.
7453
7454 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7455
7456         * mono-debug-debugger.c: use iters
7457
7458         * class.c, class-internals.h: mono_class_setup_events is static
7459         now
7460
7461         * All callers: use iters
7462
7463 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7464
7465         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
7466         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
7467
7468 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7469
7470         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
7471
7472         * marshal.h: Add prototypes for ldfld/stfld_remote.
7473
7474         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
7475         this is called during startup.
7476         
7477 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
7478
7479         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
7480         MonoThreadsSync struct private in monitor.c. Changed the way
7481         MonoThreadsSync is allocated so it's faster and there is no
7482         need to keep track of it with a finalizer and it uses less memory.
7483         This also finally allows us to allocate mono objects as ptrfree when
7484         there are no reference fields.
7485
7486 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
7487
7488         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
7489         disappearing link to the GC interface and use them to simplify
7490         the gchandles code.
7491
7492 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7493
7494         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
7495         stfld_remote which call mono_load/store_field_new. This allows methods
7496         calling ldfld/stfld wrappers to be AOTed.
7497
7498         * console-io.c: Include sys/filio.h under solaris.
7499         
7500         * console-io.c: Include curses.h if needed correctly.
7501
7502 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7503         
7504         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7505         method->klass as well.
7506
7507         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7508
7509         * class.c (mono_class_init): Switch on lazy initialization of 
7510         methods.
7511
7512         * class.c (mono_class_get_finalizer): Handle the case when the 
7513         finalizer is inherited.
7514
7515 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7516
7517         * console-io.c: <curses.h> is needed by term.h on solaris.
7518
7519 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7520
7521         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7522         mono_class_setup_properties where possible. Remove this ftn from
7523         the header file, and make it static.
7524
7525 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7526
7527         * loader.c: Add missing setup_... call.
7528
7529         * class.c: Add missing setup_... calls.
7530
7531         * class.c (mono_class_init): Switch on lazy initialization of 
7532         the generic vtable.
7533         
7534         * class.c (mono_class_init): Fix generics broken by the recent changes.
7535
7536         * monodiet.c (handle_type): Add missing setup_... calls.
7537
7538         * class.c: Back out garbage in previous patch.
7539         
7540         * class.c: Add missing setup_... calls.
7541
7542         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7543         mono_class_setup_methods () if possible.
7544
7545         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7546
7547         * class-internals.h (MonoCachedClassInfo): New structure.
7548
7549         * class.c: Initialize properties and events fields of MonoClass lazily.
7550
7551         * class.c: Add infrastructure for lazily initializing the methods and
7552         vtable fields of MonoClass. Not yet used.
7553
7554         * class.c (mono_class_get_finalizer): New helper function.
7555
7556         * class.c: Add infrastructure for loading some class related data from
7557         an AOT file.
7558
7559         * object.c: Add infrastructure for initializing the vtable from data
7560         in the AOT file.
7561
7562         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7563
7564         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7565         appropriate initialization function before accessing parts of the
7566         MonoClass structure.
7567
7568         * marshal.c: Fix warnings.
7569         
7570         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7571
7572         * mono-debug-debugger.c (get_exception_message): Use 
7573         mono_class_get_method_from_name_flags ().
7574
7575 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7576
7577         * reflection.c, appdomain.c: Replace a few manual searches that
7578         Zoltan missed. (Paolo approved this part of my initial patch).
7579
7580 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7581
7582         * profiler.c: disable recording statistical events at report time.
7583
7584 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7585
7586         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7587         to byteswap arrays of enum values, too (bug #72080).
7588
7589 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7590
7591         * appdomain.c (set_domain_search_path): Allow this to be called if
7592         domain->setup is not yet set.
7593
7594         * loader.c (mono_method_get_index): New helper function.
7595
7596         * loader.c reflection.c: Use mono_method_get_index ().
7597
7598         * class.c (mono_class_get_method_from_name_flags): New helper method.
7599
7600         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7601         this.
7602
7603         * class.c (mono_class_get_cctor): New helper method.
7604
7605         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7606         mono_class_get_method () to look up methods.
7607
7608 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7609
7610         * console-io.c: Fix the build, this should work on Windows.
7611
7612 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7613
7614         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7615         be set to null to keep things valid
7616
7617 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7618
7619         * icall.c: added Console 2.0 icalls.
7620         * Makefile.am: added console-io.[ch]
7621         * console-io.[ch]: internal calls for Console 2.0 API.
7622
7623 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7624
7625         * class.c: make sure we consider all the interfaces
7626         when calculating max_interface_id (bug found by
7627         Jeroen Frijters running ikvm).
7628
7629 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7630
7631         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7632         valuetype fields to null.
7633
7634         * object.c (set_value): Ditto. Fixes #71669.    
7635
7636 2005-01-31  Martin Baulig  <martin@ximian.com>
7637
7638         * metadata.c (mono_metadata_has_generic_params): New public
7639         function; checks whether something is a generic method.
7640
7641 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7642
7643         * appdomain.c: fix infinite recursion when adding assemblies.
7644
7645 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7646
7647         * object.c: Fix small typo to return all items for Environment.
7648         GetCommandLineArgs.
7649
7650 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7651
7652         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7653         reflection.c: more domain and assembly-unload related fixes
7654         and memory leaks plugs.
7655
7656 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7657
7658         * 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.
7659
7660 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7661
7662         * loader.c (mono_method_signature): Make this method lazy
7663         (mono_get_method_from_token): Don't computate the signature here.
7664
7665         Doing this saves quite a bit of memory. I got 90 kb on starting up
7666         monodoc. It should also save some disk reads on startup.
7667
7668         * *: MonoMethod->signature might be NULL now. You *MUST* use
7669         mono_method_signature.
7670
7671 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7672
7673         * object.c (mono_runtime_get_main_args): Return an array from the
7674         current domain here. Fixes #71938.
7675
7676 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7677
7678         * monitor.c: formatting changes to comply with the
7679         mono coding style and remove #ifdefs from the code.
7680
7681 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7682
7683         * metadata.c, private.h: remove some unneeded data
7684         and use a more compact representation for table schemas.
7685
7686 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7687
7688         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7689         to get a better distribution in hash tables.
7690         * *.c: use mono_aligned_addr_hash() where appropriate.
7691         * assembly.c: make var static.
7692
7693 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7694
7695         * domain-internals.h: Put MonoJitInfo on a diet.
7696
7697         * domain.c: Fix a warning.
7698
7699 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7700
7701         * gc.c: rework the gc handles code to reuse handles
7702         when freed.
7703
7704 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7705
7706         * domain.c: fixed long standing bug in mono_string_equal() which
7707         was brought to light with the ldstr changes.
7708
7709 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7710
7711         * reflection.c: Remove warning by adding missing include for marshal.h
7712
7713 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7714
7715         * domain.c, object.c: change the ldstr_table to hold
7716         MonoString* as keys: makes the runtime isinterned lookup
7717         faster and simplifies memory management.
7718
7719 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7720  
7721         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7722         possible to add imperative security checks before calling the icall.
7723         * reflection.c: Return security attributes on the original MonoMethod
7724         (and not the wrapped one). This fix permissions on icalls.
7725
7726 2005-01-25  Dick Porter  <dick@ximian.com>
7727
7728         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7729         the check for mktime() support actually test the mktime() return
7730         value.  "Fixes" bug 71682, though the output is still different to
7731         MS.
7732
7733 2005-01-25  Martin Baulig  <martin@ximian.com>
7734
7735         * class.c (mono_class_is_assignable_from): Make this work for
7736         generic instances.
7737
7738 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7739
7740         * marshal.c (mono_string_utf8_to_builder)
7741         (mono_string_builder_to_utf16): We might not have ownership of the
7742         string. In thise case, we need to create a new buffer.
7743
7744         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7745         be null, in which case, use the default capacity.
7746
7747 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7748
7749         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7750         GC events to the profiler.
7751
7752 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7753
7754         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7755         if you don't want the GC to run.
7756
7757 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7758
7759         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7760         start providing a GC API and keeping different implementations in
7761         their own file.
7762         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7763
7764 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7765
7766         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7767         mmap rather than allocating a huge buffer.
7768         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7769         above.
7770
7771 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7772
7773         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7774         and CheckExecutionRights.
7775         * reflection.c|h: Keep the index of the declarative security to be 
7776         used, instead of the pointer, when AOT compiler is used. Also add 
7777         class initialization when requesting demands.
7778         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7779         CheckExecutionRights. Both properties are now FALSE by default, and
7780         unmodifiable, unless the --security option is used.
7781
7782 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7783
7784         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7785         reflection.c: properly refcount images and assemblies, many leaks fixed.
7786
7787 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7788
7789         * threadpool.c: increase the timeout for threads in the thread pool to
7790         10s.  Fixes bug #67159.
7791
7792 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7793
7794         * class-internals.h: Sun's compiler insists on explicit
7795         signed on bit fields to handle then correctly.
7796
7797 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7798
7799         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7800         Make the size of the array fit only the number of invalid path
7801         chars that we have.
7802
7803         * class.c (_mono_class_get): Improve the error reporting when a
7804         class referenced is not found, to assist debugging. 
7805
7806 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7807
7808         * threads.c: fix off-by-one error.
7809         * domain.c: free data allocated in the domain.
7810
7811 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7812
7813         * reflection.c (mono_method_body_get_object): Fill out exception info
7814         as well.
7815
7816         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7817         structure.
7818         
7819 2005-01-19  Martin Baulig  <martin@ximian.com>
7820
7821         * loader.c (mono_get_method_constrained): Make this work again.
7822
7823 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7824
7825         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7826         guint16 to match the managed side.
7827
7828         * reflection.c (mono_reflection_body_get_object): Fill out local
7829         variables array.
7830
7831         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7832         as well.
7833
7834         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7835         'local_var_sig_token'.
7836
7837 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7838
7839         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7840         System.Drawing.
7841
7842         * reflection.c (mono_method_body_get_object): Handle abstract and
7843         runtime methods.
7844
7845 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7846
7847         * marshal.c, loader.c, class-internals.h, reflection.c:
7848         store the emthod data for a wrapper in an array instead of a list.
7849
7850 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7851
7852         * marshal.c: change the code to allocate memory more
7853         conservatively for method wrappers.
7854
7855 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7856
7857         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7858         fields from MonoClass to the marshal info structure where they belong.
7859
7860 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7861
7862         * class.c, object.c, class-internals.h, marshal.c: rearrange
7863         some fields and tweak some types to lower memory usage.
7864
7865 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7866
7867         * threads.c (signal_thread_state_change): Handle the case when the
7868         target thread is the current thread.
7869
7870         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7871
7872         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7873         emit_ptr_to_object_conv. 
7874
7875         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7876         marshalling. Fixes #71352.
7877
7878 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7879
7880         * metadata.h, blob.h: move table enum to blob.h so it can be included
7881         in any header.
7882         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7883         cut the size of MonoImage/MonoDynamicImage.
7884
7885 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7886
7887         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7888
7889 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7890
7891         * reflection.c, reflection.h, icall.c: add a function to check
7892         if an attribute type is defined for a metadata object.
7893
7894 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7895
7896         * object-internals.h: Added some needed fields from StringBuilder class.
7897         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7898
7899 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7900
7901         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7902         threads before shutting down the runtime.
7903
7904         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7905
7906 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7907
7908         * object-internal.h, threads.c: implement stacksize and 
7909         parameterized thread start functionality (requires
7910         matching corlib). Marked broken code for later removal.
7911
7912 2005-01-12  Martin Baulig  <martin@ximian.com>
7913
7914         * class-internals.h (MonoGenericClass): Moved the `initialized'
7915         flag to MonoDynamicGenericClass, removed `init_pending'.
7916         (MonoGenericInst): Added `is_reference' flag.
7917
7918 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7919
7920         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7921         inside the MSDOS header. Fixes #71201.
7922
7923         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7924         gc thread.
7925         (mono_domain_finalize): Ditto.
7926
7927 2005-01-12  Martin Baulig  <martin@ximian.com>
7928
7929         * class.c (mono_get_shared_generic_class): Use the cache for
7930         non-dynamic generic classes.
7931
7932         * class-internals.h (mono_class_create_generic_2): Removed
7933         function prototype, this function is now static inside class.c.
7934
7935         * class.c (mono_class_create_generic_2): Made this static, only
7936         call it from mono_class_init() and mono_class_setup_parent().
7937         (collect_implemented_interfaces_aux): Call mono_class_init() on
7938         the interfaces we collect.
7939         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7940
7941 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7942
7943         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7944         it a real thread handle.
7945
7946         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7947         MonoJitExceptionInfo, since each catch clause needs its own variable.
7948         
7949 2005-01-11  Dick Porter  <dick@ximian.com>
7950
7951         * image.c (mono_pe_file_open): New variant on mono_image_open()
7952         that does not set up the CLI metadata; used for FileVersionInfo so
7953         it can get the data for windows binaries too.
7954         
7955         * process.c (process_read_string_block): Don't read off the end of
7956         the StringTable block.
7957
7958         These both fix bug 70766.
7959
7960 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7961
7962         * gc.c: set some fields to NULL at GC cleanup time.
7963         * threads.c: if we quit the main thread, call exit ().
7964
7965 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7966
7967         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7968
7969 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7970
7971         * threads.h, threads.c, object.c: added accessor and settor for
7972         main_thread. Handle it specially when exiting from it: wait
7973         for other foreground threads to exit.
7974
7975 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
7976
7977         * process.c, verify.c: remove some bloat.
7978
7979 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
7980
7981         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
7982         the calling convention to cdecl under win32.
7983
7984 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
7985
7986         * object.c (mono_object_get_size): New function to get the size of
7987         an object instance.
7988
7989         * profiler.c (simple_allocation): Use above.
7990
7991 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
7992
7993         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
7994         ves_icall_System_AppDomain_getRootDomain (as it's not required to
7995         get an appdomain by it's id and we can't assume the root's id is 0).
7996         * domain-internals.h: Change the function prototype to match.
7997         * icall.c: Change the icall table for AppDomain.
7998
7999 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8000
8001         * locales.c (string_invariant_compare_char): Only compute
8002         GUnicodeTypes in the case where we need them.  Test for ordinality
8003         first and return if so.
8004
8005         From the commit:
8006
8007                 /*
8008                  * FIXME: here we must use the information from c1type and c2type
8009                  * to find out the proper collation, even on the InvariantCulture, the
8010                  * sorting is not done by computing the unicode values, but their
8011                  * actual sort order.
8012                  */
8013
8014 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8015
8016         * loader.c: for P/Invoke methods, allow the "Internal" shared
8017         library name to refer to the calling process symbol namespace.
8018
8019 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8020
8021         * Makefile.am: Add the security manager to the build.
8022         * security-manager.c|h: New. Initialization of the security manager.
8023
8024 2005-01-07  Dick Porter  <dick@ximian.com>
8025
8026         * threads.c: 
8027         * monitor.c: Update thread state during Monitor and WaitHandle
8028         waits.  Fixes bug 71031.
8029
8030 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8031
8032         * reflection.c (property_encode_signature): Correctly handle when the
8033         property has no methods.
8034
8035 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8036
8037         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8038         
8039         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8040         fields from mb, not rmb. Fixes #71017.
8041
8042         * marshal.c (emit_ptr_to_str_conv): Add support for 
8043         ByValTStr -> string conversion. Fixes #71015.
8044
8045         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8046
8047         * mempool.c (mono_mempool_contains_addr): New helper function.
8048
8049 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8050
8051         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8052         HasSematics encoded fields.
8053         
8054         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8055         invalid string marshalling.
8056
8057         * metadata.c: Fix warnings.
8058         
8059 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8060
8061         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8062         profiler support.
8063
8064 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8065
8066         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8067         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8068         tests.
8069
8070 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8071
8072         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8073         so methods containing these can be AOTed.
8074
8075 2005-01-03  Martin Baulig  <martin@ximian.com>
8076
8077         * loader.c (find_method): Removed the hack for generic instances.
8078         (method_from_memberref): If our parent is a generic instance, pass
8079         its generic type definition to find_method() and then inflate the
8080         method.
8081         (mono_get_method_constrained): Pass the generic type definition to
8082         find_method() and inflate the method later.
8083
8084         * class-internals.h (MonoStats): Added `generic_class_count'.
8085
8086         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8087         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8088
8089         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8090         generic type definitions.
8091
8092 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8093
8094         * loader.c icall.c: Fix warnings.
8095
8096 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8097
8098         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8099         blittable types. Fixes #70864.
8100
8101 2004-12-29  Martin Baulig  <martin@ximian.com>
8102
8103         * icall.c
8104         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8105
8106         * reflection.c (mono_method_get_object): Create a
8107         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8108         call mono_get_inflated_method().
8109
8110         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8111
8112 2004-12-27  Martin Baulig  <martin@ximian.com>
8113
8114         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8115         (MonoMethodInflated): Added `inflated' field.
8116
8117         * class.c (mono_class_inflate_generic_method): Don't really
8118         inflate the method here; just set the `is_inflated' flag in the
8119         MonoMethod.
8120         (mono_class_get_inflated_method): Actually inflate the method here
8121         if it's not already inflated; we use the MonoMethodInflated's new
8122         `inflated' field as a cache.
8123
8124 2004-12-26  Martin Baulig  <martin@ximian.com>
8125
8126         * class.c
8127         (inflate_generic_class): Moved some code out of inflate_generic_type().
8128         (mono_class_inflate_generic_method): If we're already inflated,
8129         inflate the context and use the declaring method; ie. make sure
8130         the declaring method of an inflated method is always the generic
8131         method definition.
8132         (mono_class_create_from_typedef): Create
8133         `class->generic_container->context->gclass'.
8134
8135 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8136
8137         * metadata-internals.h, marshal.c, reflection.c: More
8138         MonoGHashTable->GHashTable.
8139
8140         * domain-internals.h, class.c: Change MonoGHashTable's into
8141         GHashTables for some cases where no gc stuff is used
8142
8143         All users: update apis
8144
8145 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8146
8147         * metadata.c (builtin_types): Make this `const'. Makes this get
8148         put into the shareable section.
8149         (mono_metadata_init): Casts to make gcc happy.
8150
8151 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8152
8153         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8154
8155 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8156
8157         * icall.c: Added an internal call to retrieve the position and length
8158         of assembly-level declarative security attributes (RequestMinimum, 
8159         RequestOptional and RequestRefuse). This is used by the Assembly class
8160         to re-create the corresponding permission sets.
8161
8162 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8163
8164         * marshal.c: fix the stelemref wrapper to be type correct
8165         (and faster).
8166
8167 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8168
8169         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8170         to do key & 0x7fffffff. Hashtable already does this. It just
8171         results in longer code.
8172
8173 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8174
8175         * appdomain.c: Bump corlib version.
8176         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8177         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8178         * reflection.c|h: Add functions to get declarative security infos
8179         (blob position and length) for assemblies, classes and methods.
8180
8181 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8182
8183         * reflection.c: sort the constant table (bug #70693).
8184
8185 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8186
8187         * object-internals.h, threads.c, domain.c: add accessors for
8188         the MonoThread and MonoDomain tls keys.
8189
8190 2004-12-18  Martin Baulig  <martin@ximian.com>
8191
8192         * class.c (inflate_generic_type): If we're inflating a generic
8193         instance, set `ngclass->context->container = context->container';
8194         ie. the container we inflated into.
8195
8196         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8197         inflate_generic_type() changes.
8198
8199 2004-12-17  Martin Baulig  <martin@ximian.com>
8200
8201         * class-internals.h
8202         (MonoGenericClass): Replaced `MonoType *generic_type' with
8203         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8204         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8205         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8206
8207 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8208
8209         * exception.c (mono_exception_from_token): New helper function.
8210
8211 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8212
8213         * assembly.c (mono_assembly_load_with_partial_name): Call 
8214         mono_assembly_loaded before invoking the preload hooks. Fixes
8215         #70564.
8216
8217         * object-internals.h (MonoThread): Change culture_info and 
8218         ui_culture_info into an array.
8219
8220         * threads.c: Cache culture info objects from more than one appdomain.
8221
8222         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8223         current UI culture.
8224
8225 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8226
8227         * threads.h threads.c appdomain.c: Clear the culture_info field of
8228         all threads during unloading if they point to an object in the dying
8229         appdomain.
8230
8231 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8232
8233         * culture-info.h (TextInfoEntry): New struct
8234         * object-internals.h: sync with managed
8235         * locales.c: fill the `text_info_data' field
8236         * culture-info-tables.h: update
8237
8238 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8239
8240         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8241         collector.
8242
8243 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8244
8245         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8246         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8247
8248 2004-12-12  Martin Baulig  <martin@ximian.com>
8249
8250         * mono-debug-debugger.c (write_type): If we're an enum and the
8251         builtin types have already been initialized, call mono_class_init().
8252
8253 2004-12-11  Martin Baulig  <martin@ximian.com>
8254
8255         * metadata.c (mono_metadata_load_generic_params): Added
8256         `MonoGenericContainer *parent_container' argument; automatically
8257         compute `container->is_method'; pass the correct owner to
8258         get_constraints().      
8259
8260         * reflection.c (compare_genericparam): Sort the GenericParam table
8261         according to increasing owners. 
8262
8263 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8264
8265         * profiler.c: allow disabling the default profiler.
8266
8267 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8268
8269         * decimal.c, icall.c: allow disabling System.Decimal support.
8270
8271 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8272
8273         * reflection.c: Add support for null attribute arguments.
8274
8275 2004-12-09  Martin Baulig  <martin@ximian.com>
8276
8277         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8278         names to get rid of compiler warnings.
8279
8280 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8281
8282         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8283         mono_marshal_load_type_info (). Fixes #69625.
8284         (mono_marshal_get_ptr_to_struct): Likewise.
8285
8286 2004-12-08  Martin Baulig  <martin@ximian.com>
8287
8288         * mono-debug.h: Bumped version number to 47.
8289
8290         * mono-debug-debugger.c
8291         (mono_debugger_event_handler, mono_debugger_event): Take two
8292         guint64 arguments insteed of a gpointer and a guint32.  
8293
8294 2004-12-08  Martin Baulig  <martin@ximian.com>
8295
8296         * debug-mono-symfile.h
8297         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8298         `address' to `native_offset'.
8299
8300 2004-12-08  Martin Baulig  <martin@ximian.com>
8301
8302         * class.c (mono_class_create_from_typespec): Only inflate if we
8303         either have `context->gclass' or `context->gmethod'.
8304
8305 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8306
8307         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8308
8309         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8310
8311         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8312
8313         * reflection.c (mono_assembly_get_object): Remove the workaround put
8314         in for the release.
8315         
8316         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8317
8318         * appdomain.c: Bump corlib version.
8319
8320         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8321         be visible in other appdomains.
8322
8323 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8324
8325         * threads.c: Interlocked inc and dec for longs were messed up,
8326         use a KISS based impl for this. Fixes 70234
8327
8328 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8329
8330         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8331
8332 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8333
8334         * icall.c: fix to follow policy not to allow struct
8335         arguments in icalls.
8336
8337 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8338
8339         * process.c: make the patch that handles spaces in file paths work
8340         on mono/windows too.
8341
8342 2004-12-06  Martin Baulig  <martin@ximian.com>
8343
8344         * class.c (mono_class_create_generic): Call
8345         mono_class_setup_supertypes() if we're dynamic.
8346         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8347
8348 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8349
8350         * object-internals.h: Add new fields to MonoThread.
8351
8352         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8353
8354         * icall.c threads-types.h threads.c: Add new icalls.
8355
8356         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8357
8358         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8359         managed side.
8360
8361         * appdomain.c: Bump corlib version.
8362
8363         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
8364         internal assemblies. Fixes #69181.
8365
8366 2004-12-05  Martin Baulig  <martin@ximian.com>
8367
8368         * class.c (mono_class_inflate_generic_signature): Make this a
8369         no-op if `context' is NULL or we don't have any type parameters;
8370         also copy `sentinelpos'.        
8371
8372 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
8373
8374         * image.c: Add unbox_wrapper_cache.
8375
8376         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
8377
8378         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
8379         function generator.
8380         
8381         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
8382         Fixes #70173.
8383
8384         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
8385         
8386 2004-12-04  Martin Baulig  <martin@ximian.com>
8387
8388         * loader.c (mono_method_get_signature_full): New public function;
8389         like mono_method_get_signature(), but with an additional
8390         `MonoGenericContext *' argument.
8391
8392         * class.c (mono_class_inflate_generic_signature): Formerly known
8393         as inflate_generic_signature(); make this public.
8394
8395 2004-12-04  Martin Baulig  <martin@ximian.com>
8396
8397         * metadata.c
8398         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
8399         instead of a `MonoGenericContainer *'.  
8400         (mono_metadata_parse_array_full): Likewise.
8401         (mono_metadata_parse_signature_full): Likewise.
8402         (mono_metadata_parse_method_signature_full): Likewise.
8403         (mono_metadata_parse_generic_inst): Likewise.
8404         (mono_metadata_parse_generic_param): Likewise.
8405         (mono_metadata_parse_mh_full): Likewise.
8406         (mono_type_create_from_typespec_full): Likewise.
8407
8408 2004-12-03  Martin Baulig  <martin@ximian.com>
8409
8410         * class-internals.h (MonoGenericContainer): Replaced the
8411         `MonoGenericContext * pointer with a `MonoGenericContext'
8412         structure and made it the first element.
8413
8414 2004-12-03  Martin Baulig  <martin@ximian.com>
8415
8416         * class.c
8417         (inflate_generic_type): Set the `context->container' when creating
8418         a new MonoGenericContext.
8419         (mono_class_inflate_generic_method): Likewise.
8420         (mono_class_create_from_typespec): Just use `context->container'
8421         to get the container.
8422
8423         * loader.c (method_from_methodspec): Set `context->parent' from
8424         `context->container' - and if that's a method container, use its
8425         parent.  Also set the `context->container' when creating a new
8426         MonoGenericContext.
8427         (mono_get_method_from_token): Use just `context->container' to get
8428         the container.
8429
8430         * metadata.c (do_mono_metadata_parse_generic_class): Also set
8431         `gclass->context->container'.
8432
8433         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
8434         the `context->container' when creating a new MonoGenericContext.
8435
8436 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
8437
8438         * reflection.c (compare_genericparam): Sort params with identical
8439         owner by their number. Fixes gen-111 on sparc.
8440
8441 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8442
8443         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
8444         around the domain changes.
8445
8446         * appdomain.c (mono_domain_unload): Handle the case when the thread
8447         calling Unload is itself being aborted during unloading. Fixes #70022.
8448
8449         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
8450
8451         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
8452         checkpoint_func as an icall so it gets a wrapper.
8453         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
8454         in the cross-appdomain wrappers too.
8455
8456         * threads.c (mono_thread_has_appdomain_ref): Make this public.
8457
8458         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
8459
8460         * reflection.c: Fix some memory leaks.
8461         
8462 2004-12-02  Martin Baulig  <martin@ximian.com>
8463
8464         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
8465
8466         * metadata.c (generic_class_cache): New static hashtable.
8467         (mono_metadata_lookup_generic_class): New public method.
8468
8469 2004-12-02  Martin Baulig  <martin@ximian.com>
8470
8471         * class.c (mono_class_create_from_typedef): Call
8472         mono_class_setup_parent() and mono_class_create_mono_type() before
8473         parsing the interfaces.
8474
8475 2004-12-02  Martin Baulig  <martin@ximian.com>
8476
8477         * metadata.c (generic_inst_cache): New static hashtable.
8478         (mono_metadata_lookup_generic_inst): New public function.
8479         (mono_metadata_inflate_generic_inst): New public function.
8480         (mono_metadata_parse_generic_inst): New public function.
8481         (do_mono_metadata_parse_generic_class): Use the new
8482         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
8483         since this'll also use the cache.
8484
8485         * reflection.c (mono_reflection_bind_generic_method_parameters):
8486         Use mono_metadata_lookup_generic_inst() to use the new cache.
8487
8488         * class.c (inflate_mono_type): Use
8489         mono_metadata_inflate_generic_inst() to inflate a generic
8490         instance; this'll also use the new cache.
8491
8492         * loader.c (method_from_methodspec): Use
8493         mono_metadata_parse_generic_inst() and
8494         mono_metadata_inflate_generic_inst() rather than parsing it
8495         manually, so we can use the new cache.
8496
8497 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8498
8499         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8500         the wait times out.
8501
8502 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8503
8504         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8505         iter->args based on whether parameters are passed in registers (i.e.
8506         MONO_ARCH_REGPARMS is defined)
8507
8508 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8509
8510         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8511         the exception message. Fixes #70070.
8512         (method_from_methodspec): Fix warnings.
8513
8514 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8515
8516         * process.c: (complete_path) return the path quoted
8517
8518 2004-12-01  Martin Baulig  <martin@ximian.com>
8519
8520         * class-internals.h (MonoGenericInst): New structure.
8521         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8522         `is_open' with `MonoGenericInst *inst'.
8523         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8524         `is_open' with `MonoGenericInst *inst'.
8525
8526 2004-11-30  Martin Baulig  <martin@ximian.com>
8527
8528         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8529
8530         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8531         to `generic_class_cache'.
8532
8533         * metadata.c
8534         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8535         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8536         (mono_generic_inst_is_valuetype): Renamed to
8537         mono_generic_class_is_valuetype().
8538
8539         * class-internals.h
8540         (MonoGenericInst): Renamed to MonoGenericClass.
8541         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8542         (MonoClass): Renamed `generic_inst' to `generic_class'.
8543         (MonoGenericContext): Renamed `ginst' to `gclass'.
8544
8545         * object-internals.h
8546         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8547
8548         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8549         mono_reflection_generic_class_initialize().
8550
8551         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8552         now known as "System.Reflection.MonoGenericClass".
8553         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8554
8555 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8556
8557         * class-internals.h: Added a flag field to MonoClass to cache the
8558         declarative security attributes actions associated with the class.
8559         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8560         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8561         applicable to the JITted method.
8562         * reflection.c|h: Added functions to extract (as flags) which security
8563         actions are available (declaratively) for a method, class or assembly.
8564         * metadata.c|h: Added functions to search the declarative security
8565         table in the metadata.
8566         
8567 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8568
8569         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8570         EXPORTEDTYPES are already in the class name cache, so there is no
8571         need to add extra code here to look at them. Just removes a bit of
8572         cruft.
8573
8574         (ves_icall_System_Environment_get_TickCount): No need for #if
8575         WINDOWS. We already have the code in io-layer.
8576
8577 2004-11-28  Martin Baulig  <martin@ximian.com>
8578
8579         * loader.c
8580         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8581         Fixes gen-112.cs.
8582
8583 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8584
8585         * assembly.c (do_mono_assembly_open): Instead of having a
8586         conditional WITH_BUNDLE, incorporate support for bundles here, by
8587         having a global `bundles' variable holding a pointer to the actual
8588         bundles. 
8589
8590         (mono_register_bundled_assemblies): New API call used by the
8591         bundle code. 
8592
8593         See mkbundle.1 for details.
8594         
8595 2004-11-27  Martin Baulig  <martin@ximian.com>
8596
8597         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8598         the vtable for generic methods.
8599
8600 2004-11-26  Martin Baulig  <martin@ximian.com>
8601
8602         * metadata.c
8603         (mono_metadata_generic_method_hash): New public function.
8604         (mono_metadata_generic_method_equal): Likewise.
8605
8606         * class-internals.h
8607         (MonoGenericContainer): Added `GHashTable *method_hash'.
8608
8609         * reflection.c (ReflectionMethodBuilder): Added
8610         `MonoGenericContainer *generic_container'.
8611         (reflection_methodbuilder_to_mono_method): Don't create a new
8612         MonoGenericContainer each time we're called.
8613         (mono_reflection_bind_generic_method_parameters): Use
8614         `container->method_hash' to cache the results so we don't create a
8615         different method if we're called several times with the same
8616         arguments.
8617
8618         * loader.c (method_from_methodspec): Use the new
8619         `container->method_hash' here, too.
8620
8621 2004-11-26  Martin Baulig  <martin@ximian.com>
8622
8623         * class.c (inflate_generic_signature): Correctly compute
8624         `res->has_type_parameters'.
8625         (mono_class_vtable): Use the `has_type_parameters' flag to
8626         determine whether we're a generic method.
8627
8628         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8629
8630 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8631
8632         * object.c (mono_runtime_run_main): Fix a small memory leak.
8633
8634 2004-11-25  Martin Baulig  <martin@ximian.com>
8635
8636         * class.c (set_generic_param_owner): Fixed the loop.
8637
8638 2004-11-25  Martin Baulig  <martin@ximian.com>
8639
8640         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8641         generic methods.
8642
8643 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8644
8645         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8646         names. Fixes #69787.
8647
8648 2004-11-24  Martin Baulig  <martin@ximian.com>
8649
8650         * class.c (mono_class_create_generic_2): If we don't have a
8651         `ginst->parent', inflate `gklass->parent' to get our parent.
8652
8653 2004-11-24  Martin Baulig  <martin@ximian.com>
8654
8655         * reflection.c (compare_genericparam): Correctly sort the
8656         GenericParam table; fixes #69779.
8657
8658 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8659
8660         * reflection.c: When writing a PE file, don't create a huge
8661         buffer in memory. Just write the arrays we have to the file.
8662         This reduces memory usage.
8663
8664         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8665         globally.
8666
8667 2004-11-17  Martin Baulig  <martin@ximian.com>
8668
8669         * class.c (mono_class_init): Don't setup `class->parent' for
8670         dynamic instances; moved this to mono_class_generic_2().
8671         (mono_class_create_generic): Also set `klass->inited' for dynamic
8672         generic instances.
8673         (mono_class_create_generic_2): Don't do anything for dynamic
8674         generic instances.  Set `klass->parent' here and also call
8675         mono_class_setup_parent() here. 
8676
8677         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8678         `MonoType *parent' argument; set `ginst->parent' before calling
8679         mono_class_create_generic_2(), so we set the correct parent.
8680
8681 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8682
8683         * reflection.c: allow getting attributes from ModuleBuilder
8684         (used by ikvm).
8685
8686 2004-11-17  Martin Baulig  <martin@ximian.com>
8687
8688         * class.c (mono_class_create_from_typedef): If a type parameter is
8689         inherited from an outer class, set its owner to that class.
8690
8691 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8692
8693         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8694           for (int*) written size. This fixes bug #69592.
8695
8696 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8697
8698         * icall.c: Added IsAuthenticodePresnet internal call.
8699         * image.c|h: New function that check a MonoImage for an Authenticode
8700         signature in the certificate PE data directory.
8701         * security.c|h: New internal call to ask the runtime if an 
8702         Authenticode signature seems referenced in the PE header.
8703
8704 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8705
8706         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8707
8708         * reflection.c (mono_image_create_pefile): Free the assembly streams
8709         after writing out the assembly file.
8710
8711         * object.c (mono_runtime_run_main): Fix small memory leak.
8712
8713         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8714         property access modifiers. Fixes #69389.
8715
8716 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8717
8718         * domain.c, object.c, object-internals.h, domain-internals.h,
8719         object.h, marshal.c: keep dynamic code info per domain.
8720
8721 2004-11-15  Martin Baulig  <martin@ximian.com>
8722
8723         * class.c (mono_type_get_name_recurse): Put type arguments in
8724         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8725         see bug #68387.
8726
8727 2004-11-15  Martin Baulig  <martin@ximian.com>
8728
8729         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8730         (mono_class_setup_vtable): When computing `the_cname' for a
8731         generic instance, don't include the namespace since we'd otherwise
8732         add it twice.
8733
8734 2004-11-15  Martin Baulig  <martin@ximian.com>
8735
8736         * class.c (mono_class_create_generic): Changed return type to void.
8737         (mono_class_create_generic_2): New public function; setup
8738         `class->method', `class->field' and `class->interfaces' here
8739         instead of in mono_class_init().
8740
8741         * class.h (mono_class_create_generic): Moved to class-internals.h.
8742
8743 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8744
8745         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8746         rather than writing to memory, write to this file. Right now,
8747         we are just writting into a buffer, and copying that. However
8748         we can avoid the buffer later.
8749
8750         (mono_dynamic_stream_reset): new function
8751
8752         * icall.c, object-internals.h: update for the above.
8753
8754 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8755
8756         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8757         have been using gc'd memory. First it is slower, unlikely
8758         the comment in the source code said, secondly, it increases
8759         our footprint to do it in the gc.
8760
8761         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8762         the method so that it does not have to copy to managed code.
8763
8764 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8765
8766         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8767
8768 2004-11-12  Martin Baulig  <martin@localhost>
8769
8770         * reflection.c (mono_image_create_token): Allow generic method
8771         definitions here, since they may appear in an `.override'; see
8772         gen-98/gen-99 for an example.
8773
8774 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8775
8776         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8777         #69365.
8778
8779         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8780         descriptive.
8781
8782 2004-11-11  Martin Baulig  <martin@ximian.com>
8783
8784         * class.c (mono_class_setup_vtable): In an explicit interface
8785         implementation, the method name now includes the arity.
8786
8787 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8788
8789         * object.c (mono_array_full_copy): Fix warning.
8790
8791 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8792
8793         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8794         mono_class_get_method_from_name() instead.
8795         
8796         * class-internals.h: Added two new types of wrappers. 
8797         Added MonoRemotingTarget enum. Added new trampoline function type, which
8798         takes an additional MonoRemotingTarget value as parameter, so it is
8799         possible to request a trampoline for a specific target.
8800         
8801         * class.c: Added new mono_class_get_method_from_name() method.
8802         
8803         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8804         general remoting sinks and one specific for cross domain calls.
8805         
8806         * debug-helpers.c: Added new wrapper names.
8807         
8808         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8809         of a remote class.
8810         
8811         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8812         
8813         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8814         with several other methods (mono_marshal_get_xappdomain_dispatch,
8815         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8816         and others) can generate a fast remoting wrapper for cross domain calls.
8817         More information can be found in docs/remoting.
8818         Other changes: Removed mono_find_method_by_name, and used
8819         mono_class_get_method_from_name instead.
8820         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8821         is stored in the remoting invoke hashtable.
8822         
8823         * marshal.h: published the new method for getting the xdomain wrapper,
8824         and also added a method for getting the adequate wrapper for a given
8825         method and target.
8826         
8827         * object-internals.h, object.c: Added a couple of methods for capying and
8828         cloning arrays.
8829         Modified mono_install_remoting_trampoline, which takes the new remoting
8830         trampoline that has a remoting target as parameter.
8831         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8832         will return the most suitable vtable for the target.
8833         Added mono_remote_class_vtable, which returns the vtable of a remote class
8834         (which can be the normal remoting vtable or the xdomain vtable).
8835         
8836         * threads.c: the xdomain invoke and dispatch wrappers must also be
8837         protected against interruptions.
8838
8839 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8840
8841         * icall.c: use memmove in BlockCopyInternal when the source and
8842         destination arrays are the same.
8843
8844 2004-11-09  Martin Baulig  <martin@ximian.com>
8845
8846         * class-internals.h (MonoGenericContainer): Removed `method' and
8847         `signature', replaced them with `is_method' and `is_signature'
8848         flags.  Added `context'.
8849
8850         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8851         instead of a `MonoGenericContainer *'.
8852
8853         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8854         for dynamic type parameters.
8855         (mono_metadata_load_generic_params): Setup `container->context'.
8856
8857         * reflection.c (mono_reflection_setup_generic_class): Setup
8858         `tb->generic_container->context'.
8859         (do_mono_reflection_bind_generic_parameters): Use
8860         mono_class_inflate_generic_type() to correctly inflate types,
8861         rather than using our own hack just for MONO_TYPE_VAR.
8862
8863 2004-11-09  Martin Baulig  <martin@ximian.com>
8864
8865         * class.c (mono_class_inflate_generic_method): Small fix; don't
8866         crash here.
8867
8868         * icall.c
8869         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8870         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8871         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8872         (ves_icall_Type_BindGenericParameters): Likewise.
8873         (ves_icall_Type_get_IsGenericInstance): Likewise.
8874         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8875         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8876         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8877         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8878
8879 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8880
8881         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8882         assembly versions and public key tokens. Fixes #69113.
8883
8884 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8885
8886         * metadata.c: fix bug introduced with the type cache changes
8887         on 2004-11-06.
8888
8889 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8890
8891         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8892         the MonoClass pointer instead of the token in exception clauses.
8893         * reflection.c: updates for the above and make the code not depend
8894         on the structure of MonoExceptionClause.
8895
8896 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8897
8898         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8899         Add support for dynamic assemblies. Fixes #69114.
8900
8901         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8902
8903 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8904
8905         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8906         since most only those methods use it. the code member of
8907         MonoMethodPInvoke was dead, so that can be removed too. Also,
8908         remove inline_count (again, not used), and move slot so that it
8909         can share bits with some other flags. This saves 8 bytes in the
8910         structure and gives us about 50 kb back for mcs helloworld.cs
8911
8912         * *.[ch]: Do naming changes for the above.
8913
8914         * loader.c (mono_method_get_header): Lazily init the header
8915         on first access.
8916         (mono_get_method_from_token): don't init the header here
8917         (mono_free_method): the header may never be allocated
8918
8919         Overall, this saves 150 kb of unmanaged allocations
8920         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8921         memory at runtime.
8922         
8923         * loader.c, loader.h (mono_method_get_header): new accessor.
8924
8925         * *.[ch]: use the above method. Prepares us to lazily load
8926         the header.
8927
8928         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8929         three warnings, which are actual bugs (see 69206).
8930
8931         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8932         unused. Saves a cool 4 bytes / method.
8933
8934 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8935
8936         * metadata.c (builtin_types): Add types for System.Object here.
8937         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8938         for a class or valuetype from klass->this_arg or klass->byval_arg.
8939
8940         On mcs for a hello world, this gets us down from 21836 MonoType's
8941         to 14560.
8942
8943         (mono_metadata_free_type): Account for the above change.
8944
8945 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8946
8947         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8948         exception instead of asserting if name is null.
8949         (ves_icall_System_AppDomain_GetData): Ditto.
8950
8951 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8952
8953         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8954         EnumBuilder.
8955
8956         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8957         Return NULL when the domain does not have entry_assembly set.
8958
8959         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8960         Add a 'resource_modules' argument.
8961         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8962
8963         * reflection.c (mono_reflection_create_runtime_class): Move setting
8964         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8965         for enums too.
8966
8967         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8968         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8969         Throw an ArgumentNullException if 'ptr' is null.
8970
8971         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8972         assemblies here. Fixes #69020.
8973
8974 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
8975
8976         * reflection.c (build_compressed_metadata): Fix the previous patch for
8977         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
8978         the stack.
8979
8980 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
8981
8982         * assembly.c (mono_assembly_names_equal): Allow a match if one of
8983         the cultures is false. Fixes #69090.
8984
8985         * reflection.c (build_compressed_metadata): Fix invalid memory read 
8986         detected by valgrind.
8987         
8988         * reflection.c (mono_reflection_get_type): Avoid triggering a 
8989         TypeResolve multiple times for the same type. Fixes #65577.
8990
8991 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
8992
8993         * marshal.c: Avoid using ldftn to call managed functions. It is
8994         much slower than just a call.
8995
8996         * reflection.c (mono_module_get_object): free the basename we
8997         allocate here from glib.
8998         
8999         * reflection.c (ensure_runtime_vtable): make sure to free
9000         overrides.  Also, we were allocating an array of MonoMethod not an
9001         array of MonoMethod*.
9002
9003         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9004
9005         * image.c (mono_image_close): free image->guid here.
9006
9007 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9008
9009         * reflection.c: Fix some spec conformance issues with the PE file
9010         structures so mcs compiled apps run on the Net 2.0 beta.
9011
9012 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9013
9014         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9015         Implement this. Fixes #67264.
9016
9017         * debug-helpers.h debug-helpers.c marshal.c: Move 
9018         mono_find_method_by_name to debug-helpers.c.
9019
9020 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9021
9022         * object.c (mono_release_type_locks): type_initialization_hash is
9023         a GHashTable.
9024
9025         * reflection.c object.c object-internals.h: Fix warnings.
9026
9027         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9028         without accessors. Fixes #61561.
9029
9030         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9031         application base from the root domain if not set. Fixes #65641.
9032         (mono_runtime_init): Fix warning.
9033
9034 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9035
9036         * appdomain.c: call mono_thread_pool_init.
9037         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9038         of worker threads based on the number of CPUs and the environment
9039         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9040         for non-windows (windows) systems.
9041
9042 2004-10-27  Chris Toshok  <toshok@ximian.com>
9043
9044         * mono-debug-debugger.c (write_class): don't call mono_class_init
9045         here, as even with the check for (!klass->init_pending), we get
9046         into a situation where we're hitting cycles in class
9047         initialization.  Fixes #68816.
9048
9049 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9050
9051         * image.c: Avoid overwriting values in the loaded_images_hash when an
9052         assembly is loaded multiple times. Fixes #61152.
9053
9054         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9055         so multiple satellite assemblies for the same name can be loaded.
9056         Fixes #68259.
9057
9058         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9059         not NULL.
9060
9061         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9062         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9063
9064         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9065         pending finalizers are not invoked after the appdomain has been 
9066         unloaded. Fixes #67862.
9067
9068 2004-10-22  Martin Baulig  <martin@ximian.com>
9069
9070         * mono-debug-debugger.c
9071         (mono_debugger_runtime_invoke): Don't box valuetypes.
9072
9073 2004-10-22  Chris Toshok  <toshok@ximian.com>
9074
9075         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9076         don't hide private methods.
9077
9078 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9079
9080         * icall.c: Allows the runtime to "share" (when known) the public key
9081         token of an assembly. This avoid the need to recalculate the token 
9082         (from the public key) in managed code.
9083
9084 2004-10-21  Chris Toshok  <toshok@ximian.com>
9085
9086         * debug-helpers.c (append_class_name): argh, revert last patch.
9087         
9088 2004-10-21  Chris Toshok  <toshok@ximian.com>
9089
9090         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9091         not '/', so that it matches what the debugger uses to look up
9092         methods.
9093
9094 2004-10-21  Martin Baulig  <martin@ximian.com>
9095
9096         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9097         public method; this is called each time an exception is thrown and
9098         allows the debugger to use exception catch points.
9099
9100 2004-10-21  Martin Baulig  <martin@ximian.com>
9101
9102         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9103         the stack pointer and the exception object in some struct and pass
9104         that to the debugger.
9105
9106 2004-10-21  Chris Toshok  <toshok@ximian.com>
9107
9108         * mono-debug-debugger.c (do_write_class): add instance/static
9109         event support.  We don't expose "raise" or "other" yet.
9110         (event_is_static): new method.
9111
9112 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9113
9114         * mono-debug-debugger.c
9115         (mono_debugger_handle_exception): Remove
9116         bogus return value for fussy compilers.
9117
9118 2004-10-20  Martin Baulig  <martin@ximian.com>
9119
9120         * mono-debug-debugger.c
9121         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9122         (mono_debugger_handled_exception): Likewise.
9123
9124 2004-10-20  Martin Baulig  <martin@ximian.com>
9125
9126         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9127         MONO_DEBUGGER_EVENT_EXCEPTION.
9128
9129         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9130         public function to send the debugger a notification for an
9131         exception and inform it about a catch/finally clause.
9132
9133 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9134
9135         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9136         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9137         fix 2.95 build. 
9138
9139         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9140
9141 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9142
9143         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9144         marshalled as [In,Out]. Fixes #58325.
9145
9146 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9147
9148         * reflection.c (mono_method_body_get_object): Implement some fields.
9149
9150 2004-10-12  Martin Baulig  <martin@ximian.com>
9151
9152         * reflection.c (mono_reflection_bind_generic_parameters): Small
9153         fix, correctly retrieve our parent from a generic instance.
9154
9155 2004-10-12  Martin Baulig  <martin@ximian.com>
9156
9157         * metadata.c (mono_metadata_generic_param_equal): We always have
9158         an owner.
9159
9160         * class.c
9161         (mono_class_from_generic_parameter): We need to have an owner.
9162         (my_mono_class_from_generic_parameter): Likewise.
9163
9164         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9165         mono_reflection_create_generic_class() and added a new
9166         mono_reflection_setup_generic_class().  
9167         (mono_reflection_initialize_generic_param): If we're a nested
9168         generic type and inherited from the containing class, set our
9169         owner to the outer class.
9170
9171 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9172
9173         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9174
9175         * reflection.c (mono_method_body_get_object): New function to create
9176         a MethodBody object.
9177
9178         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9179
9180 2004-10-11  Martin Baulig  <martin@ximian.com>
9181
9182         * metadata.c (_mono_metadata_type_equal): Renamed to
9183         do_mono_metadata_type_equal() and made static.
9184
9185 2004-10-11  Martin Baulig  <martin@ximian.com>
9186
9187         * appdomain.c: Bump corlib version number to 28.
9188
9189 2004-10-10  Martin Baulig  <martin@ximian.com>
9190
9191         * class-internals.h
9192         (MonoGenericInst): Added `MonoGenericContainer *container'.
9193         (MonoGenericMethod): Likewise.
9194         (MonoGenericContext): Likewise.
9195         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9196
9197         * metadata.c
9198         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9199         (do_mono_metadata_parse_generic_inst): Likewise.
9200         (mono_metadata_parse_type_full): New public method.  This is the actual
9201         mono_metadata_parse_type() implementation - with an additional
9202         `MonoGenericContainer *' argument.
9203         (mono_metadata_parse_array_full): Likewise.
9204         (mono_metadata_parse_signature_full): Likewise.
9205         (mono_metadata_parse_method_signature_full): Likewise.
9206         (mono_metadata_parse_mh_full): Likewise.
9207         (mono_type_create_from_typespec): Likewise.
9208         (mono_metadata_interfaces_from_typedef_full): New public method;
9209         this is similar to the other _full() methods, but we take a
9210         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9211         (mono_metadata_parse_generic_param): Take an additional
9212         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9213         from that container.
9214         (mono_metadata_generic_param_equal): New static method to compare
9215         two type parameters.
9216         (_mono_metadata_type_equal): New static method; takes an
9217         additional `gboolean signature_only' argument - if true, we don't
9218         compare the owners of generic parameters.
9219         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9220         with a TRUE argument - do a signature-only comparision.
9221
9222         * loader.c: Use the new _full() methods and pass the
9223         MonoGenericContainer to them.
9224
9225         * object-internals.h (MonoReflectionTypeBuilder): Added
9226         `MonoGenericContainer *generic_container' field.
9227         (MonoReflectionMethodBuilder): Likewise.
9228
9229 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9230
9231         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9232         case initial images of dynamic assemblies.
9233
9234         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9235
9236         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9237
9238         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9239         length of event->other array.
9240         (typebuilder_setup_events): Ditto.
9241
9242         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9243         'assembly_by_name' and add an 'assemblies' list.
9244
9245         * assembly.h assembly.c: Add a new search hook for determining whenever
9246         an assembly is already loaded. Use this instead of searching in the
9247         loaded_assemblies list.
9248
9249         * domain.c appdomain.c: Implement the new search hook so loaded 
9250         assemblies are now scoped by appdomain. Fixes #67727.
9251
9252 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9253
9254         * threads.c (mono_thread_attach): Initialize synch_lock field so
9255         mono_thread_detach works again.
9256
9257         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9258         'lib' too. Fixes #63130.
9259
9260 2004-10-06  Jackson Harper  <jackson@ximian.com>
9261
9262         * culture-info-tables.h: regenerated.
9263
9264 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9265
9266         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9267         implemented by other interfaces in the result. Fixes #65764.
9268         
9269         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9270         Handle unloadable modules without crashing.
9271
9272         * image.c (load_modules): Revert the previous patch since modules must
9273         have a fixed index inside the array.
9274         
9275         * image.c (load_modules): Don't include native modules in the modules
9276         array.
9277
9278 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9279
9280         * reflection.h: Add param_defaults field.
9281
9282         * reflection.c: Add support for parameter defaults in dynamic methods.
9283         Fixes #64595.
9284
9285         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9286         an empty string when a type has no namespace. Fixes #64230.
9287
9288 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9289
9290         * tabledefs.h: Added "internal" security actions to support non-CAS
9291         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9292         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9293
9294 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9295
9296         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9297         constructor of abstract class. Fixes #61689.
9298
9299 2004-10-04  Martin Baulig  <martin@ximian.com>
9300
9301         * class-internals.h (MonoGenericContainer): New type.
9302         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9303         `MonoGenericContainer *generic_container'.
9304         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9305         `MonoGenericContainer *generic_container'.
9306
9307         * metadata.c (mono_metadata_load_generic_params): Return a
9308         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9309         removed the `num' argument.
9310
9311 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9312
9313         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9314         for dynamic images.
9315
9316         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9317         machine fields.
9318
9319         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9320
9321         * reflection.c: Save pe_kind and machine values into the generated
9322         image file.
9323
9324         * appdomain.c: Bump corlib version number.
9325
9326         * object-internals.h: Reorganize layout of LocalBuilder.
9327
9328         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9329         New helper function.
9330
9331         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9332         created MonoType for dynamic types. Fixes #66180.
9333
9334 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9335
9336         * threadpool.c: the ares hashtable needs a critical section around it.
9337         this prevents some nasty segfaults
9338
9339 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9340
9341         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9342         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9343         bug 67324).
9344         
9345 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9346
9347         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9348         
9349 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9350
9351         * image.c: Always canonicalize image file names, to avoid loading
9352         the same assembly twice when referenced using a relative path.
9353
9354 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9355
9356         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9357
9358         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9359
9360         * marshal.c: Fix warnings.
9361
9362 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
9363
9364         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
9365         attempting to marshal the delegate_trampoline as the method_addr.
9366         This patch has a static hashtable of marshalled delegates so that 
9367         we can map delegate_trampoline addresses back to delegates.  This
9368         allows a delegate passed to managed code to be passed back into native
9369         code.  Fixes #67039
9370
9371 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9372
9373         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
9374
9375         * reflection.c (method_encode_code): Align method headers properly.
9376         Fixes #66025.
9377
9378 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9379
9380         * marshal.c: In the runtime invoke wrapper, reset the abort
9381         exception if it is cached. This avoids the automatic rethrowal of 
9382         the exception after the catch of the wrapper. Also check for pending
9383         interruptions before calling the managed method. This is done using
9384         the new method emit_thread_force_interrupt_checkpoint, since the
9385         normal checkpoint method is ignored when running the invoke wrapper.
9386         * object.c: If the abort exception is rethrown, set the abort_exc
9387         field of the thread, so it will be rethrown aftere every catch.
9388         * threadpool.c: Only run an interruption checkpoint if what has been
9389         requested is a stop of the thread (aborts will be ignored).
9390         * threads.c: By default, a thread will now never be interrumped while
9391         running the runtime invoke wrapper (this ensures that runtime_invoke
9392         will always return to the caller if an exception pointer is provided).
9393         There is a new special method mono_thread_force_interruption_checkpoint()
9394         to force an interruption checkpoint even if running a protected
9395         wrapper, which is used by the same runtime invoke wrapper to do a check
9396         at a safe point.
9397
9398 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9399
9400         * object.c, object-internals.h: Implemented mono_release_type_locks,
9401         which releases the cctor locks held by a thread.
9402         * threads.c, threads.h: In thread_cleanup, release cctor locks held
9403         by a thread. Added mono_thread_exit() method to be used to safely stop
9404         a thread.
9405
9406 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9407
9408         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9409         Move null check before dereference.  Avoid indexing beyond the end
9410         of the 'modules' array.
9411
9412 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9413
9414         * metadata-internals.h (MonoImage): Add module_count field.
9415         * image.c (load_modules): Set image->module_count.
9416         (mono_image_load_file_for_image): Use image->module_count.
9417         * reflection.c (mono_image_load_module): Append to image->modules array 
9418         of dynamic assembly.
9419         (mono_module_get_object): Fix loop to actually increment index.
9420         Use image->module_count.
9421         * assembly.c (mono_assembly_load_references): Use image->module_count.
9422         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
9423         Likewise.
9424
9425 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9426
9427         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
9428         Avoid assert on generic types.
9429
9430 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
9431
9432         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
9433
9434         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
9435
9436         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
9437         function to convert a MarshalSpec structure to its managed counterpart.
9438
9439         * reflection.c: Fix warnings.
9440         
9441         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
9442         field.
9443
9444         * icall.c (mono_create_icall_signature): Fix build.
9445
9446 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
9447
9448         * icall.c: Add MakePointType icall.
9449
9450         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
9451         warnings.
9452
9453 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9454
9455         * threadpool.c: reuse allocated slots in the queue.
9456
9457 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
9458
9459         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
9460
9461         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
9462
9463         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
9464         previous change.
9465
9466         * tabledefs.h: Add constants for pinvoke attributes BestFit and
9467         ThrowOnUnmappableChar.
9468
9469         * icall.c (ves_icall_Type_GetPacking): New icall.
9470
9471 2004-09-24  Martin Baulig  <martin@ximian.com>
9472
9473         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
9474
9475 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9476
9477         * appdomain.c:
9478         (mono_domain_set): allow setting a domain that is being unloaded.
9479         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
9480         being unloaded.
9481
9482 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9483
9484         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
9485         the GetCustomAttributes icall.
9486
9487 2004-09-23  Martin Baulig  <martin@ximian.com>
9488
9489         * object-internals.h (MonoReflectionGenericParam): Replaced
9490         'has_ctor_constraint', `has_reference_type' and `has_value_type'
9491         with `guint32 attrs'.
9492
9493 2004-09-23  Martin Baulig  <martin@ximian.com>
9494
9495         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
9496
9497 2004-09-23  Martin Baulig  <martin@ximian.com>
9498
9499         * object-internals.h (GenericParameterAttributes): New enum.
9500
9501 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9502
9503         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9504         
9505         * class.c (init_events): Fill out event->other field.
9506
9507         * class.c: Fix warnings.
9508
9509         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9510
9511 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9512
9513         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9514         walk which doesn't supply the IL offset.
9515
9516 2004-09-22  Martin Baulig  <martin@ximian.com>
9517
9518         * reflection.c (mono_reflection_setup_internal_class): If we're
9519         System.ValueType, System.Object or System.Enum, set
9520         `klass->instance_size' and create the vtable.
9521         (mono_reflection_create_internal_class): If we're an enum type,
9522         get the base class from our current corlib.
9523
9524 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9525
9526         * reflection.h (MonoResolveTokenError): New type.
9527
9528         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9529         icall.
9530
9531         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9532
9533 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9534
9535         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9536         Support also calling constructors, but only for already allocated objects.
9537
9538 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9539
9540         * reflection.c (type_get_qualified_name): If the klass is null
9541         return the typename to avoid a NullRefEx.
9542         (encode_cattr_value): Get the qualified name of the boxed type,
9543         not the underlying enumtype.  Fixes #62984.
9544
9545 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9546
9547         * marshal.c: Fix problems with previous checkin.
9548
9549 2004-09-21    <vargaz@freemail.hu>
9550
9551         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9552         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9553
9554         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9555
9556 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9557
9558         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9559         should only return a type for pointers, arrays, and passbyref types.
9560         Fixes bug #63841.
9561
9562 2004-09-21  Martin Baulig  <martin@ximian.com>
9563
9564         * domain.c (mono_debugger_check_runtime_version): New public
9565         function.
9566
9567         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9568
9569 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9570
9571         * reflection.c: Added missing sort to the declarative security 
9572         attributes table. MS implementation stops seeing the attributes if the
9573         token number regress in the table (as shown by ildasm and permview).
9574
9575 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9576
9577         * object-internals.h (MonoReflectionModule): Add 'token' field.
9578         
9579         * reflection.c (mono_reflection_get_token): Add support for Module
9580         and Assembly.
9581         (mono_module_get_object): Set 'token' field.
9582         (mono_module_file_get_object): Set 'token' field.
9583
9584         * icall.c: Add new Assembly and Module icalls.
9585
9586         * appdomain.c: Bump corlib version.
9587
9588 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9589
9590         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9591         tokens of metadata objects.
9592
9593         * reflection.h reflection.c (mono_reflection_get_token): New function
9594         to obtain the token of a metadata object.
9595
9596         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9597
9598 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9599
9600         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9601         
9602         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9603
9604 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9605
9606         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9607         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9608         AssemblyBuilder to access the permissions set in the class lib.
9609         * reflection.c: Added security attributes encoding step in 
9610         mono_image_build_metadata.
9611         * tabledefs.h: Added new security actions defined in 2.0:
9612         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9613
9614 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9615
9616         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9617         macro parameter.
9618
9619 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9620  
9621         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9622           finalized. There where random SIGSEVs at program termination, when
9623           an object being finalized was trying to do a string comparison and
9624           the current culture was already finalized.
9625  
9626 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9627
9628         * threads.c: call thread_cleanup before finishing the thread if we get
9629         there.
9630
9631 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9632
9633         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9634         assemblies from the parent. Fixes #65665.
9635
9636 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9637
9638         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9639         modifiers.
9640
9641 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9642
9643         * reflection.h: add prototype for mono_get_dbnull_object
9644         * reflection.c: add prototypes for get_default_param_value_blobs 
9645         and mono_get_object_from_blob for fussier compilers
9646
9647 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9648  
9649         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9650         false deadlock checks in class initialization.
9651  
9652 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9653
9654         * image.c (mono_image_addref): Fix comment.
9655
9656         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9657         possible.
9658
9659 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9660
9661         * reflection.c (mono_param_get_objects): Modified to return
9662         ParameterInfo.DefaultValue object.
9663
9664         (get_default_param_value_blobs):
9665         (mono_get_object_from_blob):
9666         (mono_get_dbnull_object): New helper routines. 
9667
9668         * object.c (mono_get_constant_value_from_blob): New helper routine
9669         carved out from get_default_field_value ()
9670
9671         * object-internals.h (mono_get_constant_value_from_blob): Added
9672         function declaration.
9673
9674 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9675
9676         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9677         referenced assemblies. Fixes #62135.
9678
9679         * exception.h exception.c (mono_get_exception_file_not_found2): New
9680         helper function.
9681
9682 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9683
9684         * class.h class.c: Add mono_type_get_underlying_type ().
9685
9686 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9687
9688         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9689         Fix GetTypes() to support dynamically created assemblies.
9690
9691 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9692
9693         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9694         
9695         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9696         previous patch.
9697
9698         * reflection.h reflection.c loader.c: Allow dynamic construction of
9699         pinvoke methods. Fixes #65571.
9700         
9701         * reflection.c (mono_reflection_get_type): Revert previous change since
9702         it causes regressions.
9703
9704 2004-09-08  Martin Baulig  <martin@ximian.com>
9705
9706         * class.c (class_compute_field_layout): Don't call
9707         mono_class_layout_fields() for open generic instances.
9708
9709 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9710         * threads.c appdomain.c: fix typo in GC macro
9711
9712 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9713
9714         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9715         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9716
9717 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9718
9719         * image.c (mono_image_close): Applied patch from 
9720         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9721         assembly is loaded multiple times from data.
9722         
9723         * image.c (mono_image_open): Fix warning.
9724
9725 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9726
9727         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9728         once. Fixes #58334.
9729         
9730         * reflection.c (mono_reflection_create_runtime_class): Initialize
9731         klass->nested_classes. Fixes #61224.
9732
9733 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9734
9735         * threads.c: sched_yield() on exit, to allow threads to quit.
9736
9737 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9738
9739         * object.c (mono_unhandled_exception): Remove leftover debug code.
9740
9741 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9742
9743         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9744
9745 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9746
9747         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9748         
9749         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9750
9751 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9752
9753         * marshal.c (emit_marshal_array): Null terminate string arrays.
9754         
9755         * marshal.c (raise_auto_layout_exception): Fix warning.
9756
9757         * reflection.c (mono_param_get_objects): Initialize the default value
9758         with DBNull.Value, not null. Fixes #62123.
9759
9760 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9761
9762         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9763         throw an exception with a cute explanation.
9764
9765 2004-09-06  Dick Porter  <dick@ximian.com>
9766
9767         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9768         Close the new process's thread handle, as we don't use it.  The
9769         handle stays around forever otherwise.
9770
9771 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9772
9773         * object.c (arith_overflow): Fix warning.
9774
9775         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9776         calling conventions in method refs. Fixes #65352.
9777
9778         * reflection.c: Fix warnings.
9779
9780 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9781
9782         * icall.c: Add a new icall for Array.Clear
9783
9784 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9785
9786         * object.c: When allocating an array, we have to throw
9787         an overflow exception if any of the lengths are < 0.
9788
9789 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9790
9791         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9792         properly. Also move implementation of string array marshalling to 
9793         managed code. Fixes #42316.
9794
9795 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9796
9797         * assembly.c: provide more information when loading an assembly fails.
9798
9799 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9800
9801         * filewatcher.c: don't expect the development fam package to be
9802         installed.
9803
9804 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9805
9806         * marshal.c: Make a copy of the signature cookie since it will be
9807         freed by the caller.
9808         
9809         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9810
9811         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9812
9813         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9814         marshal specs.
9815
9816         * marshal.c: More refactoring.
9817         
9818         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9819         smaller functions.
9820
9821 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9822
9823         * object.c: In mono_message_invoke, fill the output parameter array after
9824           calling the managed method (it was done before the call). This fixes
9825           bug #59299.
9826
9827 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9828
9829         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9830         as well.
9831
9832 2004-09-02  Martin Baulig  <martin@ximian.com>
9833
9834         * class.c (mono_class_instance_size): Don't allow generic type
9835         definitions or open generic instances.
9836         (mono_class_array_element_size): If we're a value type, call
9837         mono_class_instance_size() on the original class.
9838
9839         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9840         handle generic instances.
9841
9842         * mono-debug-debugger.c (write_type): Handle generic instances
9843         like classes.
9844
9845 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9846
9847         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9848         the allocation request fails. Fixes #65089.
9849
9850         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9851         
9852         * object.c (mono_runtime_free_method): New function to free a dynamic
9853         method.
9854
9855         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9856         delegate trampoline.
9857
9858         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9859         with hasthis as dynamic,
9860
9861         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9862
9863         * domain.c (mono_jit_info_table_remove): New function to remove an
9864         entry from the jit info table.
9865
9866         * class-internals.h (MonoMethod): Add 'dynamic' field.
9867
9868         * loader.c: Fix warnings.
9869
9870 2004-09-01  Martin Baulig  <martin@ximian.com>
9871
9872         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9873         instead of mono_debugger_lock() because the latter one is a no-op
9874         unless running in the debugger.
9875
9876 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9877
9878         * class.c (class_compute_field_layout): Classes with auto-layout or
9879         reference fields are not blittable.
9880         
9881 2004-09-01  Dick Porter  <dick@ximian.com>
9882
9883         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9884         mono_image_get_filename() to get the assembly location.
9885
9886         * icall.c:
9887         * metadata.h: Fix compile warnings
9888
9889 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9890
9891         * class.c (class_compute_field_layout): System.Object is blittable.
9892
9893         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9894         as in/out. Fixes #59909.
9895
9896 2004-09-01  Martin Baulig  <martin@ximian.com>
9897
9898         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9899         mono_metadata_generic_inst_is_valuetype() if we're a generic
9900         instance to check whether our underlying type is a reference type.
9901
9902 2004-09-01  Martin Baulig  <martin@ximian.com>
9903
9904         * metadata.c (mono_type_size): If we're a generic instance, call
9905         mono_class_value_size() for value types.
9906
9907 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9908
9909         * marshal.c: Implement more custom marshalling functionality. Fixes
9910         #64915.
9911
9912 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9913
9914         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9915
9916 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9917
9918         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9919
9920         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9921
9922         * icall.c: Fix some warnings.
9923
9924         * threads.c (abort_appdomain_thread): Fix unref errors.
9925         (mono_thread_current): Fix THREAD_DEBUG define.
9926
9927 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9928
9929         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9930
9931         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9932
9933 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9934
9935         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9936         string arrays.
9937
9938 2004-08-28  Martin Baulig  <martin@ximian.com>
9939
9940         * metadata.c
9941         (mono_metadata_generic_inst_is_valuetype): New public function.
9942
9943         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9944         mono_metadata_generic_inst_is_valuetype() if we're a generic
9945         instance to check whether our underlying type is a valuetype.
9946
9947 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9948
9949         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9950         #63768.
9951
9952 2004-08-25  Martin Baulig  <martin@ximian.com>
9953
9954         * loader.c (mono_get_method_from_token): Abstract methods can also
9955         be generic and thus have type parameters.
9956
9957         * metadata-internals.h
9958         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9959
9960         * reflection.c (mono_image_get_generic_param_info): Don't create a
9961         metadata row, just add an entry to the `gen_params' array.
9962         (build_compressed_metadata): Sort the `gen_params' array and then
9963         actually create the metadata.
9964
9965 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9966
9967         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9968
9969 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9970
9971         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9972
9973 2004-08-24  Martin Baulig  <martin@ximian.com>
9974
9975         * class.cs (mono_class_is_subclass_of): Like an interface, a
9976         generic instance also derives from System.Object.
9977
9978 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
9979
9980         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
9981         custom modifiers to be in any order. Fixes #61990.
9982
9983 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
9984
9985         * object.c: Register mono_object_new_fast icall.
9986         
9987         * object.c (mono_class_get_allocation_ftn): Return to calling
9988         mono_object_new_fast, since it seems faster to compute the object 
9989         size in unmanaged code than passing it as a parameter.
9990
9991         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
9992
9993         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
9994         this function with Boehm as the oom handler, so we don't have to check
9995         the result of GC_malloc.
9996
9997         * object.c: Remove checks for oom.
9998
9999         * object.h object.c (mono_class_get_allocation_ftn): New function to
10000         return the icall which can be used to allocate an instance of a given
10001         class. 
10002
10003         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10004
10005         * class-internals.h: Add 'enabled' field.
10006
10007 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10008
10009         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10010
10011 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10012         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10013         value 0x0010.
10014
10015 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10016
10017         * appdomain.c: use the Tls function for appdomain too,
10018         at Zoltan's request. Actually return in mono_context_get
10019
10020         * appdomain.c, profiler.c, threads.c: use __thread
10021
10022 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10023
10024         * appdomain.c threads.c: Call GC_CreateThread on windows.
10025
10026         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10027         multiple libraries since this don't work on windows.
10028
10029 2004-08-18  Martin Baulig  <martin@ximian.com>
10030
10031         * class-internals.h
10032         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10033         MonoMethodHeader.
10034
10035         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10036         MonoMethodNormal since we also need it for abstract and interface
10037         methods.
10038
10039         * reflection.c
10040         (build_compressed_metadata): Sort the GenericParam table.
10041         (mono_image_create_token): Added `gboolean create_methodspec'
10042         argument; this is false when generating a MethodImpl token.
10043         (reflection_methodbuilder_to_mono_method): Abstract and interface
10044         methods may also have generic parameters.
10045
10046 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10047
10048         * appdomain.c: thread local alloc
10049
10050 2004-08-17  Martin Baulig  <martin@ximian.com>
10051
10052         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10053
10054         * icall.c
10055         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10056         argument.
10057
10058         * class.c (mono_type_get_full_name): New public function.
10059         (mono_type_get_name): Don't include the type arguments.
10060
10061 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10062
10063         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10064         for inclusion into the mono executable.
10065
10066 2004-08-16  Martin Baulig  <martin@ximian.com>
10067
10068         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10069         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10070
10071 2004-08-14  Martin Baulig  <martin@ximian.com>
10072
10073         * class.c (dup_type): Also copy the `byref' field.
10074
10075 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10076
10077         * reflection.c (create_dynamic_mono_image): Revert the last change 
10078         since it breaks bootstrap.
10079
10080 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10081
10082         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10083
10084         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10085         not free them with g_free.
10086
10087 2004-08-11  Martin Baulig  <martin@ximian.com>
10088
10089         * reflection.c (mono_reflection_setup_internal_class): Also call
10090         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10091
10092 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10093
10094         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10095         called during default (first) AppDomain creation. Keep track of
10096         Evidence when loading assemblies.
10097
10098 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10099
10100         * opcodes.c, opcodes.h: reduce runtime relocations.
10101
10102 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10103
10104         * culture-info.h, locales.c: fixes and chages to sue the new
10105         optimized format of the locale data.
10106         * culture-info-tables.h: regenerated.
10107
10108 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10109         
10110         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10111
10112 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10113
10114         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10115         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10116         * domain-internals.h: icall declaration.
10117         * icall.c: icall registration.
10118         * object-internals.h: New fields in MonoAssembly for CAS.
10119
10120 2004-08-05  Duncan Mak  <duncan@ximian.com>
10121
10122         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10123         CEE_LDELEM_ANY.
10124
10125 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10126
10127         * reflection.c: fix to deal with object[] arrays in custom ctors
10128         (bug #62550).
10129
10130 2004-08-05  Martin Baulig  <martin@ximian.com>
10131
10132         * class.c (mono_class_array_element_size): Added support for
10133         generic instances and correctly handle "recursive" types.
10134
10135 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10136
10137         * assembly.c: Fix warnings.
10138
10139 2004-08-04  Martin Baulig  <martin@ximian.com>
10140
10141         * class.c
10142         (mono_type_get_name_recurse): Added `gboolean include_arity'
10143         argument specifying whether or not we should include the generic
10144         arity in the type name.
10145         (_mono_type_get_name): New static function.
10146         (mono_class_setup_vtable): If we're a generic instance, don't
10147         include the generic arity in the names of explicit method
10148         implementations.        
10149
10150 2004-08-03  Martin Baulig  <martin@ximian.com>
10151
10152         * class.c (mono_type_get_name_recurse): Enclose the generic type
10153         arguments in `<', '>'.
10154
10155 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10156
10157         * gc.c: make GC warning messages use the trace API, they are just
10158         noise to most of the users.
10159
10160 2004-08-03  Martin Baulig  <martin@ximian.com>
10161
10162         * debug-mono-symfile.c (read_string): Correctly read the string.
10163
10164 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10165
10166         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10167         
10168         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10169         icalls.
10170         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10171
10172 2004-07-30  Martin Baulig  <martin@ximian.com>
10173
10174         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10175         Reflect latest symbol writer changes.   
10176
10177 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10178
10179         * object.c: always create an object if null is passed
10180         to Invoke() where a valuetype is expected.
10181
10182 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10183
10184         * marshal.c (mono_marshal_init): make managed
10185         signatures match native ones better for 64bits.
10186
10187 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10188
10189         * appdomain.c: hack to build correctly the private bin path on windows.
10190         Fixes bug #61991.
10191
10192 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10193
10194         * assembly.c: Load mscorlib from the correct framework directory
10195           (mono/<version>/mscorlib.dll).
10196         * appdomain.h: Added prototypes for new functions.
10197         * internals.h: Added some prototypes.
10198         * domain.c: When initializing the runtime, get from the executable and
10199           the configuration files the runtime version that the app supports.
10200           Added support methods for reading app.exe.config. Added list of versions
10201           supported by the JIT. Added two new methods: mono_init_from_assembly,
10202           which initializes the runtime and determines the required version from
10203           the provided exe file, and mono_init_version, which initializes
10204           the runtime using the provided version.
10205         * icall.c: Get machine.config from version-specific directory.
10206         * reflection.c: When generating an image, embed the version number
10207           of the current runtime.
10208
10209 2004-07-28  Dick Porter  <dick@ximian.com>
10210
10211         * socket-io.c
10212         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10213         returned sockaddr size before creating the remote address object.
10214         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10215         61608.
10216
10217 2004-07-28  Dick Porter  <dick@ximian.com>
10218
10219         * locales.c (string_invariant_compare_char): Fix invariant char
10220         compares between upper and lower cases.  Fixes bug 61458.
10221
10222 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10223         
10224         * marshal.c: actually cache stelem.ref wrappers.
10225         
10226 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10227
10228         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10229         sections and remove the mono_cli_rva_map () function.
10230
10231 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10232
10233         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10234         by Geoff Norton (<gnorton@customerdna.com>).
10235
10236 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10237
10238         * class.c: fix class loads for pointer types (typeof(int) !=
10239         typeof(int*)).
10240
10241 2004-07-27  Martin Baulig  <martin@ximian.com>
10242
10243         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10244         reading the debugging information from an external ".mdb" file.
10245
10246 2004-07-24  Martin Baulig  <martin@ximian.com>
10247
10248         * reflection.c (mono_image_get_type_info): Only write a class
10249         layout entry if we actually have a size or a packing size.
10250
10251 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10252
10253         * reflection.c (type_get_fully_qualified_name): 
10254         insert cast to get type checking of ?: with non-gcc compilers
10255
10256 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10257
10258         * rand.c: use g_getenv for both lookups of
10259         MONO_EGD_SOCKET
10260
10261 2004-07-17  Martin Baulig  <martin@ximian.com>
10262
10263         * reflection.c (mono_reflection_bind_generic_method_parameters):
10264         Set `gmethod->reflection_info'.
10265
10266 2004-07-17  Martin Baulig  <martin@ximian.com>
10267
10268         * class.c (mono_class_create_from_typedef): Insert the newly
10269         created class into the hash table before computing the interfaces
10270         since we could be called recursively.
10271
10272 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10273
10274         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10275         function to implement stelem.ref in managed code
10276         * class-internals.h, debug-helpers.c: a new wrapper type
10277         for the above.
10278
10279 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10280
10281         * gc.c: allow GC handles to work even when no GC is compiled in.
10282         Fix part of bug #61134 (GetAddrOfPinnedObject).
10283
10284 2004-07-13  Peter Williams  <peter@newton.cx>
10285  
10286         * process.c (complete_path): Make sure we don't attempt to execute
10287         directories.
10288  
10289 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10290
10291         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10292           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10293           and will add/subtract the hour if needed
10294
10295 2004-07-12  Martin Baulig  <martin@ximian.com>
10296
10297         * reflection.c (mono_field_get_object): If we have
10298         `field->generic_info', take the attributes from
10299         `field->generic_info->generic_type'.    
10300
10301 2004-07-12  Martin Baulig  <martin@ximian.com>
10302
10303         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10304         This function must be called before initializing the runtime.
10305         (mono_debug_init_1): New function; call this after initializing
10306         the runtime, but before loading the assembly.  It tells the
10307         debugger to load corlib and the builtin types.
10308
10309         * mono-debug-debugger.c: Did some larger changes in the debugging
10310         code; support recursive class declarations, make sure we actually
10311         add all classes.
10312
10313 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10314
10315         * debug-helpers.c: undo my previous patch and fixed the real issue in
10316         ../mini/exceptions-x86.c
10317
10318 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10319
10320         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10321         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10322         called from other .cctors.
10323
10324 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10325
10326         * loader.c: Removed the mono_loader_wine_init hack now that we are
10327         doing a managed version of Windows.Forms.
10328
10329 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10330
10331         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10332         threadpool.c, threads.c: remove static data from rootset.
10333
10334 2004-07-09  Dick Porter  <dick@ximian.com>
10335
10336         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10337         Don't do any more processing if the matched length was 0.  It was
10338         increasing the size of the string before.  Fixes bug 61167.
10339
10340 2004-07-09  Dick Porter  <dick@ximian.com>
10341
10342         * socket-io.h:
10343         * socket-io.c
10344         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10345         Add support for SO_PEERCRED if its available.
10346
10347 2004-07-09  Peter Bartok <pbartok@novell.com>
10348         * loader.c: winelib.exe.so error message is now only displayed if
10349         MONO_DEBUG is set. To help us avoid questions when people are trying
10350         out the new Managed.Windows.Forms.
10351
10352 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10353
10354         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10355         for isinst and castclass wrappers.
10356
10357         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10358         to libmetadata from the JIT, so they could be used by the marshalling
10359         code and the interpreter.
10360
10361         * marshal.c: Register marshalling related JIT icalls here instead of
10362         in mini.c. Use CEE_MONO_ICALL instead of the family of 
10363         CEE_MONO_PROC<x> opcodes to call marshalling functions.
10364
10365         * metadata.h: Remove unneeded marshalling conversions.
10366
10367         * opcodes.c: Update for new opcodes.
10368         
10369 2004-07-08  Martin Baulig  <martin@ximian.com>
10370
10371         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
10372         (mono_debug_get_domain_data): Make this function static.
10373
10374 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10375
10376         * gc.c, object.h: add nice GC handle API for embedders.
10377
10378 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
10379
10380         * reflection.c: more changes for the new api
10381
10382         * object.c: When we reflect on a field w/ a constant value, it
10383         will not have a memory location, so we must access metadata. Also,
10384         allow easier reading of strings so that we can read them from
10385         the constant data.
10386
10387         * class.c (mono_class_layout_fields): no need for literal fields here.
10388
10389         * class-internals.h: api changes for const fields
10390
10391         * icall.c (ves_icall_get_enum_info): use new apis for const fields
10392
10393 2004-07-06  Martin Baulig  <martin@ximian.com>
10394
10395         * mono-debug.h: Increment version number to 44.
10396
10397         * mono-debug.c (mono_debug_add_wrapper): The second argument is
10398         now a gpointer, rewrote this whole method.
10399
10400         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
10401         function.  Add information about the wrapper in a new "misc table".
10402
10403         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
10404         for the new misc table.
10405
10406 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
10407
10408         * metadata-internals.h image.c: Add a cache for helper signatures.
10409
10410         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
10411
10412 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
10413
10414         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
10415         delegates from a delegate. Fixes #61033.
10416         
10417         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
10418         marshalling of stringbuilder arrays. Fixes #59900.
10419
10420 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
10421
10422         * icall.c: Add EnumBuilder:setup_enum_type icall.
10423
10424 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
10425
10426         * icall.c: Added a new icall for the property version of
10427         OffsetOfStringData.
10428
10429 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
10430
10431         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
10432         it has a constant size across platforms.
10433
10434         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
10435         stack trace.
10436
10437 2004-06-29  Martin Baulig  <martin@ximian.com>
10438
10439         * mono-debug.c (mono_debug_add_method): Protect the whole function
10440         in mono_debugger_lock(), not just parts of it.
10441
10442 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10443
10444         * reflection.c: make sure padding bytes in heaps are zeroed.
10445
10446 2004-06-24  David Waite  <mass@akuma.org>
10447
10448         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
10449         image.c, loader.c, locales.c, marshal.c, metadata.c,
10450         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
10451         string-icalls.c, threads.c: change to C90-style comments from C99 /
10452         C++ -style
10453
10454 2004-06-24  Dick Porter  <dick@ximian.com>
10455
10456         * threads.c
10457         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
10458         return createdNew.  Fixes bug 60412.
10459
10460         * threads-types.h: 
10461         * icall.c: Add createdNew parameter to CreateMutex icall
10462
10463 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10464
10465         * reflection.c, object-internals.h: save default value in params.
10466
10467 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10468
10469         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
10470         no need to build a new path combining that with the application base.
10471         Fixes bug #60442.
10472
10473 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
10474
10475         * reflection.c: fixed minor standard compliance issues.
10476
10477 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10478
10479         * reflection.c: fixed issue with encoding some custom attributes
10480         (arrays in properties and fields, bug #60411).
10481
10482 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10483
10484         * reflection.c: fix start address when copying the public key token.
10485
10486 2004-06-23  Martin Baulig  <martin@ximian.com>
10487
10488         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
10489         the `exc' object in a static object to put it into the GC's root set.
10490
10491 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
10492
10493         * reflection.c: make mono_reflection_setup_internal_class ()
10494         callable a second time to setup a new parent class.
10495
10496 2004-06-23  Dick Porter  <dick@ximian.com>
10497
10498         * threads.c: Check for WAIT_IO_COMPLETION return values.
10499
10500 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10501
10502         * appdomain.c: Removed the g_free on the public key token. Now copy 
10503         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10504         * assembly.c: Added public key token string value when loading 
10505         assemblies. Fix bug #60439.
10506         * icall.c: Added missing informations (like public key) in 
10507         GetReferencedAssemblies. Fix #60519.
10508         * image.h: Changed definition for public key token from const char*
10509         public_tok_value to guchar public_key_token [17];
10510         * reflection.c: Updated for changes to public key token.
10511
10512 2004-06-22  Lluis Sanchez Gual
10513
10514         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10515         for the field in base classes.
10516
10517 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10518
10519         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10520         mark headers as not supported, they are installed only for use by the
10521         debugger.
10522
10523 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10524
10525         * *.c, *.h: avoid namespace pollution in public headers.
10526
10527 2004-06-21  Martin Baulig  <martin@ximian.com>
10528
10529         * exception.c (mono_get_exception_security): It's in
10530         "System.Security", not in "System".
10531
10532         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10533         the exception classes.
10534
10535 2004-06-21  Martin Baulig  <martin@ximian.com>
10536
10537         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10538         Protect the exception object from being finalized.
10539
10540 2004-06-21  Martin Baulig  <martin@ximian.com>
10541
10542         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10543         public function.
10544
10545 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10546
10547         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10548         if it was not loaded before. Fix parts of #60439.
10549
10550 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10551
10552         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10553         code that was broken since Ben's change: wrappers are now
10554         dependent on the method signature only again.
10555
10556 2004-06-21  Martin Baulig  <martin@ximian.com>
10557
10558         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10559         added interface support.
10560
10561 2004-06-21  Martin Baulig  <martin@ximian.com>
10562
10563         * class.c (mono_vtable_get_static_field_data): New public method.
10564
10565 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10566
10567         * filewatcher.c : Windows build fix to be compliant with API changes.
10568
10569 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10570
10571         * class.h, class.c: more accessors.
10572         * metadata.h, metadata.c: prepare for hiding MonoType and
10573         MonoMethodSignature: people should use the accessors from now on
10574         outside of the tree.
10575
10576 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10577
10578         * *.c, *.h: more API cleanups.
10579
10580 2004-06-18  Jackson Harper  <jackson@ximian.com>
10581
10582         * assembly.c: Trace loading assemblies.
10583         * loader.c: Trace loading native libraries.
10584         * mono-config.c: Trace loading config files.
10585         
10586 2004-06-18  Dick Porter  <dick@ximian.com>
10587
10588         * locales.c: Tell ICU the lengths of strings, it can cope with
10589         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10590
10591 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10592
10593         * image.c: swapped name/filename;
10594
10595 2004-06-18  Martin Baulig  <martin@ximian.com>
10596
10597         * mono-debug-debugger.c (write_class): Write the parent class at
10598         the end of the header.
10599
10600 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10601
10602         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10603
10604 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10605
10606         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10607         (bundle_obj): New conditional define.
10608         (BUILT_SOURCES): Remove.
10609         ($(bundle_srcs)): Make parallel-make safe.
10610         (libmonoruntime_la_LIBADD): Make unconditional.
10611         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10612         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10613
10614 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10615
10616         * culture-info-tables.h: It was inconsistent with the latest
10617           supp info files.
10618
10619 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10620
10621         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10622         be loaded.
10623
10624         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10625         with gcc 2.95.
10626
10627 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10628
10629         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10630         cleaned up public header threads.h.
10631
10632 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10633
10634         * Makefile.am, *.c, *.h: more API cleanups.
10635
10636 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10637
10638         * Makefile.am: removed monosn from compilation.
10639         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10640         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10641         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10642         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10643         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10644         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10645
10646 2004-06-15  Jackson Harper  <jackson@ximian.com>
10647
10648         * assembly.c: Make locales lower case when searching the GAC for
10649         assemblies. gacutil will always make locales lowercase when
10650         installing so this effectively makes them case insensitive.
10651         
10652 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10653
10654         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10655         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10656           parameter which allows to choose whether the wait can be interrupted or 
10657           not. Also added the method mono_monitor_enter(), which locks the monitor
10658           using an infinite wait and without allowing interruption.
10659           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10660           interrupted.
10661         * object.h: Added new fields in MonoThread. suspend_event holds the event
10662           used to susped/resume the thread. synch_lock is the lock object to use for
10663           modifying the thread state.
10664         * threads.c: Use the new synch_lock object for locking, instead of "this",
10665           which can generate deadlocks.
10666           Moved thread state change in Thread.Sleep and Thread.Join from managed
10667           to unmanaged code. This avoids a deadlock when the thread was suspended
10668           just after acquiring the thread lock.
10669           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10670           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10671           which is not fully implemented in the io-layer.
10672         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10673
10674 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10675
10676         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10677         threads-types.h: more API cleanups.
10678
10679 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10680
10681         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10682         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10683         threadpool.c, threads.c: first pass at the exported API cleanup.
10684
10685 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10686
10687         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10688
10689 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10690
10691         * icall.c: added internalGetHome.
10692
10693 2004-06-14  Dick Porter  <dick@ximian.com>
10694
10695         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10696         possible to return successfully when '.' or '..' were the only
10697         entries in a directory, but were skipped.  The MonoIOStat was not
10698         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10699         Fixes bug 59574.
10700
10701 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10702
10703         * reflection.c: make binaries run on .Net 1.1 by default.
10704
10705 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10706
10707         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10708
10709 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10710
10711         * marshal.c: keep track of struct size with explicit layout
10712         (bug #59979).
10713
10714 2004-06-12  Martin Baulig  <martin@ximian.com>
10715
10716         * mono-debug-debugger.c: Comment out a debugging g_message().
10717
10718 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10719
10720         * reflection.c, reflection.h: do not free custom attrs that are cached.
10721         * icall.c: use braces to make code clearer.
10722
10723 2004-06-11  Martin Baulig  <martin@ximian.com>
10724
10725         * class.h (MonoInflatedField): New type.
10726         (MonoClassField): Replaced `MonoType *generic_type' with
10727         `MonoInflatedField *generic_info'.
10728
10729         * icall.c
10730         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10731
10732 2004-06-11  Martin Baulig  <martin@ximian.com>
10733
10734         * reflection.c (mono_image_create_method_token): Correctly encode
10735         varargs methods.
10736
10737 2004-06-11  Martin Baulig  <martin@ximian.com>
10738
10739         * metadata.c (mono_metadata_parse_method_signature): When parsing
10740         a MethodDef which has VarArgs, also set sentinelpos if we don't
10741         have any parameters.
10742
10743 2004-06-11  Martin Baulig  <martin@ximian.com>
10744
10745         * verify.c (mono_method_verify): In CEE_CALL, use
10746         mono_method_get_signature() to get the method's signature, unless
10747         we're a PInvoke method.
10748
10749 2004-06-10  Jackson Harper  <jackson@ximian.com>
10750
10751         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10752         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10753         logical name as the supplied path is just a prefix to the gac not
10754         the direct path to it.
10755         
10756 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10757
10758         * reflection.c: make the token for a created method match
10759         the token of the MethodBuilder it was created from
10760         (IKVM requires this behaviour now).
10761
10762 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10763
10764         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10765         reflection.c, socket-io.c: leak fixes.
10766
10767 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10768
10769         * icall.c: handle sentinel pos in vararg methods in position different
10770         from 0.
10771
10772 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10773
10774         * culture-info-tables.h: freshly generated.
10775
10776 2004-06-09  Martin Baulig  <martin@ximian.com>
10777
10778         * loader.c (mono_get_method_constrained): Call `mono_class_init
10779         (constrained_class)'.   
10780
10781 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10782
10783         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10784         any methods. Fixes #59629.
10785
10786 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10787
10788         * culture-info-tables.h: reflecting locale-builder updates.
10789
10790 2004-06-08  Dick Porter  <dick@ximian.com>
10791
10792         * object.h:
10793         * locales.c: Fixed compile warnings, including a real bug in
10794         CompareInfo_internal_compare.
10795         
10796 2004-06-08  Dick Porter  <dick@ximian.com>
10797
10798         * locales.c
10799         (ves_icall_System_Globalization_CompareInfo_internal_index):
10800         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10801         Double-check the resuls of usearches, because ICU currently
10802         ignores most of the collator settings here.  Fixes bug 59720.
10803         
10804 2004-06-08  Dick Porter  <dick@ximian.com>
10805
10806         * locales.c
10807         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10808         Fix memory leak and segfault-causing typo.  No idea how this one
10809         lasted so long without being noticed.
10810
10811 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10812
10813         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10814         any methods. Fixes #59629.
10815
10816 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10817
10818         * assembly.c:
10819         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10820         own the critical section before). Removed dead code (that's done
10821         in the preload hook).
10822
10823         (mono_assembly_load_with_partial_name): call the preload hook.
10824
10825 2004-06-08  Martin Baulig  <martin@ximian.com>
10826
10827         * metadata.c (mono_metadata_signature_alloc): Default
10828         `sentinelpos' to -1.
10829
10830         * reflection.c (mono_image_get_array_token): Likewise.
10831
10832 2004-06-08  Martin Baulig  <martin@ximian.com>
10833
10834         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10835
10836         * metadata.c (mono_metadata_parse_method_signature): When parsing
10837         a MethodDef which has VarArgs, set sentinelpos.
10838
10839         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10840         `gint16' since we're using -1 for non-varargs methods.
10841
10842         * reflection.c
10843         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10844         (method_encode_signature): Added varargs support.
10845         (method_builder_encode_signature): Likewise.
10846         (mono_image_get_varargs_method_token): New static method.
10847         (mono_image_create_method_token): New public method; this is
10848         called via an icall instead of mono_image_create_token() when
10849         calling a varargs method.       
10850
10851 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10852
10853         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10854
10855 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10856
10857         * culture-info-tables.h : Reflecting the latest locale-builder that
10858           fixed empty array representation ({} to {0}).
10859
10860 2004-06-07  Jackson Harper  <jackson@ximian.com>
10861
10862         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10863         looking up extra gac paths. This allows MONO_GAC_PATH to act
10864         exactly like a prefix.
10865         
10866 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10867
10868         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10869         type name before modifying it. Fixes #59405.
10870
10871 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10872
10873         * culture-info.h: added fields for "all datetime patterns".
10874         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10875           _construct_datetime_format ()): fill xxx_patterns fields.
10876         * object.h: added fields for "all datetime patterns" to
10877           MonoDateTimeFormatInfo.
10878         * culture-info-tables.h: reflecting locale-builder updates.
10879
10880 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10881
10882         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10883         the event has no add and remove methods. Fixes #59629.
10884
10885 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10886
10887         * object.c: Fixed possible integer overflow when allocating large
10888         strings.
10889
10890 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10891
10892         * culture-info-tables.h: reflecting locale-builder updates.
10893
10894 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10895
10896         * culture-info-tables.h: reflecting locale-builder updates.
10897
10898 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10899
10900         * culture-info-tables.h: reflecting locale-builder updates.
10901
10902 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10903
10904         * threads.c: Made Thread.Sleep abortable.
10905
10906 2004-06-02  Martin Baulig  <martin@ximian.com>
10907
10908         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10909
10910         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10911
10912 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10913
10914         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10915
10916 2004-05-30  Jackson Harper  <jackson@ximian.com>
10917
10918         * reflection.c: Do not hardcode assembly versions or public key
10919         tokens anymore. All of this except the corlib section was dead
10920         code anyways.
10921         
10922 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10923
10924         * object.c (mono_runtime_invoke_array): Automatically create boxed
10925         objects for byref valuetypes if needed. Fixes #59300.
10926         
10927         * object.c (mono_method_return_message_restore): Handle 
10928         MONO_TYPE_OBJECT as well.
10929
10930 2004-05-28  Jackson Harper  <jackson@ximian.com>
10931
10932         * reflection.c: The modified type encoding was causing build
10933         problems. Reverted for now.
10934         
10935 2004-05-28  Jackson Harper  <jackson@ximian.com>
10936
10937         * reflection.c/h: Take an assembly ref so that we dont create
10938         fully qualified names when encoding types in the same assembly as
10939         the custom attribute being emitted.
10940         * appdomain.c: Increment version number.
10941         
10942 2004-05-26  Duncan Mak  <duncan@ximian.com>
10943
10944         * icall.c
10945         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10946         Set the full version number (major, minor, build, revision).
10947
10948 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10949
10950         * marshal.c (emit_struct_conv): increment src/dst after blit
10951         (mono_marshal_get_managed_wrapper,
10952         mono_marshal_get_native_wrapper): make sure we have marshalling
10953         info before marshalling params (info computation affects
10954         blittable)
10955
10956         * class.c (class_compute_field_layout): correctly deal with
10957         blittable
10958         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10959         value types (as per what windows dows by default)
10960         (mono_class_setup_mono_type): System.ValueType is blittable
10961         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10962         blittable
10963
10964         * marshal.c (mono_marshal_load_type_info): flag types  as
10965         non-blittable if the native layout doesn't match the managed
10966         layout
10967
10968 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10969
10970         * appdomain.c: don't add stuff in the private search path that is
10971         above the application base. If application base is not set, there's
10972         no private search path.
10973
10974 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
10975
10976         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
10977         byref struct arguments in native->managed marshalling.
10978
10979 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
10980
10981         * marshal.c (mono_marshal_get_runtime_invoke): correctly
10982         cache methods using signature (special case for methods
10983         that are value type or string class)
10984         
10985         * image.c (mono_image_close): clean up allocated GSList's
10986         in runtime_invoke_cache.
10987
10988 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10989
10990         * mono-config.c: set the correct path for mono_cfg_dir on windows when
10991         there's no MONO_CFG_DIR environment variable defined.
10992
10993 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10994
10995         * threads.c: windows version must be >= 0x0500 to include OpenThread.
10996
10997 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
10998
10999         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11000           is interrumped.
11001         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11002           before waiting for it, and call CloseHandle after the wait to unref it.
11003           This will make sure that handles are not disposed too early.
11004
11005 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11006
11007         * appdomain.c:
11008         * appdomain.h:
11009         * icall.c: removed
11010         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11011         needed now.
11012
11013         * object.c: se the application_base only for the domain that runs
11014         Main. Fixes bug #59216,
11015
11016 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11017
11018         * appdomain.c:
11019         * object.c: only the domain in which Main is run have
11020         SetupInformation.ConfigurationFile set, so moved a few lines from
11021         appdomain.c to object.c.
11022
11023 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11024
11025         * appdomain.c: we tried to load [name].(dll|exe), but according
11026         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11027         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11028         There's a test case attached to bug #58922.
11029
11030 2004-05-27  Dick Porter  <dick@ximian.com>
11031
11032         * icall.c:
11033         * file-io.c: Implemented icalls for locking and unlocking regions
11034         in a file.
11035         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11036         FALSE on error (fixes both compiler warning and real bug.)
11037
11038 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11039
11040         * culture-info-tables.h: reflecting locale-builder updates.
11041
11042           (Added missing ChangeLog entry for 05/26)
11043
11044 2004-05-27  Jackson Harper  <jackson@ximian.com>
11045
11046         * locales.c: Fix some cut and paste errors.
11047         
11048 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11049
11050         * mono-config.c: set the correct path for config. directory on windows.
11051
11052 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11053
11054         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11055           on win32.
11056
11057 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11058
11059         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11060         from pinvoke functions.
11061         
11062         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11063
11064 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11065
11066         * culture-info-tables.h: reflecting locale-builder updates.
11067
11068 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11069
11070         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11071         #59086.
11072
11073 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11074
11075         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11076         * icall.c: Modified icalls for RNG.
11077         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11078         Windows (CryptoAPI).
11079
11080 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11081
11082         * locales.c: Fix build.
11083
11084 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11085
11086         * culture-info-tables.h: reflecting locale-builder updates.
11087
11088 2004-05-25  Jackson Harper  <jackson@ximian.com>
11089
11090         * locales.c: When creating the current culture use the $LANGs
11091         specific culture. So DateTimeFormat and NumberFormat entries are created.
11092         
11093 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11094
11095         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11096         a char array as parameter.
11097
11098 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11099
11100         * image.c: In mono_image_open(), always use an absolute path name to
11101           look for already loaded images.
11102
11103 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11104
11105         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11106         missing in the windows build (like older cygwin include files).
11107
11108 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11109
11110         * icall.c: Fixed check for possible integer overflow in Buffer_
11111         BlockCopy icall. Replaced comments style // by /* */.
11112
11113 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11114
11115         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11116         
11117         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11118         check after MONO_VTADDR. Fixes pinvoke2.exe.
11119
11120         * marshal.h marshal.c metadata.h: Add beginnings of support for
11121         ftnptr -> delegate marshalling.
11122
11123 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11124
11125         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11126         * threads.c: Fix warnings.
11127
11128 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11129
11130         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11131         * icall.c: Registered icalls for Suspend and Resume.
11132         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11133           Thread.Abort.
11134         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11135         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11136         * process.c: Use WaitForSingleObjectEx.
11137         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11138           checkpoints.
11139         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11140           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11141           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11142           background threads. Added basic support for Abort in Windows.
11143           Start new threads using a managed delegate invoke wrapper. This wrapper
11144           has an interruption checkpoint that is needed since an interruption
11145           can be requested before the thread leaves the unmanaged code that starts 
11146           the thread.
11147         * marshal.c: Added interruption checkpoint after every native call, and
11148           also before managed calls for wrappers called from unmanaged code to
11149           go into managed code.
11150         * object.h: Added new field in MonoThread to keep track of interruption
11151           requests.
11152
11153 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11154
11155         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11156         calls.
11157
11158 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11159
11160         * appdomain.c:
11161         * assembly.c:
11162         * gc.c:
11163         * locales.c:
11164         * mono-config.c:
11165         * rand.c: getenv -> g_getenv (windows!)
11166
11167         * process.c: complete_path is also used on non-windows platforms.
11168
11169 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11170
11171         * icall.c: new signature for Process_Start.
11172
11173         * process.[ch]: new signature for Process_Start. If we're on windows
11174         and UseShellExecute is false, we have to search for the program by
11175         ourselves if we don't get a full path.
11176
11177 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11178
11179         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11180         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11181
11182 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11183
11184         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11185         Fixes bug #58373.
11186
11187 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11188
11189         * process.c: use double quotes to quote program name and arguments on
11190         windows. Fixes bug #58575.
11191
11192 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11193
11194         * file-io.c: don't return "." and ".." when using windows Find*File.
11195
11196 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11197
11198         * marshal.c: Don't pass wrappers to message init because method 
11199         addressed used to lookup metadata. part of remoting[2|3] fix.
11200
11201 2004-05-15  Jackson Harper  <jackson@ximian.com>
11202
11203         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11204         path is essentially the same as MONO_PATH except that it points to
11205         GACs instead of lib directories.
11206         * loader.h: The user gac is gone so we dont need function to
11207         enable/disable it.
11208         * mono-config.c: user gac option is now gone.
11209         
11210 2004-05-15  Jackson Harper  <jackson@ximian.com>
11211
11212         * culture-info.h: Make defines more consistent, add calendar data
11213         to the culture info table.
11214         * culture-info-tables.h: Add basic calendar data. Basically
11215         everyone gets default gregorian until all the data is
11216         updated.
11217         * locales.c: Use the new consistent defines. Set calendar data for
11218         culture info objects.
11219         * object.h: add a field for calendar data to CultureInfo
11220         
11221 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11222
11223         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11224         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11225         a signature.
11226         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11227         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11228         an extra param that is the pointer of the method to invoke. The IL for
11229         the invoke method is no longer specific to the method, but to the
11230         signature of the method. Thus, we can share the same code for multiple
11231         methods. This reduces the number of methods that have to be compiled.
11232
11233 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11234
11235         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11236
11237         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11238
11239         * icall.c: Optimize Buffer.BlockCopy.
11240
11241 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11242
11243         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11244         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11245         quote). Changed them to "MMMM yyyy".
11246
11247 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11248
11249         * rand.c
11250         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11251
11252 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11253
11254         * reflection.h: Updated after changes to managed structures.
11255
11256         * appdomain.c: Bump corlib version.
11257
11258 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11259
11260         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11261         windows.
11262
11263 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11264
11265         * Makefile.am: link to ../os/libmonoos.la on windows.
11266
11267         * assembly.c:
11268                 -If MONO_DEBUG, warn about non-existing directories in
11269                 MONO_PATH.
11270                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11271                 compile time variable.
11272                 -Removed init_default_path and call mono_set_rootdir from
11273                 libmonoos.a instead (windows only).
11274
11275         * assembly.h: declare mono_assembly_getrootdir().
11276
11277         * domain.c:
11278         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11279
11280         * loader.c: s/getenv/g_getenv/
11281
11282 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11283
11284         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11285
11286         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11287
11288         * metadata.h: Add new marshalling conversions.
11289
11290         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11291         function.
11292
11293         * reflection.c (mono_reflection_get_type): Lookup the type in all
11294         modules of a multi-module assembly. Fixes #58291.
11295
11296 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11297
11298         * threads.c: Before aborting a background, set the StopRequested
11299         state.  This avoids throwing the Abort exception.
11300         In mono_thread_manage, don't continue with the shutdown until all
11301         aborted threads have actually stopped.
11302
11303 2004-05-10  Jackson Harper  <jackson@ximian.com>
11304
11305         * locales.c: Remove the modifier from culture names.
11306         
11307 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11308
11309         * Makefile.am: monosn is not installed any more. It has been deprecated
11310         in favor of sn.
11311
11312 2004-05-07  Jackson Harper  <jackson@ximian.com>
11313
11314         * locales.c
11315         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11316         Fix array construction, add bailout if the length is 0.
11317
11318 2004-05-07  Dick Porter  <dick@ximian.com>
11319
11320         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11321         machine doesn't have a DNS entry.  Patch by Urs Muff
11322         (umuff@quark.com), fixes bug 57928.
11323
11324 2004-05-06  Jackson Harper  <jackson@ximian.com>
11325
11326         * reflection.c: Handle null PublicTokens properly. alloc mem for
11327         assembly names culture so we dont crash when freeing it.
11328         
11329 2004-05-06  Jackson Harper  <jackson@ximian.com>
11330
11331         * assembly.c: Check the usergac when loading with partial names.
11332         
11333 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11334
11335         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11336         does nothing for now (not required for Linux/Windows) but the class
11337         library can call it (and a newer or modified runtime could need it).
11338         * icall.c: Registred icall.
11339
11340 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11341
11342         * loader.c: prints a message on module loading error we set MONO_DEBUG
11343         environment variable.
11344
11345 2004-05-05  Jackson Harper  <jackson@ximian.com>
11346
11347         * appdomain.c: Handle PublicKeyToken=null properly.
11348         
11349 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11350
11351         * environment.c|h: Added icall ves_icall_System_Environment_
11352         GetOSVersionString to get the current OS version as a string.
11353         * icall.c: Registred icall.
11354
11355 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11356
11357         * object.c: in mono_object_get_virtual_method(), take into account that
11358         non-virtual methods don't have a slot in the vtable. Check needed when
11359         the object is a proxy.
11360
11361 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
11362
11363         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
11364         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
11365
11366         * object.c (mono_class_compute_gc_descriptor): Fix warning.
11367
11368         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
11369         passed when a valuetype is expected.
11370
11371         * object.c (mono_unhandled_exception): Only set the exit code if the
11372         exception happens in the main thread. Fixes thread5.exe.
11373
11374         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
11375         invalid names. Fixes #58047.
11376
11377 2004-05-03  Jackson Harper  <jackson@ximian.com>
11378
11379         * assembly.c: This line was committed accidently and is unneeded.
11380         
11381 2004-05-03  Jackson Harper  <jackson@ximian.com>
11382
11383         * icall.c: Add new icall for Assembly::LoadWithPartialName
11384         * assembly.c/.h: new function that probes the GAC to load partial
11385         assembly names by Paolo Molaro.
11386         
11387 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11388
11389         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
11390         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
11391         (type_get_fully_qualified_name): Added PublicKeyToken when building a
11392         full type name.
11393
11394 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11395
11396         * appdomain.c: fixed check for 'neutral' culture and removed warning.
11397         * reflection.c: fix bug when parsing a full type name and Version is not
11398         the last thing in the string.
11399
11400 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
11401
11402         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
11403         crashes when it is freed.
11404
11405 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11406
11407         * assembly.c: print the compat warning to stderr.
11408
11409 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
11410
11411         * assembly.c (mono_assembly_load_references): Add a compatibility
11412         hack to run old applications that might be still referencing the
11413         3300-based assemblies, only do this for System.xxx.
11414
11415 2004-05-01  Jackson Harper  <jackson@ximian.com>
11416
11417         * appdomain.c: If the culture is neutral we set it to "".
11418         
11419 2004-04-29  Jackson Harper  <jackson@ximian.com>
11420
11421         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
11422
11423 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
11424  
11425         * string-icalls.c: added low overhead function for copying chars
11426         * icall.c: added needed icall for the above function
11427  
11428 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11429
11430         * icall.c: fix return value of get_global_assembly_cache.  Implemented
11431         Environment.GetLogicalDrives.
11432
11433 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
11434
11435         * rand.c: try and talk to egd or prngd
11436         for random bytes if opening devices fail.
11437
11438 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
11439
11440         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
11441         alignment for the type using the native alignment of its members 
11442         instead of using klass->min_align.
11443
11444         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
11445
11446 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11447
11448         * file-io.c:
11449         * socket-io.c: added check for sys/aio.h.
11450
11451 2004-04-28  Dick Porter  <dick@ximian.com>
11452
11453         * threads.c: Don't abort a thread thats already aborting, when
11454         terminating everything.
11455
11456 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11457
11458         * icall.c: added 2 new async calls for Socket.
11459
11460         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
11461         IO on *nix systems.
11462
11463         * threadpool.c: removed unused variable.
11464
11465 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
11466
11467         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
11468
11469 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11470
11471         * locales.c: put back string_invariant_tolower () and
11472         string_invariant_toupper ().
11473
11474 2004-04-26 David Waite <mass@akuma.org>
11475
11476         * file-io.h:
11477         * socket-io.h:
11478         * threads.h:
11479         * unicode.h: remove comma from end of enumeration declarations
11480
11481 2004-04-26 David Waite <mass@akuma.org>
11482
11483         * debug-mono-symfile.h:
11484         * decimal.c:
11485         * mono_debug.h:
11486         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
11487
11488
11489 2004-04-26  Jackson Harper  <jackson@ximian.com>
11490
11491         * appdomain.c: Increment version number.
11492         
11493 2004-04-26  Jackson Harper  <jackson@ximian.com>
11494
11495         * appdomain.c: Set assembly references public token value when
11496         PublicKeyToken is specified, not the hash_value. Free public token
11497         values when free assembly name data. Previously the public key
11498         token was hex decoded, however we are using hex encoded public key
11499         tokens, so this is not neccasary.
11500         * assembly.c: Lookup assemblies in the gac if their public token
11501         value is set. Add function to allow enabling user gac
11502         lookups. Specify whether or not the assembly was loaded from the
11503         GAC. Compare full assembly names when checking the cache for
11504         assemblies (Temporarily disabled see comment in code). Remove
11505         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11506         specifies trace-loader they get extra info to stdout on the
11507         loading of assemblies.
11508         * image.h: Add a field for an assembly references public token
11509         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11510         whether an assembly has been loaded from the GAC.
11511         * image.c: Remove a corlib -> mscorlib name mapping.
11512         * loader.h: Add function to enable/disable the user gac.
11513         * mono-config.c: Check if the usergac is enabled in the config
11514         file.
11515         * icall.c: New icall to determine whether or not an assembly has
11516         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11517         * tabldefs.h: Add constant for assemblyref flag that specifies a
11518         full public key is used instead of a public token.
11519         * reflection.c: Remove mscorlib -> corlib mappings. Set
11520         PublicTokenValue instead of hash value. This value is a hex
11521         string so it does not need to be expanded.
11522
11523 2004-04-26  Martin Baulig  <martin@ximian.com>
11524
11525         * mono-debug-debugger.c (mono_debugger_initialize): Set
11526         `mono_debugger_initialized' before calling mono_debug_lock().
11527
11528 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11529
11530         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11531           InternalToUpper/InternalToLower.
11532         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11533           removed invariant culture shortcut.  This is now done in managed code.
11534         * locales.c: (string_invariant_toupper/tolower) removed.
11535
11536 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11537
11538         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11539         Added Poll internal call.
11540
11541         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11542         call for Poll. Select was too heavy for polling a single socket.
11543
11544         * threadpool.[ch]: added mono_threadpool_cleanup.
11545         * threads.c: use it. Don't use Thread_Abort on windows.
11546
11547 2004-04-23  Martin Baulig  <martin@ximian.com>
11548
11549         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11550
11551 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11552
11553         * icall.c: Registred new icalls for key pair protection and added an
11554         icall for Environment.GetFolderPath on Windows.
11555         * security.c|h: Added new icalls for key pair protection.
11556
11557 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11558
11559         * socket-io.c: don't display the non-supported family warning for known
11560         families. Now this is not displayed on windows when checking support
11561         for IPv4/IPv6.
11562
11563 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11564
11565         * class.c: don't display the layout warning for static fields.
11566
11567 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11568
11569         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11570         * locales.c, locales.h: Added new icalls for culture-specific
11571         Char.ToLower and Char.ToUpper.
11572
11573 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11574
11575         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11576         by David Waite.
11577
11578 2004-04-20  Martin Baulig  <martin@ximian.com>
11579
11580         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11581         of the type name before passing it to mono_reflection_type_from_name().
11582
11583 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11584
11585         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11586         encodings here. Fixes #56965.
11587
11588 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11589
11590         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11591         fix test on strstr result not that I can see anything that
11592         relies on the result.
11593
11594 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11595
11596         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11597         Fixes #57081.
11598
11599         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11600
11601         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11602         function to determine which marshalling to use for strings. Fixes
11603         #56965.
11604
11605         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11606
11607         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11608
11609 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11610
11611         * icall.c: #include mono-config.h
11612
11613 2004-04-15  Jackson Harper  <jackson@ximian.com>
11614
11615         * culture-info-tables.h: Fix date formats for en-US culture.
11616         
11617 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11618
11619         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11620         ThreadPool.SetMinThreads.
11621         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11622         ThreadPool.SetMinThreads.
11623
11624 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11625
11626         * mono-config.c: also load the .config file in the directory
11627         where the assembly was found.
11628
11629 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11630
11631         * assembly.c: load per-assembly config files.
11632         * icall.c: decrapified code to get the config dir and moved to
11633         mono-config.c.
11634         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11635         per-assembly config files. When doing a dll map lookup give precedence
11636         to the per-assembly data.
11637
11638 2004-04-14  Martin Baulig  <martin@ximian.com>
11639
11640         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11641         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11642         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11643
11644         * mono-debugger-debugger.c: While the debugger is locked, remember
11645         whether the symbol tables have changes and send one single
11646         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11647
11648 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11649
11650         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11651
11652         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11653         function.
11654
11655         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11656         account when marshalling string arrays. Fixes #56965.
11657
11658 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11659
11660         * icall.c: Add new icalls mapping for security.
11661         * security.c|h: Add internal calls for WindowsIdentity,
11662         WindowsImpersonationContext and WindowsPrincipal.
11663
11664 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11665
11666         * class.c: Added comment to ensure the System.MonoDummy class
11667         is removed when no longer necessary
11668
11669 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11670
11671         * appdomain.c: Pass arguments to the bootstraping exceptions to
11672         minimize JITed methods at boot
11673
11674         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11675         second string to be null.
11676
11677         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11678         Change the protocol to minimize the JIT methods at startup.  Now
11679         it Returns the internal codepage, if the value of "int_code_page"
11680         is 1 at entry, and we can not compute a suitable code page
11681         number, returns the code page as a string.
11682
11683 2004-04-13  Jackson Harper  <jackson@ximian.com>
11684
11685         * culture-info-tables.h: Fix number of decimal digits for all
11686         english locales.
11687
11688 2004-04-13  Jackson Harper  <jackson@ximian.com>
11689
11690         * icall.c: Clairfy out of sync error message. It is not always
11691         your corlib that is out of sync.
11692
11693 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11694
11695         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11696         properties when only the set accessor is overriden. Fixes #55874.
11697
11698 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11699
11700         * assembly.c (mono_assembly_load_references): Make this thread safe.
11701         Fixes #56327.
11702
11703 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11704
11705         * monosn.c: Add missing initialization calls.
11706
11707 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11708
11709         * locales.c:
11710         ves_icall_System_Globalization_CultureInfo_construct_number_format
11711         Fix g_assert so it compiles on fussier compilers re int/ptr
11712         mismatch
11713
11714 2004-04-08  Dick Porter  <dick@ximian.com>
11715
11716         * socket-io.h:
11717         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11718         53992.  Also rearrange the code so that the internal calls return
11719         an error value and exceptions are thrown from managed code.
11720
11721         * icall.c: Add type info to the socket icalls.
11722
11723 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11724
11725         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11726         owes me a beer.
11727
11728 2004-04-07  Martin Baulig  <martin@ximian.com>
11729
11730         * class.c (mono_class_from_generic_parameter): Don't default
11731         `klass->parent' to `mono_defaults.object_type'.
11732
11733 2004-04-07  Martin Baulig  <martin@ximian.com>
11734
11735         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11736         `param->pklass->reflection_info'.       
11737
11738 2004-04-07  Jackson Harper  <jackson@ximian.com>
11739
11740         * culture-info-tables.h: Fix date separator symbol.
11741         
11742 2004-04-07  Martin Baulig  <martin@ximian.com>
11743
11744         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11745         from System.Type to System.MonoType.
11746
11747 2004-04-07  Martin Baulig  <martin@ximian.com>
11748
11749         * reflection.h
11750         (MonoReflectionGenericParam): Added `has_reference_type' and
11751         `has_value_type' fields.
11752
11753         * reflection.c (mono_image_get_generic_param_info): Encode the
11754         correct flags if we have the `class' or `struct' constraint.
11755
11756 2004-04-07  Martin Baulig  <martin@ximian.com>
11757
11758         * reflection.h
11759         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11760
11761 2004-04-07  Jackson Harper  <jackson@ximian.com>
11762
11763         * appdomain.c: Revert extra patches, just wanted to bump the
11764         version number.
11765         
11766 2004-04-07  Jackson Harper  <jackson@ximian.com>
11767
11768         * Makefile.am: Add culture-info private headers.
11769         * icall.c: Add new icalls for contructing locales.
11770         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11771         * locales.h: Declare new culture info construction methods.
11772         * object.h: Add new fields used to avoid the CultureMap to
11773         MonoCultureInfo.
11774         * culture-info.h: Definition of structs used in the culture info
11775         tables.
11776         * culture-info-tables.h: Autogenerated tables that contain culture
11777         info data. This file was generated with the locale-builder tool.
11778         * appdomain.c: Incement corlib version number.
11779         
11780 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11781
11782         * appdomain.c: (mono_runtime_init) move mono_thread_init
11783         to before mono_object_new calls so critical sections
11784         are initialized before use.
11785
11786 2004-04-07  Martin Baulig  <martin@ximian.com>
11787
11788         * icall.c
11789         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11790         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11791         (ves_icall_MonoGenericParam_initialize): Removed.
11792         (monogenericparam_icalls): Removed.
11793         (generictypeparambuilder_icalls): Added new table for
11794         System.Reflection.Emit.GenericTypeParameterBuilder.
11795
11796         * reflection.c
11797         (mono_reflection_define_generic_parameter): Removed.
11798         (mono_reflection_initialize_generic_parameter): This is now called
11799         from GenericTypeParameterBuilder's .ctor.
11800
11801 2004-04-06  Martin Baulig  <martin@ximian.com>
11802
11803         * class.c (mono_class_init): Don't inflate nested classes in a
11804         generic instance.
11805         (mono_type_get_name_recurse): Include the generic arguments for
11806         generic instances and generic type declarations.
11807         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11808         (_mono_class_get_instantiation_name): Removed.
11809         (mono_class_create_generic): Always use `gklass->name' as our name.
11810
11811         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11812
11813         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11814         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11815         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11816         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11817         closed generic methods here.
11818
11819         * reflection.c
11820         (mono_reflection_generic_inst_get_nested_types): Removed.
11821         (inflate_mono_method): Copy the generic parameters from the
11822         MonoMethodHeader into out MonoGenericMethod.
11823
11824 2004-04-06  Martin Baulig  <martin@ximian.com>
11825
11826         * row-indexes.h
11827         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11828
11829         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11830
11831         * reflection.c (build_compressed_metadata): If we have any entries
11832         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11833         set the header version to 1.1.
11834
11835 2004-04-06  Martin Baulig  <martin@ximian.com>
11836
11837         * class.c (mono_class_init): If we're a generic instance,
11838         initialize our nested classes, too.
11839         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11840         suffix. 
11841
11842 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11843
11844         * process.c: quote the argument passed to the shell on windows.
11845
11846 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11847
11848         * threads.c (mono_alloc_special_static_data): Allow this to be
11849         called during startup.
11850
11851 2004-04-02  Martin Baulig  <martin@ximian.com>
11852
11853         * icall.c
11854         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11855
11856 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11857
11858         * icall.c: Fix build.
11859
11860 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11861
11862         * Makefile.am: Added security.c|h.
11863         * icall.c: Added icall for get_UserName;
11864         * security.c: New file for security related icalls. Added function
11865         get_UserName for System.Environment (fix #56144).
11866         * security.h: New. Header file for security.c
11867
11868 2004-04-02  Dick Porter  <dick@ximian.com>
11869
11870         * icall.c: Deleted the icalls that were obsoleted some time ago
11871         by the ICU string code, and which were mixed into the icall
11872         rearranging.  Fixes bug 55969.
11873
11874         * string-icalls.h: 
11875         * string-icalls.c: Deleted the code that those icalls reference.
11876
11877 2004-04-01  Martin Baulig  <martin@ximian.com>
11878
11879         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11880
11881         * class.c (mono_class_from_generic_parameter): Don't set 
11882         TYPE_ATTRIBUTE_INTERFACE.
11883         (my_mono_class_from_generic_parameter): Likewise.
11884
11885 2004-04-01  Martin Baulig  <martin@ximian.com>
11886
11887         * loader.c (find_method): Added an optional `MonoClass *ic'
11888         argument to search in a specific interface.
11889         (mono_get_method_constrained): New public function.
11890
11891 2004-04-01  Martin Baulig  <martin@ximian.com>
11892
11893         * reflection.c (mono_image_get_generic_field_token): Use the
11894         `handleref' cache here.
11895
11896 2004-04-01  Martin Baulig  <martin@ximian.com>
11897
11898         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11899
11900         * reflection.c (create_generic_typespec): Use the `typespec' hash
11901         here, not the `typeref' one.    
11902
11903 2004-04-01  Martin Baulig  <martin@ximian.com>
11904
11905         * class.c (mono_class_inflate_generic_type): Moved the
11906         functionality into a new static inflate_generic_type() which
11907         returns NULL if it didn't do anything.  Only increment the
11908         `mono_stats.inflated_type_count' if we actually inflated
11909         something.
11910         (mono_class_get_full): Check the classes type to see whether we
11911         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11912
11913 2004-04-01  Jackson Harper  <jackson@ximian.com>
11914
11915         * reflection.c: Set culture for assembly references.
11916         
11917 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11918
11919         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11920
11921 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11922
11923         * assembly.c:
11924         (do_mono_assembly_open): the critical section also covers
11925         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11926
11927 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11928
11929         * threads.c:
11930         (mono_manage_threads): abort the background threads when finishing.
11931         Fixes bug #47232.
11932
11933 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11934
11935         * gc.c: only close the done_event handle if there was no timeout.
11936         C-ified comments.
11937
11938 2004-03-30  Martin Baulig  <martin@ximian.com>
11939
11940         * icall.c (icall_entries): It's called "System.Activator", not
11941         "System.Activation".    
11942
11943 2004-03-30  Martin Baulig  <martin@ximian.com>
11944
11945         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11946         (mono_class_create_from_typespec): Likewise.
11947
11948 2004-03-30  Martin Baulig  <martin@ximian.com>
11949
11950         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11951         `has_ctor_constraint' and `initialized'.
11952
11953 2004-03-30  Martin Baulig  <martin@ximian.com>
11954
11955         * reflection.c (encode_new_constraint): New static function to add
11956         the constructor constraint attribute to a type parameter.
11957         (encode_constraints): Call encode_new_constraint() if necessary.
11958
11959         * reflection.h
11960         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11961
11962         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11963         
11964 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11965
11966         * reflection.c, icall.c: add support for pinning variables. 
11967
11968 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11969
11970         * marshal.c (mono_marshal_get_managed_wrapper):
11971         init bool local with zero rather than null.
11972
11973 2004-03-29  Martin Baulig  <martin@ximian.com>
11974
11975         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
11976         the "official" behavior here.
11977         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
11978
11979 2004-03-29  Martin Baulig  <martin@ximian.com>
11980
11981         * icall.c: Reflect latest API changes.
11982
11983 2004-03-29  Martin Baulig  <martin@ximian.com>
11984
11985         * loader.c (mono_get_method_from_token): Also call
11986         mono_metadata_load_generic_params () for abstract and interface
11987         methods; replace the type arguments in the method signature with
11988         the ones which are loaded from the metadata.
11989
11990 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
11991
11992         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
11993         of the lock is not the current thread. MS.NET don't do it, in spite of
11994         what the documentation says. See bug #56157.
11995
11996 2004-03-28  Martin Baulig  <martin@ximian.com>
11997
11998         * class.c (mono_class_init): Don't call init_properties() and
11999         init_events() for generic instances; set `prop->parent' when
12000         inflating properties.
12001
12002         * reflection.c (mono_generic_inst_get_object): Call
12003         `mono_class_init (ginst->klass)'.
12004         (mono_type_get_object): Only create a MonoGenericInst if your
12005         generic type is a TypeBuilder.
12006         (do_mono_reflection_bind_generic_parameters): Only set
12007         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12008
12009 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12010
12011         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12012         Fixes #56091.
12013
12014 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12015
12016         * icall.c: added Kill_internal icall.
12017         * process.[ch]: added Kill_internal icall.
12018
12019 2004-03-25  Martin Baulig  <martin@ximian.com>
12020
12021         * class.h (MonoStats): Added `generic_instance_count',
12022         `inflated_method_count', `inflated_type_count' and
12023         `generics_metadata_size'.       
12024
12025 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12026
12027         * reflection.c: no warnings now.
12028
12029 2004-03-25  Martin Baulig  <martin@ximian.com>
12030
12031         * class.c (mono_class_get_full): New public function; does a
12032         mono_class_get(), but also takes a `MonoGenericContext *'.
12033
12034         * loader.c (mono_field_from_memberref): Renamed to
12035         `field_from_memberref', made static and added `MonoGenericContext *'
12036         argument.
12037         (mono_field_from_token): Added `MonoGenericInst *' argument.
12038         (method_from_memberef): Likewise.
12039         (mono_get_method_from_token): Likewise.
12040         (mono_get_method_full): New public function; does a
12041         mono_get_method(), but also takes a `MonoGenericContext *'.
12042
12043         * verify.c (mono_method_verify): Get the method's generic context
12044         and pass it to mono_field_from_token(), mono_get_method_full() and
12045         mono_class_get_full().
12046
12047 2004-03-25  Martin Baulig  <martin@ximian.com>
12048
12049         * class.c (mono_class_inflate_generic_type): Take a
12050         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12051         `MonoGenericMethod *'.
12052
12053 2004-03-25  Martin Baulig  <martin@ximian.com>
12054
12055         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12056         instead of the MonoGenericMethod here.
12057
12058 2004-03-25  Martin Baulig  <martin@ximian.com>
12059
12060         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12061         each time we create a new MonoGenericInst, we also create a new
12062         context which points back to us.
12063
12064         * class.c (inflate_method): Use `ginst->context' instead of
12065         creating a new context.
12066
12067         * loader.c (method_from_memberref): Use
12068         `klass->generic_inst->context' instead of creating a new context.
12069
12070 2004-03-25  Martin Baulig  <martin@ximian.com>
12071
12072         * class.h (MonoGenericContext): New struct.
12073         (MonoGenericMethod): Removed `generic_inst'.
12074
12075         * class.c (mono_class_inflate_generic_method): Take a
12076         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12077
12078 2004-03-25  Martin Baulig  <martin@ximian.com>
12079
12080         * loader.h (MonoMethodInflated): New typedef.
12081
12082         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12083         `generic_param_count' consume just 30 bits, added `is_inflated'
12084         and `has_type_parameters' flags (one bit each).
12085
12086         * class.c (mono_class_inflate_generic_method): Create a
12087         MonoMethodInflated instead of a MonoMethodNormal and set
12088         `is_inflated' in the method signature.
12089
12090         * class.h (MonoGenericMethod): Removed `generic_method'.
12091
12092 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12093
12094         * image.c: Make sure the name of a MonoImage is always an absolute path.
12095           This fixes bug #54415.
12096
12097 2004-03-24  Martin Baulig  <martin@ximian.com>
12098
12099         * class.c (mono_class_setup_vtable): If we're a generic instance,
12100         use our generic type's vtable size.
12101
12102 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12103
12104         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12105         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12106         problems.
12107
12108 2004-03-23  Martin Baulig  <martin@ximian.com>
12109
12110         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12111         `MonoEvent *events'.
12112
12113         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12114         (typebuilder_icalls): Added "get_event_info"; calls
12115         mono_reflection_event_builder_get_event_info(). 
12116
12117         * reflection.c (mono_reflection_generic_inst_initialize): Added
12118         `MonoArray *events'.
12119         (mono_reflection_event_builder_get_event_info): New function.
12120
12121 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12122
12123         * object.h: add mono_type_initialization_init
12124
12125         * object.c (mono_runtime_class_init): 
12126         implement class constructor synchronization rules
12127         to cope with threading issues.  
12128         add mono_type_initialization_init
12129
12130         * appdomain.c (mono_runtime_init): call 
12131         mono_type_initialization_init
12132
12133         * class.h: removing initializing field from MonoVTable
12134
12135 2004-03-23  Martin Baulig  <martin@ximian.com>
12136
12137         * class.c (my_mono_class_from_generic_parameter): Use
12138         `param->name' if it's not NULL. 
12139
12140 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12141
12142         * class.c: do not insert non-virtual methods in the vtable.
12143         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12144         that means the method is non-virtual. This never would have
12145         happened before.
12146
12147 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12148
12149         * profiler.c: Added lock for accessing coverage_hash.
12150
12151 2004-03-22  Martin Baulig  <martin@ximian.com>
12152
12153         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12154         `method->method->signature->generic_param_count != 0' to make it
12155         work for interface methods.
12156
12157 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12158
12159         * process.c: quote the string passed to the shell using g_shell_quote.
12160
12161 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12162
12163         * threads.c:
12164         (mono_threads_manage): don't remove the finalizer thread and self
12165         from the threads hash table so that mono_thread_manage can be called
12166         more than once.
12167
12168 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12169
12170         * process.c: quote the arguments when UseShellExecute is true. Fixes
12171         bug #55790.
12172
12173 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12174
12175         * threads.c: set mono_thread_detach as a cleanup routine for every
12176         thread. This way it's always executed upon thread termination, either
12177         aborted or finished normally. No more xsp hangs!
12178
12179 2004-03-17  Martin Baulig  <martin@ximian.com>
12180
12181         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12182         `int count_nested' and a `MonoType **nested'.
12183
12184         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12185         most of the functionality into a new static
12186         do_mono_reflection_bind_generic_parameters() and don't take a
12187         `MonoType *nested_in' argument any more.  Don't compute nested
12188         types here.
12189         (mono_reflection_generic_inst_get_nested_types): New public method
12190         to get nested types.
12191
12192         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12193         we're a nested class.
12194
12195         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12196         mono_reflection_generic_inst_get_nested_types() to compute the
12197         nested types.
12198
12199 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12200
12201         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12202         descriptive error message under windows.
12203         
12204 2004-03-17  Martin Baulig  <martin@ximian.com>
12205
12206         * class.c (dup_type): Added `const MonoType *original' argument;
12207         copy the attrs from the original type.
12208
12209 2004-03-17  Martin Baulig  <martin@ximian.com>
12210
12211         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12212         `m->generic_inst_cache' here.
12213
12214 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12215
12216         * exception.h exception.c: Add stack_overflow_exception.
12217
12218 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12219
12220         * threadpool.c:
12221         (overlapped_callback): call SetEvent *after* invoking the callback.
12222         No need to call CloseHandle.
12223
12224 2004-03-16  Martin Baulig  <martin@ximian.com>
12225
12226         * reflection.c (mono_image_get_fieldref_token): Take a
12227         `MonoReflectionField *' instead of a `MonoClassField *' and a
12228         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12229
12230 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12231
12232         * appdomain.c: don't add the culture to the filename we're looking for
12233         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12234
12235 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12236
12237         * locales.c: don't ignore symbols when doing case insensitive compares.
12238         Thanks Dick! Fixes bug #54046.
12239
12240         * threads.c: surround 'threads' usage with enter/leave in
12241         mono_thread_manage.
12242
12243 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12244
12245         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12246         implicitly marshalled as [Out]. Fixes #55450.
12247
12248         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12249         an exception.
12250
12251 2004-03-16  Martin Baulig  <martin@ximian.com>
12252
12253         * class.c (mono_class_from_generic_parameter): Use the actual
12254         parameter name. 
12255
12256 2004-03-16  Martin Baulig  <martin@ximian.com>
12257
12258         * reflection.c (type_get_signature_size): New static function.
12259         Compues the size of the type in a method signature.
12260         (method_get_signature_size): New static function; calls
12261         type_get_signature_size() to compute the actual size of the
12262         method's signature.
12263         (method_encode_signature): Use method_get_signature_size() to get
12264         the signature's size rather than using `nparams * 10'.
12265
12266 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12267
12268         * file-io.h: define here WapiOverlapped on windows. I don't want the
12269         regular OVERLAPPED one.
12270
12271         * file-io.c:
12272         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12273         Disabling AIO on windows.
12274
12275 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12276
12277         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12278         bug #55385.
12279
12280 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12281
12282         * appdomain.c: upgraded corlib version.
12283
12284         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12285         and BeginWrite. Allow opening files for asynchrnous operations.
12286
12287         * file-io.h: new struct that maps FileStreamAsyncResult.
12288         * icall.c: added new icalls.
12289         * process.[ch]: support setting child process environment variables
12290         and use the SHELL or COMSPEC when UseShellExecute is true.
12291
12292         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12293         callback for async. IO is here and also BindHandle.
12294
12295         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12296         from here.
12297
12298 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12299
12300         * reflection.c (create_custom_attr): Allow len == 0.
12301
12302         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12303         computation on big-endian machines.
12304
12305 2004-03-13  Martin Baulig  <martin@ximian.com>
12306
12307         * class.h (MonoGenericInst): Added `int count_ifaces'.
12308
12309         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12310         `ginst->count_ifaces' instead `klass->interface_count' since we
12311         may get called before the vtable is created.
12312
12313         * loader.c (mono_method_get_param_names): If we're a generic
12314         instance, return and don't initialize the class.
12315
12316         * reflection.c (mono_reflection_setup_generic_class): Don't call
12317         ensure_runtime_vtable().
12318         (mono_reflection_bind_generic_parameters): Set
12319         `ginst->count_ifaces'.
12320
12321 2004-03-11  Jackson Harper <jackson@ximian.com>
12322
12323         * icall.c:
12324         * unicode.c:
12325         * unicode.h: Remove unused System.Char icalls.
12326         
12327 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12328
12329         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12330         code when we P/Invoke the first library in Windows.Forms, instead
12331         of when we first open the assembly.
12332
12333         * assembly.c: Drop the lookup from here.
12334
12335 2004-03-10  Martin Baulig  <martin@ximian.com>
12336
12337         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12338         class for properties, fields and events.  Finally fixes #54945.
12339
12340 2004-03-10  Martin Baulig  <martin@ximian.com>
12341
12342         * metadata.c (mono_metadata_class_equal): New static function;
12343         checks whether two generic instances or two generic parameters are
12344         equal.
12345         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12346         compare classes.        
12347
12348 2004-03-10  Martin Baulig  <martin@ximian.com>
12349
12350         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12351
12352         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12353         argument and write it into the `reflection_info' field.
12354
12355         * icall.c
12356         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12357         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12358
12359 2004-03-09  Jackson Harper  <jackson@ximian.com>
12360
12361         * char-conversions.h: use 8 bits for numeric data its all we need
12362         * icall.c: numeric data is only 8 bits now.
12363
12364 2004-03-09  Martin Baulig  <martin@ximian.com>
12365
12366         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
12367
12368         * class.c (init_properties, init_events): Initialize the new
12369         `parent' field.
12370
12371         * reflection.c (typebuilder_setup_properties): Likewise.
12372         (typebuilder_setup_events): Likewise.
12373
12374         * reflection.h (MonoEventInfo): Replaced `parent with
12375         `declaring_type' and `reflected_type'.
12376
12377         * icall.c (ves_icall_get_property_info): Distinguish between
12378         declaring and reflected type.
12379         (ves_icall_get_event_info): Likewise.
12380
12381 2004-03-09  Martin Baulig  <martin@ximian.com>
12382
12383         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
12384         (ves_icall_Type_GetField): Correctly set field->klass.
12385
12386 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
12387
12388         * loader.h: Fix warning.
12389
12390 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
12391
12392         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
12393         library routine if present.  Notice that it will still continue
12394         executing even if its missing, for those working on the Gtk#
12395         edition of Windows.Forms.
12396
12397         * assembly.c (do_mono_assembly_open): If loading the
12398         System.Windows.Forms call mono_loader_wini_init.
12399
12400 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
12401
12402         * class.h: Added MonoRemoteClass struct.
12403         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
12404         function for MonoStrings.
12405         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
12406         Added internal call for getting the proxy type.
12407         * marshal.c: Get the type of transparent proxies from its remote_class.
12408         Added methods that generate the IL for type checks and casts:
12409         mono_marshal_get_isinst, mono_marshal_get_castclass, 
12410         mono_marshal_get_proxy_cancast.
12411         * marshal.h: Declaration of the previous new methods.
12412         * object.c: Added new moethods for creating and updating MonoRemoteClass
12413         instances: mono_remote_class, mono_upgrade_remote_class, 
12414         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
12415         * verify.c: FIx transparent_proxy_fields layout.
12416         * appdomain.c: Bump corlib version.
12417
12418 2004-03-04  Jackson Harper  <jackson@ximian.com>
12419
12420         * icall.c: Add icall to access char conversion tables.
12421         * char-conversions.h: Character conversion tables.
12422         * Makefile.am: Add char-conversions.h private header file.
12423         
12424 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
12425
12426         * appdomain.c (unload_thread_main): Increase unloading timeout to
12427         10 sec as a temporary workaround for Nant problems.
12428
12429 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
12430
12431         * gc.c: Add checks for GC_enable and GC_disable.
12432
12433         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
12434         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
12435         (bug #54988).
12436         
12437 2004-02-27  Martin Baulig  <martin@ximian.com>
12438
12439         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12440         `MonoReflectionType *' instead of a `MonoType *'.
12441
12442 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
12443
12444         * gc.c (run_finalize): Avoid finalizing the object representing the
12445         finalizer thread.
12446         (finalizer_thread): Fix warning.
12447
12448 2004-02-25  Martin Baulig  <martin@ximian.com>
12449
12450         * class.c (_mono_class_get_instantiation_name): Added `int offset'
12451         argument for nested types.
12452         (mono_class_create_generic): Added support for nested generictypes.
12453
12454         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
12455         `GList *nested'.
12456
12457         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
12458
12459         * reflection.c (method_encode_signature): Increase the minimum
12460         value of `size' from 10 to 11.
12461         (mono_reflection_bind_generic_parameters): Take `int type_argc'
12462         and `MonoType **types' arguments instead of the `MonoArray
12463         *types'; added `MonoType *nested_in'.  Recursively instantiate
12464         nested classes. 
12465
12466 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
12467
12468         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
12469         stack_overflow_ex members which are used by exception handling.
12470
12471         * appdomain.c (mono_runtime_init): Initialize the new members.
12472
12473         * gc.c (mono_gc_enable): New helper function.
12474         * gc.c (mono_gc_disable): New helper function.
12475
12476 2004-02-23  Martin Baulig  <martin@ximian.com>
12477
12478         * icall.c: I must have been really stupid - make it actually work
12479         this time ;-)
12480
12481 2004-02-23  Martin Baulig  <martin@ximian.com>
12482
12483         * loader.c (method_from_memberref): Only inflate the method if
12484         it's in another klass.
12485
12486 2004-02-23  Martin Baulig  <martin@ximian.com>
12487
12488         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
12489         (mono_class_init): If we're a generic instance and an interface,
12490         compute `class->interface_id'; also create `class->interfaces'
12491         here and inflate them.
12492
12493         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
12494         `ginst->is_open'.
12495         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
12496
12497         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12498
12499 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12500
12501         * reflection.c (method_encode_code): Improved the error message
12502         generated by the exception.
12503
12504 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12505
12506         * icall.c: Martin did not do what he said in the ChangeLog for
12507         2004-02-18, but put back the changes for properties and events.
12508         Commenting those changes out again and adding comment to bug #54518.
12509         
12510         * process.c: removed warning.
12511
12512 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12513
12514         * marshal.c (emit_struct_conv): Print an error message instead of
12515         asserting when a type does not have the StructLayout attribute.
12516
12517 2004-02-20  Martin Baulig  <martin@ximian.com>
12518
12519         * reflection.c (mono_type_get_object): Also use the cache for
12520         generic instances.
12521         (mono_reflection_bind_generic_parameters): Always compute
12522         `ginst->ifaces'.        
12523
12524 2004-02-20  Martin Baulig  <martin@ximian.com>
12525
12526         * class.h (MonoGenericMethod): Removed `klass'.
12527
12528         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12529         *klass' argument.
12530
12531 2004-02-20  Martin Baulig  <martin@ximian.com>
12532
12533         * reflection.c (method_encode_methodspec): Actually use the
12534         uninflated signature for the memberref.
12535
12536 2004-02-20  Martin Baulig  <martin@ximian.com>
12537
12538         * class.h (MonoGenericMethod): Removed `declaring'.
12539
12540         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12541         is NULL, compute it here.
12542
12543 2004-02-20  Martin Baulig  <martin@ximian.com>
12544
12545         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12546
12547         * metadata.c (mono_metadata_generic_inst_hash): New method.
12548         (mono_metadata_generic_inst_equal): New method.
12549
12550         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12551         `klass->image->generic_inst_cache' cache to avoid creating
12552         duplicate MonoGenericInst's.
12553
12554         * class.c (mono_class_inflate_generic_type): Use the cache.
12555
12556 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12557
12558         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12559
12560 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12561
12562         * icall.c: added Socket.WSAIoctl icall.
12563
12564         * socket-io.[ch]: implemented
12565         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12566
12567 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12568
12569         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12570
12571 2004-02-18  Urs C Muff  <umuff@quark.com>
12572
12573         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12574         this work on PPC and other big-endian architectures.
12575
12576         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12577         fields with an underscore to make sure they're only accessed by
12578         the read32() macro.
12579
12580 2004-02-18  Martin Baulig  <martin@ximian.com>
12581
12582         * icall.c: Put the klass->refclass changes back for methods and
12583         fields, but not for properties and events.  We're currently not
12584         distinguishing between DeclaringType and ReflectedType for
12585         properties and events, that's what caused the regressions.
12586
12587 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12588
12589         * object.c:
12590         (mono_async_result_new): the handle can be NULL.
12591
12592         * threadpool.c: Use an event instead of a semaphore, don't initialize
12593         it until needed. This saves quite a few semaphores from being created
12594         when using the threadpool.
12595
12596 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12597
12598         * object.c (mono_string_is_interned_lookup): Fix interning of long
12599         strings. Fixes #54473.
12600
12601         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12602
12603         * icall.c: Revert the klass->refclass changes since they introduce
12604         regressions (bug #54518).
12605
12606 2004-02-18  Martin Baulig  <martin@ximian.com>
12607
12608         * class.c (mono_class_init): If we're a generic instance and don't
12609         come from a TypeBuilder, inflate our members here.
12610         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12611         (mono_class_create_generic): New public method.
12612         (mono_class_initialize_generic): Removed.
12613         (get_instantiation_name): Renamed to
12614         _mono_class_get_instantiation_name() and made it public.
12615
12616 2004-02-18  Martin Baulig  <martin@ximian.com>
12617
12618         * class.c (mono_class_inflate_generic_type): Clear the new
12619         instance's `nginst->klass' when inflating a generic instance.
12620         (mono_class_is_subclass_of): Added (basic) support for generic
12621         instances.
12622
12623 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12624
12625         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12626         MonoMempool to hold compiled native code.
12627
12628 2004-02-17  Martin Baulig  <martin@ximian.com>
12629
12630         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12631         `properties'.
12632
12633         * reflection.c (mono_reflection_generic_inst_initialize): Added
12634         `MonoArray *properties' argument.
12635
12636         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12637
12638 2004-02-17  Martin Baulig  <martin@ximian.com>
12639
12640         * icall.c (ves_icall_Type_GetFields): Renamed to
12641         ves_icall_Type_GetFields_internal() and added a
12642         `MonoReflectionType *rtype' argument; pass it to
12643         mono_field_get_object() to set the field's "reflected" type.
12644         (ves_icall_Type_GetConstructors): Likewise.
12645         (ves_icall_Type_GetEvents): Likewise.
12646         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12647         argument; pass it to mono_method_get_object() to set the method's
12648         "reflected" type.       
12649
12650 2004-02-17  Martin Baulig  <martin@ximian.com>
12651
12652         * class.h (MonoDynamicGenericInst): New type.
12653         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12654
12655         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12656         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12657         (ves_icall_MonoGenericInst_GetFields): New interncall.
12658
12659         * class.c (mono_class_from_generic): Don't call
12660         mono_class_initialize_generic() if this is a dynamic instance;
12661         ie. it's being created from a TypeBuilder.
12662         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12663         `class->byval_arg.type'.
12664
12665         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12666         to `inflate_method' and made static.
12667         (mono_reflection_inflate_field): Removed.
12668         (mono_reflection_generic_inst_initialize): New public method.
12669
12670         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12671         `ctors' and `fields'; added `initialized'.
12672
12673 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12674
12675         * debug-helpers.c (mono_method_full_name): Fix output for empty
12676         namespaces.
12677
12678 2004-02-12  Martin Baulig  <martin@ximian.com>
12679
12680         * class.h (MonoClassField): Added `MonoType *generic_type'.
12681
12682         * reflection.c (mono_image_get_fieldref_token): Added support for
12683         instantiated generic types.
12684         (field_encode_inflated_field): Removed.
12685         (mono_image_get_inflated_field_token): Removed.
12686         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12687
12688         * reflection.h (MonoReflectionInflatedField): Removed.
12689
12690 2004-02-12  Martin Baulig  <martin@ximian.com>
12691
12692         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12693         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12694
12695         * reflection.c (mono_image_get_methodspec_token): Take a
12696         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12697         (mono_image_create_token): Check whether we have a
12698         `method->signature->gen_method' and call
12699         mono_image_get_methodspec_token() if appropriate.
12700         (inflated_method_get_object): Removed.
12701         (mono_reflection_bind_generic_method_parameters): Return a
12702         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12703         (mono_reflection_inflate_method_or_ctor): Likewise.
12704
12705         * reflection.h (MonoReflectionInflatedMethod): Removed.
12706
12707 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12708
12709         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12710         for custom valuetype marshalling.
12711
12712         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12713
12714 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12715
12716         * icall.c: fixed WSAGetLastError_internal name.
12717
12718 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12719
12720         * threads.c (mono_thread_attach): Allow this to be called multiple
12721         times for a thread.
12722         
12723         * threads.c (build_wait_tids): Do not wait for ourselves.
12724
12725         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12726         appdomain list is empty.
12727
12728         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12729         memory returned by mono_string_builder_to_utf16, since it points into
12730         managed memory. Thanks to Bernie Solomon for noticing this.
12731
12732         * icall.c: Add AppDomainSetup icalls.
12733
12734         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12735
12736         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12737         types.
12738
12739         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12740         custom attributes to the method_aux struct. Also fix array indexes etc.
12741
12742         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12743         
12744 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12745
12746         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12747         (both static and runtime) and reduce startup time.
12748
12749 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12750
12751         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12752         AsAny marshalling conversion instead of crashing.
12753
12754         * marshal.c: Fix warnings.
12755
12756 2004-02-09  Martin Baulig  <martin@ximian.com>
12757
12758         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12759
12760         * reflection.h (MonoReflectionInflatedMethod): Removed the
12761         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12762
12763         * reflection.c (method_encode_methodspec): Removed the `method'
12764         argument; we get it from `gmethod->declaring'.
12765         (inflated_method_get_object): Removed the `declaring' argument.
12766
12767 2004-02-09  Martin Baulig  <martin@ximian.com>
12768
12769         * class.h (MonoGenericMethod): New type.
12770         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12771         `generic_method'.
12772
12773         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12774         a `MonoGenericMethod *gen_method' one.
12775
12776         * class.c (mono_class_inflate_generic_type): Take an additional
12777         `MonoGenericMethod * argument.  This is only non-NULL if we're
12778         inflating types for a generic method.   
12779         (mono_class_inflate_generic_signature): Renamed to
12780         inflate_generic_signature() and made static; take a
12781         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12782         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12783         instead of a `MonoGenericInst *' one.
12784         (mono_class_inflate_generic_method): Likewise.
12785
12786         * reflection.c (encode_generic_method_sig): Take a
12787         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12788         (method_encode_methodspec): Likewise.
12789         (inflated_method_get_object): Likewise. 
12790
12791         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12792         field with a `MonoGenericMethod *gmethod' one.  
12793
12794 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12795
12796         * class.h (mono_class_has_parent): add parens to expansion
12797         so you can ! this.
12798
12799 2004-02-08  Martin Baulig  <martin@ximian.com>
12800
12801         * image.h (MonoImage): Removed `generics_cache'.
12802
12803         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12804         instead of a `MonoType *' argument; removed the `inflate_methods'
12805         argument.  Don't inflate methods here.
12806
12807         * loader.c (find_method): If it's a generic instance, call
12808         mono_class_init() on the `sclass->generic_inst->generic_type'.
12809
12810         * metadata.c (mono_type_size): Make this work on uninitialized
12811         generic instances; call it on the `ginst->generic_type's class.
12812
12813         * reflection.c (mono_reflection_bind_generic_parameters): Call
12814         mono_class_from_generic() to create the `ginst->klass'.
12815
12816 2004-02-08  Martin Baulig  <martin@ximian.com>
12817
12818         * class.h (MonoClass): Changed type of `generic_inst' from
12819         `MonoType *' to `MonoGenericInst *'.
12820
12821 2004-02-08  Martin Baulig  <martin@ximian.com>
12822
12823         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12824         mono_type_get_object(), this is now creating a `MonoGenericInst'
12825         for MONO_TYPE_GENERICINST.
12826         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12827         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12828
12829         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12830         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12831         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12832         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12833         and reflected type.
12834
12835         * reflection.h (MonoReflectionInflatedMethod): Removed
12836         `declaring_type' and `reflected_type'.
12837
12838 2004-02-08  Martin Baulig  <martin@ximian.com>
12839
12840         * class.h (MonoGenericInst): Added `MonoType *parent' and
12841         `MonoType **ifaces'.
12842
12843         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12844         `parent' and `interfaces'.
12845
12846         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12847         `MonoType *' argument and return a `MonoType *'.
12848
12849         * icall.c
12850         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12851         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12852
12853 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12854
12855         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12856         valuetype marshalling.
12857
12858 2004-02-06  Martin Baulig  <martin@ximian.com>
12859
12860         * class.c
12861         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12862         (my_mono_class_from_generic_parameter): Likewise.
12863
12864 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12865
12866         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12867         contents of the symbol files lazily.
12868
12869         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12870
12871         * threads.h threads.c icall.c: New icalls for getting and setting the
12872         threads name.
12873
12874 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12875
12876         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12877         Raise an exception when the domain is not found.
12878
12879 2004-02-03  Martin Baulig  <martin@ximian.com>
12880
12881         * reflection.c (mono_image_get_methodspec_token): Use the
12882         uninflated signature; fixes gen-33.
12883
12884 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12885
12886         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12887         the finalizer code can use thread functionality.
12888
12889         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12890         the finalizer thread.
12891
12892         * threads.c: Make some functions more robust.
12893
12894         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12895
12896         * metadata.h: Add new marshalling conventions.
12897
12898         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12899         stringbuilder marshalling. Fixes #53700.
12900
12901         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12902
12903         * reflection.c (mono_image_get_type_info): Save declarative security
12904         info.
12905
12906         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12907         unmanaged fields as well.
12908
12909         * appdomain.c: Bump corlib version.
12910
12911 2004-02-01  Martin Baulig  <martin@ximian.com>
12912
12913         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12914         method type arguments.  
12915
12916 2004-01-30  Duncan Mak  <duncan@ximian.com>
12917
12918         * marshal.h: Add prototype for
12919         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12920         and
12921         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12922         fix the build.
12923
12924 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12925
12926         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12927         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12928
12929 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12930
12931         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12932         custom marshalling of valuetypes.
12933
12934         * marshal.c: Fix some warnings.
12935
12936 2004-01-29  Martin Baulig  <martin@ximian.com>
12937
12938         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12939         for generic method parameters.
12940
12941         * reflection.c (method_encode_methodspec): Write the uninflated
12942         signature into the methodspec table.
12943         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12944         is always the uninflated method.
12945         (reflection_methodbuilder_to_mono_method): Copy the generic
12946         parameters from the MethodBuilder into `header->gen_params'.
12947
12948 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12949
12950         * class.c (mono_class_from_generic_parameter): Fix warning.
12951
12952 2004-01-27  Martin Baulig  <martin@ximian.com>
12953
12954         * class.c (mono_class_from_generic_parameter): Don't create
12955         `klass->methods' here.  
12956
12957 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12958
12959         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12960         extension since it does not work with libraries named lib<FOO>.dll.so.
12961
12962 2004-01-25  Martin Baulig  <martin@ximian.com>
12963
12964         * class.c (mono_class_inflate_generic_type): Added support for
12965         MONO_TYPE_GENERICINST.
12966
12967         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12968         inflate methods on open constructed types.      
12969
12970 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12971
12972         * object.c: fire ProcessExit event in the root AppDomain after running
12973         Main. Fixes bug #53299.
12974
12975 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
12976
12977         * socket-io.c: include the new socket-wrappers.h header.
12978         Use the wrappers instead of the unix socket functions to make the code
12979         more clear.
12980
12981 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
12982
12983         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
12984
12985         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
12986         Fixes #22532.
12987
12988 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
12989
12990         * reflection.c (mono_image_create_pefile): Handle the case when the
12991         entry point is not a MethodBuilder.
12992
12993         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
12994         field to ReflectionMethod since it is not allways a builder.
12995
12996         * reflection.c (type_get_fully_qualified_name): New helper function to
12997         return the fully qualified name of a type.
12998
12999         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13000         type name for custom marshallers.
13001
13002         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13003
13004         * class.c (mono_class_setup_vtable): If a parent class already 
13005         implements an interface, use the implementing methods from that class.
13006         Fixes #53148.
13007
13008 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13009
13010         * threadpool.c: just return instead of ExitThread to allow for thread
13011         clean up earlier.
13012
13013 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13014
13015         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13016         when closing resource modules.
13017
13018         * reflection.c (mono_image_create_pefile): Handle the case when the
13019         entry point is not a MethodBuilder.
13020
13021         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13022         field to ReflectionMethod since it is not allways a builder.
13023
13024 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13025
13026         * marshal.c (mono_marshal_get_managed_wrapper): 
13027         mono_marshal_alloc takes native int so CONV_I
13028         the arg for 64bits.
13029
13030 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13031
13032         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13033         tokens in the cattr table. Fixes #53108.
13034
13035 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13036
13037         * loader.c: don't trim ".dll" before looking up in the config file.
13038         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13039
13040 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13041
13042         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13043         Return the module which contains the resource as well.
13044         (ves_icall_System_Reflection_Module_Close): New icall.
13045
13046         * appdomain.c: Bump corlib version number.
13047
13048         * image.c (mono_image_addref): New public function.
13049
13050         * assembly.c: Call mono_image_addref.
13051
13052         * reflection.c (mono_module_get_object): Increase reference count of 
13053         the image.
13054
13055         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13056         Fixes #22532.
13057
13058         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13059         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13060         proper exceptions on DllImport problems.
13061
13062 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13063
13064         * class.c, metadata.c: eliminate CSIZE macro.
13065
13066 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13067
13068         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13069         * object.h: Added async_callback field in MonoAsyncResult.
13070         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13071         * verify.c: Added async_callback in MonoAsyncResult layout.
13072
13073 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13074
13075         * reflection.c (mono_reflection_get_custom_attrs): Add support
13076         for Modules.
13077
13078 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13079
13080         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13081         marshalling.
13082         (mono_marshal_method_from_wrapper): Add null pointer check.
13083
13084 2004-01-16  Martin Baulig  <martin@ximian.com>
13085
13086         * debug-mono-symfile.h: Set version number to 36 and reflect
13087         latest symbol writer changes.
13088
13089 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13090
13091         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13092         multi-dimensional arrays.
13093         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13094         (mono_class_from_mono_type): Use bounded_array_class_get.
13095         
13096         * class.c (mono_bounded_array_class_get): New function which takes
13097         a 'bounded' bool argument to distinguish vectors from one dimensional
13098         arrays.
13099
13100         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13101         bounded_array_class_get if the array has bounds.
13102
13103         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13104         Search modules loaded using AssemblyBuilder:AddModule as well.
13105
13106 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13107
13108         * appdomain.c: increased corlib version.
13109         * filewatcher.c: removed g_print.
13110         * icall.c:
13111         (get_property_info): only allocate what is actually requested.
13112         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13113
13114 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13115
13116         * Makefile.am: added filewatcher.[ch]
13117         * filewatcher.[ch]: FileSystemWatcher runtime support.
13118         * icall.c: added new FSW icalls.
13119
13120 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13121
13122         * string-icalls.c: fix stringbuilder regression as suggested by
13123         Iain McCoy <iain@mccoy.id.au>.
13124
13125 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13126
13127         * process.c (process_read_stringtable_block): Recognize '007f' as
13128         a language neutral stringtable block.
13129
13130 2004-01-12  Patrik Torstensson
13131
13132         * object.h (MonoStringBuilder) : Changed layout to support our
13133         new stringbuilder class.
13134         * marshal.c: Change marshalling to support the new layout of 
13135         string builder.
13136         * appdomain.c: increased version number because new layout of
13137         string builder.
13138
13139 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13140
13141         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13142         assembly name as an string instead of an AssemblyName, since it is
13143         easier to extract info from it.
13144
13145         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13146         the culture subdirectories too. Fixes #52231.
13147
13148 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13149
13150         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13151         It takes 2 new parameters with an optional name for the method to look
13152         for and case ignoring info.
13153
13154         * threadpool.c: removed unused variable.
13155
13156 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13157
13158         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13159         It takes 2 new parameters with an optional name for the property to look
13160         for and case ignoring info.
13161         Fixes bug #52753.
13162
13163 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13164
13165         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13166         Fix #52451.
13167
13168 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13169
13170         * appdomain.c:
13171         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13172         Fixes bug #52630.
13173
13174 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13175
13176         * reflection.c: Add support for more than one unmanaged resource.
13177
13178         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13179         in field->def_value, as done in all other cases.
13180
13181         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13182         TypeBuilders.
13183
13184         * reflection.c (mono_reflection_create_runtime_class): Remove 
13185         errorneous assignment to klass->element_class, since it is already
13186         done in mono_reflection_setup_internal_class.
13187
13188 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13189
13190         * gc.c: added missing LeaveCriticalSection.
13191         * icall.c: indented a couple of lines.
13192         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13193         if we call EndInvoke inside a callback. Fixes bug #52601.
13194
13195 2004-01-07  Martin Baulig  <martin@ximian.com>
13196
13197         * mono-debug-debugger.h
13198         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13199
13200 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13201
13202         * appdomain.c: Use messages in NotImplementedException.
13203
13204         * exception.c (mono_get_exception_not_implemented): Now this takes
13205         a message argument.
13206
13207         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13208         exception instead of g_asserting an aborting when something is not
13209         implemented.
13210
13211         Add some inline docs.
13212
13213 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13214
13215         * reflection.h: Update after changes to object layout.
13216
13217         * reflection.c: Implement saving of unmanaged aka win32 resources.
13218
13219         * appdomain.c: Bump version number.
13220
13221         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13222         Handle missing domains gracefully.
13223
13224 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13225
13226         * file-io.c : On Windows, there are much more invalid_path_chars.
13227
13228 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13229
13230         * class.h, object.c: prepare for GetType () speedup.
13231
13232 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13233
13234         * profiler.c: workaround for --profile null reference exception on
13235           cygwin. Patch by Patrik Torstensson.
13236
13237 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13238
13239         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13240         make work for unaligned access.
13241
13242 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13243
13244         * class.c: small cleanup (class->fields [i] -> field).
13245         * image.c: check address of metadata is valid.
13246
13247 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13248
13249         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13250         search the list of loaded assemblies.
13251
13252         * reflection.c (mono_reflection_type_from_name): Use 
13253         mono_assembly_loaded instead of mono_image_loaded.
13254
13255         * reflection.c: Fix warnings.
13256
13257 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13258
13259         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13260         is dynamic. This is needed since an assembly can contain both dynamic and
13261         non-dynamic images.
13262
13263         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13264         assembly->dynamic.
13265
13266         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13267
13268         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13269         to store modules loaded using AddModule.
13270
13271         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13272         on Modules.
13273
13274         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13275
13276         * reflection.c (mono_image_fill_export_table_from_module): New function to
13277         fill out the EXPORTEDTYPES table from a module.
13278
13279         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13280         into a separate function. Also handle loaded non-dynamic modules.
13281
13282         * reflection.c (mono_image_basic_init): Fix memory allocation.
13283
13284         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13285
13286         * assembly.c (mono_assembly_load_references): Make this public.
13287
13288 2003-12-19  Martin Baulig  <martin@ximian.com>
13289
13290         * class.c (mono_class_initialize_generic): Made this static, take
13291         a `MonoGenericInst *' instead of a `MonoClass *'.
13292         (mono_class_from_generic): Call mono_class_initialize_generic()
13293         unless we're already initialized or being called from
13294         do_mono_metadata_parse_generic_inst().
13295
13296         * class.h (MonoGenericInst): Added `initialized' and
13297         `init_pending' flags.
13298
13299         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13300         `mono_class_init (gklass)' or mono_class_initialize_generic()
13301         here; set `generic_inst->init_pending' while parsing the
13302         `type_argv'.
13303
13304 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13305
13306         * locales.c: include string.h for memxxx prototypes
13307
13308 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13309
13310         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13311         constructor when accessing literal fields.
13312
13313 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13314
13315         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13316
13317         * reflection.c (assembly_add_resource_manifest): New function to fill
13318         the MANIFESTRESOURCE table.
13319
13320         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13321
13322         * reflection.h: Update to changes in class layout.
13323
13324         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13325         Reenable call to mono_runtime_is_shutting_down ().
13326
13327         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13328         determine if the runtime is shutting down.
13329
13330 2003-12-16  Jackson Harper <jackson@ximian.com>
13331
13332         * icall.c: comment out call to mono_runtime_is_shutting_down to
13333         fix build.
13334         
13335 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13336
13337         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13338         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13339
13340 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13341
13342         * reflection.c: move definition of swap_with_size
13343         to before its first call
13344
13345 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13346
13347         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13348
13349         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13350         icall.
13351
13352         * object.c: Fix warnings.
13353
13354         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13355         members if FlattenHierarchy is set.
13356
13357         * reflection.c (mono_image_add_decl_security): New function to emit
13358         declarative security.
13359
13360         * reflection.h reflection.c: Add support for declarative security.
13361
13362         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13363         
13364 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
13365
13366         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13367         
13368         * appdomain.c verify.c: Moved corlib version checking into its own
13369         function in appdomain.c since it needs to create vtables etc.
13370
13371 2003-12-13  Patrik Torstensson <p@rxc.se>
13372
13373         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
13374         instead of unwrapped server.
13375
13376 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
13377
13378         * verify.c (check_corlib): Fix field index.
13379
13380 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
13381
13382         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
13383         GetGacPath icall.
13384
13385 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
13386
13387         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
13388         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
13389         cope with sizeof(size_t) != sizeof(guint32).
13390
13391 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13392
13393         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
13394         in case of failure.
13395
13396 2003-12-10  Mark Crichton <crichton@gimp.org>
13397
13398         * icall.c: removed the GetNonZeroBytes.  We now handle this case
13399         in managed code.
13400
13401         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
13402
13403 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
13404
13405         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
13406         marked as deleted.
13407
13408 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
13409
13410         * verify.c (check_corlib): Handle the case when the version field is 
13411         initialized by a static constructor.
13412
13413 2003-12-08  Patrik Torstensson  <p@rxc.se>
13414
13415     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
13416
13417 2003-12-08  Martin Baulig  <martin@ximian.com>
13418
13419         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
13420         a MonoReflectionGenericParameter, also take the parameter index
13421         and name as arguments.
13422         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13423         (ves_icall_MonoGenericParam_initialize): New interncall.
13424         (ves_icall_Type_make_byref_type): New interncall.
13425
13426         * reflection.h (MonoReflectionGenericParam): Derive from
13427         MonoReflectionType, not just from MonoObject.  Added `refobj' and
13428         `index' fields.
13429
13430         * reflection.c (mono_reflection_define_generic_parameter): Create
13431         and return a new MonoReflectionGenericParam; don't initialize the
13432         constraints here.
13433         (mono_reflection_initialize_generic_parameter): New public method;
13434         initializes the constraints and creates the `param->pklass'.
13435
13436 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
13437
13438         * reflection.h reflection.c: Use the new fields 'num_types', 
13439         'num_fields' and 'num_methods' to track the number of types etc.
13440
13441         * verify.c (check_corlib): Check corlib version number.
13442
13443 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
13444
13445         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
13446         function works on all methods.
13447
13448 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
13449
13450         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
13451         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
13452         the custom_type_info flag of the transparent proxy.
13453         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
13454         objects that supports IRemotingTypeInfo.
13455         * object.h: Added custom_type_info field in transparent proxy.
13456
13457 2003-12-06  Martin Baulig  <martin@ximian.com>
13458
13459         * class.c (mono_class_create_from_generic): Removed.
13460         (mono_class_from_generic): Check `ginst->klass' before doing
13461         anything else.  This is important to fully support "recursive"
13462         generic types.
13463
13464         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
13465         empty `generic_inst->klass' before doing anything else.
13466
13467 2003-12-06  Dick Porter  <dick@ximian.com>
13468
13469         * verify.c: 
13470         * object.h:
13471         * icall.c:
13472         * locales.c: Use C structs to access class fields.  Don't do a
13473         conversion between MonoString and UChar because both are
13474         platform-endian UTF-16.  Compare now takes startindex and count
13475         parameters.  Add a char overload for IndexOf.  Speed up the
13476         invariant string IndexOf.
13477
13478 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
13479
13480         * Makefile.am (monosn_LDADD): Fix parallel build.
13481
13482 2003-12-04  Martin Baulig  <martin@ximian.com>
13483
13484         * icall.c
13485         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13486         (ves_icall_Type_make_array_type): New interncall.       
13487
13488 2003-12-04  Martin Baulig  <martin@ximian.com>
13489
13490         * locales.c: also change it in the !HAVE_ICU case.
13491
13492 2003-12-04  Dick Porter  <dick@ximian.com>
13493
13494         * icall.c:
13495         * locales.c: construct_compareinfo is now in CompareInfo, not
13496         CultureInfo.
13497
13498 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13499
13500         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13501         image->files array.
13502
13503         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13504         table as well.
13505
13506         * assembly.c (mono_assembly_load_references): Only load references
13507         once.
13508
13509         * class.c (mono_class_from_name): Avoid linear search of the 
13510         EXPORTEDTYPE table.
13511
13512         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13513
13514 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13515
13516         * image.h (MonoImage): Add 'field_cache' field.
13517
13518         * loader.c (mono_field_from_token): Cache field lookups.
13519         
13520         * reflection.c (mono_module_get_object): Fix name property.
13521
13522         * icall.c (ves_icall_get_enum_info): Update after changes to 
13523         mono_metadata_get_constant_index ().
13524
13525         * icall.c: Get rid of get_type_info icall, use a separate icall for
13526         each type property to avoid needless memory allocations. Fixes #51514.
13527
13528         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13529         to avoid needless binary searches.
13530
13531         * class.c (class_compute_field_layout): Move the initialization of
13532         field->def_value to mono_class_vtable ().
13533
13534         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13535         non-corlib types.
13536
13537         * object.c (mono_object_allocate): Make it inline.
13538
13539         * object.c (mono_object_allocate_spec): Make it inline.
13540         
13541 2003-12-02  Dick Porter  <dick@ximian.com>
13542
13543         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13544         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13545
13546 2003-12-01  Dick Porter  <dick@ximian.com>
13547
13548         * threads.c: Fix signature and call in CreateMutex and
13549         CreateEvent.
13550
13551 2003-12-01  Dick Porter  <dick@ximian.com>
13552
13553         * icall.c: 
13554         * locales.c: Implement string compares and searching
13555
13556         * object.h: Add extra Thread field
13557
13558 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13559
13560         * reflection.c (fixup_method): Add support for MonoCMethod.
13561
13562 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13563
13564         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13565
13566         * reflection.c (assembly_name_to_aname): Allow extra characters in
13567         assembly names. Fixes #51468.
13568
13569 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13570
13571         * exception.c (mono_exception_from_name_domain): New helper function.
13572
13573         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13574         exception object in the correct domain.
13575
13576         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13577         formatting + make a copy a the input data.
13578
13579         * loader.c (mono_get_method_from_token): Methods which contain
13580         native code do not have entries in the ImplMap.
13581
13582         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13583         Thanks to Gonzalo for spotting this.
13584         
13585         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13586         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13587
13588         * assembly.h (mono_assembly_load_from): Split the second part of 
13589         assembly loading into a new public function.
13590
13591         * exception.h (mono_get_exception_bad_image_format): New function.
13592
13593 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13594
13595         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13596         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13597         
13598         * icall.c: Add new icall for creating dynamic methods.
13599
13600         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13601
13602         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13603
13604         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13605         create a dynamic method.
13606
13607         * reflection.c (resolve_object): New helper function.
13608
13609         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13610         which manipulate it so they can also work on dynamic methods.
13611
13612         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13613         creating the MonoReflectionMethodAux structure if it is not needed.
13614         
13615         * reflection.h verify.c: Update after changes to object layout.
13616
13617         * reflection.c (method_builder_encode_signature): Fix compilation on
13618         gcc 2.95.x.
13619
13620 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13621
13622         * appdomain.h: Added support for context static fields. Added static_data
13623           field to MonoAppContext and renamed thread_static_fields to a more
13624           generic special_static_fields in MonoAppDomain, since it can now contain
13625           context static fields.
13626         * domain.c: Updated hashtable name.
13627         * object.c: Replaced field_is_thread_static() for a more generic
13628           field_is_special_static() which also checks for context static attribute.
13629           In mono_class_vtable(), added support for static context fields.
13630         * threads.c: Changed methods that manage thread static fields to more
13631           generic methods so they can be reused both for thread and context static
13632           data.
13633         * threads.h: Declared some new methods.
13634
13635 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13636
13637         * reflection.h: Update after changes to the managed types.
13638
13639         * reflection.c (encode_custom_modifiers): New helper function.
13640
13641         * reflection.c (method_encode_signature): Emit custom modifiers.
13642
13643         * reflection.c (field_encode_signature): Emit custom modifiers.
13644
13645 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13646
13647         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13648
13649         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13650         implementation.
13651
13652         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13653         icall.
13654
13655         * object.c (mono_field_get_value_object): New function.
13656
13657         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13658         specific.
13659
13660 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13661
13662         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13663         return a preallocated out-of-memory exception instance.
13664
13665         * object.c (out_of_memory): Use the new function.
13666
13667         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13668         flag is before the custom modifiers. Fixes #49802.
13669
13670 2003-11-16  Martin Baulig  <martin@ximian.com>
13671
13672         * class.c (mono_class_is_open_constructed_type): Implemented the
13673         MONO_TYPE_GENERICINST case.
13674
13675 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13676
13677         * assembly.c (mono_assembly_fill_assembly_name): New function to
13678         fill out the MonoAssemblyName structure.
13679         (mono_assembly_open): Use the new function.
13680
13681         * icall.c (fill_reflection_assembly_name): New helper function.
13682
13683         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13684         new function.
13685
13686         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13687
13688 2003-11-15  Martin Baulig  <martin@ximian.com>
13689
13690         * class.c (mono_class_is_open_constructed_type): New public
13691         function; checks whether a type is an open constructed type,
13692         ie. whether it still contains type parameters.
13693         (mono_class_inflate_generic_type): If we're a type parameter and
13694         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13695         type.
13696
13697         * class.h (MonoGenericInst): Added `guint32 is_open'.
13698
13699         * loader.c (method_from_methodspec): Check whether we're an open
13700         or closed constructed type and set `ginst->is_open'.
13701
13702         * reflection.c (mono_reflection_bind_generic_parameters): Check
13703         whether we're an open or closed constructed type and set
13704         `ginst->is_open'.
13705         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13706         from open constructed types.
13707
13708 2003-11-15  Martin Baulig  <martin@ximian.com>
13709
13710         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13711         a generic instance (instead of a generic type declaration) with
13712         unbound generic parameters, bind them to our actual types.
13713
13714 2003-11-14  Martin Baulig  <martin@ximian.com>
13715
13716         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13717
13718         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13719         an interface type, populate `res->interfaces' with instantiated
13720         versions of all the interfaces we inherit.
13721
13722 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13723
13724         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13725         when MONO_PATH is set but doesn't contain the install dir.
13726
13727 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13728
13729         * icall.c:
13730         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13731         it's also implemented in base classes. Fixes bug #50927.
13732
13733 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13734
13735         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13736         if this method is called from a finalizer. Fixes #50913.
13737
13738 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13739
13740         * threads.c: Implement VolatileRead/VolatileWrite
13741
13742         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13743
13744 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13745
13746         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13747         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13748         2.95.3.
13749
13750         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13751         from Peter Ross (pro@missioncriticalit.com).
13752         
13753 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13754
13755         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13756
13757 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13758
13759         * assembly.c (mono_assembly_load_references): Disable check because it
13760         triggers on older corlibs which lots of people have.
13761
13762 2003-11-12  Jackson Harper  <jackson@ximian.com>
13763
13764         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13765         load corlib.dll if mscorlib.dll is not found.
13766         * assembly.h: Remove corlib name define.
13767         * class.c:
13768         * domain.c:
13769         * image.c: Change corlib name to mscorlib.
13770         
13771 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13772
13773         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13774
13775 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13776
13777         * appdomain.h: Added loader_optimization here to sync with the C#
13778         code, and add disallow_binding_redirects field.
13779
13780 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13781
13782         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13783
13784         * reflection.c (mono_image_build_metadata): Fix crash on modules
13785         with no types.
13786
13787         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13788
13789         * icall.c (ves_icall_get_method_info): Return callingConvention as
13790         well.
13791
13792         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13793         namespaces from the EXPORTEDTYPE table as well.
13794
13795         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13796         from all modules inside the assembly.
13797         
13798 2003-11-11  Martin Baulig  <martin@ximian.com>
13799
13800         * reflection.c (mono_reflection_bind_generic_parameters): Make
13801         this work for interfaces.
13802
13803 2003-11-11  Martin Baulig  <martin@ximian.com>
13804
13805         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13806
13807 2003-11-11  Martin Baulig  <martin@ximian.com>
13808
13809         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13810         "MonoInflatedMethod" and "MonoInflatedCtor".
13811
13812 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13813
13814         * reflection.c (resolution_scope_from_image): Use the assembly table
13815         from the manifest module, since other modules don't have it.
13816
13817         * debug-helpers.c (mono_type_full_name): New helper function.
13818
13819         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13820
13821         * image.c (mono_image_load_file_for_image): New public function which
13822         is a replacement for the load_file_for_image in class.c.
13823
13824         * assembly.c (mono_assembly_load_module): A wrapper for the function
13825         above which does assembly association and reference loading too.
13826
13827         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13828
13829 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13830
13831         * appdomain.c: not all of the attributes for the full assembly name
13832         are required and the order doesn't matter. Fixes bug #50787.
13833
13834 2003-11-10  Dick Porter  <dick@ximian.com>
13835
13836         * locales.c: Use platform-endian UTF16
13837
13838 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13839
13840         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13841         
13842 2003-11-10  Martin Baulig  <martin@ximian.com>
13843
13844         * metadata.c
13845         (mono_metadata_load_generic_params): Make this actually work.
13846
13847         * reflection.c (mono_reflection_bind_generic_parameters): If our
13848         parent is a generic instance, pass all the `types' to it, no
13849         matter whether it has the same number of type parameters or not.
13850
13851 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13852
13853         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13854
13855         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13856         assignment code to this function so it gets called recursively for all
13857         modules.
13858
13859         * image.c (load_modules): Remove the assembly assignment since it is
13860         now done by mono_assembly_load_references.
13861         
13862         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13863         Add 'module' argument.
13864         (mono_module_get_types): New helper function.
13865         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13866
13867 2003-11-08  Martin Baulig  <martin@ximian.com>
13868
13869         * class.c (mono_class_inflate_generic_method): Interface method
13870         don't have a header.
13871
13872         * reflection.c (mono_image_get_methodspec_token): Take an
13873         additional `MonoGenericInst *' argument instead of reading it from
13874         the header; this is necessary to support interfaces.
13875         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13876         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13877         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13878         argument.
13879
13880         * reflection.h (MonoReflectionInflatedMethod): Added
13881         `MonoGenericInst *ginst'.
13882
13883 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13884
13885         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13886
13887 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13888
13889         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13890
13891 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13892
13893         * reflection.c 
13894         (reflection_methodbuilder_from_method_builder):
13895         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13896         initialize a ReflectionMethodBuilder structure.
13897         (mono_image_get_methodbuilder_token):
13898         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13899         tokens which point to types in another module inside the same assembly.
13900
13901         * reflection.c: Use the new helper functions.
13902         
13903         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13904
13905         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13906         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13907
13908         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13909         neccesary.
13910
13911         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13912         current module. Emit the manifest only for the main module.
13913
13914         * reflection.c (mono_image_create_token): Add assertion when a 
13915         memberref needs to be created.
13916
13917         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13918
13919         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13920         larger buffer for the custom attribute blob. Fixes #50637.
13921         
13922 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13923
13924         * threadpool.c: notify listener on async processing handles after
13925         invoking the async callback. Thanks to Zoltan.
13926
13927 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13928
13929         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13930         avoid code duplication.
13931
13932         * reflection.h (MonoDynamicImage): New type which is currently unused,
13933         but will be used through the ref.emit code in place of 
13934         MonoDynamicAssembly.
13935
13936         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13937         object layout.
13938
13939         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13940         a MonoDynamicImage instead of just a MonoImage.
13941         
13942         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13943         icalls to ModuleBuilder but keep their semantics, so they will work
13944         with moduleb->assemblyb. This will change later.
13945         
13946 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13947
13948         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13949         object layout.
13950
13951         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13952         main module, since it is now done by the managed code.
13953
13954 2003-11-03  Martin Baulig  <martin@ximian.com>
13955
13956         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13957         `ginst->klass' here.
13958         (method_encode_methodspec): Don't use the `ginst->generic_method's
13959         klass if it's a generic instance, use `ginst->klass' in this case.
13960
13961 2003-11-03  Martin Baulig  <martin@ximian.com>
13962
13963         * reflection.c (mono_image_get_generic_method_param_info):
13964         Removed, use mono_image_get_generic_param_info() instead.
13965         (mono_image_get_type_info): Write the GenericParam table before
13966         the Method table.  This is neccessary because in the GenericParam
13967         table, type parameters of the class (ie. '!0' etc.) must come
13968         before the ones from its generic methods (ie. '!!0' etc).
13969
13970 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13971
13972         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13973
13974 2003-11-02  Martin Baulig  <martin@ximian.com>
13975
13976         * reflection.c (create_generic_typespec): Take a
13977         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
13978         the generic parameters from it.
13979
13980 2003-11-02  Martin Baulig  <martin@ximian.com>
13981
13982         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
13983         instead of a `MonoClassField *' since we just need the type.
13984         (create_generic_typespec): New static function.  Creates a
13985         TypeSpec token for a generic type declaration.
13986         (mono_image_get_generic_field_token): New static function.
13987         (mono_image_create_token): If we're a FieldBuilder in a generic
13988         type declaration, call mono_image_get_generic_field_token() to get
13989         the token.
13990
13991 2003-11-02  Martin Baulig  <martin@ximian.com>
13992
13993         * reflection.h
13994         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
13995         `MonoReflectionGenericInst *declaring_type' and
13996         `MonoReflectionGenericInst *reflected_type' fields.
13997
13998         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
13999         `MonoReflectionGenericInst *declaring_type' and a
14000         `MonoReflectionGenericInst *reflected_type' argument instead of a
14001         single `MonoReflectionGenericInst *type' one.  Set
14002         `res->declaring_type' and `res->reflected_type' from them.
14003         (mono_reflection_inflate_field): Likewise.      
14004
14005 2003-11-02  Martin Baulig  <martin@ximian.com>
14006
14007         * class.c (mono_class_setup_vtable): Don't store generic methods
14008         in the vtable.  
14009
14010 2003-11-02  Martin Baulig  <martin@ximian.com>
14011
14012         * reflection.h (MonoReflectionGenericInst): Added
14013         `MonoReflectionType *declaring_type'.
14014
14015         * reflection.c (mono_reflection_bind_generic_parameters): Use
14016         `if (tb->parent)' instead of `klass->parent'.
14017
14018 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14019
14020         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14021         with an empty ASSEMBLY table.
14022
14023         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14024         variable in the inner and outer loops.
14025
14026 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14027
14028         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14029         argument.
14030
14031         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14032         
14033         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14034         icalls. Instead, do everything in managed code. This is needed since
14035         it is hard to restore the original domain etc. in unmanaged code in the
14036         presence of undeniable exceptions.
14037
14038         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14039         New icalls to push and pop appdomain refs.
14040
14041 2003-10-31  Martin Baulig  <martin@ximian.com>
14042
14043         * class.c (inflate_generic_type): Renamed to
14044         mono_class_inflate_generic_type() and made it public.
14045
14046         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14047         New interncall.
14048
14049         * loader.c (mono_field_from_memberref): Also set the retklass for
14050         typespecs.
14051
14052         * fielder.c (mono_image_get_inflated_field_token): New static
14053         method; creates a metadata token for an inflated field.
14054         (mono_image_create_token, fixup_method): Added support for
14055         "MonoInflatedField".
14056         (fieldbuilder_to_mono_class_field): New static function.
14057         (mono_reflection_inflate_field): New public function.
14058
14059         * reflection.h
14060         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14061         (MonoReflectionInflatedField): New typedef.     
14062
14063 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14064
14065         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14066         for Solaris and other platforms without s6_addr16
14067
14068 2003-10-30  Martin Baulig  <martin@ximian.com>
14069
14070         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14071         argument instead of two.
14072         (mono_class_inflate_generic_signature): Likewise.
14073         (inflate_generic_header): Likewise.
14074         (mono_class_inflate_generic_method): Likewise.  In addition, if
14075         `ginst->klass' is set, it becomes the new `method->klass'.
14076
14077         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14078         field.
14079
14080         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14081         first byte. [FIXME]
14082         (method_encode_methodspec): If we have generic parameters, create
14083         a MethodSpec instead of a MethodRef.
14084         (fixup_method): Added support for "MonoInflatedMethod" and
14085         "MonoInflatedCtor".
14086         (mono_image_create_token): Added support for "MonoInflatedMethod"
14087         and "MonoInflatedCtor".
14088         (inflated_method_get_object): New static function; returns a
14089         managed "System.Reflection.MonoInflatedMethod" object.
14090         (mono_reflection_bind_generic_method_parameters): Return a
14091         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14092         (mono_reflection_inflate_method_or_ctor): Likewise.
14093         (mono_image_get_generic_method_param_info): Initialize unused
14094         fields to zero.
14095         (mono_image_get_generic_param_info): Likewise.
14096
14097         * reflection.h (MonoReflectionInflatedMethod): New public
14098         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14099         "S.R.MonoInflatedCtor" classes.
14100
14101         * loader.c (method_from_memberref): If we're a TypeSpec and it
14102         resolves to a generic instance, inflate the method.
14103
14104 2003-10-28  Dick Porter  <dick@ximian.com>
14105
14106         * object.c (mono_runtime_run_main): Convert command-line arguments
14107         into utf8, falling back to the user's locale encoding to do so.
14108
14109 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14110
14111         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14112         at this time.
14113
14114         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14115
14116         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14117         up icalls at method definition time. Partially fixes #33569.
14118
14119 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14120
14121         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14122         marshalling of arrays. Fixes #50116.
14123
14124         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14125
14126         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14127         points to a vtable in the dying appdomain.
14128
14129         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14130         listeners into unmanaged code inside the lock.
14131
14132         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14133         domains and add some comments.
14134
14135 2003-10-25  Martin Baulig  <martin@ximian.com>
14136
14137         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14138
14139         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14140
14141         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14142         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14143         currently parsing.  Create the generic class and store it in
14144         `generic_inst->klass' before parsing the type arguments.  This is
14145         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14146         for an example.
14147         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14148         to support recursive typespec entries.
14149
14150         * class.c (mono_class_setup_parent): If our parent is a generic
14151         instance, we may get called before it has its name set.
14152         (mono_class_from_generic): Splitted into
14153         mono_class_create_from_generic() and mono_class_initialize_generic().
14154
14155 2003-10-25  Martin Baulig  <martin@ximian.com>
14156
14157         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14158         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14159         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14160         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14161
14162         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14163         (create_typespec): Likewise.
14164         (mono_reflection_bind_generic_parameters): Return a
14165         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14166         (mono_reflection_inflate_method_or_ctor): New public function.
14167
14168         * reflection.h (MonoReflectionGenericInst): New typedef.        
14169
14170 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14171
14172         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14173         inside the domain lock. Fixes #49993.
14174         
14175         * object.c (mono_class_vtable): When typed allocation is used, 
14176         allocate vtables in the GC heap instead of in the mempool, since the
14177         vtables contain GC descriptors which are used by the collector even
14178         after the domain owning the mempool is unloaded.
14179
14180         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14181
14182         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14183         reflect what it does. Also invalidate mempools instead of freeing
14184         them if a define is set.
14185
14186         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14187         of the appdomain.
14188         
14189         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14190         hold the finalizable objects in this domain.
14191
14192         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14193         appdomain.
14194
14195         * appdomain.c (mono_domain_set): New function to set the current
14196         appdomain, but only if it is not being unloaded.
14197
14198         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14199         appdomain which is being unloaded.
14200         
14201         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14202         unloading of the root appdomain.
14203
14204         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14205         icall to execute a method in another appdomain. Intended as a 
14206         replacement for InternalSetDomain, which can confuse the code 
14207         generation in the JIT.
14208
14209         * appdomain.c (mono_domain_is_unloading): New function to determine
14210         whenever an appdomain is unloading.
14211
14212         * appdomain.c (mono_domain_unload): New function to correctly unload
14213         an appdomain.
14214
14215         * assembly.c (mono_assembly_load_references): Check that an assembly
14216         does not references itself.
14217
14218         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14219         domain manually, it asks the finalizer thread to do it, then waits for
14220         the result. Also added a timeout.
14221
14222         * icall.c: Register the new icalls.
14223
14224         * threads.h threads.c: Export the mono_gc_stop_world and 
14225         mono_gc_start_world functions.
14226         
14227         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14228         function to fill out the mempool with 0x2a.
14229
14230 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14231
14232         * reflection.h (MonoReflectionMethodAux): New structure to store
14233         information which is rarely used, thus is not in the MonoMethod
14234         structure.
14235
14236         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14237         store the aux info.
14238
14239         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14240         and marshalling info into the aux structure.
14241
14242         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14243         from the aux structure.
14244
14245         * loader.c (mono_method_get_param_names): Retrieve the param names from
14246         the aux structure.
14247         
14248 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14249
14250         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14251         warning.
14252
14253 2003-10-21  Dick Porter  <dick@ximian.com>
14254
14255         * socket-io.c
14256         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14257         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14258
14259 2003-10-21  Martin Baulig  <martin@ximian.com>
14260
14261         * reflection.c (mono_reflection_bind_generic_parameters):
14262         `klass->parent' is NULL for interfaces.
14263
14264 2003-10-21  Martin Baulig  <martin@ximian.com>
14265
14266         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14267
14268 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14269
14270         * exception.c (mono_exception_from_name_msg): New helper function for
14271         creating exceptions and initializing their message field.
14272
14273         * exception.c: Simplify functions using the new helper.
14274
14275         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14276         New function.
14277
14278         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14279         mono_raise_exception, since otherwise gcc doesn't generate the function
14280         epilog for raise_exception, confusing the stack unwinding in the JIT.
14281         Fixes #45043.
14282
14283         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14284         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14285         Fixes #49499.
14286
14287 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14288
14289         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14290         utf8.
14291
14292 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14293
14294         * icall.c: Removed GetUninitializedObject method because
14295           AllocateUninitializedClassInstance does the same.
14296
14297 2003-10-18  Martin Baulig  <martin@ximian.com>
14298
14299         * class.c (inflate_generic_signature): Renamed to
14300         mono_class_inflate_generic_signature() and made it public.
14301         (my_mono_class_from_generic_parameter): New static function; if we
14302         don't already have the generic parameter's MonoClass, create a
14303         very simple one which is just used internally in the runtime and
14304         not passed back to managed code.
14305
14306         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14307
14308         * metadata.h (MonoMethodSignature): Moved the
14309         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14310         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14311
14312         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14313         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14314         interncall on the MonoMethod class, not on MethodInfo.
14315         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14316         calling mono_reflection_bind_generic_method_parameters() directly.
14317
14318         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14319         return the already computed `method->signature'.
14320         (method_from_methodspec): New static function to load a method
14321         from a MethodSpec entry.
14322         (mono_get_method_from_token): Call the new method_from_methodspec()
14323         for MethodSpec tokens.  
14324         (mono_get_method_from_token): If we're a generic method, load the
14325         type parameters.
14326
14327         * reflection.c (mono_image_get_memberref_token): Allow
14328         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14329         table.
14330         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14331         (mono_image_create_token): First check whether it's a generic
14332         method (so we'd need to create a MethodSpec), then do the other
14333         two alternatives.
14334         (mono_reflection_bind_generic_method_parameters): Return a
14335         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14336         called directly from the interncall.
14337
14338 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14339
14340         * reflection.c (load_public_key): Move loading of the public key
14341         into managed code.
14342
14343         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14344
14345         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14346         fields.
14347
14348         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14349         culture, hash_alg and public_key. Fixes #49555.
14350
14351 2003-10-17  Martin Baulig  <martin@ximian.com>
14352
14353         * class.h (MonoGenericInst): Moved this declaration here and added
14354         `MonoMethod *generic_method'.
14355
14356         * icall.c
14357         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14358         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14359
14360         * metadata.c (mono_metadata_type_equal): Two types of
14361         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
14362         index; ie. don't compare the address of the `MonoGenericParam'
14363         structure.
14364         (mono_metadata_load_generic_params): Removed the `MonoMethod
14365         *method' argument.
14366
14367         * metadata.h (MonoGenericInst): Moved declaration to class.h.
14368         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
14369
14370         * reflection.c (method_encode_signature): Encode the number of
14371         generic parameters.
14372         (encode_generic_method_sig): New static function.
14373         (method_encode_methodspec): New static function; creates an entry
14374         in the MethodSpec table for a generic method.
14375         (mono_image_get_methodspec_token): New static function.
14376         (mono_image_create_token): Call mono_image_get_methodspec_token()
14377         for generic methods.
14378         (mono_reflection_bind_generic_method_parameters): New public
14379         function.  Instantiates a generic method.
14380
14381 2003-10-16  Martin Baulig  <martin@ximian.com>
14382
14383         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
14384         *gen_params' here from MonoMethodHeader.
14385
14386         * metadata.c (mono_metadata_parse_method_signature): If we have
14387         generic parameters, initialize `method->gen_params' and then set
14388         the correct `type->data.generic_param' in all the parameters.
14389
14390 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
14391
14392         * threads.c (mono_threads_get_default_stacksize): New function to 
14393         return the default stacksize.
14394
14395         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
14396         termination of the finalizer thread, since the previous method had
14397         race conditions. Fixes #49628.
14398
14399         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
14400         as for the other managed threads.
14401
14402 2003-10-16  Martin Baulig  <martin@ximian.com>
14403
14404         * class.c (inflate_generic_signature): Copy `generic_param_count'
14405         and `gen_params'.
14406
14407         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
14408         New interncall.
14409
14410         * metadata.c (mono_metadata_parse_method_signature): Actually set
14411         the `method->generic_param_count' here.
14412         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
14413
14414 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
14415
14416         * object.h: Add a new field to TypedRef to simplify the implementation
14417         of the REFANY opcodes in the JIT.
14418
14419         * icall.c: Make use of the new field.
14420
14421         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
14422         dynamically.
14423
14424 2003-10-15  Martin Baulig  <martin@ximian.com>
14425
14426         * class.c (mono_class_from_gen_param): Renamed to
14427         mono_class_from_generic_parameter() and moved most of the
14428         functionality from mono_reflection_define_generic_parameter()
14429         here; ie. we create a "real" class here.
14430         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
14431         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
14432         previously been called.
14433
14434         * class.h (MonoGenericParam): Moved the declaration of this struct
14435         here from metadata.h and added `MonoMethod *method'.
14436
14437         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
14438         interncall.
14439
14440         * loader.c (mono_get_method_from_token): If we have any generic
14441         parameters, call mono_metadata_load_generic_params() to read them
14442         from the MONO_TABLE_GENERICPAR.
14443
14444         * metadata.c (mono_metadata_load_generic_params): Added
14445         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
14446
14447         * metadata.h (MonoMethodSignature): Replaced
14448         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
14449         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
14450
14451         * reflection.c (mono_reflection_define_generic_parameter): Moved
14452         most of the functionality into the new
14453         mono_class_from_generic_parameter(); set the `method' field if
14454         we're a method parameter.       
14455
14456 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
14457
14458         * marshal.c (emit_struct_conv): if native size is 0
14459         emit no code.
14460
14461 2003-10-14  Martin Baulig  <martin@ximian.com>
14462
14463         * icall.c: The generics API has changed in the spec since it was
14464         added to System.Type; these modifications make it match the spec
14465         again.
14466         (ves_icall_Type_GetGenericParameters): Renamed to
14467         `ves_icall_Type_GetGenericArguments'.
14468         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
14469         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
14470         `ves_icall_MonoType_get_HasGenericArguments'.
14471         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
14472         `ves_icall_MonoType_get_IsGenericParameter'.
14473         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
14474         this is no interncall anymore.
14475         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
14476         `ves_icall_TypeBuilder_get_IsGenericParameter'.
14477
14478 2003-10-14  Martin Baulig  <martin@ximian.com>
14479
14480         * reflection.c (mono_reflection_bind_generic_parameters): Also
14481         inflate generic methods if we're reading the class from IL.
14482
14483 2003-10-13  Martin Baulig  <martin@ximian.com>
14484
14485         * reflection.c (mono_reflection_define_generic_parameter): This
14486         method isn't called directly from the icall anymore; take a
14487         `MonoReflectionAssemblyBuilder *' so we can use this for type and
14488         method generic parameters.
14489         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
14490         (method_builder_encode_signature): Encode generic parameters.
14491         (mono_image_get_method_info): Write generic params to the
14492         MONO_TABLE_GENERICPARAM table.
14493
14494         * reflection.h (MonoReflectionMethodBuilder): Added
14495         `MonoArray *generic_params'.
14496
14497         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14498
14499         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14500         wrapper for mono_reflection_define_generic_parameter().
14501         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14502
14503 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14504
14505         * marshal.h: Add missing function to fix build.
14506
14507         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14508         the SetLastError pinvoke attribute.
14509
14510         * marshal.c (mono_marshal_set_last_error): New helper function called
14511         by the generated code.
14512         
14513         * marshal.c (mono_mb_emit_branch): New helper function.
14514
14515         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14516
14517         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14518         classes as parameters and return values of delegates. Fixes #29256. 
14519
14520 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14521
14522         * locales.c: use gint32 in non HAVE_ICU case
14523
14524 2003-10-11  Martin Baulig  <martin@ximian.com>
14525
14526         * mono-debug.c (mono_debug_add_method): Added a workaround for
14527         bug #48591.
14528
14529 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14530
14531         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14532         delegates passed to native code must use the STDCALL calling 
14533         convention. Fixes #35987.
14534
14535 2003-10-10  Martin Baulig  <martin@ximian.com>
14536
14537         * class.c (inflate_generic_type): If we're inflating for a generic
14538         type instance (and not for a generic method), return
14539         MONO_TYPE_MVAR unchanged.
14540
14541 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14542
14543         * string-icalls.c: Join ignores null strings in the source array.
14544         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14545         * threads.c: GetAvailableTheads is slightly more accurate.
14546
14547 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14548
14549         * threads.h threads.c : add mono_threads_set_default_stacksize
14550         and pass default to CreateThread calls.
14551
14552 2003-10-09  Dick Porter  <dick@ximian.com>
14553
14554         * icall.c:
14555         * locales.h:
14556         * locales.c: Internal calls for constructing CultureInfo and
14557         related objects from libicu (if its available.)
14558
14559 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14560
14561         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14562
14563 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14564
14565         * threadpool.c: added an argument to async_invoke_thread that is the
14566         item to process, pass the MonoAsyncResult to the thread start function
14567         when creating a new thread. This way we don't need to acquire any lock
14568         when we're creating a new thread. Readded a semaphore for faster
14569         response times (instead of that Sleep i added).
14570
14571 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14572
14573         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14574         get daylight change dates better on Windows, fix handling
14575         of platforms without tm_gmtoff.
14576
14577 2003-10-06  Martin Baulig  <martin@ximian.com>
14578
14579         * class.c (inflate_generic_method): Renamed to
14580         mono_class_inflate_generic_method() and made public.
14581         (mono_class_init): Don't inflate the generic methods here.
14582         (mono_class_from_generic): Added `gboolean inflate_methods'
14583         argument.  Inflate the methods here.
14584
14585         * loader.c (mono_method_get_param_names): Ignore instances of
14586         generic types for the moment.
14587
14588         * reflection.c (fixup_method): Added support for inflated methods.
14589         (mono_image_create_token): Use mono_image_get_methodref_token()
14590         for inflated methods.
14591         (mono_custom_attrs_from_param): Ignore instances of generic types
14592         for the moment.
14593         (mono_reflection_bind_generic_parameters): New public function.
14594         Moved all the functionality from
14595         ves_icall_Type_BindGenericParameters() here and added support for
14596         dynamic types.
14597         (mono_reflection_define_generic_parameter): Initialize
14598         `klass->methods' here.
14599
14600         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14601         functionality into mono_reflection_define_generic_parameter().
14602         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14603         TypeBuilder, return that TypeBuilder.
14604
14605 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14606
14607         * appdomain.c: removed mono_delegate_semaphore.
14608
14609         * threadpool.c:
14610         (mono_thread_pool_add): moved hash table creation inside and the thread 
14611         creation outside of the critical region.
14612         (mono_thread_pool_finish): removed obsolete code.
14613         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14614         continue or exit the thread depending on the queue.
14615
14616 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14617
14618         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14619         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14620         handle more bool marshalling options
14621
14622 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14623
14624         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14625         arrays of structs. Also add a more descriptive error message when
14626         a structure member is marshalled as LPArray.
14627
14628 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14629
14630         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14631         marshalling arrays of complex types. Fixes #29098. Also remove an
14632         usused and incomplete function.
14633
14634 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14635
14636         * gc.c: report heap_size - free_bytes as total memory allocated
14637         (bug#49362).
14638
14639 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14640
14641         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14642         fix timezone handling problems on Windows.
14643         
14644         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14645         asserts when the year is outside the range handled by ms the functions.
14646
14647         * class.c (setup_interface_offsets): If the class is an interface,
14648         fill out its interface_offsets slot.
14649
14650 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14651
14652         * threadpool.c: mark threadpool threads as background.
14653
14654 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14655
14656         * decimal.c - define DECINLINE to nothing if not using GCC
14657
14658 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14659
14660         * assembly.c: More refcount fixes.
14661
14662 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14663
14664         * string-icalls.c: if we're not trimming, return the same string.
14665         When not splitting, don't create a new string.
14666
14667 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14668
14669         * image.c:
14670         (mono_image_open): increment the ref_count inside the critical section.
14671
14672 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14673
14674         * image.c (mono_image_open): Fix reference counting bug.
14675
14676 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14677
14678         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14679         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14680         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14681         mono_lookup_pinvoke_call throws.        
14682
14683 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14684
14685         * reflection.c (mono_reflection_parse_type): Fix #49114.
14686
14687         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14688         temporary workaround for cygwin header problem.
14689
14690         * object.c (mono_object_isinst): Synchronize this with the code
14691         generated by the JIT for casts.
14692
14693 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14694
14695         * reflection.c (encode_type): Fix #38332.
14696
14697 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14698
14699         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14700         the original method from the wrapper method.
14701
14702 2003-09-25  Martin Baulig  <martin@ximian.com>
14703
14704         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14705         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14706         (ves_icall_Type_get_IsGenericInstance): New interncall.
14707
14708 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14709
14710         * object.c: fix cast warning in big endian code.
14711
14712 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14713
14714         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14715         
14716 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14717
14718         * assembly.c: don't call check_env from mono_assembly_load. It's
14719         already done once in mono_assemblies_init and may cause headaches when
14720         multiple threads are loading assemblies.
14721
14722 2003-09-19  Martin Baulig  <martin@ximian.com>
14723
14724         * reflection.c (mono_reflection_define_generic_parameter): Don't
14725         allocate `klass->methods', set `klass->flags' to
14726         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14727
14728 2003-09-18  Martin Baulig  <martin@ximian.com>
14729
14730         * class.c (mono_class_init): Don't create `class->methods' if it's
14731         already initialized.
14732
14733         * metadata.c (mono_metadata_load_generic_params): Make this
14734         actually work.
14735
14736         * reflection.c (mono_reflection_define_generic_parameter): Set
14737         parent class and interfaces from the constraints.
14738
14739         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14740         to keep this struct in sync with the declaration in TypeBuilder.cs.
14741
14742 2003-09-17  Martin Baulig  <martin@ximian.com>
14743
14744         * metadata.h (MonoType): Replaced the data's `int type_param'
14745         field with `MonoGenericParam *generic_param'.
14746         (MonoGenericParam): Added `MonoClass *klass'.
14747
14748         * class.c (mono_class_from_gen_param): Removed the
14749         `MonoImage *image' and `int type_num' arguments.
14750
14751         * metadata.c (mono_metadata_parse_generic_param): New static
14752         method; creates a MonoGenericParam which just contains the index.
14753         (do_mono_metadata_parse_type): Call
14754         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14755         MONO_TYPE_MVAR.
14756
14757         * reflection.c (mono_image_typedef_or_ref): Generic type
14758         parameters may be in the same assembly, but never use a typedef
14759         for them.
14760         (mono_reflection_define_generic_parameter): We're now creating a
14761         "real" class for the type parameter; it's now safe to call
14762         mono_class_from_mono_type() on the class'es type, it'll do the
14763         right thing.
14764
14765 2003-09-16  Martin Baulig  <martin@ximian.com>
14766
14767         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14768         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14769         the `symfile' data structure must be fully initialized before it
14770         gets added to the table.
14771
14772 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14773
14774         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14775
14776         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14777         class init trampolines.
14778
14779 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14780
14781         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14782         to the built-in profiler to turn off time and allocation profiling
14783         respectively.
14784
14785 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14786
14787         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14788         g_direct_equal.
14789
14790         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14791         in human readable form.
14792
14793 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14794
14795         * reflection.c icall.c: Fixed warnings.
14796
14797         * image.c (load_class_names): Use a temporary hash table to hold the
14798         namespaces in order to avoid doing many string comparisons.
14799
14800         * image.h: Fix typo.
14801
14802         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14803         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14804         since the NULL case is short-circuited inside g_hash_table_lookup, 
14805         leading to better performance.  
14806
14807         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14808         obtain the first custom attribute for a given index. Depends on the
14809         CustomAttribute table being sorted by the parent field.
14810
14811         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14812         for better performance.
14813
14814 2003-09-07  Martin Baulig  <martin@ximian.com>
14815
14816         * class.c (mono_class_init): If we're a generic instance, inflate
14817         all our methods instead of loading them from the image.
14818         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14819
14820 2003-09-07  Martin Baulig  <martin@ximian.com>
14821
14822         * mono-debug-debugger.c: Added support for constructors.
14823
14824 2003-09-06  Martin Baulig  <martin@ximian.com>
14825
14826         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14827         New interncall.
14828
14829         * reflection.c (mono_reflection_setup_generic_class): Call
14830         ensure_runtime_vtable() to create the vtable.
14831
14832 2003-09-05  Martin Baulig  <martin@ximian.com>
14833
14834         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14835         MONO_TYPE_MVAR.
14836
14837 2003-09-04  Martin Baulig  <martin@ximian.com>
14838
14839         * reflection.c (mono_reflection_define_generic_parameter): Generic
14840         parameters start with zero.
14841
14842 2003-09-04  Martin Baulig  <martin@ximian.com>
14843
14844         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14845
14846         * reflection.h (MonoReflectionGenericParam): New typedef.
14847         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14848         the generic parameters from the managed TypeBuilder.
14849
14850         * reflection.c (mono_reflection_define_generic_parameter): New function.
14851         (mono_reflection_create_runtime_class): Encode generic parameters.
14852         (mono_reflection_setup_generic_class): New function; this is
14853         called after adding adding all generic params to the TypeBuilder.
14854         (encode_type): Added MONO_TYPE_VAR.
14855
14856 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14857
14858         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14859         here from the JIT.
14860
14861         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14862         load hook.
14863
14864 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14865
14866         * reflection.h reflection.c class.h class.c: Delete duplicate 
14867         definition of mono_type_get_name () from reflection.c and export the
14868         one in class.c.
14869
14870         * class.c: Class loading fixes from Bernie Solomon 
14871         (bernard@ugsolutions.com).
14872
14873         * reflection.c: Endianness fixes from Bernie Solomon 
14874         (bernard@ugsolutions.com).
14875         
14876 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         * assembly.h assembly.c: Define a file format version for AOT
14879         libraries.
14880         
14881         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14882
14883         * appdomain.h (MonoJitInfo): New field to determine whenever the
14884         code is domain neutral.
14885         
14886 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14887
14888         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14889
14890 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14891
14892         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14893         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14894         Avoid caching the result since strings must be domain specific. Fixes
14895         #48050.
14896
14897 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14898
14899         * marshal.c (mono_marshal_init): Make this callable multiple times
14900         since it is hard to find a correct place to call it.
14901
14902         * object.c (mono_runtime_class_init): Execute static constructors in
14903         the correct appdomain.
14904
14905         * image.c (build_guid_table): Handle the case when multiple images have
14906         the same GUID.
14907
14908 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14909
14910         * icall.c: added a couple of icalls for System.Web.
14911
14912 2003-08-28  Martin Baulig  <martin@ximian.com>
14913
14914         * icall.c (ves_icall_Type_BindGenericParameters): Use
14915         `klass->generic_inst' instead of `&klass->byval_arg' in the
14916         mono_type_get_object() call.  The returned type must be
14917         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14918
14919 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14920
14921         * NOTES: New file.
14922
14923         * object.c (mono_class_proxy_vtable): Make it thread safe.
14924
14925         * pedump.c: Fix warning.
14926
14927         * object.c appdomain.h: Get rid of metadata_section. 
14928         It is no longer needed and it was causing deadlocks with domain->lock.
14929
14930         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14931
14932 2003-08-26  Martin Baulig  <martin@ximian.com>
14933
14934         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14935
14936 2003-08-26  Martin Baulig  <martin@ximian.com>
14937
14938         * pedump.c (main): Call mono_metadata_init(),
14939         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14940         and mono_loader_init().
14941
14942 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14943
14944         * loader.h: Add missing include to fix build.
14945
14946         * image.h: mono_image_load_references is no more.
14947
14948         * assembly.c: Reworked assembly loading to make it really thread safe.
14949         After these changes, the assembly returned by mono_assembly_open is
14950         fully initialized, i.e. all its references assemblies are loaded.
14951
14952         * assembly.c (mono_image_load_references): Renamed to 
14953         mono_assembly_load_references, and made private, since clients no
14954         longer need to call it.
14955
14956         * class.c: Removed calls to mono_assembly_load_references, since it was
14957         a source of deadlocks.
14958
14959         * loader.h loader.c class.h class.c: Protect data structures using a 
14960         new lock, the loader lock.
14961
14962         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14963         GPtrArrays only when needed.
14964
14965         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14966         into empty structures by mcs. Fixes pinvoke7.cs.
14967         
14968         * domain.c (mono_init): Call a new initialization function.
14969
14970         * appdomain.c (mono_runtime_init): Call the new initializer function
14971         of the marshal module.
14972
14973         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14974         inserted into empty structures by mcs. Fixes pinvoke7.cs.
14975
14976         * marshal.h marshal.c: Added locks around the wrapper caches to make
14977         this module thread safe.
14978
14979         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
14980         this argument. Fixes pinvoke1.exe.
14981
14982 2003-08-25  Lluis Sanchez <lluis@ximian.com>
14983
14984         * object.h: Added call_type field to MonoMethodMessage and the corresponding
14985         enumeration of values. Removed fields to store remote call output values in
14986         MonoAsyncResult. Not needed any more.
14987         * object.c: Initialize call_type and async_result fields in mono_message_init.
14988         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
14989         dispatching the message.
14990         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
14991         async call to finish. To do it use a message with EndInvoke call type.
14992
14993 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
14994
14995         * loader.h loader.c (mono_method_hash_marhal_info): New function which
14996         determines whenever a method has marshalling info.
14997
14998 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14999
15000         * assembly.c: fix the build on windows.
15001
15002 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15003
15004         * object.cs: Fixed bug #47785.
15005
15006 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15007
15008         * string-icalls.c (StringReplace): If their are no occurances of
15009         the old string found return a reference to the supplied
15010         string. This saves some memory and matches MS behavoir.
15011         
15012 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15013
15014         * socket-io.c: fixed compilation for systems that define AF_INET6
15015         and don't define SOL_IP/SOL_IPV6.
15016
15017 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15018
15019         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15020         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15021
15022         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15023
15024         * domain.c: Make this module thread safe.
15025
15026         * domain.c (mono_init): Call new initialization function.
15027
15028         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15029         reference types too. Fixes #38812.
15030
15031         * image.c (mono_image_init): Fixed warnings.
15032
15033         * class.c (mono_class_from_typeref): Handle assembly load failure
15034         correctly.
15035
15036         * appdomain.c (add_assemblies_to_domain): Handle the case when
15037         the references of an assembly are not yet loaded.
15038
15039         * metadata.c image.c assembly.c: Moved initialization of global
15040         variables to a separate function called at startup since lazy 
15041         initialization of these variables is not thread safe.
15042         
15043         * image.c assembly.c: Made this module thread safe by adding locks in 
15044         the appropriate places.
15045
15046         * domain.c (mono_init): Call the new initialization functions of the
15047         three modules.
15048
15049 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15050
15051         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15052           make a direct call. It is proxy's work to make the call asynchronous.
15053           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15054           the return values.
15055         * object.cs: mono_method_call_message_new(): read AsyncResult and
15056           state object from parameters list, if this info is requested.
15057         * object.h: Added fields to store remote call output values in
15058           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15059
15060 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15061
15062         * object.h: add needed fields to MonoThread.
15063         * threads.c, threads.h: allow registering a function to cleanup data
15064         allocated per thread by the JIT.
15065
15066 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15067
15068         * loader.h: portability fix by Bernie Solomon
15069         * <bernard@ugsolutions.com>.
15070
15071 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15072
15073         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15074         return a MonoArray. This simplifies the code and also ensures that
15075         the cache allways contains an object reference as a value.
15076
15077         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15078         function.
15079
15080 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15081
15082         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15083         fixes a problem with byte ordering when getting the address family for
15084         a socket.
15085
15086 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15087
15088         * .cvsignore: Added monosn.
15089
15090         * reflection.h reflection.c loader.c: Added support for parameter
15091         marshalling to dynamically created types. Fixes #47295.
15092
15093 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15094
15095         * rand.c: remove useless warnings.
15096
15097 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15098
15099         * class.c: implemented ldtoken for methods and fieldrefs.
15100
15101 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15102
15103         * threadpool.c: when mono_async_invoke was called, no one took care of
15104         monitoring the queue. So if the method invoked took some time and we
15105         got new async invoke requests after 500 ms (the thread created waited
15106         that long in WaitForSingleObject), the new async invoke was not called
15107         until the previous one finished.
15108
15109         This is fixed now. Thanks to Totte for helping with it.
15110
15111 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15112
15113         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15114
15115 2003-08-11  Martin Baulig  <martin@ximian.com>
15116
15117         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15118
15119 2003-08-06  Martin Baulig  <martin@ximian.com>
15120
15121         * mono-debug-debugger.c: Added support for static fields,
15122         properties and methods.
15123
15124 2003-08-06  Martin Baulig  <martin@ximian.com>
15125
15126         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15127         make this work for applications with multiple application domains.
15128
15129 2003-08-04  Martin Baulig  <martin@ximian.com>
15130
15131         * mono-debug-debugger.c: Completely reworked the type support; the
15132         most important thing is that we're now just using one single
15133         `MonoType' instance per type.
15134
15135 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15136
15137         * mono-endian.h, mono-endian.c, icall.c: Added icall
15138         ves_icall_System_Double_AssertEndianity to assert double word endianity
15139         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15140
15141 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15142
15143         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15144         support, icalls and fixes.
15145
15146 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15147
15148         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15149         classes that are a punctuation character in .NET is not the same a
15150         g_unichar_ispunct.
15151
15152 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15153
15154         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15155
15156 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15157
15158         * icall.c: Add new MemCopy internalcall.
15159         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15160         Simplified code; It is not necessary to handle all the cases here,
15161         as the C# code takes care of it.  Only handle the case of the name
15162         resource embedded into the assembly.
15163
15164         Changed signature to return the data pointer and the size of the
15165         data. 
15166
15167 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15168
15169         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15170         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15171
15172 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15173
15174         * socket-io.c: ignore EINTR error in select.
15175
15176 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15177
15178         * class.h, class.c: removed unused subclasses field in MonoClass.
15179
15180 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15181
15182         * icall.c: improve fix of get_base_definition(). If the parent class
15183           doesn't have the mehod, look at the parent of the parent.
15184         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15185           to check if a parameter is an in or out parameter
15186           (PARAM_ATTRIBUTE_IN is not set by default).
15187           mono_method_return_message_restore(): Use mono_class_value_size to
15188           get the size of a value type. mono_type_stack_size (parameterType)
15189           does not return the correct value if parameterType is byRef.
15190           mono_load_remote_field(), mono_load_remote_field_new(),
15191           mono_store_remote_field(), mono_store_remote_field_new():
15192           raise exception if the remote call returns an exception.
15193
15194 2003-07-28  Martin Baulig  <martin@ximian.com>
15195
15196         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15197         method.  This is a wrapper around mono_runtime_invoke() which
15198         boxes the instance object if neccessary.
15199
15200 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15201
15202         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15203         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15204
15205 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15206
15207         * icall.c: disable mcs bug workaround.
15208
15209 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15210
15211         * object.c (mono_runtime_class_init): Take the metadata_section
15212         mutex before obtaining the domain mutex.
15213
15214         * appdomain.h: Added definition of metadata_section mutex here. 
15215
15216         * object.c: define metadata_mutex here.
15217
15218 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15219
15220         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15221         fixed.
15222
15223 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15224
15225         * reflection.c: Fix bug #46669
15226
15227 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15228
15229         * exception.c:
15230         * exception.h:
15231         * icall.c:
15232         * object.h: fill in the type name for TypeLoadException.
15233
15234 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15235
15236         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15237         relationship between TypeBuilders while compiling corlib) and bug
15238         45993 (Array types returned from the runtime while compiling
15239         corlib were from the loaded corlib).
15240
15241 2003-07-22  Martin Baulig  <martin@ximian.com>
15242
15243         * mono-debug-debugger.c: Reworked the type support a bit more;
15244         distinguish between types and classes.
15245
15246 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15247
15248         * icall.c: add IsArrayImpl icall.
15249
15250 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15251
15252         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15253         initializing real_size only once. Also fix bug #46602.
15254
15255 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15256
15257         * object.c: Renamed mono_metadata_section to metadata_section.
15258
15259 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15260
15261         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15262           empty array if the type is an array. Fixed.
15263           ves_icall_MonoMethod_get_base_definition: if the base method
15264           is abstract, get the MethodInfo from the list of methods of
15265           the class.
15266         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15267           and it was 1-based. Fixed in mono_param_get_objects.
15268
15269 2003-07-20  Martin Baulig  <martin@ximian.com>
15270
15271         * mono-debug.h: Set version number to 31.
15272         (mono_debug_init): Added `MonoDomain *' argument.
15273
15274         * mono-debug-debugger.c: Reworked the type support; explicitly
15275         tell the debugger about builtin types; pass the `klass' address to
15276         the debugger.
15277
15278 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15279
15280         * image.c: Allow new metadata tables to be loaded without a
15281         warning. Also update the warning message to give the new constant value.
15282                 
15283 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15284
15285         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15286         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15287         array type representation changes.
15288
15289 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15290
15291         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15292         on Environment.Exit () call.
15293
15294 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15295
15296         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15297         requires a matching corlib.
15298
15299 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15300
15301         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15302           Committed again without the CRs.
15303         
15304 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15305
15306         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15307           getting it from the "this" socket instance. Did not work
15308           if the socket is a subclass of Socket.
15309           Also fixed bug #35371.
15310
15311 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15312
15313         * metadata.c: fixed size for TypedByRef.
15314         * loader.c: when searching for a method, consider the vararg amrker.
15315         * unicode.c, decimal.c: constify some arrays.
15316
15317 2003-07-15  Dick Porter  <dick@ximian.com>
15318
15319         * socket-io.c: Fixed compilation for gcc < 3.2.
15320
15321         Fixed compilation for machines that don't have AF_INET6 (thanks to
15322         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15323
15324         Fixed compile warnings.
15325         
15326         Fixed formatting and line endings.
15327
15328 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15329
15330         * socket-io.h:
15331         * socket-io.c: Added IPv6 support.
15332
15333 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15334
15335         * class.c (mono_class_is_assignable_from): New function to implement
15336         the is_assignable_from logic. Used by mono_object_isinst, 
15337         Type::IsAssignableFrom () and the interpreter.
15338
15339         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15340         Object, even interfaces.
15341         
15342         * object.c (mono_object_isinst): Implement in terms of 
15343         is_assignable_from.
15344
15345         * icall.c (ves_icall_type_is_assignable_from): New icall.
15346
15347 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15348
15349         * domain.c (foreach_domain): fix compiler warning.
15350
15351 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15352
15353         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15354         not available on all plattforms
15355
15356 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15357
15358         * image.h image.c: Store the metadata version string in MonoImage.
15359         * icall.c: New icall to retrieve the image version.
15360         * reflection.c (create_dynamic_image): Fill in the image version field
15361         * reflection.c (build_compressed_metadata): Use the image version
15362         from the image structure.
15363
15364 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15365
15366         * appdomain.c: modified comment.
15367         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
15368         That will be its last iteration when mono_gc_cleanup is called from
15369         mono_runtime_cleanup and before the domain is unloaded.
15370
15371         Fixes bug #45962.
15372
15373 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
15374
15375         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
15376         attributes.
15377
15378 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15379
15380         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
15381         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
15382         Bernie Solomon <bernard@ugsolutions.com>.
15383
15384 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15385
15386         * object.c, object.h: provide mono_object_new_fast() for faster
15387         allocation in some special cases.
15388
15389 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
15390
15391         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
15392         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
15393
15394 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
15395
15396         * threadpool.c: fix leaks.
15397
15398 2003-07-01  Dick Porter  <dick@ximian.com>
15399
15400         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
15401         using MonoGHashTables.  Fixes threadpool bug posted to list.
15402
15403 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15404
15405         * image.h, image.c: added support to load an assembly from a byte array.
15406         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
15407         assembly bundle support.
15408
15409 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
15410
15411         * threadpool.c (mono_thread_pool_add): keep a reference to the
15412         AsyncResult to prevent GC
15413
15414 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15415
15416         * class.c: leak fix.
15417
15418 2003-06-25  Dick Porter  <dick@ximian.com>
15419
15420         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
15421         for the async object, the WaitHandle object will close the handle.
15422         Fixes bug 45321.
15423
15424 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15425
15426         * class.c: in mono_array_class_get (), lookup from the hash with the
15427         same type we insert: this works around a bug in
15428         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
15429         lluis. The real fix will have to wait for after the release.
15430
15431 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15432
15433         * icall.c: fix memory leak when getting type members.
15434
15435 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15436
15437         * reflection.c: added more pubtoken special cases.
15438
15439 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
15440
15441         * class.c: handle field offset correctly when class size
15442         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
15443
15444 2003-06-20  Martin Baulig  <martin@ximian.com>
15445
15446         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
15447         *image' field.
15448
15449 2003-06-20  Martin Baulig  <martin@ximian.com>
15450
15451         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
15452
15453 2003-06-20  Martin Baulig  <martin@ximian.com>
15454
15455         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
15456         just distinguish between variables in registers and variables at
15457         an offset relative to a register.
15458
15459 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15460
15461         * icall.c: #ifdef out latest changes until mcs is fixed.
15462
15463 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15464
15465         * icall.c: return members in metadata order.
15466
15467 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15468
15469         * icall.c: avoid infinite loop in GetTimeZoneData.
15470
15471 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
15472
15473         * icall.c: added Marshal.Prelink/All icalls.
15474
15475 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15476
15477         * object.c, object.h: fix warnings and do some overflow checking
15478         when creating arrays.
15479
15480 2003-06-17  Dick Porter  <dick@ximian.com>
15481
15482         * file-io.h:
15483         * file-io.c: File attributes need to be tweaked slightly when
15484         passed from the managed to the w32 world.
15485
15486 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15487         * profiler.h profiler-private.h profiler.c: Rework last patch
15488         based on suggestion by Paolo.
15489         
15490 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15491
15492         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
15493         instruction level coverage data collection.
15494         * profiler.h profiler.c (: Added new callback function which can be
15495         used by the profiler to limit which functions should have coverage
15496         instrumentation.
15497         * profiler.c (mono_profiler_load): Call g_module_build_path to
15498         generate the file name of the profiler library.
15499
15500 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15501
15502         * profiler.c, profiler.h, profiler-private.h: added basic block 
15503         coverage profiling API.
15504
15505 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15506
15507         * reflection.c (mono_reflection_create_runtime_class): Add support
15508         for events in dynamically generated code.
15509
15510         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15511         not allocated.
15512
15513 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15514
15515         * icall.c: when getting timezone info, return reasonable values if we
15516         can't get the actual data.
15517
15518 2003-06-14  Dick Porter  <dick@ximian.com>
15519
15520         * threads.c (start_wrapper): Remove the reference to the thread
15521         object in the TLS data, so the thread object can be finalized.
15522         This won't be reached if the thread threw an uncaught exception,
15523         so those thread handles will stay referenced :-( (This is due to
15524         missing support for scanning thread-specific data in the Boehm GC
15525         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15526
15527 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15528
15529         * reflection.c: ensure streams and tables are first allocated with
15530         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15531
15532 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15533
15534         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15535
15536 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15537
15538         * reflection.c (mono_reflection_create_runtime_class): Add support for
15539         properties to dynamically created classes.
15540         * reflection.c: Fix a few places where non-MonoObjects were inserted
15541         into the tokens hashtable.
15542
15543 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15544
15545         * object.c: some support to handle out of memory exceptions.
15546
15547 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15548
15549         * marshal.c (mono_marshal_get_native_wrapper): support reference
15550         return types
15551
15552 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15553
15554         * object.h, object.c: more portability stuff from Bernie Solomon.
15555         Unexport mono_object_allocate(). Added mono_object_unbox ().
15556         Set exitcode when an unhandled exception is thrown.
15557
15558 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15559
15560         * marshal.c (mono_marshal_get_native_wrapper): use custom
15561         marshaler for return types.
15562
15563 2003-06-10  Dick Porter  <dick@ximian.com>
15564
15565         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15566         ip_mreq is available
15567
15568 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15569
15570         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15571         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15572         by Bernie Solomon <bernard@ugsolutions.com>.
15573
15574 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15575
15576         * gc.c (mono_gc_init): Avoid error message on shutdown when
15577         GC_DONT_GC=1 is used.
15578
15579         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15580         New icall to return the GUID of a module.
15581
15582 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15583
15584         * class.c: ensure instance size always includes the parent's size
15585         even whem class size is set explicitly (fixes bug#44294).
15586
15587 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15588
15589         * profiler.h, profiler.c: made the simple profiler thread-safe,
15590         get more accurate timing info. Allow the loading of an
15591         externally-developed profiler module.
15592
15593 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15594
15595         * marshal.c (mono_marshal_get_native_wrapper): improved
15596         class/byref arguments.
15597         (mono_marshal_get_native_wrapper): better string marshaling support.
15598
15599 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15600
15601         * class.c: ensure .pack and .size are handled correctly and
15602         simplified layout of static fields.
15603
15604 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15605
15606         * appdomain.c
15607         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15608
15609         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15610         current directory (fix bug 44008)
15611
15612 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15613
15614         * marshal.c (mono_marshal_get_native_wrapper): started support for
15615         custom marshalers.
15616         (mono_delegate_to_ftnptr): consider marshalling specifications
15617
15618 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15619
15620         * reflection.c, reflection.h: emit custom marshal info.
15621
15622 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15623
15624         * object.c: free the GError.
15625         * icall.c: added CloseEvent_internal.
15626         * threads.[ch]:
15627         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15628         call.
15629
15630 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15631
15632         * loader.c (mono_method_get_signature): Add support for dynamic
15633         assemblies.
15634
15635 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15636
15637         * reflection.c: fixed bug #43905.
15638
15639 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15640
15641         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15642         handling TypedReference and ArgIterator.
15643         * loader.c, loader.h: added function to get signature at call site.
15644
15645 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15646
15647         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15648         data readonly. Buglets and warning fixes. Some MethodSpec support.
15649
15650 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15651
15652         * class.h, class.c, object.c: remove relative numbering support.
15653
15654 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15655
15656         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15657         free the string, until we get a chance to fix Gtk#
15658
15659 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15660
15661         * marshal.c: revert last patch.
15662
15663 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15664
15665         * icall.c: updates for new mono_class_vtable() not calling
15666         the type constructor anymore.
15667
15668 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15669
15670         * object.h, object.c: separate vtable creation from type
15671         initialization. Make running the .cctor thread safe.
15672
15673 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15674
15675         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15676
15677 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15678
15679         * loader.c (mono_get_method): consider calling convention
15680
15681 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15682
15683         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15684         to return the invisible global type for a module.
15685
15686         * reflection.c (mono_image_build_metadata): Emit global fields too.
15687
15688 2003-05-20  Peter Williams  <peterw@ximian.com>
15689
15690         * loader.c (mono_lookup_internal_call): Add a few newlines.
15691
15692 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15693
15694         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15695         literal strings.
15696
15697         * appdomain.c (set_domain_search_path): Recalculate search path when
15698         AppDomainSetup.PrivateBinPath changes.
15699
15700         * object.c (mono_class_compute_gc_descriptor): It turns out some
15701         parts of the class libs (like System.Thread) holds pointers to
15702         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15703         to treat native int a pointer type here.
15704         
15705 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15706
15707         * appdomain.h, domain.c: add hashtable for jump target resolution.
15708
15709 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15710
15711         * reflection.h reflection.c icall.c: Added new icalls 
15712         GetManifestResourceInfoInternal, GetModulesInternal and support
15713         infrastructure.
15714
15715 2003-05-16  Dick Porter  <dick@ximian.com>
15716
15717         * icall.c:
15718         * file-io.h:
15719         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15720
15721 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15722
15723         * object.c: mono_store_remote_field: little fix to previous patch.
15724
15725 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15726
15727         * class.c: add constructors to array classes.
15728         * icall.c: special case array construction for InternalInvoke (),
15729
15730 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15731
15732         * class.h class.c reflection.c object.c: Added support for field
15733         defaults in dynamically generated classes.
15734
15735 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15736
15737         * reflection.c: properly encode charset for ddlimport.
15738
15739 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15740
15741         * threads.c: allow compiling without GC.
15742
15743 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15744
15745         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15746         handling of thread static data.
15747
15748 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15749
15750         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15751
15752 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15753
15754         * class.c (mono_array_class_get): always set the serializable flags
15755         (mono_array_class_get): always set the SEALED attribute for array types
15756
15757 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15758
15759         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15760         attributes (fix for bug 42021).
15761
15762 2003-05-12  Dick Porter  <dick@ximian.com>
15763
15764         * gc.c: Don't run finalizers when the finalizer thread is
15765         finishing up, because the default domain has already been
15766         destroyed.
15767
15768 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15769
15770         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15771         value is null, we should throw an exception.   This is slightly
15772         different than the other conventions used for the constructor.
15773
15774 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15775
15776         * socket-io.c: fixed windows build.
15777
15778 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15779
15780         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15781
15782 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15783
15784         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15785         compilers.
15786
15787 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15788
15789         * class.c (mono_class_layout_fields): Add experimental GC aware
15790         auto layout facility. Requires class library changes to work correctly.
15791
15792         (mono_class_setup_vtable): Avoid overriding explicit interface
15793         method implementations. Fixes iface3.exe test.
15794
15795         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15796         object reference.
15797         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15798         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15799
15800         * metadata.h: Add new type classification macro which determines
15801         whenever the type holds an object reference.
15802
15803 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15804
15805         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15806
15807 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15808
15809         * gc.c (finalizer_thread): Work around a GC bug.
15810
15811 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15812
15813         * marshal.c (emit_struct_conv): allow unions
15814
15815         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15816
15817 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15818
15819         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15820
15821 2003-05-06  Martin Baulig  <martin@ximian.com>
15822
15823         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15824
15825 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15826
15827         * socket-io.c:
15828         (Select_internal): allow NULLs, don't create arrays if not needed.
15829         Coupled with Socket.cs changes.
15830
15831         * threadpool.c:
15832         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15833         register a finalizer for it that will close the semaphore handle. This
15834         fixes the leak and make Lupus' test run with > 4080 loops.
15835
15836 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15837
15838         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15839         Jerome Laban (bug #42287)
15840
15841 2003-05-02  Martin Baulig  <martin@ximian.com>
15842
15843         * debug-mono-symfile.h
15844         (MonoSymbolFile): Moved declaration into mono-debug.h.
15845         (MonoDebugMethodJitInfo): Likewise.
15846         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15847         argument.
15848         (_mono_debug_address_from_il_offset): Take a
15849         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15850
15851         * mono-debug.h
15852         (MonoDebugDomainData): New struct.
15853         (mono_debug_get_domain_data): New function.
15854         (mono_debug_add_method): Take an additional `MonoDomain *'
15855         argument.
15856         (mono_debug_source_location_from_address): Likewise.
15857         (mono_debug_il_offset_from_address): Likewise.
15858         (mono_debug_address_from_il_offset): Likewise.
15859
15860 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15861
15862         * reflection.c: one more check for null type in custom attrs.
15863
15864 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15865
15866         * reflection.c: avoid warning (comparison is always false due to limited
15867         range of data type).
15868
15869 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15870
15871         * icall.c: throw an exception in Type.GetField if the argument 'name'
15872         is NULL.
15873
15874 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15875
15876         * reflection.c: fixed handling of enums in named arguments to custom
15877         attributes (bug #42123).
15878
15879 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15880
15881         * reflection.c: use the right array element type and handle
15882         a null for a Type argument, too.
15883
15884 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15885
15886         * reflection.c: handle arrays as arguments to custom attributes.
15887
15888 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15889
15890         * reflection.c: handle a string value in a custom attr
15891         ctor that takes an object.
15892
15893 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15894
15895         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15896         (fix bug #42063)
15897
15898 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15899
15900         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15901
15902 2003-04-27  Martin Baulig  <martin@ximian.com>
15903
15904         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15905         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15906         MONO_DEBUGGER_EVENT_BREAKPOINT.
15907         (mono_breakpoint_trampoline_code): Removed.
15908         (mono_debugger_event_handler): The last argument is now a
15909         `guint32'.
15910         (mono_debugger_insert_breakpoint_full): Removed the
15911         `use_trampoline' argument.
15912         (mono_debugger_method_has_breakpoint): Likewise.
15913         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15914         mono_debugger_breakpoint_callback(); take the method and
15915         breakpoint number as arguments.
15916
15917 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15918
15919         * metadata.c: fix off by one when loading parameters attributes.
15920
15921 2003-04-24  Martin Baulig  <martin@ximian.com>
15922
15923         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15924
15925 2003-04-24  Martin Baulig  <martin@ximian.com>
15926
15927         * mono-debug-debugger.c: Moved all code which interacts with the
15928         Mono Debugger here.
15929
15930         * debug-mono-symfile.c: This code now just deals with the symbol
15931         file itself, the debugger code is now in mono-debug-debugger.c.
15932
15933 2003-04-23  Martin Baulig  <martin@ximian.com>
15934
15935         * mono-debug.c (mono_debug_source_location_from_il_offset):
15936         New method; like mono_debug_source_location_from_address(), but
15937         takes an IL offset instead of a machine address.
15938
15939 2003-04-23  Martin Baulig  <martin@ximian.com>
15940
15941         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15942         `line' field; this is now computed by the debugger.
15943
15944 2003-04-23  Martin Baulig  <martin@ximian.com>
15945
15946         * mono-debug.[ch]: New files.  This is the new debugging interface.
15947
15948         * mono-debug-debugger.[ch]: New files.  Moved all code which
15949         interacts with the Mono Debugger here.
15950
15951 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15952
15953         * domain.c (mono_init): initialize mono_defaults.monitor_class
15954
15955 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15956
15957         * reflection.c (method_encode_code): Add a spicy exception to help
15958         future compiler authors.
15959
15960 2003-04-21  Martin Baulig  <martin@ximian.com>
15961
15962         * icall.c
15963         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15964         Make this work with relative pathnames; g_filename_to_uri() needs
15965         an absolute filename.
15966
15967 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15968
15969         * icall.c: Track name changes in Object and ValueType.
15970
15971 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15972
15973         * metadata.c (mono_type_stack_size): size should be a multiple of
15974         sizeof (gpointer)
15975
15976 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15977
15978         * gc.c:
15979         (internal_domain_finalize): moved into mono_domain_finalize. No need
15980         to create another thread because the finalizers will be run in the
15981         finalizer thread.
15982         
15983         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
15984         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
15985         to be run (MS does this too).
15986
15987 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
15988
15989         * object.c (mono_class_compute_gc_descriptor): Update comment.
15990
15991         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
15992
15993         * image.h: Add synchronized wrapper cache.
15994
15995         * image.c (do_mono_image_open): Initialize cache.
15996
15997         * reflection.c (create_dynamic_mono_image): Initialize cache.
15998
15999 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16000
16001         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16002         ves_icall_System_Buffer_ByteLengthInternal.
16003
16004 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16005
16006         * reflection.c: setup klass->nested_in earlier. Allow
16007         a dash in the assembly name.
16008
16009 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16010
16011         * metadata.c (mono_type_to_unmanaged): dont access
16012         type->data.klass for MONO_TYPE_OBJECT
16013         (mono_type_to_unmanaged): consider System.Delegate class
16014
16015 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16016
16017         * class.c: just setup supertypes in the proper place instead of
16018         initializing the full element class for arrays.
16019
16020 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16021
16022         * class.c: ensure the element class of arrays is initialized.
16023         Setup the supertype info for array classes, too.
16024
16025 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16026
16027         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16028
16029 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16030
16031         * Makefile.am: re-added -m option when running cygpath. This way,
16032         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16033         separator.
16034         * mono-config.c: same codepath for locating mono config file for WIN32
16035         and the rest.
16036         * assembly.c: if mono_assembly_setrootdir is called, don't override
16037         the value set.
16038
16039 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16040
16041         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16042         MONO_ASSEMBLIES variable.
16043
16044 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16045
16046         * icall.c: added Assembly::GetNamespaces() icall.
16047
16048 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16049
16050         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16051
16052 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16053
16054         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16055         * object.c: fixed bug in the construction of vtable for proxies
16056
16057 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16058
16059         * object.c (mono_array_new): Mark mono_array_new as an icall.
16060
16061 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16062
16063         * class.c: fixed test for public method when overriding interfaces.
16064         Closes bug #40970.
16065
16066 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16067
16068         * appdomain.h, domain.c: added mono_domain_foreach() to
16069         be able to access the currently loaded appdomains.
16070         * object.c: make string interning work across sppdomains.
16071         Mark some functions for use as icalls.
16072
16073 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16074
16075         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16076
16077         * reflection.h reflection.c: Allocate long living data using 
16078         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16079
16080         * reflection.c: Double the allocation size in streams instead of
16081         increasing it, to prevent unneccesary copying on large assemblies.
16082         
16083         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16084         creation if the assembly does not have the Run flag set.
16085
16086 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16087
16088         * class.h: avoid the C++ keywords in header files (Jerome Laban
16089         spotted and fixed this).
16090
16091 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16092
16093         * object.c:
16094         (mono_unhandled_exception): fill in the arguments for the
16095         UnhandledException event. Only trigger that event for the default
16096         domain (as MS does).
16097
16098 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16099
16100         * object.c: Improve typed allocation stuff based on suggestions from
16101         Paolo. Also turn it on if the GC library supports it.
16102
16103 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16104
16105         * object.c object.h class.h: Added experimental typed allocation
16106         facility using the interfaces in gc_gcj.h.
16107
16108         * os/gc_wrapper.h: Added new include files.
16109         
16110 2003-04-03  Martin Baulig  <martin@ximian.com>
16111
16112         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16113         which is not yet enabled by default.
16114
16115         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16116         functions.
16117         (mono_gc_lock, mono_gc_unlock): New static functions.
16118
16119         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16120         functions; stop/start the world for the garbage collector.  This
16121         is using the windows API; we need to complete the SuspendThread()/
16122         ResumeThread() implementation in the io-layer to make this work on Unix.
16123         (mono_gc_push_all_stacks): New public function; tells the garbage
16124         collector about the stack pointers from all managed threads.
16125
16126 2003-04-03  Martin Baulig  <martin@ximian.com>
16127
16128         * object.h (MonoThread): Added `gpointer stack_ptr'.
16129
16130         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16131
16132 2003-04-03  Martin Baulig  <martin@ximian.com>
16133
16134         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16135
16136 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16137
16138         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16139         field.last.
16140
16141 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16142
16143         * loader.c (mono_lookup_internal_call): Report the corlib that is
16144         out of sync.
16145
16146 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16147
16148         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16149         System.DBNull (it's class not valuetype).
16150
16151 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16152
16153         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16154         if the array method was already assigned a token (fixes bug#40646).
16155
16156 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16157
16158         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16159         if no assembly is given.
16160
16161 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16162
16163         * metadata.h: Added the new tables.
16164
16165         * row-indexes.h: Added definitions for new tables.
16166
16167         * metadata.c: Add schemas for new tables, and add support for
16168         computing the sizes of them.
16169
16170         * class.c: Update for handling the new type cases.
16171
16172 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16173
16174         * metadata.h (MONO_TYPE_IS_VOID): new macro
16175
16176 2003-03-31  Martin Baulig  <martin@ximian.com>
16177
16178         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16179
16180         * threads.c (mono_thread_new_init): Call `thread_created' in the
16181         mono_thread_callbacks.
16182
16183 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16184
16185         * loader.h: added marshalbyrefobject_class to mono_defaults
16186         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16187         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16188           generation of output parameters.
16189           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16190         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16191           contextbound and the target object belongs to the context of the caller.
16192         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16193         * object.c: Implemented support for interfaces and abstract classes
16194           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16195           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16196
16197 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16198
16199         * class.h class.c (mono_class_is_subclass_of): New function.
16200         
16201         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16202         routines for most common case (calls from ArrayList::ToArray).
16203
16204         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16205         routine so programs which call Environment::Exit() can be profiled.
16206
16207         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16208         Added MONO_ARCH_SAVE_REGS.
16209
16210         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16211
16212 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16213
16214         * blob.h: Add a couple of new MonoType types definitions.
16215
16216         * tabledefs.h: Add a couple of new call convs.
16217
16218 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16219
16220         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16221         the layout of the class.
16222
16223         * reflection.c (alloc_table): double the size on overflow to avoid
16224         unnecessary copying.
16225
16226         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16227         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16228         null so it can be garbage collected.
16229         
16230 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16231
16232         * reflection.c (mono_reflection_get_type): Return the resolved type
16233         only if it is in the assembly we searched.
16234
16235         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16236
16237         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16238         method.
16239
16240 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16241
16242         * appdomain.c:
16243         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16244         the right one is 'file:///blah', but MS allows it.
16245         * assembly.c:
16246         (mono_assembly_open): allow 'file://blah'
16247
16248         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16249
16250 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16251
16252         * socket-io.c: fixes bug #40310.
16253
16254 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16255
16256         * reflection.c (mono_reflection_parse_type): handle deeply nested
16257         types correctly.
16258
16259         * reflection.c (mono_image_create_token): Use unique token values
16260         since they will be put into a hash table.
16261
16262         * class.c (mono_class_setup_vtable): If a method occurs in more than
16263         one place in the vtable, and it gets overriden, then change the
16264         other occurances too.
16265
16266         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16267         object as return type.
16268
16269 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16270
16271         * icall.c: Deleted "ToString" implementation for double and float
16272         because they are full implemented in managed code.
16273
16274 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16275
16276         * reflection.c, reflection.h: implemented and exported functions
16277         to retrieve info about custom attributes.
16278
16279 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16280
16281         * appdomain.c: moved Uri handling to assembly.c
16282         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16283         work when using a file Uri in *nix and windows.
16284
16285         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16286         GetReferencedAssemblies.
16287
16288 2003-03-18  Dick Porter  <dick@ximian.com>
16289
16290         * icall.c: Rename a couple of internal calls
16291
16292         * threads.c: Set the thread state to Stopped when a thread exits.
16293         Fixes bug 39377.
16294
16295 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16296
16297         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16298         New icall.
16299
16300         * object.c (mono_class_vtable): fix warning.
16301
16302 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16303
16304         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16305
16306         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16307         memory.
16308         (method_encode_clauses): Create exception info structures in the right
16309         order.
16310         (mono_reflection_setup_internal_class): Initialize supertypes field.
16311
16312         * class.c object.c: Handle interfaces which implement other interfaces 
16313         correctly.
16314
16315         * class.h class.c: Move the supertypes array initialization code into 
16316         a separate function so it can be used for dynamic types too. Also call
16317         it earlier, in mono_class_init(), since it can be used before the
16318         type is initialized.
16319
16320 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16321
16322         * Makefile.am:
16323         * assembly.c:
16324         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16325
16326         * appdomain.c:
16327         * appdomain.h:
16328         * marshal.c:
16329         * object.c: remove warnings.
16330
16331 2003-03-13  Martin Baulig  <martin@ximian.com>
16332
16333         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16334         (MonoDebugLexicalBlockEntry): New types.
16335
16336         * debug-mono-symfile.c
16337         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16338
16339 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16340
16341         * process.c: ret can be any non-zero value accroding to MS doc.
16342
16343 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16344
16345         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16346         fixing a warning for a miss-used prototype, would have cause
16347         random memory corruption.
16348
16349 2003-03-07  Martin Baulig  <martin@ximian.com>
16350
16351         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16352         getting really annoying ....
16353
16354 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16355
16356         * reflection.c (fixup_method): added support for array methods.
16357
16358 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16359
16360         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16361         (pointed out by Michael Adams).
16362
16363 2003-03-04  Dick Porter  <dick@ximian.com>
16364
16365         * icall.c: Temporarily reverted the Double and Single ToString()
16366         change, because it broke nunit.
16367
16368 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
16369
16370         * object.h, threads.h: make include files compatible with C++
16371         (patch by Jerome Laban <jlaban@wanadoo.fr>).
16372
16373 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16374
16375         * icall.c: Erased ToString helper functions for Double and Single.
16376         Now, that implementations ar all in managed code (Double and Single
16377         Formatters).
16378
16379 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
16380
16381         * appdomain.c: Added method for initializing the default context of
16382         a domain. Added internal call for getting the default context.
16383         * appdomain.h: Added context variable in MonoDomain struct.
16384         * domain.c: mono_domain_set also sets the default context of the domain
16385         * icall.c: Mapped internal method InternalGetDefaultContext.
16386         * object.c: mono_object_get_virtual_method returns always a remoting
16387         wrapper if the object is a transparent proxy.
16388         mono_runtime_invoke_array: when creating an object by calling the
16389         constructor, if the created object is a proxy, then the constructor should
16390         be called using the a remoting wrapper.
16391
16392 2003-03-03  Dick Porter  <dick@ximian.com>
16393
16394         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
16395         variable so it compiles on solaris.  Problem spotted by
16396         Christopher Taylor <ct@cs.clemson.edu>
16397
16398 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16399
16400         * appdomain.c:
16401         (get_info_from_assembly_name): don't leak value.
16402
16403         * icall.c:
16404         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
16405         result.
16406
16407 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
16408
16409         * assembly.c: export mono_image_load_references ().
16410         * class.c: handle function pointers. mono_class_from_name() now
16411         supports nested type names directly.
16412
16413 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
16414
16415         * reflection.h reflection.c: Encode already created dynamic methods 
16416         and fields correctly as a DEF instead of a REF.
16417
16418         * reflection.c: Get rid of the force_ref argument to 
16419         mono_image_typedef_or_ref since it was wrong in the first place.
16420
16421         * string-icalls.c: add error checking to string constructors according
16422         to the MSDN docs.
16423
16424         * reflection.c: Emit types in the order their TypeBuilders were 
16425         created. Previously, a new table index was assigned to each type before
16426         the tables were emitted. This was wrong because the signature blob
16427         might already refer to a type by its original table index.
16428
16429 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
16430
16431         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
16432         change.
16433         
16434 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16435
16436         * Makefile.am: make assemblies dir have \ instead of / on windows.
16437
16438 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
16439
16440         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
16441         iterate over the NESTEDCLASS table using a linear search since the
16442         table is not guaranteed to be sorted by the secondary key.
16443
16444         * class.c (mono_class_create_from_typedef): fixed up call to
16445         mono_metadata_nesting_typedef.
16446         
16447 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
16448
16449         * marshal.c (mono_string_to_byvalstr): clear the memory as
16450         suggested by Jerome Laban <jlaban@wanadoo.fr>
16451
16452 2003-02-26  Dick Porter  <dick@ximian.com>
16453
16454         * process.c: Cope with padding in .rsrc blocks
16455
16456 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16457
16458         * metadata.h: reverted the filter_len change, it breaks reflection
16459         
16460 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16461
16462         * metadata.h: added a new field to store the filter_len
16463         
16464
16465 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
16466
16467         * reflection.c: handle custom attributes for types and members
16468         created with Reflection.Emit (bug#38422).
16469
16470 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
16471
16472         * reflection.c: define RTSpecialName automatically for constructors for
16473         compatibility with MS.NET.
16474
16475         * reflection.c (mono_reflection_create_runtime_class): initialize
16476         nested_in field of dynamically created classes.
16477
16478 2003-02-22  Martin Baulig  <martin@ximian.com>
16479
16480         * debug-mono-symfile.h: Incremented version number.
16481
16482 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16483
16484         * object.h icall.c process.c: fix warnings.
16485
16486 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16487
16488         * appdomain.h appdomain.c:
16489         (mono_domain_try_type_resolve): split the 
16490         name_or_tb argument into a name and a tb argument.
16491         (mono_domain_has_type_resolve): new function to check whenever the
16492         application has registered a TypeResolve event handler.
16493         
16494         * icall.c reflection.h reflection.c: move the type resolve logic into
16495         mono_reflection_get_type () so it will be invoked when 
16496         Assembly::GetType () is called.
16497
16498         * reflection.c:
16499         (mono_reflection_get_type): renamed to get_type_internal.
16500         (mono_reflection_get_type): fixed type name generation so it works 
16501         for nested types too.
16502         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16503         costly type name generation if there is no resolve event handler.
16504
16505 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16506
16507         * class.c, image.c: load exported types from file references.
16508
16509 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16510
16511         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16512           used to cache the managed methods used to create proxies and make 
16513           remote invocation of methods.
16514         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16515           to be remotely created.
16516         * object.c: Modified the method mono_class_vtable(). It now initializes 
16517           the remote flag of the vtable. Modified mono_object_new_specific(), 
16518           so now it checks the remote flag.
16519         * icall.c: Added a couple of internal methods, one for enabling instance 
16520           creation interception for a type, and one for creating objects bypassing
16521           the remote check.
16522
16523 2003-02-18  Martin Baulig  <martin@ximian.com>
16524
16525         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16526         New interncall to get a method's metadata token.
16527
16528         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16529         New interncall for the debugger.
16530
16531 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16532
16533         * class.c (mono_class_setup_vtable): allocate supertype array
16534
16535 2003-02-18  Martin Baulig  <martin@ximian.com>
16536
16537         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16538
16539 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16540
16541         * reflection.c:
16542         (assembly_name_to_aname): jump over unknown properties (i've found
16543         something like: 'type, assembly, version=xxx, custom=null, public...',
16544         so now will ignore custom=null and still get the rest of the values).
16545
16546 2003-02-17  Dick Porter  <dick@ximian.com>
16547
16548         * threads.c: Have Thread.Start() wait for a semaphore to signal
16549         that the thread has set up all its local data.  This fixes bug
16550         34323, where Abort() raced the new thread's TLS data.
16551
16552         Also removes the handle_store() call from start_wrapper, because
16553         threads are now always created suspended and there is no longer a
16554         race between the parent and child threads to store the info.
16555
16556 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16557
16558         * image.c: explain the #- heap issue in a message, hopefully
16559         avoiding FAQs on mono-list.
16560
16561 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16562
16563         * icall.c:
16564         (GetEntryAssembly): if the domain has not invoked
16565         AppDomain.ExecuteAssembly yet, return the assembly of the default
16566         AppDomain.
16567
16568 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16569
16570         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16571
16572 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16573
16574         * metadata.c, reflection.c: simple speedup to type hash
16575         and equals code.
16576
16577 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16578
16579         * image.c, image.h, class.c, assembly.c: move module loading
16580         to MonoImage. When loading metadata, consider alignemnet from
16581         the start of metadata, not from the metadata address in memory.
16582
16583 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16584
16585         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16586         AssemblyBuilder objects. Factored out custom attribute creation into
16587         a separate function.
16588         (create_custom_attr): new function to create custom attributes.
16589
16590 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16591
16592         * Makefile.am: Got tired of typing the full pathname to pedump.
16593         Until there is another option, am installing this.
16594
16595 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16596
16597         * class.c (class_compute_field_layout): always set field->parent 
16598         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16599
16600 2003-02-11  Dick Porter  <dick@ximian.com>
16601
16602         * threads-types.h:
16603         * monitor.c: Rewrote Monitor, making lock much faster and
16604         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16605         creates them as needed.
16606
16607         * exception.c: Added SynchronizationLockException
16608
16609         * threads.c: Deleted old Monitor implementation.  The new one is
16610         in a new file.
16611
16612 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16613
16614         * class.c: handled TypedReference type code. Set the correct size for
16615         class data. Setup interface_offsets for interface classes, too.
16616
16617 2003-02-09  Martin Baulig  <martin@ximian.com>
16618
16619         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16620
16621 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16622
16623         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16624         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16625         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16626         * verify.c: check for code that runs after the end of the method.
16627
16628 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16629
16630         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16631         "System.Math::Round2".
16632         * sysmath.h: Added Floor, Round and Round2 definitions.
16633         * sysmath.c: Modified certain functions that were not 100% compliant
16634         with MS.NET (math precision) and added the implementation of Floor,
16635         Round and Round2.
16636
16637 2003-02-07  Martin Baulig  <martin@ximian.com>
16638
16639         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16640
16641 2003-02-07  Martin Baulig  <martin@ximian.com>
16642
16643         * debug-mono-symfile.c: Reflected latest symwriter changes.
16644         (mono_debug_create_mono_symbol_file): Removed.
16645         (mono_debug_open_mono_symbol_file): Take an argument which
16646         specifies whether to create a dynamic symbol file.
16647
16648 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16649
16650         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16651
16652 2003-02-05  Martin Baulig  <martin@ximian.com>
16653
16654         * reflection.c (mono_image_build_metadata): Make this public,
16655         protect it against being called multiple times, don't create
16656         resources and don't build the compressed metadata here.
16657         (mono_image_create_pefile): Do this here.
16658
16659         * icall.c
16660         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16661
16662 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16663
16664         * socket-io.c: fixed bug #36322.
16665
16666 2003-02-06  Piers Haken <piersh@friskit.com>
16667
16668         * appdomain.[ch]:
16669         * class.h:
16670         * debug-mono-symfile.c:
16671         * icall.c:
16672         * loader.c:
16673         * mono-config.c:
16674         * monosn.c:
16675         * reflection.c:
16676         * socket-io.c: warning cleanups
16677
16678 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16679
16680         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16681         function. works like remoting invoke, but does a check for the Proxy first.
16682
16683 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16684
16685         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16686
16687 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16688
16689         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16690         array of pointers.
16691         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16692         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16693
16694         * object.c (mono_store_remote_field_new): used by the new jit
16695         instead of mono_store_remote_field
16696         (mono_load_remote_field_new): used by the new jit
16697         instead of mono_load_remote_field
16698
16699 2003-02-05  Patrik Torstensson
16700
16701         * appdomain.c: changed unload to take the domain id instead
16702         of domain
16703         
16704         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16705
16706
16707 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16708
16709         * appdomain.c: don't look for assemblies in ApplicationBase if
16710         PrivateBinPathProbe is set.
16711
16712 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16713
16714         * object.c: make the first argument in main_args contain the absolute
16715         path to the assembly. Fixes bug #37511.
16716
16717 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16718
16719         * icall.c: get correct UTC offset for countries not using daylight
16720         time saving. Fixes bug #30030.
16721
16722 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16723
16724         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16725         and 1 are the family).
16726
16727 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16728
16729         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16730
16731         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16732
16733 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16734
16735         * reflection.c: added support for SignatureHelper tokens, which is
16736         needed by the Calli opcode.
16737
16738         * reflection.h: track changes to SignatureHelper class.
16739
16740         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16741
16742 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16743
16744         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16745
16746 2003-02-03  Patrik Torstensson
16747         * appdomain.[c|h], domain.c : 
16748          - Added support for getting a domain via domain id
16749          - Support for setting and getting domain from System.AppDomain 
16750            (used in cross appdomain channel)
16751          - Added support for get/set for a MonoAppContext on a thread 
16752            (Context class in System.Runtime.Remoting.Contexts),
16753          - Removed hack in Get/SetData and ExecuteAssembly.
16754         
16755         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16756         the managed world to get control when a proxy is created.
16757
16758         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16759         
16760 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16761
16762         * icall.c
16763         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16764         Populate the codebase field as well.
16765
16766 2003-02-02  Martin Baulig  <martin@ximian.com>
16767
16768         * debug-mono-symfile.c
16769         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16770         (mono_debug_symfile_add_method): Allow interncalls.
16771
16772 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16773
16774         * icall.c: throw parse exception if strtod fails or the string is empty.
16775
16776 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16777
16778         * marshal.c: handle object type separately from defined
16779         class types.
16780
16781 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16782
16783         * marshal.c: handle NATIVE_LPSTR for strings when it's
16784         explicitly specified.
16785
16786 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16787
16788         * reflection.c, reflection.h, icall.c: setup the reflection
16789         handle cache for ModuleBuilders and AssemblyBuilders.
16790
16791 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16792
16793         * reflection.c (reflection_methodbuilder_to_mono_method): set
16794         pinvoke flag
16795
16796 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16797
16798         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16799
16800 2003-01-29  Dick Porter  <dick@ximian.com>
16801
16802         * threads.c: No need for the fake_thread kludge now that Thread
16803         doesn't run a class constructor
16804         
16805 2003-01-29  Dick Porter  <dick@ximian.com>
16806
16807         * threads.c: Use g_direct_hash instead of the rather bogus
16808         g_int_hash
16809
16810 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16811
16812         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16813         (fix pinvoke12.exe)
16814         (mono_marshal_get_struct_to_ptr): generate valid IL code
16815         (mono_marshal_get_ptr_to_struct): generate valid IL code
16816         (*): correctly set sig->pinvoke, we need to memdup the signature
16817         to do that
16818
16819 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16820
16821         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16822         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16823
16824 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16825
16826         * profiler.c: provide more callers information.
16827
16828 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16829
16830         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16831
16832         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16833
16834         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16835
16836 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16837
16838         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16839         exception instead of going into an infinite loop on dates which it 
16840         can't yet handle.
16841
16842         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16843         out-of-range exception if needed.
16844
16845         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16846         an implementation for an interface method and to override an inherited
16847         method at the same time. 
16848         Imagine a scenario when a virtual method is used to override a
16849         virtual abstract method in a parent class, and this same method 
16850         provides an implementation for an method inherited from an interface. 
16851         In this case, the interface resolution code will set im->slot, which 
16852         means that the virtual method override pass will skip this method 
16853         which means a pointer to the abstract method inherited from the parent
16854         will remain in the vtable of this non-abstract class.
16855
16856         * class.c: (mono_class_setup_vtable): continue search for a real 
16857         method if only an abstract method is found.     
16858
16859 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16860
16861         * reflection.c: add size to encoding for ByValStr and ByValArray
16862         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16863
16864 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16865
16866         * class.c (mono_class_setup_vtable): pass the override info as an
16867         argument.
16868
16869         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16870         correctly.
16871         
16872         * reflection.c (ensure_runtime_vtable); add support for method 
16873         overrides.
16874         
16875 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16876
16877         * reflection.c (resolution_scope_from_image): Hack to work to work with
16878         dynamic assemblies.
16879
16880         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16881         added a 'force_ref' argument to force this function to allways return 
16882         a TypeRef. This is needed by mono_image_get_memberref_token ().
16883         
16884 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16885
16886         * reflection.c (mono_image_get_type_info): interfaces really don't have
16887         a parent.
16888
16889         * reflection.c (mono_image_basic_init): fill out missing fields of
16890         image structure.
16891
16892         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16893         dynamic assemblies. This is required so dynamic assemblies show up in
16894         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16895         Type::GetType() etc. This is consistent with MS behaviour.
16896
16897         * image.c image.h reflection.c: add newly created classes to the name 
16898         cache so mono_class_get () will find them.      
16899
16900 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16901
16902         First part of changes to get IKVM.NET running under mono.
16903         
16904         * appdomain.h, appdomain.c: added new function 
16905         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16906         This function will call AppDomain::DoTypeResolve to do the actual work.
16907
16908         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16909         moved existing code dealing with dynamic tokens to a new function 
16910         called mono_reflection_lookup_dynamic_token (). This function will 
16911         raise TypeResolve events when appropriate. Since reflection.c is not 
16912         part of libmetadata, a new hook function called 
16913         mono_lookup_dynamic_token() is added to class.c which will call this.
16914
16915         * assembly.h assembly.c: make the invoke_load_hook function public,
16916         so it can be called for dynamic assemblies.
16917
16918         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16919
16920         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16921         type isn't found.
16922
16923         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16924         MonoGHashTable, since it contains pointers to objects which the GC 
16925         needs to track.
16926
16927         * assembly.c (search_loaded): remove unused variable.
16928         
16929 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16930
16931         * object.c: fixed issue exposed by gcc-generated IL programs
16932         that use RVA data for pointers.
16933
16934 2003-01-25  Martin Baulig  <martin@ximian.com>
16935
16936         * threads.c (start_wrapper): Moved the initialization of
16937         `start_func' above the mono_new_thread_init() call to which we
16938         pass it as argument.
16939
16940 2003-01-24  Martin Baulig  <martin@ximian.com>
16941
16942         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16943         the MonoThread pointer.
16944
16945 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16946
16947         * icall.c: Rename `PowImpl' to Pow.
16948
16949 2003-01-23  Dick Porter  <dick@ximian.com>
16950
16951         * threads.c (start_wrapper): Create a Thread object if needed, so
16952         the Main() thread can do the class initialisation in a subthread
16953         that has been set up to allow managed code execution.
16954
16955         Pass the thread ID instead of the MonoThread pointer to the thread
16956         start and attach callbacks.  This change is required, because the
16957         jit thread start callback must be called _before_ the Thread
16958         object can be created.
16959         
16960         (mono_thread_init): Removed much object creation code that is no
16961         longer needed.  No managed code is called from here now.
16962
16963         * object.c (mono_runtime_exec_managed_code): Create a subthread
16964         for Main, and call back to the runtime to use it.
16965         Set the exit code when Main exits.
16966
16967         * gc.c: Make sure domain finalisation happens in a subthread.
16968         Re-enable threaded GC, fixing bug 31333 (again).
16969
16970         * environment.c: System.Environment internall calls (so far just
16971         ExitCode is here, the others are still in icall.c)
16972
16973         * appdomain.c (mono_runtime_cleanup): All threads running managed
16974         code should have finished before mono_runtime_cleanup() is
16975         reached, so no need to clean up threads.
16976
16977 2003-01-22  Martin Baulig  <martin@ximian.com>
16978
16979         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
16980         `gpointer func' arguments.      
16981         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
16982         but added `MonoThread *thread' argument.
16983         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
16984
16985         * threads.c (mono_new_thread_init): Added `gpointer func' argument
16986         and pass it to the mono_thread_start_cb callback.
16987         (mono_install_thread_callbacks): New public function to install a
16988         set of callbacks which are set by the debugger.
16989         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
16990
16991 2003-01-22  Martin Baulig  <martin@ximian.com>
16992
16993         * Makefile.am: Install debug-mono-symfile.h.
16994
16995 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
16996
16997         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
16998
16999 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17000
17001         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17002         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17003         (mono_array_class_get): correctly set access levels of arrays
17004
17005 2003-01-20      Patrik Torstensson
17006         * image.h (MonoAssemblyName): changed major, minor, build, revision
17007         from signed to unsigned.
17008
17009 2003-01-20  sean kasun <skasun@azstarnet.com>
17010
17011         * reflection.c (load_cattr_value): Now this handles
17012         MONO_TYPE_SZARRAY.  Fixes bug #35629
17013
17014 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17015
17016         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17017         integer value
17018
17019 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17020
17021         * decimal.c: fixed bug #26056.
17022
17023 2003-01-17  Martin Baulig  <martin@ximian.com>
17024
17025         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17026
17027 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17028
17029         * exception.[ch]:
17030         (mono_get_exception_type_initialization): new function.
17031
17032         * object.c: throw a TypeInitializationException when an exception is
17033         thrown invoking the class constructor.
17034
17035 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17036
17037         * reflection.c: fixed attribute reading.
17038
17039 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17040
17041         * icall.c:
17042         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17043         provided, look for the type in the calling assembly and then in
17044         mscorlib; if the assembly name is provided, only try that one.
17045
17046 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17047
17048         * object.c: register the vtable before there is a chance it's
17049         queried again recursively.
17050
17051 2003-01-13  Duncan Mak  <duncan@ximian.com>
17052
17053         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17054         gc-internal.h. 
17055         
17056 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17057
17058         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17059
17060 2003-01-11  Martin Baulig  <martin@ximian.com>
17061
17062         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17063         this to 20 for the release.
17064
17065 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17066
17067         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17068
17069         * loader.c (mono_method_get_marshal_info): bug fix
17070
17071         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17072         structures with explicit layout
17073
17074 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17075
17076         * profiler.c: made the output more readable (and sorted). 
17077         Added caller information for the allocation profiler.
17078
17079 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17080
17081         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17082
17083 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17084
17085         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17086         to get value types.
17087         
17088 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17089
17090         * object.c, profiler.h, profiler.c, profiler-private.h:
17091         Added object allocation profiler.
17092
17093 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17094
17095         * reflection.h, reflection.c: handle global methods.
17096         Compress blob entries.
17097
17098 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17099
17100         * marshal.c: fix compilation.
17101
17102 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17103
17104         * loader.c (mono_method_get_marshal_info): impl.
17105
17106         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17107
17108 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17109
17110         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17111         for reference types.
17112
17113 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17114
17115         * loader.c: fixed off by one error in loaded parameter names.
17116
17117 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17118
17119         * marshal.c (mono_marshal_get_icall_wrapper): like
17120         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17121         instead of a MonoMethod.
17122
17123 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17124
17125         * decimal.c: fixed bug #36537.
17126
17127 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17128
17129         * marshal.c: throw a missing method exception if a
17130         P/Invoke method is not found.
17131
17132 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17133
17134         * icall.c: allow a null this for constructors.
17135
17136 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17137
17138         * icall.c: raise the proper exceptions if the arguments to the
17139         internal Invoke are incorrect.
17140
17141 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17142
17143         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17144
17145 2003-01-03  Martin Baulig  <martin@ximian.com>
17146
17147         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17148
17149 2002-12-31  Martin Baulig  <martin@ximian.com>
17150
17151         * debug-mono-symfile.c: Completely rewrote the type section.
17152         Instead of using individual malloc()ed fields, we use one big
17153         continuous memory area and offsets into this area.
17154         See the comments in the source code for details.
17155
17156 2002-12-30  Martin Baulig  <martin@ximian.com>
17157
17158         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17159
17160 2002-12-30  Martin Baulig  <martin@ximian.com>
17161
17162         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17163         line number table in this data blob instead of using an external
17164         pointer.
17165
17166 2002-12-28  Martin Baulig  <martin@ximian.com>
17167
17168         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17169
17170 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17171
17172         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17173         as a boxed return type.
17174
17175 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17176
17177         * appdomain.c
17178         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17179         g_build_filename to properly get separators on the filename created.
17180
17181         * object.h: Small change, introduce MonoMarshalByRefObject to
17182         track the layout of that structure in the C# universe as we make
17183         changes there.
17184
17185 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17186
17187         * object.c: removed assert to allow static fields on interfaces.
17188         * loader.c: a TypeSpec may be used for any type, not just arrays.
17189
17190 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17191
17192         * class.c, class.h: added mono_class_array_element_size ().
17193         Ignore static methods in interfaces.
17194
17195 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17196
17197         * threads.c: fixed the build under cygwin.
17198
17199 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17200
17201         * reflection.c: handle nullref constants. Allocate keys for
17202         reflection handles with the GC.
17203
17204 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17205
17206         * threads.c, threads.h: added mono_thread_get_abort_signal()
17207         to get a suitable signal for thread abort.
17208
17209 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17210
17211         * metadata.c: fix handling of ExportedType table.
17212
17213 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17214
17215         * icall.c: added WriteWindowsDebugString internal call.
17216
17217 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17218
17219         * reflection.h: added fields to match C# implementation.
17220
17221 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17222
17223         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17224
17225 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17226
17227         * gc.h, gc-internal.h: Rename header for GC internal calls to
17228         gc-internal.h from gc.h as to not clash with Boehm GC having its
17229         header installed as <gc.h> in outside include paths.
17230         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17231         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17232
17233 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17234
17235         * icall.c: assign minor, build and revision in FillName.
17236
17237 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17238
17239         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17240         Added support for running code generated by Reflection.Emit.
17241
17242 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17243
17244         * appdomain.c: check for NULL argument in LoadFrom.
17245
17246 2002-12-10  Dick Porter  <dick@ximian.com>
17247
17248         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17249
17250 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17251
17252         * appdomain.c: fix buglet when building exe file name.  Handle full
17253         assembly name (needed after latest changes to AssemblyName).
17254         * image.c:
17255         (mono_image_close): free some hashtables.
17256
17257 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17258
17259         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17260         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17261         on some systems (redhat 7.3) 
17262
17263 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17264
17265         * threads.c: delete the critical section of a sync block,
17266         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17267
17268 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17269
17270         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17271
17272 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17273
17274         * appdomain.[ch]: handle the assembly preload event to try loading the
17275         assemblies using the paths we have in the current domain.
17276
17277         * assembly.[ch]: created an assembly preload hook that is called to try
17278         loading the assembly by other means that the ones provided here.
17279
17280         * domain.c: initialize the domain search path.
17281
17282         From now on, assemblies (TODO: except corlib and System) are loaded
17283         according to these rules when using mono_assembly_load ():
17284
17285                 1. It tries to load the assembly from the ApplicationBase
17286                 of the current domain appending .dll and .exe (TODO: have to
17287                 try loading from name/name.dll and name/name.exe).
17288
17289                 2. It tries the search path specified in PrivateBinPath for the
17290                 current domain (if any).
17291
17292                 3. Previous behavior.
17293
17294 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17295
17296         * icall.c: implemented GetInterfaceMap() related icall.
17297         * domain.c, loader.h: load MethodInfo in mono_defaults.
17298
17299 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17300
17301         * gc.c: disable the finalizer thread for now, untill all the issues
17302         with it are resolved.
17303
17304 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17305
17306         * string-icalls.c: handle embedded nulls in string ctor when the
17307         length is specified.
17308
17309 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17310
17311         * class.c: look for explicit interface implementation in parent
17312         classes, too.
17313
17314 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17315
17316         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17317
17318 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17319
17320         * gc.c: protect handles with a critical section.
17321
17322 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17323
17324         * icall.c:
17325         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17326         parameters. If no assembly specified, try getting the type from all
17327         the assemblies in the current domain, else, load the assembly and get
17328         the type from it.
17329
17330 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17331
17332         * marshal.c: applied patch from Aleksey Demakov that fixes
17333         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17334
17335 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17336
17337         * icall.c: fixed get_location.
17338
17339 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17340
17341         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17342         declarations to make it work with older gcc. 
17343
17344         * loader.c (mono_get_method): set signature->pinvoke for native calls
17345
17346 2002-11-20  Dick Porter  <dick@ximian.com>
17347
17348         * threads.c (mono_thread_init): Set the main thread's handle
17349
17350 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17351
17352         * gc.c: allow compilation without GC support. Changed to match the
17353         mono coding style.
17354
17355 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17356
17357         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17358
17359 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17360
17361         * reflection.c: set a public key token on the core assemblies.
17362
17363 2002-11-18  Dick Porter  <dick@ximian.com>
17364
17365         * threads.c: Split out some thread initialisation so that other
17366         files can set the start callback function.
17367
17368         * gc.c: Run finalisers in a separate thread, to avoid stack
17369         overflow.  Fixes bug 31333.
17370
17371         * appdomain.c: Set up GC finalisation thread.
17372
17373         * reflection.c: 
17374         * object.c: 
17375         * domain.c: Use gc.h macros for GC_malloc
17376         
17377 2002-11-15  Dick Porter  <dick@ximian.com>
17378
17379         * threadpool.c: 
17380         * threads.c:
17381         * appdomain.c: Removed mono_runtime_init_with_attach(),
17382         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
17383         merging the extra parameter with the existing function.  Removed
17384         unneeded code in mono_thread_attach().
17385
17386 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
17387
17388         * image.c (mono_image_loaded_by_guid): a method to get loaded
17389         images by guid. 
17390         (load_metadata_ptrs): we store the guid as string.
17391
17392 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
17393
17394         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
17395
17396         * metadata.c (mono_guid_to_string): imported method form Zoltan
17397         Varga (slightly modified)
17398
17399         * assembly.c (mono_assembly_open): load precompiled code
17400
17401         * loader.h (MonoMethod): we store the method token for use in the
17402         aot compiler. 
17403
17404 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17405
17406         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
17407         the hook function called when an assembly is loaded.
17408         
17409         * domain.c: Modified file.
17410         (mono_domain_assembly_load): removed hash table insertion of assemblies.
17411
17412         Fixes bug #33196.
17413
17414 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
17415
17416         * reflection.c: Map PEFileKind to the value expected by the WinNT
17417         image loader. 
17418
17419 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17420
17421         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
17422         Read until the buffer is filled completely.
17423
17424 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17425
17426         * icall.c: implemented MonoType.InternalGetEvent ().
17427
17428 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17429
17430         * appdomain.c: implemented InitAppDomainSetup. Delayed
17431         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
17432         the entry_assembly.
17433
17434         * assembly.c: base_dir is now an absolute path ending with
17435         G_DIR_SEPARATOR.
17436
17437         * icall.c: modified get_location according to the above changes.
17438
17439         * object.c: init AppDomain.SetupInformation for the default domain after
17440         we have the entry assembly.
17441
17442         * domain.c: when unloading a domain, setup = NULL.
17443
17444 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
17445
17446         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
17447
17448 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
17449
17450         * object.h, object.c: introduced mono_object_get_virtual_method ()
17451         to lookup the method invoked on an object when a callvirt is done on
17452         a method.
17453         * icall.c: make MethodInfo::Invoke() always do a virtual call.
17454
17455 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17456
17457         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
17458         current domain when loaded an assembly and failed to load it.
17459
17460         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
17461
17462 2002-10-31  Dick Porter  <dick@ximian.com>
17463
17464         * icall.c: 
17465         * file-io.h: 
17466         * file-io.c: Return the error status in a parameter, as the
17467         GetLastError() value has long since been blown away if we try and
17468         look it up in a subsequent internal call invocation.  Delete the
17469         GetLastError() internal call, because it's useless.
17470
17471 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
17472
17473         * class.[ch]: added cast_class to fix bug 29517
17474
17475 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
17476
17477         * marshal.c: create valid IL code in the filter clause:
17478         the new JIT is less forgiving:-)
17479
17480 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17481
17482         * icall.c: removed get_property internal call.
17483
17484 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
17485
17486         * appdomain.h domain.c: Added an ID to appdomains.
17487         
17488         * threads.c threads.h icall.c: Implement icall
17489         Thread:GetDomainID(), and remove unused icall 
17490         CurrentThreadDomain_internal.
17491
17492 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17493
17494         * icall.c: Don't recurse through the base types in GetConstructor.
17495         Fixes bug #32063. 
17496
17497 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17498
17499         * mempool.h, mempool.c: added mono_mempool_empty() and
17500         mono_mempool_stats().
17501
17502 2002-10-23  Dick Porter  <dick@ximian.com>
17503
17504         * file-io.c: 
17505         * file-io.h: 
17506         * icall.c: Added MonoIO.GetFileType internal call
17507
17508 2002-10-17  Dick Porter  <dick@ximian.com>
17509
17510         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17511         delegate semaphore before waiting for all threads to finish,
17512         because new threads can also call async delegates.  Fixes bug
17513         32004.
17514
17515         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17516         of 3 seconds, in case another async job is queued.  (This part is
17517         needed because the bug fix reintroduced the 3s exit lag.)  This
17518         makes the mono_runtime_shutdown flag superfluous.
17519
17520 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17521
17522         * reflection.c: include ehader size in method section headers.
17523         Really check for suplicated modules entries.
17524
17525 2002-10-17  Martin Baulig  <martin@gnome.org>
17526
17527         * debug-mono-symfile.c: Added back support for locals.
17528
17529 2002-10-14  Martin Baulig  <martin@gnome.org>
17530
17531         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17532         MONO_TYPE_VOID.
17533
17534 2002-10-14  Martin Baulig  <martin@gnome.org>
17535
17536         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17537         mono_class_get() instead of looking in the class cache. 
17538
17539 2002-10-13  Martin Baulig  <martin@gnome.org>
17540
17541         * debug-mono-symfile.c: Set version number to 28, include the
17542         signature in method names.
17543
17544 2002-10-13  Martin Baulig  <martin@gnome.org>
17545
17546         * debug-mono-symfile.h: Set version number to 27.
17547
17548 2002-10-11  Martin Baulig  <martin@gnome.org>
17549
17550         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17551
17552 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17553
17554         * metadata.c, metadata.h: added helper function to allocate signatures.
17555
17556 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17557
17558         * icall.c: added internal call to get the location of machine.config.
17559
17560 2002-10-08  Martin Baulig  <martin@gnome.org>
17561
17562         * debug-mono-symfile.c: Ignore classes with a pending init for the
17563         moment.
17564
17565 2002-10-03  Dick Porter  <dick@ximian.com>
17566
17567         * threads.c: Freebsd pthread_t is a pointer
17568
17569 2002-10-03  Dick Porter  <dick@ximian.com>
17570
17571         * socket-io.c: Implemented GetHostName_internal
17572
17573 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17574
17575         * mono-config.c:
17576         (mono_config_parse_file): don't leak the text.
17577
17578 2002-10-02  Martin Baulig  <martin@gnome.org>
17579
17580         * debug-mono-symfile.c: Added support for methods.
17581
17582 2002-10-01  Martin Baulig  <martin@gnome.org>
17583
17584         * debug-mono-symfile.c: Don't emit methods and line numbers for
17585         the dynamic symbol file, just write the type table.  We can easily
17586         have an external helper program which creates a symbol file for an
17587         IL file.        
17588
17589 2002-10-01  Dick Porter  <dick@ximian.com>
17590
17591         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17592         Only add the handle to the cleanup array when we're about to
17593         launch the thread.  Bug 31425 deadlocked when the test was run on
17594         mono under w32.
17595
17596 2002-10-01  Martin Baulig  <martin@gnome.org>
17597
17598         * debug-mono-symfile.c: Added support for properties.
17599
17600 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17601
17602         * reflection.c: unaligned store fix from Mark Crichton
17603         <crichton@gimp.org>.
17604
17605 2002-09-27  Martin Baulig  <martin@gnome.org>
17606
17607         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17608         New interncall.
17609
17610 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17611
17612         * assembly.h, assembly.c: use a sane API to hook into the assembly
17613         loading process instead of a useless special-purpouse hack
17614         (ngen needs a hook, too, for example).
17615
17616 2002-09-27  Dick Porter  <dick@ximian.com>
17617
17618         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17619         io-layer can set up some process handle info.  Not needed on w32,
17620         but doesn't hurt either.
17621
17622         * process.c: Pass the program name in the second parameter to
17623         CreateProcess, so the path is searched.  Include the working
17624         directory. Implemented process name, process enumeration, and some
17625         process detail internal calls.
17626         
17627         * icall.c: Added internal calls for process lookup, and some
17628         process details
17629
17630 2002-09-26  Martin Baulig  <martin@gnome.org>
17631
17632         * assembly.c (mono_install_open_assembly_hook): New global
17633         function to install a function to be invoked each time a new
17634         assembly is loaded.
17635         (mono_assembly_open): Run this callback function if set.
17636
17637         * debug-mono-symfile.c: Put back line numbers for the dynamic
17638         symbol file and also record the .il file as source file.  This
17639         allows us to install the temporary symbol file as `file.dbg' just
17640         like a compiler-generated one.
17641
17642 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17643
17644         * Corrected typo in gc.c (BOHEM vs BOEHM).
17645
17646 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17647
17648         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17649         GetProperties. Also avoid calling g_slist_length in GetProperties and
17650         GetMethods.
17651
17652 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17653
17654         * reflection.c: avoid unaligned stores (bug spotted by
17655         Mark Crichton  <crichton@gimp.org>).
17656
17657 2002-09-25  Martin Baulig  <martin@gnome.org>
17658
17659         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17660         instead of guint64 for addresses and added prologue/epilogue info.
17661
17662 2002-09-25  Martin Baulig  <martin@gnome.org>
17663
17664         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17665         store line number info.  For the dynamic symbol file, we only need
17666         to provide the JIT generated dynamic line number info for the dynamic
17667         symbol file.
17668
17669 2002-09-25  Martin Baulig  <martin@gnome.org>
17670
17671         * debug-mono-symfile.h: Incremented version number.
17672
17673 2002-09-24  Martin Baulig  <martin@gnome.org>
17674
17675         * class.c (mono_debugger_class_init_func): New global function
17676         pointer variable.
17677         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17678         call it.
17679
17680         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17681         function.  This is called via the mono_debugger_class_init_func
17682         hook to add all types to the dynamic type table.
17683         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17684         from its metadata token.
17685
17686         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17687         New interncall for the debugger.
17688
17689 2002-09-24  Nick Drochak <ndrochak@gol.com>
17690
17691         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17692         before using it in case it is null.
17693         
17694 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17695
17696         * metadata.c: allow custom modifiers in local var signatures
17697         (bug spotted by Zoltan Varga).
17698
17699 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * class.c: deal with the <Module> class that may have a NULL vtable.
17702         Eliminate warnings.
17703
17704 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17705
17706         * image.c, image.h: more strong name helpers.
17707         * monosn.c: more work: convert pem keys to cryptoapi format.
17708
17709 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17710
17711         * string-icalls.c: speedup IndexOf.
17712
17713 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17714
17715         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17716
17717 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17718
17719         * icall.c: cleanup: use mono_object_domain ().
17720
17721 2002-09-23  Martin Baulig  <martin@gnome.org>
17722
17723         * debug-mono-symfile.c: Improved type support.
17724
17725 2002-09-22  Martin Baulig  <martin@gnome.org>
17726
17727         * debug-mono-symfile.c: Added support for reference types and strings.
17728
17729 2002-09-22  Martin Baulig  <martin@gnome.org>
17730
17731         * debug-mono-symfile.c: Started to work on the type table.
17732
17733 2002-09-21  Martin Baulig  <martin@gnome.org>
17734
17735         * debug-mono-symfile.c: Largely reworked the symbol table format.
17736         The symbol table is now incrementally updated each time a new
17737         method is added.  We're now also using our own magic and version
17738         so that you don't need to recompile all your classes if the
17739         dynamic table changes.
17740         (mono_debug_update_mono_symbol_file): Removed.
17741         (mono_debug_symfile_add_method): New function to add a method.
17742
17743 2002-09-21  Martin Baulig  <martin@gnome.org>
17744
17745         * icall.c
17746         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17747         New interncall.
17748
17749         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17750         New interncall to get a method from its metadata token.
17751
17752 2002-09-21  Martin Baulig  <martin@gnome.org>
17753
17754         * debug-mono-symfile.c: Create type table.
17755
17756 2002-09-20  Martin Baulig  <martin@gnome.org>
17757
17758         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17759
17760 2002-09-20  Martin Baulig  <martin@gnome.org>
17761
17762         * debug-mono-symfile.c: Provide information about params and locals.
17763
17764 2002-09-20  Martin Baulig  <martin@gnome.org>
17765
17766         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17767         New interncall.
17768
17769         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17770         interncall to get a method from its metadata token.
17771
17772 2002-09-20  Martin Baulig  <martin@gnome.org>
17773
17774         * debug-mono-symfile.c: Added a few checks for method->header
17775         being non-NULL.  This should never happen, but for the moment
17776         let's use a g_warning() rather than a g_assert().
17777
17778 2002-09-19  Mark Crichton  <crichton@gimp.org>
17779
17780         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17781         even if support for it isn't present.  Added an #ifdef to fix this.
17782
17783         * socket-io.c: Added checks back for Solaris support.
17784
17785 2002-09-19  Martin Baulig  <martin@gnome.org>
17786
17787         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17788         changes in the symbol file format.
17789
17790 2002-09-18  Martin Baulig  <martin@gnome.org>
17791
17792         * debug-mono-symfile.c: Set version number to 21.
17793
17794 2002-09-18  Dick Porter  <dick@ximian.com>
17795
17796         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17797         on netbsd.  Fixes bug 30051.
17798
17799 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17800
17801         * reflection.c:
17802         (set_version_from_string): little fix.
17803
17804 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17805
17806         * monosn.c, Makefile.am: added strong name utility.
17807         * reflection.h, reflection.c: implemented delayed signing,
17808         locale, version and hash id assembly attributes.
17809
17810 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17811
17812         * loader.c, metadata.c: load param attributes in signatures.
17813
17814 2002-09-16  Martin Baulig  <martin@gnome.org>
17815
17816         * debug-mono-symfile.c: Added string table with all method names.
17817
17818 2002-09-14  Martin Baulig  <martin@gnome.org>
17819
17820         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17821         fast method lookup.
17822
17823 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * reflection.c: record the public key token of referenced assemblies.
17826
17827 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17828
17829         * image.c, image.h: added functions to get the strong name and the
17830         public key of an assembly.
17831         * pedump.c: use them.
17832
17833 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17834
17835         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17836
17837 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17838
17839         * marshal.c (mono_marshal_get_managed_wrapper): Added
17840         MONO_TYPE_BOOLEAN 
17841
17842 2002-09-11  Martin Baulig  <martin@gnome.org>
17843
17844         * gc.c: Call GC_unregister_disappearing_link() on all links when
17845         finalizing them, this is necessary to aviod a crash in boehm's
17846         finalize handler.
17847
17848 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17849
17850         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17851         nick@chemlab.org.
17852
17853 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17854
17855         * icall.c: implemented MonoType::Module.
17856         * reflection.c, reflection.h: mono_module_get_object () from
17857         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17858
17859 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17860
17861         * icall.c: ignore overridden methods in GetMethods ().
17862         Fix for FieldInfo::SetValue().
17863         * object.c: handle float/double in runtime invoke.
17864
17865 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17866
17867         * object.c: allow a constructor to be called again on an object.
17868
17869 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17870
17871         * class.h, class.c: move field layout code to it's own function and
17872         export it. Get an interface id earlier. Move fields in MonoClass
17873         so they are more cache friendly and align the bitfields.
17874         * loader.c: temporary handle get_param_names() for a runtime method.
17875         * reflection.c, reflection.h: more code to handle runtime creation of
17876         types.
17877
17878 2002-09-09  Martin Baulig  <martin@gnome.org>
17879
17880         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17881         signature with the pinvoke field being set for the actual call.
17882
17883 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17884
17885         * icall.c: removed some unused icalls. Start of map of glib charsets
17886         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17887
17888 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17889
17890         * debug-helpers.c: break infinite loop (found and fixed by
17891         Holger Arnold <harnold@gmx.de>).
17892
17893 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17894
17895         * icall.c: target may be null in create_delegate.
17896
17897 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17898
17899         * marshal.c: handle a boolean return type.
17900
17901 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17902
17903         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17904
17905 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17906
17907         * gc.c: fix weakreferences.
17908
17909 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17910
17911         * icall.c: added icall to get default codepage.
17912
17913 2002-09-03  Dick Porter  <dick@ximian.com>
17914
17915         * threads.h: 
17916         * threads.c: Use MonoThread instead of MonoObject where
17917         apropriate.
17918
17919         Store running thread objects in a hash table, so that we have all
17920         the info to hand when waiting for them to finish
17921         (means we don't need OpenThread() any more, so mingw builds should
17922         be fully functional again.)
17923
17924         * verify.c:
17925         * object.h: Added thread ID to MonoThread
17926
17927 2002-09-03  Martin Baulig  <martin@gnome.org>
17928
17929         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17930
17931 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17932
17933         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17934
17935 2002-09-03  Martin Baulig  <martin@gnome.org>
17936
17937         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17938         argument to store the end address of the disassembled instruction.
17939
17940         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17941         here from debug-symfile.h.
17942         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17943         JIT into this struct.
17944         (MonoSymbolFile): Added `char *image_file' field.
17945         (MonoDebugGetMethodFunc): Removed.
17946         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17947         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17948         (mono_debug_find_method): New method.
17949
17950         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17951         create a full symbol file.
17952         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17953         and static symbol files.
17954         (mono_debug_find_method): The symbol file keeps an internal method hash,
17955         call this to get a MonoDebugMethodInfo from a MonoMethod.
17956
17957         * debug-symfile.[ch]: Removed.
17958
17959 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17960
17961         * image.c (do_mono_image_open): Remove linker version check.
17962
17963 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17964
17965         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17966         wrappers for instance methods.
17967         
17968 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17969
17970         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17971
17972 2002-08-28  Dick Porter  <dick@ximian.com>
17973
17974         * Makefile.am: Export HOST_CC for w32 builds
17975
17976 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17977
17978         * file-io.c process.c: MonoString are null terminated, no
17979         need for mono_string_to_utf16() anymore.
17980
17981 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17982
17983         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
17984
17985 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
17986
17987         * icall.c, reflection.h: speedup System.MonoType.
17988
17989 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17990
17991         * reflection.c: allow null as the value of a string argument in
17992         custom attributes constructors.
17993
17994 2002-08-27  Martin Baulig  <martin@gnome.org>
17995
17996         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
17997         `trampoline_address' field.
17998
17999 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18000
18001         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18002         check (fixes bug #29486) 
18003
18004 2002-08-27  Martin Baulig  <martin@gnome.org>
18005
18006         * debug-mono-symfile.c: Changed the file format in a way that allows us
18007         open it read-only and to use a specially malloced area for all the
18008         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18009         debugging IL code and there is no MCS generated symbol file for it.
18010
18011 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18012
18013         * object.c: added a define for a good string and array
18014         creation speedup (not enabled by default because we need to deal with
18015         the synch stuff).
18016
18017 2002-08-26  Martin Baulig  <martin@gnome.org>
18018
18019         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18020         function to create a dynamic symbol file.  This is used by the
18021         debugger to create a symbol file for IL code on-the-fly.
18022
18023 2002-08-26  Martin Baulig  <martin@gnome.org>
18024
18025         * loader.c (mono_lookup_pinvoke_call): Include the error message
18026         from g_module_error() in the error message.
18027
18028 2002-08-24  Martin Baulig  <martin@gnome.org>
18029
18030         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18031         function to update the symbol file.  The symbol file is mmap()ed
18032         writable, but private.  This allows us to install the symbol file
18033         together with the assembly.
18034
18035 2002-08-24  Martin Baulig  <martin@gnome.org>
18036
18037         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18038         but they can read the new symbol file format which mcs is now creating.
18039
18040         * debug-symfile.c (mono_debug_find_source_location): Moved to
18041         debug-mono-symfile.c; this is now operating on the new symbol file.
18042
18043 2002-08-23  Martin Baulig  <martin@gnome.org>
18044
18045         * debug-helpers.c (mono_method_desc_from_method): New function to get
18046         a MonoMethodDesc from a MonoMethod.
18047
18048 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18049
18050         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18051         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18052
18053 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18054
18055         * string-icalls.[ch]: make helper methods static.
18056
18057 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18058
18059         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18060         types to it and to SetValueInternal.
18061
18062         * object.c: Moved handle_enum label to its proper place. This was the
18063         f... bug! ;-)
18064
18065         This time i compiled mcs and gtk-sharp and they both work.
18066
18067 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18068
18069         * icall.c: reverted partially my previous patch until 
18070         object.c:set_value handles enums correcly.
18071
18072 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18073
18074         * icall.c:
18075         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18076         (ves_icall_System_Environment_get_MachineName): removed warning when
18077         compiling under cygwin.
18078
18079 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18080
18081         * object.c: fixed field_get_value() for reference types.
18082
18083 2002-08-22  Dick Porter  <dick@ximian.com>
18084
18085         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18086         Don't free a buffer while it's still needed.  Patch from Jonathan
18087         Liger <Jonathan.liger@wanadoo.fr>
18088
18089 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18090
18091         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18092         internal call.
18093
18094 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18095
18096         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18097         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18098
18099         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18100         we call unmanaged code which throws exceptions.
18101
18102 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18103
18104         * appdomain.h: added per-domain entry_assembly.
18105         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18106         arguments.
18107         * icall.c: Assembly::GetEntryAssembly icall.
18108         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18109         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18110
18111 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18112
18113         * appdomain.h, gc.c: added mono_domain_finalize ().
18114
18115 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18116
18117         * object.c:
18118         (mono_print_unhandled_exception): changed g_warning by g_printerr
18119         because g_log has a 1024 characters limit (yeah, i got a big stack
18120         trace). Don't print exception name, that should be in ToString 
18121         returned string.
18122
18123 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18124
18125         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18126         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18127
18128 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18129
18130         * object.c:
18131         (mono_print_unhandled_exception): after previous commit, i realized
18132         that MS calls ToString on the exception. I changed this function to
18133         do that. This way we get stack_trace for free.
18134
18135 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18136
18137         * object.c:
18138         (mono_print_unhandled_exception): invoke Message property instead of
18139         getting 'message' field from Exception. Don't allocate memory for
18140         'trace' and 'message' if not needed.
18141
18142 2002-08-18  Dick Porter  <dick@ximian.com>
18143
18144         * unicode.c: Fix asserts to match Encoder.cs checks
18145
18146 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18147
18148         * marshal.c: fix unaligned store issue and a few wrong
18149         opcode argument types.
18150
18151 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18152
18153         * icall.c: added GetUninitializedObjectInternal internal call.
18154
18155 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18156
18157         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18158         to the right domain.
18159
18160 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18161
18162         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18163
18164         * class.c (class_compute_field_layout): set blittable to false for Strings
18165
18166         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18167
18168 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18169
18170         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18171         first chunk of code to create types at runtime. Code to
18172         handle ReflectedType/DeclaringType. Make reflection handles
18173         domain specific.
18174
18175 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18176
18177         * class.c: set correct name in arrays.
18178
18179 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18180
18181         * appdomain.c (mono_domain_transfer_object): make it work with
18182         valuetypes. bug fixes.
18183
18184 2002-08-12  Dick Porter  <dick@ximian.com>
18185
18186         * object.h: Rename some parameters to avoid c++ keywords (Patch
18187         from Joseph Wenninger <kde@jowenn.at>)
18188
18189 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18190
18191         * icall.c: added icall to implement Assembly.GetFile*.
18192
18193 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18194
18195         * reflection.h, reflection.c: code to embed managed resources.
18196
18197 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18198
18199         * class.c: move all the type size stuff into
18200         class_compute_field_layout().
18201
18202 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18203
18204         * class.c: ensure enums have always the correct instance size.
18205         * unicode.c: remove wrong assert.
18206
18207 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18208
18209         * assembly.c: fix mem corruption issue.
18210         * image.h, image.c: added mono_image_get_resource () to access
18211         managed resources.
18212         * icall.c: implemented Assembly.EntryPoint property and some
18213         Managed Resources related internalcalls.
18214
18215
18216 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18217
18218         * image.c, image.h: impemented mono_image_get_entry_point ().
18219         * appdomain.c: use mono_image_get_entry_point.
18220
18221 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18222
18223         * reflection.c: support the object type argument when loading
18224         custom attributes.
18225
18226 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18227
18228         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18229         String as return type.
18230
18231 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18232
18233         * reflection.c: fix encoding of named args for custom attrs to match
18234         the ms implementation. Read them back when instantiating custom
18235         attributes.
18236
18237 2002-08-02  Radek Doulik  <rodo@ximian.com>
18238
18239         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18240         by Dietmar as quick fix
18241         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18242         16 as stack size, used on more places as quick fix before Dietmar
18243         will fix it properly
18244
18245 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18246
18247         * object.h, object.c: added accessors for fields and properties.
18248
18249 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18250
18251         * class.c, class.h: made mono_class_get_field_from_name ()
18252         loop on parent types.
18253         Added mono_class_get_property_from_name ().
18254
18255 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18256
18257         * class.c, class.h: move the code to setup the type vtable in its own
18258         function so that it can be reused also for types created at runtime.
18259         Eliminate the "class" identifier from the header file.
18260         * reflection.c: setup the vtable for enums so that we can create
18261         objects for use in SetConstant ().
18262
18263 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18264
18265         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18266         instead of the delegate itself as this pointer (bug #28383)
18267
18268 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18269
18270         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18271         conversions.
18272
18273 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18274
18275         * loader.c: don't set the pinvoke bit on icalls.
18276
18277 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18278
18279         * debug-helpers.c (mono_method_full_name): only print a number to
18280         indicate wrapper type (so that the output is more readable in traces).
18281
18282 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18283
18284         * class.c (mono_class_init): include method override patch from Paolo
18285
18286 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18287
18288         * icall.c: fixed GetTypeCode().
18289
18290 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18291
18292         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18293         use real delegate invoke function to make it work with multicast
18294         delegates (fix bug# 28291).
18295
18296 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18297
18298         * object.c: load constant strings.
18299
18300 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18301
18302         * reflection.c: no magic numbers.
18303         * tabledefs.h: security action enum.
18304
18305 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18306
18307         * assembly.c: fix possible memory corruption.
18308
18309 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18310
18311         * reflection.h, reflection.c: added support for linking resources.
18312         * verify.c: check we have an updated corlib.
18313
18314 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18315
18316         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18317         string arrays.
18318         (mono_marshal_string_array): null terminate unmanaged string arrays.
18319         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18320
18321 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18322
18323         * icall.c: Type.GetType () can now return also types from the
18324         calling assembly.
18325
18326 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18327
18328         * loader.h, loader.c: stack walking support.
18329         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18330         GetCallingAssembly.
18331
18332 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18333
18334         * marshal.c: added optimisations for blittable types 
18335
18336         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18337         (mono_class_setup_mono_type): set blittable attribute for single
18338         and double.
18339
18340         * marshal.c (mono_string_utf8_to_builder): impl.
18341         (mono_string_builder_to_utf8): impl.
18342         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18343
18344 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18345
18346         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18347         (mono_marshal_get_managed_wrapper): impl. byref types
18348
18349 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18350
18351         * icall.c:
18352         (search_method): don't display debug message. 
18353
18354 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18355
18356         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18357
18358 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18359
18360         * appdomain.c: set the missing filename when throwing exception.
18361
18362 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18363
18364         * metadata.c (mono_type_size): code cleanup
18365         (mono_type_stack_size): removed some test code
18366
18367 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
18368
18369         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
18370         mono_get_exception_file_not_found now.
18371
18372         * exception.c (mono_exception_from_name_two_strings): New version
18373         that will call a constructor with two string arguments. 
18374         (mono_get_exception_file_not_found): New helper routine, used to
18375         report file-not-found errors.
18376
18377 2002-07-20  Dick Porter  <dick@ximian.com>
18378
18379         * process.h:
18380         * process.c: Pass file handles to CreateProcess
18381         
18382         * icall.c:
18383         * file-io.h:
18384         * file-io.c: Implemented CreatePipe
18385
18386 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18387
18388         * metadata.c (mono_get_param_info): set alignment for value types
18389
18390 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18391
18392         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
18393         Constify mono_domain_assembly_open().
18394         * loader.c: handle null namespace in icalls.
18395
18396 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18397
18398         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
18399         (emit_str_to_ptr_conv): marshal object as structs
18400
18401         * metadata.c (mono_type_to_unmanaged): marshal object as structs
18402
18403         * marshal.c (mono_marshal_get_runtime_invoke): support value types
18404
18405 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
18406
18407         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
18408         (mono_marshal_get_native_wrapper): we an now return value types
18409
18410 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18411
18412         * verify.c: more checks implemented.
18413
18414 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
18415
18416         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
18417         (fix bug #27695)
18418         (mono_marshal_get_native_wrapper): allow byref arguments
18419         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
18420         impl. PtrToStringXXX methods
18421         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
18422         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
18423         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
18424         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
18425         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
18426
18427 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18428
18429         * reflection.c: fix buglet in parsing an assembly name.
18430
18431 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18432
18433         * marshal.c (emit_ptr_to_str_conv): first impl.
18434
18435 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18436
18437         * object.c, class.h: cache the vtable in the class as suggested by
18438         vargaz@freemail.hu (Zoltan Varga).
18439
18440 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18441
18442         * class.h, loader.c: added mono_field_from_token().
18443         * verify.c: first cut of type checking code.
18444
18445 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18446
18447         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
18448
18449 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
18450
18451         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
18452         (fix bug #27782)
18453         (mono_marshal_get_remoting_invoke): impl.
18454         (mono_delegate_begin_invoke): impl.
18455         (mono_mb_emit_save_args): impl.
18456         (mono_delegate_end_invoke): impl.
18457         (mono_marshal_get_delegate_begin_invoke):
18458         (mono_marshal_get_delegate_end_invoke):
18459         (mono_marshal_get_delegate_invoke): generate a special name for
18460         those methods (including the signature) and associate them whith
18461         the delegate class. 
18462
18463 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
18464
18465         * reflection.[ch]: 
18466         (mono_reflection_type_from_name): now it has a MonoImage parameter
18467         which is used as the default image to search the type in. If the image
18468         is NULL or getting the type from it fails, it defaults to corlib.
18469
18470         * icall.c: changed 1 call to mono_reflection_type_from_name to match
18471         new parameter.
18472
18473 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18474
18475         * reflection.c: update the parameter table index.
18476
18477 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18478
18479         * domain.c: don't include the mark byte in the string hash.
18480
18481 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18482
18483         * icall.cs: icall for Type.GetTypeCode ().
18484         * verify: a couple of fixes and disabled local initialization checks.
18485
18486 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
18487
18488         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
18489
18490         * debug-helpers.c (mono_method_full_name): print the type of the
18491         runtime wrapper
18492
18493         * metadata.c (mono_signature_hash): a hash function for signatures
18494         (mono_signature_hash): better hash algorithm
18495
18496         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
18497
18498         * debug-helpers.c (mono_method_full_name): this can now generate
18499         method names with signatures
18500
18501         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18502         method dont have this pointers.
18503
18504 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18505
18506         * reflection.c: fixup typebuilder tokens.
18507         * image.c: fix buglet.
18508         * marshal.h: remove whitespace.
18509         * metadata.h, metadata.c: reinstate code that was removed.
18510         * verify.c: handle catch directives and fix another couple of bugs.
18511
18512 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18513
18514         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18515         (mono_marshal_get_native_wrapper): make it comp. with the old code
18516         (mono_marshal_get_native_wrapper): support boolean
18517         (mono_marshal_get_managed_wrapper): support more types
18518
18519 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18520
18521         * class.c (class_compute_field_layout): compute class->blittable attribute.
18522
18523 2002-07-09  Dick Porter  <dick@ximian.com>
18524
18525         * threads.c: Make the thread cleaning up cope with threads that
18526         call ExitThread()
18527
18528 2002-07-08  Radek Doulik  <rodo@ximian.com>
18529
18530         * reflection.c (method_encode_code): use non-translated values to
18531         compute finally_start, this fixes exception handling on ppc, yay!
18532
18533         * decimal.h (struct signscale): fix endianess
18534
18535 2002-07-07  Radek Doulik  <rodo@ximian.com>
18536
18537         * reflection.c: swap box_val and not val
18538
18539 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18540
18541         * reflection.c, reflection.h: handle full assembly info in type name.
18542         Handle Type arguments when loading custom attributes.
18543         * icall.c: updated to use new mono_reflection_type_from_name () method.
18544
18545 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18546
18547         * loader.c:
18548         (method_from_memberref): also print assembly name when method not found.
18549
18550 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18551
18552         * icall.c:
18553         (ves_icall_TypeGetProperties): fixed bug #27473. 
18554
18555 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18556
18557         * reflection.c: display image name and token when cannot find the
18558         .ctor for an attribute.
18559
18560 2002-07-05  Martin Baulig  <martin@gnome.org>
18561
18562         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18563
18564 2002-07-04  Dick Porter  <dick@ximian.com>
18565
18566         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18567         compile on mingw.  This will cause mingw builds to not wait for
18568         subthreads to terminate after the main thread does.  I've lodged a
18569         bug with the mingw developers for them to wrap OpenThread().
18570
18571 2002-07-03  Dick Porter  <dick@ximian.com>
18572
18573         * threads.c: Store thread IDs instead of handles, because
18574         GetCurrentThread() returns a pseudohandle and therefore stores
18575         useless values.  mono_thread_cleanup() continues checking the
18576         array of threads until it is empty, to cope with subthreads
18577         spawning new threads after the main thread has finished.
18578
18579         * profiler.h:
18580         * profiler.c:
18581         * profiler-private.h: Pass the thread ID to thread profiler
18582         functions, instead of a handle
18583
18584 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18585
18586         * verify.c: fixes to make it more usable.
18587         * pedump.c: added --verify code to verify IL code in an assembly.
18588
18589 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18590
18591         * reflection.c: turn errors into warnings to allow compiling corlib.
18592
18593 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18594
18595         * reflection.c: add special cases to compile corlib.
18596
18597 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18598
18599         * reflection.c: handle properties with only a set method.
18600
18601 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18602
18603         * opcodes.h: add enum with opcodes in opval order.
18604
18605 2002-07-01  Dick Porter  <dick@ximian.com>
18606         
18607         * object.h:
18608         * object.c (mono_runtime_run_main): Removed unneeded argument
18609
18610 2002-06-28  Martin Baulig  <martin@gnome.org>
18611
18612         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18613
18614 2002-06-27  Dick Porter  <dick@ximian.com>
18615
18616         * threads.c: Store the handle in both the parent thread and in the
18617         subthread, to minimise the time between starting a new thread and
18618         storing its ID.
18619
18620 2002-06-26  Dick Porter  <dick@ximian.com>
18621
18622         * appdomain.c (mono_runtime_cleanup): Close the socket library
18623         after all the threads have finished, not before
18624
18625 2002-06-26  Martin Baulig  <martin@gnome.org>
18626
18627         * debug-symfile.c (mono_debug_find_source_location): Added
18628         `guint32 *line_number' argument.  If it's not NULL, store the line number
18629         there and return the file name without the line number.
18630
18631 2002-06-25  Dick Porter  <dick@ximian.com>
18632
18633         * icall.c:
18634         * process.h:
18635         * process.c: Process forking and other support functions
18636
18637 2002-06-25  Dick Porter  <dick@ximian.com>
18638
18639         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18640         things dont happen when the image is closed.
18641         (mono_image_lookup_resource): Walk the resource section looking
18642         for a particular entry
18643
18644         * cil-coff.h: PE resource section decoding
18645
18646 2002-06-25  Dick Porter  <dick@ximian.com>
18647         
18648         * assembly.h:
18649         * assembly.c: 
18650         (mono_assembly_foreach): Accessor functions to walk the list of
18651         loaded assemblies
18652         (mono_assembly_set_main):
18653         (mono_assembly_get_main): Process methods need to know which
18654         assembly is the "main" one
18655
18656         * object.c (mono_runtime_run_main): Record the main assembly
18657
18658         * debug-helpers.c: Fix typo
18659
18660 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18661
18662         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18663         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18664
18665 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18666
18667         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18668
18669 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18670
18671         * image.c (do_mono_image_open): Initialize reference count,
18672         otherwise we leak the MonoImage.
18673
18674 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18675
18676         * reflection.c: small tweak to handle self-hosting.
18677
18678 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18679
18680         * reflection.c: fix type name parse code.
18681
18682 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18683
18684         * reflection.c: break out of the loop.
18685         * image.c: special case corlib.
18686
18687 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18688
18689         * reflection.c: add all the custom attrs at the end to ensure the
18690         ctors have been properly initialized when the attributes are defined
18691         in the current assembly.
18692
18693 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18694
18695         * reflection.c: handle correctly multiple-nested types.
18696
18697 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18698
18699         * row-indexes.h: fix typos.
18700         * reflection.c: adjust for typos and fix method_def_or_ref
18701         encoding in MethodImpl table.
18702
18703 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18704
18705         * reflection.c: fix entry point patching (thanks Serge!).
18706
18707 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18708
18709         * verify.c: add check for System.Exception
18710
18711 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18712
18713         * image.c, class.c: minifix for code just c&p'ed.
18714         * reflection.c: warning fix.
18715         * object.h, loader.h, domain.c: load also StringBuilder.
18716
18717 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18718
18719         * marshal.h, marshal.c: some support code to handle complex marshaling.
18720
18721 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18722
18723         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18724         Better signatures with vtable error dump.
18725
18726 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18727
18728         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18729
18730 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18731
18732         * icall.c (ves_icall_Type_GetField): impl.
18733
18734 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18735
18736         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18737         to retrieve a marshal description blob for a field or param.
18738
18739 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18740
18741         * reflection.h, reflection.c: change order of nested type emission
18742         to avoid table corruption. The NestedTypes table is sorted.
18743         * icall.c: change order of GetConstructor results to workaround mcs bug.
18744
18745 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18746
18747         * reflection.h, reflection.c: handle field and param marshal
18748         information.
18749
18750 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18751
18752         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18753
18754 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18755
18756         * reflection.c: fix call convention.
18757
18758 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18759
18760         * reflection.h, reflection.c: mono_image_get_memberref_token()
18761         takes a type instead of a class, now. Added
18762         mono_image_get_array_token() to create tokens for the special
18763         multi-dim array methods.
18764
18765 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18766
18767         * assembly.c: handle modules (no assembly table). Split
18768         loading references in its own function.
18769         * class.c: handle moduleref resolution scope.
18770         * image.c, image.h: cache module name in image.
18771
18772 2002-06-07  Martin Baulig  <martin@gnome.org>
18773
18774         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18775         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18776
18777 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18778
18779         * icall.c: more signature fixes that used uint instead of int.
18780
18781 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18782
18783         * reflection.c: fixed signature of field refs.
18784
18785 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18786
18787         * class.c, reflection.c: handle typerefs of nested types
18788         (both on read and when writing files).
18789
18790 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18791
18792         * icall.c: fix method signatures that tried to workaround the previous
18793         typo, d'oh!
18794
18795 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18796
18797         * debug-helpers.c: fix typo.
18798
18799 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18800
18801         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18802         rewrote the PE/COFF writing code (our programs are understood by the
18803         ms runtime, now).
18804
18805 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18806
18807         * gc.c, gc.h, icall.c: weakreference support.
18808
18809 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18810
18811         * Makefile.am, mono-config.c: use $(sysconfdir).
18812
18813 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18814
18815         * icall.c: changed default precision of Double.ToString() to 15.
18816         Fixed memory leak. Unified with Single.ToString.
18817
18818 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18819
18820         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18821
18822 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18823
18824         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18825         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18826         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18827         and myself.
18828
18829 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18830
18831         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18832
18833 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18834
18835         * reflection.c, socket-io.c: more compilation fixes.
18836
18837 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18838
18839         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18840         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18841         unicode.c: warning and compiler compatibility fixes.
18842
18843 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18844
18845         * class.h, metadata.c: fixed warnings/compilation errors.
18846
18847 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18848
18849         * Makefile.am, mono-config.c, mono-config.h: configuration file
18850         support routines.
18851         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18852         config file. Export methods to insert and lookup mappings.
18853
18854 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18855
18856         * reflection.c: handle types and boxed objects in custom attr
18857         constructors.
18858
18859 2002-05-30  Martin Baulig  <martin@gnome.org>
18860
18861         * debug-symfile.c
18862         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18863
18864 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18865
18866         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18867         to lookup the implmap row for a P/Invoke method.
18868         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18869         P/Invoke method from the runtime on an as needed basis.
18870
18871 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18872
18873         * metadata.c (mono_metadata_parse_signature): impl.
18874
18875 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18876
18877         * class.c: handle .pack directive.
18878
18879 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18880
18881         * object.c: initialize static fields with RVA data.
18882
18883 2002-05-25  Martin Baulig  <martin@gnome.org>
18884
18885         * debug-symfile.c
18886         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18887
18888 2002-05-24  Martin Baulig  <martin@gnome.org>
18889
18890         * debug-symfile.c
18891         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18892         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18893         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18894
18895 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18896
18897         * object.c: special case string ctros in invoke.
18898         * gc.c: silly whitespace changes.
18899
18900 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18901
18902         * threadpool.[ch]: impl. a threadpool that can
18903         be used by mint and mono.
18904
18905 2002-05-22  Martin Baulig  <martin@gnome.org>
18906
18907         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18908         The first argument is now a `MonoReflectionModuleBuilder *', the return
18909         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18910         `methods' field to get the method builder.  The `token' argument is the
18911         unfixed token.
18912
18913         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18914         invalid characters instead of g_assert_not_reached()ing.  This seems
18915         to be the behaviour of mscorlib.
18916
18917 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18918
18919         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18920         Hestilow to fix bug #25104
18921
18922 2002-05-21  Martin Baulig  <martin@gnome.org>
18923
18924         * debug-symfile.c (mono_debug_find_source_location): New function.
18925         Looks up an IL offset in the line number table and returns the source
18926         location as a string.
18927
18928 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18929
18930         * icall.c:
18931         (mono_double_ToStringImpl): changed %f by %g until we have something
18932         better.
18933
18934 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18935
18936         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18937         parameters first in C#.
18938
18939 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18940
18941         * icall.c, reflection.h: added icall to get info about an event.
18942
18943 2002-05-20  Radek Doulik  <rodo@ximian.com>
18944
18945         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18946         endian
18947         (mono_value_box): don't use memcpy for small sizes on
18948         architectures with unaligned access
18949
18950 2002-05-20  Martin Baulig  <martin@gnome.org>
18951
18952         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18953         if `tb->parent == NULL'.
18954         (mono_reflection_create_internal_class): New function.  This is
18955         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18956         for enum types.
18957
18958         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18959         New interncall.
18960
18961 2002-05-19  Martin Baulig  <martin@gnome.org>
18962
18963         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18964         argument to get the length, don't default to the array length.
18965
18966 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18967
18968         * assembly.c (mono_assembly_setrootdir): New function used to
18969         override the MONO_ASSEMBLIES directory.
18970
18971 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18972
18973         * icall.c: ValueType_GetHashCode() initialize local var.
18974
18975 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18976
18977         * reflection.c: sort custom attributes table.
18978
18979 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18980
18981         * reflection.c: support named args in custom attributes (write support).
18982
18983 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18984
18985         * reflection.c: fix finally position calculation.
18986
18987 2002-05-15  Radek Doulik  <rodo@ximian.com>
18988
18989         * reflection.c: fixed endianess at many places
18990
18991         * icall.c (ves_icall_InitializeArray): comment out debug msg
18992
18993 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
18994
18995         * object.c (mono_unhandled_exception): new function to handle
18996         unhandled exceptions.
18997         (mono_unhandled_exception): call the UnhandledException event.
18998         (mono_runtime_delegate_invoke): impl.
18999
19000 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19003         returns the RVA, not the direct pointer to the data. Handle the case
19004         when the class size is fixed.
19005
19006 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19007
19008         * reflection.c: fix some endianess issues.
19009
19010 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19011
19012         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19013
19014         * threads.c (mono_thread_init): added a callback which is invoked
19015         at thread start.
19016
19017 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19018         
19019         * icall.c: make GetHashCode return non-negative values.
19020
19021 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19022
19023         * object.c, icall.c, gc.c: revert to address-based hashcode.
19024
19025 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19026
19027         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19028
19029 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19030
19031         * icall.c, class.c: special case <Module>.
19032
19033 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19034
19035         * icall.c: fix bug in GetNow().
19036
19037 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19038
19039         * object.c (mono_runtime_class_init): make sure that we call all
19040         static class constructors.
19041
19042 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19043
19044         * reflection.c: sort methodsemantics table.
19045
19046 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19047
19048         * reflection.h, reflection.c: honour init locals setting.
19049
19050 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19051
19052         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19053
19054 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19055
19056         * reflection.c: support ContructorBuilders in attribute blob creation.
19057
19058 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19059
19060         * reflection.c: some changes to build a binary that can be run
19061         directly in windows.
19062
19063 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19064
19065         * loader.c: print a big message when an icall can't be found.
19066
19067 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19068
19069         * string-icalls.c: fix bug 24248.
19070
19071 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19072
19073         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19074         icall.c, reflection.h: separate assembly loading by pathname and by
19075         assembly name. Use the MONO_PATH env var to search for assemblies.
19076
19077 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19078
19079         * assembly.c, image.h: add some support for assemblies
19080         with multiple modules.
19081         * class.c, class.h: export mono_class_from_typeref().
19082         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19083         instead.
19084
19085 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19086
19087         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19088         documentation says (the ECMA one is correct).
19089
19090 2002-05-02  Dick Porter  <dick@ximian.com>
19091
19092         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19093         Don't name the synchronisation mutex.
19094
19095 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19096
19097         * rand.c
19098         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19099         Make the prototypes match.
19100         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19101         Same.
19102
19103         * icall.c
19104         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19105         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19106         all systems have tm.tm_zone, so use strftime() with %Z to print
19107         the timezone abreviation into a temp string.
19108
19109         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19110         rather than mono_array_addr() on a MonoString on Big Endian
19111         machines.
19112
19113 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19114
19115         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19116         fix bug 24041
19117
19118 2002-04-30  Dick Porter  <dick@ximian.com>
19119
19120         * socket-io.c: Cope with SOCKET being an integer rather than a
19121         pointer now.
19122
19123         * threads.c: Added Thread_free_internal, to deal with thread
19124         handle cleanup.  Moved calls to handle_store() and handle_remove()
19125         to start_wrapper(), so each can only be called once.  Allocate
19126         synchronisation blocks with GC_malloc(), and use GC finalisation
19127         to close the handles.
19128
19129         * icall.c: added System.Threading.Thread::Thread_free_internal
19130
19131 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19132
19133         * icall.c: support Environment.Exit, CommandLineArgs().
19134
19135 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19136
19137         * object.c, object.h: added mono_runtime_run_main () and
19138         mono_runtime_get_main_args () for use in System.Environment.
19139
19140 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19141
19142         * gc.c: fix thinko, enable actual finalization since the jit is now
19143         fixed.
19144
19145 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19146
19147         * gc.c, object.c: take into account that an object may be offset wrt the address
19148         returned by GC_malloc().
19149
19150 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19151
19152         * image.c: handle files without entries in the assembly table (modules).
19153
19154 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19155
19156         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19157         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19158         allowed to be null when it's System.Object class setup.
19159
19160 2002-04-27  Martin Baulig  <martin@gnome.org>
19161
19162         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19163         if `tb->parent == NULL' rather than crashing.
19164
19165 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19166
19167         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19168         calling acos() where asin() should have been called.
19169
19170 2002-04-26  Martin Baulig  <martin@gnome.org>
19171
19172         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19173         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19174         there's a subdirectory called `System', but we don't want to read that
19175         subdirectory as an assembly.
19176
19177 2002-04-25  Martin Baulig  <martin@gnome.org>
19178
19179         * debug-symfile.c: Reflect latest MonoString changes.
19180
19181 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19182
19183         * rand.c, rand.h: instance method icalls need to have an explicit
19184         this pointer as first argument in the C implementation.
19185
19186 2002-04-25  Nick Drochak <ndrochak@gol.com>
19187
19188         * icall.c: Fix typo in map for GetNonZeroBytes
19189
19190 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19191
19192         * string-icalls.c : String does now passes unit tests without any 
19193         errors, the following changes has been made:
19194         
19195         Implemented replace methods.
19196         Renaming of methods to (try) follow the standard.
19197         Fixed compare ordinal
19198         Made all memory allocated directly to function instead of via icall function.
19199         Small performance fix in is_in_array function
19200                         
19201  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19202
19203         c (mono_string_Internal_ctor_charp_int_int):
19204         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19205         sindex < 0, throw ArgumentOutOfRangeException instead of
19206         ArgumentNullException.
19207
19208         Added new check for length == 0, however
19209         I need to make it return String.Empty from the C code.
19210         
19211         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19212         that calculate the length for us here.
19213         
19214         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19215         mono_string_new_utf16 with mono_string_new, since value is utf8.
19216
19217 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19218
19219         * object.c: register the object for finalization if needed.
19220         Allocate one more char in the string for the terminating 0 char.
19221
19222 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19223
19224         * class.c, class.h, image.c: check if a type implemenst a destructor.
19225         Use the proper key for array class lookups.
19226         * icall.c: register the icalls in the System.GC class.
19227         * gc.c, gc.h: GC-related functions and icalls.
19228
19229 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19230
19231         * icall.c:
19232         * socket-io.c:
19233         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19234         changed a couple of free () by g_free ().
19235
19236         * decimal.c: one-liner in the comments for decimal2string ().
19237
19238 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19239
19240         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19241
19242 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19243
19244         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19245         * object.c (mono_runtime_invoke_array) : handle null in params
19246
19247 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19248
19249         * string-icalls.c: fixed bug in split (one off bug)
19250
19251 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19252
19253         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19254         * icalls.c: added String::Equals as internal method
19255
19256 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19257
19258         * threads.c: fixed bug in the double interlocked functions
19259
19260 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19261
19262         * threads.c: implemented all of the new interlocked icalls.
19263         * string-icalls.c: fix a bug in insert.
19264         * icalls.c: added the icalls for interlocked, removed old string functions.
19265         
19266 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19267
19268         * loader.c: fix off-by-one error when reading argument names.
19269
19270 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19271
19272         * profiler.c: win32 counter implementation (untested).
19273         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19274         (the latter needs testing and more complete impl. from win32 folks).
19275
19276 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19277
19278         * object.c: mono_array_new_full workaround mono_array_class_get
19279         problem.
19280
19281 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19282
19283         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19284         * object.h (mono_string_chars): Changed casting type.
19285
19286 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19287
19288         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19289                            method signatures to use gunichar2 instead of gint16.
19290
19291 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19292
19293         * object.h, object.c: domain-specific versions of mono_object_new and
19294         mono_array_new.
19295
19296 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19297
19298         * object.c: changed String layout
19299
19300         * string-icalls.c (mono_string_Internal_ctor_chara): added
19301         internal string constructors.
19302
19303 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19304
19305         * threads.c: pass 'this' to the thread start routine.
19306
19307 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19308
19309         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19310         InternalCompareStr don't call twice mono_string_cmp_char for the last
19311         character. Improved performance in mono_string_cmp_char.
19312
19313 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19314
19315         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19316         code into its own library: libmonoruntime.
19317
19318 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19319
19320         * object.h, object.c: changed array format so that szarrays do not
19321         require a bounds structure.
19322         * icall.c, appdomain.c: support for new szarray format.
19323
19324 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19325
19326         * metadata.c: compare also the retuns type when comparing signatures:
19327         we didn't do this as an optimization since really overloaded methods
19328         must differ also in the arguments, but this doesn't work with
19329         low-level IL code (or when using explicit conversion operators: see
19330         bug#23498 for an example).
19331
19332 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19333
19334         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19335
19336 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19337
19338         * icall.c: make MonoType::GetElementType its own icall.
19339
19340 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19341
19342         * icall.c: remove MonoMethod_get_Name().
19343         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19344         object.
19345
19346 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19347
19348         * string-icalls.c: optimized a few methods.
19349
19350 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19351
19352         * icall.c: added all new string internal calls
19353         * string-icalls.c: added, new string internal call implementation.
19354         * object.c: added mono_string_new_size for allocating a string a size
19355
19356 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19357
19358         * object.c (mono_object_isinst): use the same code as in the
19359         optimized x86 version.
19360
19361 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19362
19363         * profiler.c: TSC-based timer code (faster and more accurate).
19364         Not hooked up in configure, yet (set USE_X86TSC to 1).
19365
19366 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
19367
19368         * profiler.c, profiler.h: track time spent compiling methods.
19369         * threads.c: track thread creation/destruction.
19370
19371 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
19372
19373         * profiler.c, profiler.h, profiler-private.h: profiling interface
19374         and sample implementation. Moved here so that it can be used also by
19375         the jit.
19376
19377 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
19378
19379         * reflection.c, reflection.h: keep types and other handles separate in
19380         the hash tables for referred tokens. Add guid for modules.
19381
19382 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19383
19384         * assembly.c: fix bugs found with valgrind.
19385         * metadata.h, metadata.c: added mono_metadata_guid_heap().
19386
19387 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
19388
19389         * threads: added icall support for getting current domain for
19390                    the thread.
19391  
19392 2002-04-13  Martin Baulig  <martin@gnome.org>
19393
19394         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
19395         (MonoDebugVarInfo): Added `index' field for register based addresses.
19396         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
19397         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
19398         `MonoDebugVarInfo *params' and `guint32 this_offset' with
19399         `MonoDebugVarInfo *this_var'.
19400
19401         * debug-symfile.c (relocate_variable): New static function to write
19402         a location description for a local variable or method parameter.
19403
19404 2002-04-12  Martin Baulig  <martin@gnome.org>
19405
19406         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
19407         stack offset and begin/end scope address of a local variable.
19408         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
19409         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
19410         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
19411
19412         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
19413         Added new relocation types for start/end scope of a local variable.
19414
19415 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19416
19417         * object.h: add mono_object_domain() macro.
19418         * reflection.c: handle typespecs.
19419         * icall.c: MonoMethod::get_Name() implementation.
19420
19421 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19422
19423         * icall.c: String::GetHashCode() icall implementation.
19424
19425 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19426
19427         * icall.c: String::IndexOfAny icall.
19428         * object.c, object.h: make array->max_length more useful.
19429         Intrduced mono_object_class() and mono_string_length() macros.
19430
19431 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19432
19433         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
19434         instead of g_unichar_isdigit.
19435
19436 2002-04-11  Nick Drochak  <ndrochak@gol.com>
19437
19438         * icall.c: Implement a simple Double.ToString().
19439
19440 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19441
19442         * appdomain.h: only io-layer.h is supposed to be included.
19443         * icall.c: explicitly import environ. Fix warning.
19444
19445 2002-04-10  Nick Drochak  <ndrochak@gol.com>
19446
19447         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
19448                 return true even if it's not Daylight Savings time.
19449                 Only return false for the case where the function isn't
19450                 implemented for a plaform (read Windows).
19451
19452 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19453
19454         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
19455         data with a mutex.
19456
19457 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
19458
19459         * mempool.c (mono_mempool_alloc): only use g_malloc when
19460         absolutely necessary.
19461
19462 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19463
19464         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
19465
19466         * class.c (mono_class_vtable): use domain mempool to allocate vtable
19467         (mono_class_proxy_vtable): use domain mempool
19468
19469 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19470
19471         * appdomain.h, appdomain.c: split initialization that requires the
19472         execution engine support into mono_runtime_init().
19473
19474 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19475
19476         * class.c (mono_class_init): don't include vtable inside MonoClass
19477         to save some memory, gather some statistics.
19478         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
19479
19480 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19481
19482         * icall.c: internalcall implementation for ValueType.Equals().
19483
19484 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
19485
19486         * object.c (mono_message_init): moved 
19487         (mono_runtime_exec_main): new arch. independent impl.
19488         (mono_runtime_invoke_array): new method - like
19489         mono_runtime_invoke, but you can pass an array of objects.
19490         (mono_remoting_invoke): new arch. independent impl.
19491         (mono_message_invoke): new arch. independent impl.
19492         (mono_runtime_class_init): new arch. independent impl.
19493         (mono_runtime_object_init): new arch. independent impl.
19494
19495 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19496
19497         * metadata.c, object.c, reflection.c: documented the exported
19498         functions.
19499
19500 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19501
19502         * icall.c: simpler code to pass the assembly builder data to corlib.
19503         Implement GetNestedTypes() internalcall.
19504
19505 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19506
19507         * class.c: warn if a type can't be loaded.
19508
19509 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19510
19511         * image.h: typedef MonoImageOpenStatus
19512         * types.h: removed unused file
19513         
19514 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19515
19516         * icall.c: Enum_ToObject accepts enum value arguments.
19517
19518 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19519
19520         * class.c: move initialization of properties, events and nested
19521         classes, so that they happen for interfaces, too.
19522
19523 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19524
19525         * icall.c: cleanup some ugly casts in Array_SetValue*.
19526
19527 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19528
19529         * icall.c: the values array fro enums is of the correct type, now.
19530         Implement (correctly) getFullName instead of assQualifiedName for
19531         MonoType.
19532         * reflection.h, reflection.c: added mono_type_get_name ().
19533
19534 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19535
19536         * assembly.c, image.h: for each MonoImage, record from wich assembly
19537         it was loaded.
19538         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19539         Make Type.Assembly work.
19540
19541 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19542
19543         * debug-symfile.h: use char* instead of gpointer to avoid
19544         unnecessary casts.
19545
19546         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19547
19548         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19549         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19550
19551 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19552
19553         * icall.c (mono_message_init): impl. (code cleanup)
19554         (ves_icall_InternalExecute): impl. FieldGetter
19555
19556         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19557         defined we call all (non-static)methods through the vtable. 
19558
19559 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19560
19561         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19562         finalizer even though the memory is still referenced (and the chunk of
19563         memory is not freed).
19564
19565 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19566
19567         * assembly.c: fix brokeness.
19568
19569 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19570
19571         * class.c: kill some warnings. Check explicit interface method
19572         implementation also without considering the namespace.
19573         Load also literal strings in static class data.
19574
19575 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19576
19577         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19578         (default_assembly_name_resolver): Make the resolver take the
19579         "base" directory where the assembly was originally defined, so we
19580         can load DLLs that are in the same directory as the assembly that
19581         is being referenced.
19582
19583 2002-03-28  Dick Porter  <dick@ximian.com>
19584
19585         * file-io.h: 
19586         * file-io.c:
19587         * socket-io.c: 
19588         * unicode.h: 
19589         * unicode.c: Warning cleanups
19590
19591 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19592
19593         * object.h, reflection.h: use the correct type instead of MonoObject.
19594
19595 2002-03-28  Martin Baulig  <martin@gnome.org>
19596
19597         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19598         (mono_debug_update_symbol_file): Initialize classes if necessary.
19599
19600 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19601
19602         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19603         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19604
19605 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19606
19607         * assembly.h: fix function prototype.
19608         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19609         * mono-endian.h: use const cast.
19610
19611 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19612
19613         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19614
19615 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19616
19617         * loader.c: don't assert when a typeref can't be loaded, give
19618         a chance to the runtime to trow an exception instead.
19619         * loader.h: fix warning.
19620
19621 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19622
19623         * class.c (mono_class_proxy_vtable): added proxy support
19624
19625 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19626
19627         * icall.c: removed last of PAL calls, added System.Environment
19628         * file-io.h, file-io.c: MonoIO implementation
19629         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19630
19631 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19632
19633         * appdomain.c: do not use the byte marker in ldstr table lookup.
19634         * debug-helpers.c: allow two ':' to separate class and method name.
19635         * object.c: allocate arrays bounds with the GC, too.
19636         * verify: add a few more checks.
19637
19638 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19639
19640         * reflection.c: output also literal strings. Allocate parameter data
19641         with GC_malloc() (thanks, Martin, for catching this!).
19642
19643 2002-03-26  Martin Baulig  <martin@gnome.org>
19644
19645         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19646         include the `this' offset in the `param_offsets'.
19647
19648 2002-03-25  Martin Baulig  <martin@gnome.org>
19649
19650         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19651         mono_debug_get_class() function to get the classes. Added new
19652         relocation types for arrays and strings.
19653         (mono_debug_get_class): New static function to search in all
19654         referenced assemblies for a metadata token.
19655
19656         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19657
19658 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19659
19660         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19661         hold gc-allocated objects. Make the string heap a stream like the
19662         others. Removed duplicated code when writing stream info.
19663         Added asserts to catch possible buffer overflows. Set the sorted map
19664         for tables that need sorting. Added some documentation.
19665
19666 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19667
19668         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19669         for interned strings and vtables.
19670
19671 2002-03-24  Martin Baulig  <martin@gnome.org>
19672
19673         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19674         it in the array since it was created with g_slist_prepend().
19675
19676 2002-03-24  Martin Baulig  <martin@gnome.org>
19677
19678         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19679         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19680         (mono_debug_method_from_token): Renamed to
19681         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19682         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19683
19684         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19685         relocation types.
19686
19687         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19688
19689 2002-03-24  Martin Baulig  <martin@gnome.org>
19690
19691         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19692         (mono_debug_method_from_token): New func.
19693
19694         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19695         New interncall, calls mono_debug_local_type_from_signature().
19696         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19697         calls mono_debug_method_from_token().
19698
19699 2002-03-23  Martin Baulig  <martin@gnome.org>
19700
19701         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19702         specifies the number of bytes to be converted, not the array size.
19703         Return the number of chars, not the number of bytes.
19704         (ves_icall_iconv_get_chars): The `byteCount' argument
19705         specifies the number of bytes to be converted, not the array size.
19706
19707 2002-03-23  Martin Baulig  <martin@gnome.org>
19708
19709         * reflection.h (MonoReflectionSigHelper): New type.
19710
19711         * reflection.c (mono_reflection_sighelper_get_signature_local),
19712         (mono_reflection_sighelper_get_signature_local): New functions.
19713
19714         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19715         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19716         interncalls.
19717
19718 2002-03-23  Martin Baulig  <martin@gnome.org>
19719
19720         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19721         is_writeable is set.
19722         (mono_raw_buffer_update): New function to write the modified map
19723         back to disk.
19724
19725         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19726
19727         * debug-symfile.c (mono_debug_update_symbol_file): Call
19728         mono_raw_buffer_update() when done writing.
19729
19730 2002-03-23  Martin Baulig  <martin@gnome.org>
19731
19732         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19733
19734         * debug-symfile.c: Added support for arguments and local variables.
19735
19736 2002-03-23  Dick Porter  <dick@ximian.com>
19737
19738         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19739         protected by ifdefs, hence breaking the w32 build.
19740
19741 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19742
19743         * object.c: implement is_interned() the right way.
19744
19745 2002-03-21  Martin Baulig  <martin@gnome.org>
19746
19747         * debug-symfile.[ch]: New files to handle debugging information
19748         files. There's also support to dynamically update these symbol
19749         files to include machine dependent information.
19750
19751 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19752
19753         * threads.c (mono_thread_create): new function to create thread
19754         from C
19755
19756 2002-03-20  Martin Baulig  <martin@gnome.org>
19757
19758         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19759         method is a constructor.
19760         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19761         points to ves_icall_InternalInvoke().
19762
19763 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19764
19765         * file-io.c: Flush shouldn't throw exceptions.
19766
19767 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19768
19769         * file-io.c: FileStream flush support; FileSetLength now
19770         restores file pointer.
19771
19772 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19773
19774         * class.c: set image for pointer classes.
19775
19776 2002/03/19  Nick Drochak <ndrochak@gol.com>
19777
19778         * sysmath.c: Forgot one.
19779
19780 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19781
19782         * sysmath.c: Avoid redefining existing names.
19783
19784 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19785
19786         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19787         handled by runtime as icall rather than dllimport from libm.so
19788         * file-io.c, file-io.h: fixed handle argument type.
19789
19790 2002-03-18  Dick Porter  <dick@ximian.com>
19791
19792         * reflection.c (mono_image_get_type_info): rename interface to
19793         iface, because of "#define interface struct" on windows.
19794
19795 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19796
19797         * class.c, class.h: rename and export mono_ptr_class_get().
19798         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19799         * reflection.c, reflection.h, icall.c: better/saner type name
19800         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19801         method signatures.
19802
19803 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19804
19805         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19806
19807         * icall.c (ves_icall_InternalInvoke): impl.
19808
19809 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19810
19811         * reflection.c: output the interface map table, too.
19812
19813 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19814
19815         * class.c (class_compute_field_layout): separate computation of 
19816         static field layout
19817
19818 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19819
19820         * icall.c: added System.Buffer support.
19821         * file-io.c: moved file icalls from PAL to FileStream.
19822
19823 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19824
19825         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19826
19827 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19828
19829         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19830
19831 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19832
19833         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19834
19835 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19836
19837         * debug-helpers.{c,h}: moved here from monograph some useful functions
19838         to locate a method by name/signature in a class or image. Included
19839         also a small and flexible IL disassembler.
19840
19841 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19842
19843         * reflection.c: fixup tokens in methods with small header size, too.
19844
19845 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19846
19847         * object.c (mono_string_to_utf8): remove assert(!error), instead
19848         print a warning. 
19849
19850 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19851
19852         * icall.c: update to the new mono_Array_class_get interface.
19853
19854 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19855
19856         * appdomain.c, object.c: Boehm-GC enable.
19857         * icall.c: make get_data_chunk() support split data requests.
19858         Ensure a class is initialized in more cases. Return only the first
19859         property found in GetProperties() or the compiler gets confused. 
19860         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19861         * reflection.h, reflection.c: add fixup mechanism for field and method
19862         tokens. Initialize assembly->typeref in a single place. Output
19863         properties after events. Support custom attributes for events, too.
19864         Typo fix for paramter custom attrs.
19865
19866 2002-03-07  Martin Baulig  <martin@gnome.org>
19867
19868         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19869
19870 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19871
19872         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19873
19874 2002-03-06  Martin Baulig  <martin@gnome.org>
19875
19876         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19877         non-zero lower bounds. See testcases #F10-#F13.
19878
19879 2002-03-05  Martin Baulig  <martin@gnome.org>
19880
19881         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19882
19883         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19884         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19885         here.
19886         (ves_icall_System_Array_SetValue): Likewise.
19887         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19888         as argument and does the actual work. This function is used when copying a
19889         multi-dimensional array.
19890         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19891         now do all the widening conversions of value types.
19892         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19893
19894 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19895
19896         * class.c: remove some magic numbers and use the smbolic names,
19897         instead. Added init_events() to load event info at class init time.
19898         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19899         and mono_metadata_methods_from_event().
19900         * reflection.h, reflection.c: added support for writing out the evnets
19901         related information.
19902
19903 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19904
19905         * reflection.h, icall.c: use a different method (GetInterfaces)
19906         to gather interface info and add isbyref, isprimitive and
19907         ispointer to the ves_icall_get_type_info() return value.
19908
19909 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19910
19911         * class.h: stared adding support for events.
19912         * icall.c: split find_members implementation. Added debug icall to get
19913         the address of an object.
19914         * reflection.c: handle TypeBuilders in mono_type_get_object().
19915
19916 2002-03-01  Martin Baulig  <martin@gnome.org>
19917
19918         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19919         ArgumentOutOfRangeException(), not an ArgumentException().
19920         (ves_icall_System_Array_GetLowerBound): Likewise.
19921         (ves_icall_System_Array_GetValue): Improved argument checking.
19922         (ves_icall_System_Array_SetValue): Improved argument checking.
19923
19924 2002-03-01  Martin Baulig  <martin@gnome.org>
19925
19926         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19927         called with invalid arguments rather than just dying with g_assert().
19928         (ves_icall_System_Array_SetValue): Likewise.
19929         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19930         raise a NotImplementedException instead.
19931         (ves_icall_System_Array_GetLength): Added argument checking.
19932         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19933
19934 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19935
19936         * object.h (mono_assert): new macros mono_assert and
19937         mono_assert_not_reached
19938
19939 2002-02-28  Martin Baulig  <martin@gnome.org>
19940
19941         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19942         and "System::String::IsInterned" to "System::String::_IsInterned".
19943
19944 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19945
19946         * icall.c: remove hacks for typebuilder. Added icall to create a
19947         modified type from a tybebuilder.
19948         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19949         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19950         to create a backing MonoClass for a TypeBuilder.
19951
19952 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19953
19954         * class.c, class.h: more refactoring of class init.
19955         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19956
19957 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19958
19959         * marshal.c, marshal.h: start of marshaling interface.
19960
19961 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19962
19963         * icall.c: fix order in assembly qualified name icall.
19964
19965 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19966
19967         * class.c: do not free str, since we store it in the hash table.
19968         * reflection.h: add label field to MonoILExceptionInfo.
19969         * reflection.c: handle references to more than one assembly. Handle
19970         case when there isn't a module created in the assembly.
19971
19972 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19973
19974         * class.c: Fix typo. Start refactoring of class init code.
19975
19976 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19977
19978         * appdomain.c: exit with 1 on error.
19979         * class.c: we already have the name in MonoClassField.
19980         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
19981         MonoStreamHeader instead of an offset of image->raw_metadata.
19982
19983 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
19984
19985         * appdomain.c (mono_init): Be even more descriptive about the error.
19986
19987 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
19988
19989         * appdomain.c: give the user an informative message when corlib can't
19990         be loaded.
19991
19992 2002-02-26  Martin Baulig  <martin@gnome.org>
19993
19994         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
19995         New icall to get the time zone data.
19996
19997 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19998
19999         * reflection.c: set virtual and raw size of section correctly.
20000         * threads.c: transfer domain information to newly created threads.
20001
20002 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20003
20004         * class.c: when instancing a class in a domain, load the default
20005         vaules for static fields from the constant table. Fix System.Enum to
20006         not be an enum.
20007         * icall.c: implement Object::GetType() internalcall. Implemented
20008         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20009         Fixed checking of binding flags in find_members().
20010         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20011         * reflection.c: handle enumerations when writing to the constant
20012         table. Use a different object cache for types.
20013
20014
20015 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20016
20017         * object.c (mono_object_isinst): fix for arrays
20018
20019         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20020
20021 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20022
20023         * object.c: don't use mprotect ()  and fix intern pool hash table
20024         lookup for big endian systems.
20025
20026 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20027
20028         * icall.c: change type_is_subtype_of () signature.
20029
20030 2002-02-21  Mark Crichton  <crichton@gimp.org>
20031
20032         * rand.c, rand.h: Added random number generator for
20033         System.Security.Cryptography classes.
20034
20035         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20036
20037         * icall.c: Added System.Security.Cryptography calls.
20038
20039 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20040
20041         * class.c, icall.c, metadata.c: better support for pointer types.
20042         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20043         * reflection.c: Add support for getting custom attrs for properties
20044         and simplify some code.
20045
20046 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20047
20048         * icall.c: change getToken () and add custom attribute GetBlob()helper
20049         method.
20050         * reflection.h: add custom attrs array to the reflection builder structures.
20051         * reflection.c: encode and emit custom attributes for all the relevant
20052         reflection objects. Cache fieldref and methodref tokens. Change
20053         mono_image_create_token() interface to take a MonoDynamicAssembly.
20054         More complete custom attributes decoder. Load custom attributes for
20055         Assembly, Field, Method and Constructor objects, too. Make the
20056         returned array an Attribute[] one, not object[]. Added
20057         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20058         custom attribute constructor.
20059
20060 2002-02-20  Dick Porter  <dick@ximian.com>
20061
20062         * icall.c:
20063         * rawbuffer.c:
20064         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20065         problem code out for now).
20066
20067 2002-02-19  Radek Doulik  <rodo@ximian.com>
20068
20069         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20070
20071 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20072
20073         * icall.c: register the GetCustomAttributes method.
20074         * object.c, object.h: add mono_string_new_len ().
20075         * reflection.h, reflection.c: added mono_runtime_invoke(),
20076         mono_install_runtime_invoke(). Added
20077         mono_reflection_get_custom_attrs () to load custom attributes and
20078         create the attribute objects.
20079
20080 2002-02-19  Dick Porter  <dick@ximian.com>
20081         * threads-dummy-types.c:
20082         * threads-dummy-types.h:
20083         * threads-dummy.c:
20084         * threads-dummy.h:
20085         * threads-pthread-types.c:
20086         * threads-pthread-types.h:
20087         * threads-pthread.c:
20088         * threads-pthread.h:  Deleted obsolete files
20089
20090 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20091
20092         * class.c (mono_class_vtable): runtime init the class when we
20093         allocate static class data.
20094
20095         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20096
20097         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20098         and String - but we will need generic marshalling support in the
20099         future. 
20100         (mono_init): set the domain name in a ms compatible way
20101
20102         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20103         String[].
20104
20105 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20106
20107         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20108         for sizes
20109
20110         * appdomain.c (mono_domain_unload): impl.
20111
20112 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20113
20114         * appdomain.c, object.c: fix intern pool implementation.
20115         * class.c: fix alignment code.
20116
20117 2002-02-16  Radek Doulik  <rodo@ximian.com>
20118
20119         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20120         and s2 > s1, just copy lower bytes to be compatible with little
20121         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20122         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20123
20124         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20125         force big_endian to be 1 for big endian machines 
20126         (ves_icall_iconv_new_decoder): ditto
20127
20128 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20129
20130         * socket-io.c (convert_sockopt_level_and_name): If the system
20131         doesn't define SOL_IP or SOL_TCP, get them by hand using
20132         getprotobyname() and caching the values (because this could be a
20133         slow operation).
20134         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20135         Use the appropriate struct when the system does support it. Ie,
20136         not all systems have struct ip_mreqn so use struct ip_mreq when
20137         appropriate.
20138
20139 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20140
20141         * reflection.c: handle finally clauses.
20142
20143 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20144
20145         * socket-io.c: use g_snprintf() instead of snprintf.
20146
20147 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20148
20149         * reflection.c (mono_param_get_objects): Cast second argument to
20150         mono_method_get_param_names to a const char** to silence the
20151         compiler warning.
20152
20153         * appdomain.c (mono_domain_assembly_open): Put parens around the
20154         truth statement in the for-loop.
20155
20156         * unicode.c (iconv_convert): Got rid of a compiler warning about
20157         int i being unused when the system has a new iconv.
20158         (iconv_get_length): Same.
20159
20160         * image.c (load_class_names): Cast the second argument to
20161         g_hash_table_insert() to char* to hush compiler warnings about the
20162         arg being a const.
20163         (mono_image_open): Same here.
20164
20165         * socket-io.c: Don't conditionally include sys/filio.h or
20166         sys/sockio.h here anymore since we now get them from
20167         io-layer/io-layer.h
20168         (inet_pton): If the system doesn't support inet_aton, implement
20169         using inet_addr and also #define INADDR_NONE if it isn't defined
20170         by the system.
20171
20172 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20173
20174         * metadata.c, metadata.h: added function to get packing and size info
20175         of a typedef.
20176         * reflection.h, reflection.c: handle field RVA data. Save info about
20177         the table layout if needed. Assign typedef indexes to all the types
20178         before dumping the info about them to avoid forward reference problems.
20179
20180 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20181
20182         * socket-io.c (convert_sockopt_level_and_name): ifdef
20183         SO_ACCEPTCONN because it is not defined on my system (old debian)
20184
20185 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20186
20187         * opcode.c: use stddef.h to get NULL.
20188
20189 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20190
20191         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20192         for FIONBIO, FIONREAD and SIOCATMARK.
20193         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20194         define INADDR_NONE and besides, inet_addr() is deprecated and
20195         should not be used. Use inet_pton() instead - it also has the
20196         added bonus that it can easily handle IPv6 addresses as well.
20197         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20198
20199 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20200
20201         * decimal.c: remove _MSC_VER conditional.
20202
20203 2002-02-13  Dick Porter  <dick@ximian.com>
20204
20205         * socket-io.c: 
20206         * icall.c: Internal calls for Blocking, Select, Shutdown,
20207         GetSocketOption and SetSocketOption
20208
20209 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20210
20211         * assembly.cs: better resolver: use it instead of some kludgy
20212         code.
20213
20214 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20215
20216         * reflection.c: the best way to speed-up the compiler is to avoid
20217         infinite loops.
20218
20219 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20220
20221         * class.c (mono_class_vtable): changed the object layout
20222         (obj->vtable->class). 
20223         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20224
20225 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20226
20227         * assembly.c: look for assemblies in the assembly dir, too.
20228
20229 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20230
20231         * class.c: fix thinko in mono_class_from_type().
20232
20233 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20234
20235         * exception.h, exception.c: added TypeLoadException.
20236         * object.h, object.c: added mono_array_clone ().
20237         * icall.c: handle throwOnError in AssemblyGetType().
20238         Added Array.Clone().
20239         * opcode.h, opcode.c: use a single value for the opcode val.
20240         Compile fix for non-gcc compilers.
20241
20242 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20243
20244         * opcodes.c, opcodes.h: export interesting info about opcodes.
20245
20246 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20247
20248         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20249         icalls. 
20250
20251         * class.c (class_compute_field_layout): set element_class for enums
20252         (mono_class_create_from_typedef): set element_class for normal classes
20253
20254         * icall.c (ves_icall_System_Enum_get_value): impl.
20255
20256         * class.c (mono_class_create_from_typedef): do not set valuetype
20257         flag for System.ValueType and System.Enum
20258
20259 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20260
20261         * unicode.c (iconv_convert): fix big endian problem.
20262
20263 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20264
20265         * class.c: add asserts if we are ever going to scribble over memory.
20266         * socket-io.c: not all systems have AF_IRDA defined.
20267
20268 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20269
20270         * class.c (class_compute_field_layout): do not consider static
20271         fields to compute alignment
20272
20273 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20274
20275         * appdomain.c (mono_appdomain_get): impl.
20276         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20277
20278 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20279
20280         * icall.c: ignore "file://" prefix when loading an assembly.
20281
20282 2002-01-23  Dick Porter  <dick@ximian.com>
20283
20284         * socket-io.c:
20285         * icall.c:
20286         * Makefile.am: Added socket support
20287
20288 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20289
20290         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20291         code back.  This should return the assemblies that are loaded by
20292         the runtime on behalf of an application domain. 
20293
20294         The current implementation is still broken, it just returns every
20295         assembly loaded, but until we get real applications domain this
20296         will do.
20297
20298 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20299
20300         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20301         AppDomain object.
20302
20303 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20304
20305         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20306         the mono_class_from_name lookup.
20307         (ves_icall_get_parameter_info): ditto.
20308         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20309         method.
20310         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20311
20312 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20313
20314         * class.c: load also nested classes on class init.
20315         System.ValueType instance methods gets passed boxed
20316         values, unless methods in derived classed that get a pointer to the
20317         data.
20318         * icall.c: use better name parsing code in GetType().
20319         * image.c, image.h: add mono_image_loaded ().
20320         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20321         * reflection.c, reflection.h: added mono_reflection_parse_type().
20322
20323 2002-01-22  Veronica De Santis <veron78@interfree.it>
20324
20325         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20326         * threads.c : Added the implementation of internal calls for events
20327         * threads.h : Added prototypes of internal calls for events
20328         
20329 2002-01-21  Radek Doulik  <rodo@ximian.com>
20330
20331         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20332
20333 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20334
20335         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20336         (mono_class_value_size): use min_align
20337
20338 2002-01-20  Dick Porter  <dick@ximian.com>
20339
20340         * threads.h:
20341         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20342         so it compiles on w32.
20343
20344 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20345
20346         * metadata.c (mono_type_stack_size): impl.
20347
20348         * class.c (mono_class_get_field): impl. memberref token
20349
20350 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20351
20352         * icall.h : Added the internal calls mapping for CreateMutex_internal
20353                     and ReleaseMutex_internal.
20354         * threads.h : Added the prototype of mutexes internal calls.
20355         * threads.c : Added the implementations of mutexes internal calls.
20356
20357 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20358
20359         * metaparse.h: removed unused file.
20360         * reflection.c, reflection.h: added stream_data_align () function 
20361         to align data in streams and keep stream aligned. Add support for
20362         exception support in method headers.
20363
20364 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
20365
20366         * unicode.c: make iconv_convert () return the number of bytess written
20367         in the output buffer.
20368
20369 2002-01-15  Dick Porter  <dick@ximian.com>
20370         * threads.c: Make the runtime's idea of infinite timeouts coincide
20371         with the class library's
20372
20373         Fix a particularly egregious bug in mono_thread_cleanup(). That
20374         code was so utterly bogus it must have been written on a Monday.
20375
20376 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20377
20378         * reflection.h: add subtypes field to TypeBuilder.
20379         * reflection.c: encode constants for literal fields.
20380         Handle subtypes. Fix user string token (and add a zero byte)
20381         at the end.
20382         
20383 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
20384
20385         * class.c (mono_class_init): bug fix: assign slot numbers for
20386         abstract methods.
20387
20388 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20389
20390         * reflection.c: don't try to output a code RVA for abstract methods.
20391         Small fixes for method header format. Output parameter info to the
20392         ParamDef table. Save method overriding info to MethodImpl table.
20393         Fix property support. Allow typedef.extends to be a type in the
20394         building assembly.
20395         * verify.c: fix off-by-one error.
20396
20397 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
20398
20399         * class.c: fix mono_class_from_mono_type () for szarray types.
20400         Remove unused cache check in mono_class_from_type_spec().
20401         * icall.c: *type_from_name () functions handle simple arrays and byref.
20402         * reflection.c: handle byref and szarray types. Handle methods without
20403         body (gets P/Invoke compilation working). Handle types and fields in
20404         get_token ().
20405         * reflection.h: add rank to MonoTypeInfo.
20406
20407 2002-01-10  Dick Porter  <dick@ximian.com>
20408
20409         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
20410         internal calls
20411
20412 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20413
20414         * icall.c: initialize class in type_from_handle ().
20415         Loop also in parent classes for get_method ().
20416         * reflection.c: properly encode class and valuetype types.
20417         Start on encoding TypeBuilder types. Handle fieldrefs.
20418         Use correct length when registering a user string.
20419         Handle ConstructorBuilder and MonoMethod in get_token ().
20420         Make mono_type_get_object () aware of cached types.
20421         * object.c: back out change to mono_string_new ().
20422
20423 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
20424         * object.c: mono_string_new should return a NULL when the string 
20425         passed in is NULL -- not try to deference it.
20426         
20427 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20428
20429         * icall.c: hack to make IsSubType work for TypeBuilders.
20430         * reflection.c: emit constructors before methods.
20431         Retrieve param names in mono_param_get_objects().
20432
20433 2002/01/05  Nick Drochak  <ndrochak@gol.com>
20434
20435         * Makefile.am: fix list of headers and sources so automake 1.5
20436         doesn't complain. Removed \# at end of list.
20437
20438 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20439
20440         * reflection.c: get token for a method ref. Set return type of
20441         constructor to void.
20442         * loader.c: debug message.
20443         * class.c: typo fix.
20444
20445 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
20446
20447         * icall.c: fix array init with rank > 1. FindMembers
20448         loops in parent class as well.
20449         * image.c: do not insert nested types in name cache.
20450         * reflection.c: warning fix.
20451         * reflection.h: add override method (for interface impl).
20452
20453 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
20454
20455         * metadata.c: fix customattr decoding.
20456
20457 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
20458
20459         * rawbuffer.cs: Added native Win32 implementation, avoids using
20460         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
20461
20462 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
20463
20464         * class.c: make the low-level routines handle the cache.
20465
20466 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
20467
20468         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
20469
20470 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
20471
20472         * class.c: fix mono_array_element_size() for objects.
20473         * class.h, class.c: add properties to MonoClass and load them
20474         at init time.
20475         * icall.c: check with isinst() when assigning a value to an array
20476         instead of requiring the classes to match exactly.
20477         Implemented icall for System.Type::GetType().
20478         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
20479         enums. Handle bindingflags when looking for methods and fields.
20480         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
20481         and mono_metadata_methods_from_property().
20482         * reflection.h, reflection.c: added structures for propreties,
20483         parameters and enums. Implemented mono_property_get_object() and
20484         mono_param_get_objects().
20485
20486 2001-12-18  Dick Porter  <dick@ximian.com>
20487
20488         * file-io.c: Use mono_string_to_utf16() instead of
20489         mono_string_chars()
20490
20491         * object.c: Added mono_string_to_utf16(), which copies the non
20492         NULL-terminated MonoString into a new double-null-terminated
20493         buffer.
20494
20495 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
20496
20497         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20498
20499 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20500
20501         * file-io.c: raise exceptions if handle is invalid.
20502
20503 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20504
20505         * assembly.c: yet another check for mscorlib.
20506         * class.c, class.h: load nesting info for classes.
20507         * icall.c: many new functions to support the Reflection classes.
20508         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20509         * reflection.h, reflection.c: mono_image_create_token(),
20510         mono_assembly_get_object(), mono_type_get_object(),
20511         mono_method_get_object(), mono_field_get_object(): methods to return
20512         objects that parallel the C representation of assemblies, types,
20513         methods, fields.
20514
20515 2001-12-11  Dick Porter  <dick@ximian.com>
20516
20517         * icall.c:
20518         * file-io.c: Internal calls for file IO.
20519
20520 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20521
20522         * tabledefs.h: missing FileAttributes.
20523         * verify.h, verify.c: use is_valid_string () to simplify and check for
20524         valid strings more correctly. Fix warnings and speeling.
20525         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20526         Check code: branches, maxstack, method calls.
20527
20528 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20529
20530         * object.c (mono_object_allocate): removed static, so that the jit
20531         can allocate value types.
20532
20533         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20534
20535 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20536
20537         * class.c: init enum types right away and register the
20538         token->MonoClass map in mono_class_create_from_typedef ().
20539         * verify.h, verify.c: first cut of the verifier.
20540         * pedump.c: add --verify switch to verify metadata tables.
20541         * tabledefs.h: add some missing enums.
20542
20543 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20544
20545         * class.c (mono_install_runtime_class_init): impl.
20546         (mono_class_init): renamed mono_class_metadata_init to
20547         mono_class_init, also removed the metadata_inited flag
20548
20549         * object.c (mono_object_isinst): use faster algorithm
20550
20551 2001-11-30  Radek Doulik  <rodo@ximian.com>
20552
20553         * mono-endian.h: reverted last change
20554         added function prototypes
20555
20556         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20557         add mono-endian.c back
20558
20559         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20560         for unaligned access, I've mistaked it with endianess. I am
20561         sorry.
20562         (mono_read16): fix reverted endianess
20563         (mono_read64): ditto
20564         (mono_read32): ditto
20565
20566 2001-11-30  Dick Porter  <dick@ximian.com>
20567
20568         * exception.c: Implement mono_exception_from_name()
20569
20570 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20571
20572         * metadata.h, metadata.c: remove params_size and locals_size and their
20573         calculation from the metadata code: they are only usefult to the
20574         interp.
20575
20576 2001-11-29  Radek Doulik  <rodo@ximian.com>
20577
20578         * object.c (mono_ldstr): swap bytes here, it's probably not the
20579         best place, but works for me now, I'll redo it once I know mono
20580         better, also note that I add PROT_WRITE and don't reset back, also
20581         note that it's only affects big endians, so x86 should be OK
20582
20583         * mono-endian.h (read16): use just glib macros for both endians
20584
20585         * mono-endian.c: removed as glib macros are used in in
20586         mono-endian.h so we don't need to care about endianess for read
20587         macros as glib does that for us already
20588
20589 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20590
20591         * class.h, class.h: take minimum alignment into consideration so
20592         that the fields of a class remain aligned also when in an array.
20593
20594 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20595
20596         * loader.h, loader.c: add mono_method_get_param_names().
20597         * class.c: 0-init class fields.
20598
20599 2001-11-26  Dick Porter  <dick@ximian.com>
20600
20601         * icall.c:
20602         * threads-types.h:
20603         * threads.c: New file that handles System.Threading on all platforms
20604
20605         * object.c: 
20606         * object.h: Remove the synchronisation struct from MonoObject,
20607         replace it with a pointer that gets initialised on demand
20608
20609         * Makefile.am: Replace all the system-specific threading code with
20610         a single file that uses the new wrapper library
20611
20612 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20613
20614         * class.c, class.h: add mono_install_trampoline() so that the runtime
20615         can register a function to create a trampoline: removes the ugly
20616         requirement that a runtime needed to export arch_create_jit_trampoline.
20617         * object.h, object.c: added mono_install_handler() so that the runtime
20618         can install an handler for exceptions generated in C code (with
20619         mono_raise_exception()). Added C struct for System.Delegate.
20620         * pedump.c: removed arch_create_jit_trampoline.
20621         * reflection.c: some cleanups to allow registering user strings and
20622         later getting a token for methodrefs and fieldrefs before the assembly
20623         is built.
20624         * row-indexes.h: updates and fixes from the new ECMA specs.
20625
20626 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20627
20628         * class.h, class.c: add enum_basetype field to MonoClass.
20629         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20630         to get index in the constant table reated to a field, param or
20631         property.
20632         * reflection.h, reflection.c: handle constructors. Set public-key and
20633         version number of the built assembly to 0.
20634         * row-indexes.h: update from new ECMA spec.
20635
20636 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20637
20638         * class.h, class.c: add a max_interface_id to MonoClass.
20639         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20640         since it's used to do that. Added mono_type_type_from_obj().
20641         Make GetType() return NULL instead of segfaulting if the type was not
20642         found. Handle simple arrays in assQualifiedName.
20643         * object.h: add a struct to represent an Exception.
20644         * reflection.c: output call convention in method signature.
20645         Add code to support P/Invoke methods and fixed offsets for fields.
20646
20647 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20648
20649         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20650         the value.
20651         * icall.c: use mono_array_addr instead of array->vector: fixes the
20652         reflection image writing.
20653         * reflection.c: init call convention byte to 0 in method signature.
20654         Encode the property signature. Don't output property-related methods
20655         twice. Really process the properties for a type (don't cast a field to
20656         a property, my mom always told me that).
20657         Fix 64 bit issues in pointer alignment in a different and more
20658         readable way.
20659
20660 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20661
20662         * loader.h: Removed type class from MonoDefaults, added monotype
20663
20664         * loader.c: Loaded MonoType, removed loading of Type
20665
20666         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20667         and fills in System.Type._impl with a RuntimeTypeHandle rather
20668         than the actual MonoClass *
20669
20670         (ves_icall_type_from_handle): change from type_class to
20671         monotype_class
20672
20673         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20674         implemented
20675
20676         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20677         implemented
20678
20679         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20680
20681         (ves_icall_System_Reflection_Assembly_GetType): implemented
20682
20683         (ves_icall_System_MonoType_assQualifiedName): implemented
20684
20685         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20686
20687 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20688
20689         * assembly.c (mono_assembly_open): Implement a cache for the
20690         assemblies. 
20691
20692         (mono_assembly_close): only destroy the assembly when the last
20693         reference is gone.
20694         
20695 2001-11-09  Dick Porter  <dick@ximian.com>
20696
20697         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20698
20699 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20700
20701         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20702
20703 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20704
20705         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20706         from Martin Weindel.
20707         * object.h: add mono_string_chars ().
20708
20709 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20710
20711         * reflection.c (build_compressed_metadata): Eliminates warnings
20712         and uses 64-bit clean code.
20713
20714         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20715         (mono_type_equal): Change signature to eliminate warnings.
20716
20717 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20718
20719         * icall.c, loader.c: remove the internalcall array constructors.
20720         Changes to match the new MonoArray structure.
20721         * object.h, object.c: an array object doesn't allocate an extra
20722         vector. Add mono_array_new_full () to create jagged arrays easily.
20723
20724 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20725
20726         * metadata.h, metadata.c: add mono_metadata_field_info () to
20727         retreive all the info about a field from vairous tables.
20728         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20729         * class.h, class.c: augment MonoClassField with more info.
20730         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20731         policy and load a field's RVA if needed.
20732
20733 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20734
20735         * class.c (mono_class_metadata_init): create a trampoline for all
20736         virtual functions instead of actually compiling them.
20737
20738 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20739
20740         * class.h, class.c: include name in MonoClassField.
20741         * class.c: fix fundamental type of System.Object and System.String.
20742         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20743         tokens in ldtoken.
20744         * icall.c: remove internalcalls for the Reflection stuff that is now
20745         done in C# code.
20746         * loader.c: mono_field_from_memberref () implementation.
20747         * mono-endian.c: thinko (s/struct/union/g).
20748         * object.c, object.h: make the mono_string_* prototypes actually use
20749         MonoString instead of MonoObject.
20750         * reflection.c, reflection.h: updates for changes in the reflection
20751         code in corlib: we use C structures that map to the actual C# classes.
20752         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20753         fat method header if needed and use the info from the ILGenerator for
20754         methods. Handle fields in types. Misc fixes.
20755
20756 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20757
20758         * class.c (mono_class_metadata_init): bug fix: always allocate
20759         space for static class data
20760
20761 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20762
20763         * class.c (mono_compute_relative_numbering): use relative
20764         numbering to support fast runtime type checks.
20765
20766 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20767
20768         * class.c (mono_class_create_from_typeref): added debugging output
20769         to print class name when MonoDummy is returned instead of real class
20770
20771 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20772
20773         * class.c (mono_class_metadata_init): interface offset table now
20774         contains pointers into the vtable - this is more efficient for the jit
20775
20776 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20777
20778         * class.c (mono_class_metadata_init): use a temporary vtable (the
20779         old algorithm only worked for the interpreter, but not for the jit)
20780
20781 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20782
20783         * loader.c (method_from_memberref): use mono_class_get to get the
20784         class of an array instead of using System.Array directly.
20785         (mono_get_method): also add MEMBERREF methods to the method cache
20786         which usefull for arrays.
20787
20788 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20789
20790         * pedump.c (arch_compile_method): added to compute vtable entry
20791
20792         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20793         number of interfaces.
20794         
20795         * class.h: merged MonoArrayClass into MonoClass
20796
20797         * class.c (mono_class_create_from_typedef): compute the vtable size and
20798         allocate space to include the vtable inside MonoClass
20799         (mono_class_metadata_init): initialize the vtable
20800
20801 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20802
20803         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20804         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20805         * image.c: endian fixes by Laurent Rioux.
20806         * object.h, object.c: rename MonoStringObject to MonoString and
20807         MonoArrayObject to MonoArray. Change some function names to conform to
20808         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20809         guint16* as first argument, so don't use char*.
20810         Provide macros to do the interesting things on arrays in a portable way.
20811         * threads-pthread.c: updates for the API changes and #include <sched.h>
20812         (required for sched_yield()).
20813         * icall.c: updates for the API changes above.
20814         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20815         platforms that need them.
20816
20817 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20818
20819         * class.c: set the correct type for all the fundamental
20820         type when loading the class.
20821
20822 2001-10-05  Dick Porter  <dick@ximian.com>
20823
20824         * threads-pthread.c (pthread_mutex_timedlock): Simple
20825         compatibility version for C libraries that lack this call.
20826
20827 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20828
20829         * class.c: MonoTypes stored in MonoClass are stored as
20830         fundamental MonoTypes when the class represents a
20831         fundamental type (System.Int32, ...).
20832         The TypeHandle return by ldtoken is a MonoType*.
20833         * icall.c: ves_icall_get_data_chunk () write out all the
20834         PE/COFF stuff. Implement ves_icall_define_method (),
20835         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20836         * image.c: properly skip unknown streams.
20837         * loader.h, loader.c: add type_class to mono_defaults.
20838         * metadata.c, metadata.h: export compute_size () as
20839         mono_metadata_compute_size () with a better interface.
20840         Typo and C&P fixes.
20841         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20842         * reflection.c, reflection.h: many cleanups, fixes, output method
20843         signatures and headers, typedef and typeref info, compress the metadata
20844         tables, output all the heap streams, cli header etc.
20845         * row-indexes.h: typo fixes.
20846
20847 2001-10-04  Dick Porter  <dick@ximian.com>
20848
20849         * object.h: Add a synchronisation mutex struct to MonoObject
20850
20851         * object.c (mono_new_object): Initialise the object
20852         synchronisation mutexes
20853
20854         * icall.c: System.Threading.Monitor internal calls
20855         
20856         * threads-pthread.h:
20857         * threads-pthread.c: System.Threading.Monitor internal calls
20858
20859         * threads-types.h: New file, includes the system-specific thread
20860         structures
20861         
20862         * threads-pthread-types.h:
20863         * threads-pthread-types.c: New files, handle pthread-specific
20864         synchronisation types
20865
20866         * threads-dummy-types.h: 
20867         * threads-dummy-types.c: New files of dummy support for
20868         thread-specific types
20869
20870         * metadata.c:
20871         * image.c:
20872         * pedump.c: include mono-endian.h not endian.h
20873         
20874         * Makefile.am: More threads files.
20875         Name mono-endian.h not endian.h
20876
20877 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20878
20879         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20880         stuff and implement a few more bits.
20881         * icall.c: a field needs to be dereferenced twice. Do not use the same
20882         name for two variables in the same scope.
20883         * image.c, image.h: cleanups.
20884
20885 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20886
20887         * class.c (mono_class_metadata_init): bug fix: compute the right size
20888
20889 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20890
20891         * icall.c: implemented some of the Reflection internalcalls.
20892         * image.c, image.h: start writing out the PE/COFF image.
20893         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20894         that does the reverse than decode_blob_size ().
20895         * object.c: use mono_metadata_encode_value (). Move here
20896         temporary implementation of mono_string_to_utf8 ().
20897         * rawbuffer.c: make malloc_map static.
20898
20899 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20900
20901         * metadata.c: fix type comparison for arrays.
20902         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20903         Added a couple of new classes to monodefaults.
20904         * icall.c: added a couple of Reflection-related internalcalls.
20905         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20906         Added a byval_arg MonoType to MonoClass.
20907
20908 2001-09-28  Dick Porter  <dick@ximian.com>
20909
20910         * icall.c:
20911         * threads-pthread.h: 
20912         * threads-pthread.c: Implemented internal calls for
20913         LocalDataStoreSlot operations.  Applied mutexes around all shared
20914         data.  Reworked the thread creation and Start() operations to
20915         avoid a race condition.
20916         
20917         * threads-dummy.h:
20918         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20919
20920 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20921
20922         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20923
20924 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20925
20926         * class.c, loader.c: warn and return NULL instead of erroring out.
20927         * icall.c: added System.AppDomain::getCurDomain().
20928         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20929
20930 2001-09-25  Dick Porter  <dick@ximian.com>
20931
20932         * threads-pthread.h:
20933         * threads-pthread.c: Implemented timed thread joining and added
20934         System.Threading.Thread::Join_internal internal call
20935
20936         * icall.c: Added System.Threading.Thread::Join_internal internal call
20937
20938         * threads-dummy.h:
20939         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20940
20941 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20942
20943         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20944         mono_string_intern () to implement the semantics of the ldstr opcode
20945         and the interning of System.Strings.
20946         * icall.c: provide hooks to make String::IsIntern and String::Intern
20947         internalcalls.
20948
20949 2001-09-23  Dick Porter  <dick@ximian.com>
20950
20951         * threads-dummy.c: 
20952         * threads-dummy.h: New files of dummy threading routines
20953
20954         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20955         support code based on system specifics
20956
20957         Rename PTHREAD_LIBS to THREAD_LIBS
20958         
20959 2001-09-23  Dick Porter  <dick@ximian.com>
20960
20961         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20962         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20963         internal calls.
20964         (mono_thread_init): Set up a Thread object instance to return when
20965         the main thread calls Thread.CurrentThread
20966         (mono_thread_cleanup): Wait for all subthreads to exit
20967
20968         * icall.c: New internal calls for System.Threading.Thread::Sleep
20969         (including Schedule) and CurrentThread
20970
20971         * threads.h: New file, to insulate thread-specific stuff from the
20972         rest of the code
20973
20974 2001-09-21  Dick Porter  <dick@ximian.com>
20975
20976         * threads-pthread.h: 
20977         * threads-pthread.c: New file, for handling pthreads-style
20978         threading support.  Start() now starts a new thread and executes
20979         the ThreadStart delegate instance.
20980
20981         * icall.c: Added the internalcall for
20982         System.Threading.Thread::Start_internal
20983
20984         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
20985
20986 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
20987
20988         * loader.c: work around the different signatures for delegates
20989         constructors csc generates in compiled code vs the ones compiled in mscorlib.
20990
20991 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20992
20993         * class.h, class.c: add mono_class_get_field_from_name ().
20994         * *: Fix C comments and other ANSI C issues.
20995
20996 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
20997
20998         * endian.h, assembly.c: fix some endianness issues.
20999
21000 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21001
21002         * loader.h, load.c: add delegate_class to mono_defaults.
21003         Handle runtime provided methods in mono_get_method ().
21004
21005 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21006
21007         * loader.c (mono_get_method): use pinvoke for internal call
21008
21009         * icall.c: use pinvoke for internal call
21010
21011         * loader.c (method_from_memberref): set the method name
21012
21013 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21014
21015         * metadata.c: help the compiler generate better code for
21016         mono_class_from_mono_type ().
21017
21018 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21019
21020         * class.c (mono_class_metadata_init): delayed computing of the
21021         class size to mono_class_metadata_init ()
21022
21023 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21024
21025         * class.c, class.h: add an interfaces member to MonoClass.
21026         * image.c, image.h: add assembly_name field to MonoImage
21027         from the assembly table.
21028         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21029
21030 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21031
21032         * class.c: Handle Array in mono_class_from_mono_type ().
21033         * metadata.c, pedump.c: some endian fixes.
21034
21035 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21036
21037         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21038         * metadata.c: fix small problem introduced with the latest commit.
21039
21040 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21041
21042         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21043         We don't need a MonoMetadata pointer anymore to compare signatures in
21044         mono_metadata_signature_equal (), update callers.
21045         Reduced memory usage an number of allocations for MonoMethodHeader and
21046         MonoMethodSignature.
21047
21048 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21049
21050         * metadata.c: added compare for szarray.
21051
21052 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21053
21054         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21055         and add a couple more types to it and mono_defaults. Give an hint on
21056         classes that need implementing in our corlib and are referenced
21057         in mscorlib.
21058
21059 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21060
21061         * class.h, class.c: keep track if a class is also an Enum.
21062         * loader.c: Implement a couple more types for use in libffi
21063         marshalling. Gives better diagnostics when failing to dlopen
21064         a library. Set method->klass for P/Invoke methods, too.
21065
21066 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21067
21068         * class.c, class.h: add a MonoType this_arg to MonoClass that
21069         represents a pointer to an object of the class' type that
21070         can be used by the interpreter and later the type cache.
21071         Add best guess alignment info for valuetype objects.
21072
21073 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21074
21075         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21076         into MonoType: one less level of indirection and allocation and
21077         simplifies quite a bit of code. Added cache for MonoTypes that are
21078         used frequently, so that we don't need to allocate them all the time.
21079
21080 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21081
21082         * class.c (mono_class_create_from_typedef): System.Enum is also a
21083         value type, although it does not derive from System.ValueType
21084         (maybe a bug in the ms compiler?)
21085
21086         * metadata.c (mono_type_size): return the right size for value types
21087
21088         * loader.c (mono_get_method): only initialize method header if not abstract
21089
21090         * class.c (mono_class_from_mono_type): use mono_default values. 
21091
21092 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21093
21094         * *: use MonoClass pointers instead of <type_tokens>
21095         
21096         * class.h: new flag: metadata_inited.
21097
21098         * class.c (mono_class_metadata_init): impl.
21099         (mono_class_instance_size): impl.
21100         (mono_class_data_size): impl.
21101
21102 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21103
21104         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21105         MonoClass now has the name and name_space fields. 
21106         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21107         mono_get_method () takes and optional MonoClass as argument.
21108         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21109         instead that takes advantage of a map from class names to typedef
21110         tokens in MonoImage.
21111
21112 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21113
21114         * metadata.c: zero is not a valid alignment boundary.
21115         Merge MONO_TYPE_VOID in default decoding code.
21116
21117 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21118
21119         * image.h: merged MonoMetadata into MonoImage
21120
21121         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21122         identify the type of elements.
21123
21124 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21125
21126         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21127         * cil-coff.h: split MonoMSDOSHeader and add size info.
21128         * image.c: add some consistency checks.
21129         * metadata.c: fix row size computation: one programmer
21130         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21131         add explanation for the locator routine.
21132         Fix decoding of size in method header.
21133         
21134 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21135
21136         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21137         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21138         function from gnome-libs.  This uses the right path separator
21139         based on the OS, and also works around a bug in some systems where
21140         a double slash is not allowed. 
21141         (default_assembly_name_resolver): Use g_concat_dir_and_file
21142         (mono_assembly_open): ditto.
21143
21144 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21145
21146         * metadata.c (mono_metadata_signature_equal): impl.
21147
21148         * *: void is now a realy MonoType (instead of using NULL)
21149         
21150         * metadata.c (do_mono_metadata_parse_type): use
21151         mono_metadata_parse_type to parse void value.
21152
21153 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21154
21155         * metadata.c, metadata.h: in the signature and method header store
21156         only the space required for holding the loca vars and incoming arguments.
21157
21158 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21159
21160         * metadata.c (do_mono_metadata_parse_type): treat void like any
21161         other type (instead of assigning NULL);
21162
21163 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21164
21165         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21166
21167 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21168
21169         * image.c (do_mono_image_open): added a cache for arrays.
21170
21171 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21172
21173         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21174         decode a single column from a row in a metadata table and changes
21175         to take advantage of it in the typedef locator (gives a nice speed up).
21176         Store offset info for function params.
21177
21178 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21179
21180         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21181
21182 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21183
21184         * assembly.c: how could mono_assembly_close () had ever worked?
21185         * metadata.c, metadata.h: provide offset info for local vars.
21186         Implement mono_type_size () to take care of alignment as well
21187         as size (it was mono_field_type_size in cli/class.c before).
21188
21189 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21190
21191         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21192
21193         * assembly.h (CORLIB_NAME): set to corlib.dll
21194
21195         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21196
21197 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21198
21199         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21200         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21201         tokentype.h: massive namespace cleanup.
21202
21203 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21204
21205         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21206
21207 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21208
21209         * metadata.c (mono_metadata_free_type): added check for type !=
21210         NULL (void) before calling mono_metadata_free_type()
21211
21212 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21213
21214         * metadata.h, row_indexes.h: added header with enumerations to use
21215         to index in the columns from tables in metadata and to decode coded
21216         tokens: we should start using this instead of embedding magic numbers
21217         all over the code.
21218
21219 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21220
21221         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21222         Move metadata_t info from cli_image_info_t to MonoImage, where
21223         it's easily accessible. Changed all the uses accordingly.
21224         Added the method and class caches to MonoImage.
21225         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21226         and mono_metadata_decode_value () signature to be more consistent
21227         with the other parse functions (and simplify code). Taken advantage
21228         of zero-length array allocation with GCC. Removed reduntant (and
21229         wrong) MonoFieldType struct and use MonoParam instead. Changed
21230         mono_metadata_parse_field_type () to use common code for parsing.
21231         Added mono_metadata_typedef_from_field () and
21232         mono_metadata_typedef_from_method () to lookup a typedef index from a
21233         field or method token.
21234         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21235
21236 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21237
21238         * metadata.c (mono_metadata_parse_field_type): Implement. 
21239         (do_mono_metadata_parse_type): Split engine from
21240         mono_metadata_parse_type, so that we can create smaller structures
21241         for things that just have one pointer to the MonoType (look at
21242         the MonoFieldType)
21243
21244 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21245
21246         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21247         as Jan Gray found out, it is incorrect. 
21248
21249 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21250
21251         * assembly.c: Implement asssembly loading.  This loads an image
21252         and loads all the referenced assemblies.  Come to think of it, we
21253         could always do lazy loading of the assemblies. 
21254
21255         * image.c (mono_image_open): Keep loaded images in a hashtable.
21256
21257         * image.h (MonoImage): Add reference count.
21258
21259 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21260
21261         * assembly.c (mono_assembly_open): Keep track of the file name in
21262         case the assembly has no ASSEMBLY table.
21263
21264         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21265         from get.c here.
21266
21267 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21268
21269         * metadata.c, metadata.h: decode local vars in method header
21270         parse function. Change callers accordingly.
21271
21272 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21273
21274         * metadata.h, cil-coff.h: protect against multiple inclusion.
21275         Added some new structures to hold information decoded from metadata:
21276         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21277         and relevant decoding/free functions.
21278         * metadata.c: implement decoding functions. Add warning for out of bounds
21279         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21280         all the info about a method signature and invocation. Remove check on
21281         uninitialized local var in parse_mh() and fix memory leak.
21282
21283 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21284
21285         * metadata.h: More macros.
21286
21287         * tokentype.h: New file.
21288
21289 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21290
21291         * assembly.c: added a consistency check and initialize
21292         some structures with g_new0().
21293         * metadata.c: fixed a couple more bugs in table size computation
21294         and add other checks for out-of bound access to metadata.
21295
21296 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21297
21298         * metatada.c: fix bugs computing table sizes. Spew a
21299         warning when index in string heap is out of bounds.
21300
21301 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21302
21303         * metadata.h: Add a couple of macros to manipulate tokens. 
21304
21305 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21306
21307         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21308         cli_section_tables).
21309
21310 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21311
21312         * metadata.c (mono_metadata_user_string): New function, provides
21313         access to the UserString heap. 
21314
21315 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21316
21317         * metadata.c: Add inline documentation.
21318
21319 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21320
21321         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21322         files. 
21323
21324 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21325
21326         * typeattr.h: New file, TypeAttribute flags. 
21327
21328 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21329
21330         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21331         mono_assembly_ensure_section): Section loading code.
21332         (load_section_tables): Load the sections.
21333
21334         * mono/metadata/metadata.c (mono_metadata_locate_token,
21335         mono_metadata_locate): Functions to locate the information
21336         definition given a token or a table and an index.
21337         (mono_metadata_compute_table_bases): New.
21338         (compute_size): New function to compute the sizes of the various
21339         tables.
21340
21341         * mono/metadata/metadata.h: Finish listing the different index
21342         types. 
21343
21344         * mono/metadata/pedump.c: Improve to dump new information.
21345
21346 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21347
21348         * mono/metadata/metadata.c: Entered all the tables matching
21349         Beta2. 
21350
21351         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21352
21353
21354