* class.c (mono_class_from_generic_parameter): Fix case similar to
[mono.git] / mono / metadata / ChangeLog
1 2007-06-11  Raja R Harinath  <harinath@gmail.com>
2
3         * class.c (mono_class_from_generic_parameter): Fix case similar to
4         bug #81830 handled below, but for method containers.
5
6 2007-06-10  Raja R Harinath  <harinath@gmail.com>
7
8         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
9         get_shared_generic_class.  Directly inflate the instance.
10         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
11         (inflate_generic_class): Delete.
12         (get_shared_generic_class): Delete.  Move setting of
13         'cached_class' and 'cached_context' ...
14         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15
16         * metadata.c (mono_metadata_lookup_generic_class): Change
17         signature to take the components of a MonoGenericClass rather than
18         an allocated MonoGenericClass.  Change semantics to be intern-like.
19         * reflection.c (mono_class_bind_generic_parameters): Update to
20         changes.  Make locking region tighter.
21         * class.c (inflate_generic_class): Update to changes.
22         (get_shared_generic_class): Likewise.
23         * metadata-internals.h: Likewise.
24
25         * reflection.c (mono_class_bind_generic_parameters): Take and
26         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
27         (mono_reflection_bind_generic_parameters): Use
28         'mono_class_bind_generic_parameters' rather than duplicate the code.
29         * class.c (mono_bounded_array_class_get): Update to changes.
30         * object-internals.h: Likewise.
31
32         * reflection.c (mono_class_bind_generic_parameters): Only support
33         parameterizing generic type definitions.  Remove support for other
34         open types.
35
36 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
37
38         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
39
40         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
41         in the dynamic case.
42
43 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
44
45         * threads.c: When cleaning up thread, reset the Background bit.
46         Fixes bug #81720.
47
48 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
49
50        * metadata.c: Move variable declarations to top of scope.
51        * verify.c: Move variable declarations to top of scope.
52
53        Code is contributed under MIT/X11 license.
54
55 2007-06-08  Raja R Harinath  <rharinath@novell.com>
56
57         * reflection.c (mono_class_bind_generic_parameters): Replace
58         open-coded loop with mono_metadata_inflate_generic_inst.
59
60         * class.c (get_shared_generic_class): Don't call
61         mono_get_shared_generic_inst.  Use the container's own
62         'class_inst'.
63
64         * metadata.c (mono_metadata_load_generic_params): Move
65         initialization of 'context' field here from ...
66         * class.c (mono_class_create_from_typedef): ... here, and ...
67         * loader.c (mono_get_method_from_token): ... here.
68
69         * class.c (get_shared_generic_class): Rename from
70         mono_get_shared_generic_class and make static.
71         (mono_get_shared_generic_inst): Move to metadata.c.
72         * loader.c (mono_get_shared_generic_method): Likewise.
73         * class-internals.h, metadata-internals.h: Update to changes.
74
75         Fix #81830
76         * class.c (mono_class_from_generic_parameter): Don't assume a
77         generic container owner exists.  Generic containers from monodis
78         don't have any.
79
80 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
81
82         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
83         * verify.h: new typedefs to returns the non-verifiable status
84         * verify.c: initial implementation of generics, stack merging and object compatibility check
85
86 2007-06-06  Mark Probst  <mark.probst@gmail.com>
87
88         * class.c, image.c, class-internals.h (MonoImage): class_cache is
89         a MonoInternalHashTable again (fixed bug in internal hash table
90         code).
91
92 2007-06-06  Mark Probst  <mark.probst@gmail.com>
93
94         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
95         MonoInternalHashTable again (fixed bug in internal hash table
96         code).
97
98 2007-06-06  Mark Probst  <mark.probst@gmail.com>
99
100         * class.c, image.c, class-internals.h, domain.c,
101         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
102         changes.  Have to figure out what makes them break the SWF
103         regression.
104
105 2007-06-04  Mark Probst  <mark.probst@gmail.com>
106
107         * class.c, image.c, class-internals.h (MonoImage): class_cache is
108         a MonoInternalHashTable now.
109
110 2007-06-04  Mark Probst  <mark.probst@gmail.com>
111
112         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
113         MonoInternalHashTable now.
114
115 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
116
117         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
118         invoke_impl code.
119
120         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
121
122         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
123         dependent trampoline.
124
125         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
126
127         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
128
129 2007-05-29  Robert Jordan  <robertj@gmx.net>
130
131         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
132
133 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
134
135         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
136
137 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
138
139        * marshal.c: Fix interface lookup loops for
140        cominterop_get_com_slot_for_method and 
141        cominterop_get_method_interface. Only need to lookup
142        if type is a class, else use interface type method is on.
143
144        Code is contributed under MIT/X11 license.
145
146 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
147
148         * reflection.c: HasSecurity can be present even if no specially 
149         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
150         SecurityAttribute). Fix CAS regression tests on buildbot.
151
152 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
153
154        * appdomain.c: Add configure checks for header files.
155        * image.c: Add configure checks for header files.
156        * file-io.c: Add configure checks for header files.
157        * debug-mono-symfile.c: Add configure checks for header files.
158        * threadpool.c: Add configure checks for header files.
159        * console-io.c: Add configure checks for header files.
160        * profiler.c: Add configure checks for header files.
161        * rawbuffer.c: Add configure checks for header files.
162        * icall.c: Add configure checks for header files.
163        * rand.c: Add configure checks for header files.
164        * socket-io.c: Add configure checks for header files.
165
166        Code is contributed under MIT/X11 license.
167
168 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
169
170         * reflection.c (mono_custom_attrs_from_builders): Remove the 
171         assertion as it breaks the build.
172         
173         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
174
175         * reflection.c (lookup_custom_attr): Make a copy here too.
176
177         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
178         dynamic images.
179
180         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
181         images.
182
183         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
184         info.
185
186 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
187
188         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
189         (load_cattr_value): Ditto.
190
191 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
192
193         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
194
195 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
196
197         * threads.c: In "start_wrapper", set apartment_state to MTA if
198         apartment_state is Unknown and we're running on 2.0 profile or
199         higher.
200         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
201         to main method, then set apartment_state to Unknown on 1.0 profile,
202         and MTA on 2.0 profile.
203
204 2007-05-16  Jb Evain  <jb@nurv.fr>
205
206         * class-internals.h (MonoDefaults): Add an attribute_class and
207           customattribute_data_class.
208         * domain.c (mono_init_internal): Populate them.
209         * reflection.c: Use them to remove duplicates. Make a vew
210         MonoClass variables `static'.
211
212 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
213
214         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
215         step in implementing IMT, so that all isinst checks now can go
216         through the bitmap.
217         This was needed because vtables for TransparentProxy need to look
218         like the vtable of the "target" class, so they need to point to
219         its interface bitmap directly.
220
221         * object.c: inside "mono_class_create_runtime_vtable" and
222         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
223
224 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
225
226         * object-internals.h
227           culture-info.h : added territory field in MonoCulture and
228           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
229         * locales.c : fill territory field above too.
230         * culture-info-table.h : regenerated.
231
232 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
233
234         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
235         Fixes #81599.
236
237 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
238
239         * object.c: Always initialize apartment, even if 
240         there is no custom attributes on entry point.
241         
242         Code is contributed under MIT/X11 license.
243
244 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
245
246         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
247         * metadata.c: If no encoding is set, check for unicode
248         on class.
249         
250         Code is contributed under MIT/X11 license.
251
252 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
253
254         * threads.c: Handle if mono_thread_current returns NULL 
255         
256         Code is contributed under MIT/X11 license.
257
258 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
259
260         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
261         in start_wrapper. Added mono_thread_init_apartment_state and
262         mono_thread_cleanup_apartment_state.
263         * object.c: Initialize thread apartment state on main thread
264         by checking for STAThreadAttribute on entry point.
265         * object-internals.h: Add apartment_state field to MonoThread.
266         * threads-types.h: Add unmanaged definition of 
267         System.Threading.ApartmentState, MonoThreadApartmentState.
268         
269         Code is contributed under MIT/X11 license.
270         
271 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
272
273         * class.c: Fix windows build.
274         * class-internals.h: Fix windows build.
275         
276         Code is contributed under MIT/X11 license.
277
278 2007-05-08  Robert Jordan  <robertj@gmx.net>
279
280         * process.c (CreateProcess_internal):
281         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
282         .CreateNoWindow was specified. Fixes #81496.
283
284 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
285
286         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
287         step in implementing IMT, replaced it with two compact arrays
288         (interfaces_packed and interface_offsets_packed) and a bitmap that
289         is used for isinst checks (interface_bitmap).
290
291         * class.c: (compare_interface_ids): compare function to pass to
292         bsearch when looking for an interface with a given id.
293         (mono_class_interface_offset): reimplemented using bsearch on
294         interfaces_packed, getting the offset from interface_offsets_packed.
295         (print_implemented_interfaces): utility debugging function.
296         (setup_interface_offsets): reworked to initialize interfaces_packed,
297         interface_offsets_packed and interface_bitmap.
298
299         * object.c: replaced all accesses to "MonoClass.interface_offsets"
300         with uses of interfaces_packed and interface_offsets_packed.
301
302 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
303
304         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
305         mono_class_interface_offset prototype to wrap all accesses to
306         "MonoClass.interface_offsets".
307
308         * class.c: Implemented mono_class_interface_offset, and wrapped all
309         accesses to "MonoClass.interface_offsets".
310
311         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
312         "MonoClass.interface_offsets".
313
314 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
315
316         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
317         GetMethodFromHandle overloads (bug #78637).
318
319 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
320
321         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
322         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
323
324 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
325
326         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
327         #81498.
328
329         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
330         gracefully.
331         (mono_custom_attrs_from_index): Ditto.
332
333         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
334         Fixes #81501.
335
336 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
337
338         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
339         is now allocated from a mempool.
340
341 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
342
343         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
344         caller holds threads_lock, leading to deadlocks. Fixes #81476.
345
346 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
347
348         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
349         mono_loader_clear_error () too late. Fixes #81463.
350
351 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
352
353         * culture-info-table.h : regenerated.
354
355 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
356
357         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
358         is missing.
359
360 2007-04-25  Dick Porter  <dick@ximian.com>
361
362         * Makefile.am: Put the mingw enforced-optimisation back into the
363         PLATFORM_WIN32 section.
364
365 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
366
367         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
368         patch.
369
370         * image.c (mono_image_load_module): New API function to load a module reference.
371
372         * image.c (load_modules): Load modules lazily. Fixes #80812.
373
374         * class.c (mono_class_from_typeref): Use mono_image_load_module.
375         
376         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
377
378         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
379         to mono_image_load_module_dynamic.
380
381 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
382
383         * marshal.c: Fix calling convention for CCW on non-windows
384         platforms. STDCALL on windows, CDECL everywhere else to work 
385         with XPCOM and MainWin COM.
386         
387         Code is contributed under MIT/X11 license.
388
389 2007-04-23  Martin Baulig  <martin@ximian.com>
390
391         Fix #80969.
392
393         * loader.c
394         (method_from_memberref): Added `gboolean *used_context' argument.
395         (mono_get_method_from_token): Likewise.
396         (mono_get_method_full): Don't insert the method in the cache when
397         `used_context' is true.
398
399 2007-04-23  Raja R Harinath  <rharinath@novell.com>
400
401         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
402
403         * reflection.c (mono_reflection_bind_generic_parameters): Don't
404         create new MonoTypes for returned types.
405         * class.c (mono_generic_class_get_class): Export mono-internal.
406         * class-internals.h: Update to changes.
407
408 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
409
410         * threadpool.c, threadpool.h, icall-def.h: patch from
411         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
412
413 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
414
415         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
416         
417         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
418
419         * threads.c (mono_thread_get_stack_bounds): New helper function.
420
421         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
422         Correctly compute stack bounds when attaching. Fixes #81394.
423
424 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
425
426         * reflection.c: fix handling of doubles in custom attributes
427         for the arm-fpa format (bug #81368).
428
429 2007-04-18  Raja R Harinath  <rharinath@novell.com>
430
431         * reflection.c (assembly_add_win32_resources): Mildly relax an
432         bounds check to let the end pointer point just past the end of the
433         allocated buffer.  (may fix #81384)
434
435 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
436
437         * culture-info-table.h : regenerated.
438
439 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
440
441         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
442         the thread is aborted early.
443
444 2007-04-05  Dick Porter  <dick@ximian.com>
445
446         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
447         FindFirstFile()/FindNextFile() to find entries.  This lets the
448         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
449         81038.
450
451         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
452         the parameters of
453         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
454
455 2007-04-04  Martin Baulig  <martin@ximian.com>
456
457         * debug-helpers.c
458         (mono_method_desc_full_match): Add support for nested classes.
459
460 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
461
462         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
463
464 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
465
466         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
467         waiting for too many threads.
468
469 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
470
471         * environment.c: Fix return value check on uname so we can get the 
472         executing version on Solaris operating systems.
473
474 2007-03-28  Jb Evain  <jbevain@gmail.com>
475
476         * class.c (mono_type_get_name_recurse): Complete the
477         fix for the creation of assembly qualified names for
478         pointer types. Fixes #81208.
479
480 2007-03-27  Dick Porter  <dick@ximian.com>
481
482         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
483         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
484         changed.
485
486         * threads.c
487         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
488         the value of ReleaseMutex().
489
490 2007-03-27  Dick Porter  <dick@ximian.com>
491
492         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
493         in little-endian order, not network endian, so must be converted
494         to host endian here.  Fixes bug 80593.
495
496 2007-03-22  Jb Evain  <jbevain@gmail.com>
497
498         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
499         qualified names for pointer types. Fixes #81208.
500
501 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
502
503         * marshal.c: Add support for PreserveSigAttribute. 
504         
505         Code is contributed under MIT/X11 license.
506
507 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
508
509         * process.c: Fix endianness issues. Fixes #81126.
510
511         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
512         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
513
514         * image.c (mono_image_lookup_resource): Make this work on big-endian
515         machines.Change API contract so the caller needs to free the return value.
516         
517         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
518         API change.
519         
520 2007-03-14  Martin Baulig  <martin@ximian.com>
521
522         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
523         mono_type_get_desc() as well.
524
525 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
526
527         * icall.c:  Fix environ access in VS.  
528         
529 2007-03-13  Alp Toker  <alp@atoker.com>
530
531         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
532         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
533         #63841.
534
535 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
536
537         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
538         circular references among dynamic methods. Fixes #81091.
539
540         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
541
542 2007-03-09  Martin Baulig  <martin@ximian.com>
543
544         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
545
546 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
547
548         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
549         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
550         
551         Code is contributed under MIT/X11 license.
552         
553 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
554
555         * loader.c: Reapply patch for bug #79424.
556
557 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
558
559         * metadata.c (mono_type_to_unmanaged): Only convert object to
560         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
561
562 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
563
564         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
565         (and incorrectly set) is_reference field from MonoGenericInst.
566
567 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
568
569         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
570         a little earlier.
571
572         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
573
574         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
575
576 2007-03-05  Miguel de Icaza  <miguel@novell.com>
577
578         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
579         FileOptions.1 value to mean "temporary", map that to
580         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
581
582         Fixes 80688
583
584 2007-03-03  Marek Habersack  <mhabersack@novell.com>
585
586         * appdomain.c: implement MS .Net style shadow copying. Copies of
587         the assemblies are made in a subdirectory of the dynamic base
588         directory, the assembly names are preserved.
589         Copy .mdb and .config files along with the assemblies being shadowed.
590
591 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
592
593         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
594         (emit_marshal_handleref): Ditto.
595
596         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
597         on Visual C++. Fixes #80671.
598
599 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
600
601         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
602         for clone operations.
603
604 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
605
606         * marshal.c: Fix warnings.
607
608 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
609
610         * loader.c: allow case-insensitive matching of the dll name
611         in dllmap handling when prefixed with "i:".
612
613 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
614
615         * threads.c: Fix #ifdef for dummy_apc function for VS.
616
617 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
618
619         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
620
621 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
622         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
623         giving precedence to the methods with a fully qualified name
624         (InterfaceName.MethodName) when building the interface sections
625         of the vtable.
626
627 2007-02-16  Dick Porter  <dick@ximian.com>
628
629         * threadpool.c (append_job): Fix fast-path array handling, so it's
630         less likely the array will grow exponentially when the load is
631         heavy.
632
633 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
634
635         * metadata-internals.h, loader.c: fix dllmap lookup order
636         for non-function maps, too, and prepare for fallback code.
637
638 2007-02-12  Robert Jordan  <robertj@gmx.net>
639
640         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
641         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
642         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
643         GlobalFree. Fixes a part of bug #77075.
644
645 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
646
647         * loader.c: implemented typedef parent in field memberref.
648
649 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
650
651         * marshal.c: Fix warnings and remember to call Release on
652         IUnknown of RCW.
653         
654         Code is contributed under MIT/X11 license.
655
656 2007-02-10  Miguel de Icaza  <miguel@novell.com>
657
658         * class-internals.h: Add MonoHandleRef definition, and
659         handleref_class to mono_defaults. 
660
661         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
662         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
663
664         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
665         (do nothing on this stage)
666         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
667         (emit_marshal_handleref): New method, used for argument handling
668         of HandleRefs. 
669
670 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
671
672         * class.c (mono_class_setup_parent): Lazily init com types.
673         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
674         init com types.
675         * object.c (mono_remote_class_vtable): Lazily init com types.
676         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
677         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
678         * domain-internals.h: Expose mono_init_com_types.
679         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
680         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
681         Add support for COM Callable Wrapper marshalling.
682         * marshal.h: Add icall definitions.
683         * gc.c: Handle freeing of CCWs in finalizer code.
684         
685         Code is contributed under MIT/X11 license.
686
687 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
688
689         * reflection.c: changed all the signature encoding code to use
690         a variable-sized buffer.
691
692 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
693
694         * marshal.c: locking fixes: never take the loader lock
695         or other runtime locks when holding the marshal lock
696         (fixes bug#80664).
697
698 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
699
700         * marshal.c: make the delegate function pointer mapping
701         work for the moving GC.
702
703 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
704
705         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
706         for bug #80618.
707
708 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
709
710         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
711         gmodule.
712
713 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
714
715         * threadpool.c: made the code moving-GC safe.
716
717 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
718
719         * assembly.c, boehm-gc.c, class-internals.h, class.c,
720         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
721         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
722         warning cleanup.
723         * reflection.c: warning cleanup, some threading and moving GC fixes.
724
725 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
726
727         * class.c, loader.c: create the needed Set/Get/Address array methods
728         as well as the .ctors in mono_class_init (), fixes bug #80567.
729
730 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
731
732         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
733         we doesn't decrease its alignment. Should fix the sparc build.
734
735 2007-01-24  Dick Porter  <dick@ximian.com>
736
737         * socket-io.c
738         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
739         Create the returned object if we need to ignore an unsupported
740         socket option.  Fixes a segfault reported by Atsushi.
741
742 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
743
744         * class.c, object.c: restrict GC-tracked fields to
745         UIntPtr fields used inside corlib, so we provide better
746         type info to the GC and also allow broken packing as in
747         bug #80580.
748
749 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
750
751         * sgen-gc.c: removed duplicated function.
752
753 2007-01-19  Miguel de Icaza  <miguel@novell.com>
754
755         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
756         value that means that the value is not supported, but that we
757         should not return a failure, but instead report this as a
758         successful operation.
759
760 2007-01-19  Raja R Harinath  <rharinath@novell.com>
761
762         Fix tests/bug79956.2.il
763         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
764         (mono_generic_class_get_class): If the generic definition in an
765         enum, copy over other fields related to it.
766
767 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
768
769         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
770         genericinst enums (bug #79215).
771
772 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
773         * class.c: Fix bug 80307.
774
775 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
776
777         * image.c: if the file table is not present, try to load
778         all the modules, since we don't have info about them
779         having or not metadata (bug #80517).
780         * assembly.c: allow mono_assembly_load_references () to
781         work for netmodules.
782
783 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
784
785         * image.c, metadata-internals.h, object.c: execute module
786         cctors when running on the 2 runtime if present (bug #80487).
787
788 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
789
790         * icall.c: optimized InitializeArray() on bigendian.
791
792 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
793
794         * icall.c: fix for the broken ARM FPA double format.
795
796 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
797
798         * icall.c: handle endian issues for r4 and r8 types, too, in
799         the InitializeArray() icall.
800
801 2007-01-15  Miguel de Icaza  <miguel@novell.com>
802
803         * loader.c (mono_loader_error_prepare_exception): Clear the error
804         once we have extracted the information from it, do this before we
805         call into the JIT's class loading mechanisms.
806
807         * object.c (mono_class_create_runtime_vtable): Do not clear the
808         loader error before calling mono_class_get_exception_for_failure
809         as the loader error is needed inside
810         mono_class_get_exception_for_failure to throw the error (thinko).
811
812         Fixes #80521
813         
814 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
815
816         * reflection.c: align fields rva data so it's faster to load at
817         runtime.
818
819 2007-01-12  Raja R Harinath  <rharinath@novell.com>
820
821         Prepare to simplify GenericMethod handling.
822         * class-internals.h (mono_method_get_context): New accessor function.
823         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
824         rather than directly accessing '->context' field.
825
826         * class-internals.h (_MonoGenericParam.method): Move ...
827         (_MonoGenericContainer): ... here.  Add into union with klass field.
828         * class.c, icall.c, loader.c, metadata.c, reflection.c:
829         Update to changes.
830
831 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
832
833         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
834         the wrapper type enum and reduce relocations.
835
836 2007-01-12  Raja R Harinath  <rharinath@novell.com>
837
838         * reflection.c (inflate_mono_method): Reuse method instantiation
839         from the generic method, if available.
840
841 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
842
843         * marshal.c (emit_marshal_variant): Fix conv_arg
844         type in last commit, based on whether parameter is byref.
845         
846 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
847
848         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
849         marshalling.
850         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
851         MONO_TYPE_OBJECT back for VARIANT support.
852
853 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
854
855         * marshal.c, marshal.h, icall-def.h: Implement 
856         Marshal.ReAllocCoTaskMem.
857
858 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
859
860         * marshal.c: memory retention fixes: use the proper
861         image cache for runtime_invoke method lookups.
862
863 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
864
865         * mempool.c: added code to help debug mempool allocations.
866
867 2007-01-11  Dick Porter  <dick@ximian.com>
868
869         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
870         support (experimenting with faking it with IP_MTU_DISCOVER for
871         systems that don't have IP_DONTFRAGMENT.)
872         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
873         icall.
874
875         * icall-def.h: new System.Net.Sockets.Disconnect icall.
876
877         * socket-io.h: Add new fields to MonoSocketAsyncResult
878         corresponding to the new ones in Socket.cs.
879
880 2007-01-11  Raja R Harinath  <rharinath@novell.com>
881
882         Fix IronPython regression mentioned in #80249
883         * metadata.c (do_mono_metadata_parse_generic_class): Clear
884         'cached_context' field, since it may have been initialized as a
885         side-effect of metadata parsing.
886
887         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
888         (_MonoGenericClass.cached_class): Move here and rename from lone
889         remaining field of ...
890         (_MonoInflatedGenericClass): ... this.  Remove.
891         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
892         to changes.
893
894         Fix mcs/tests/test-128.cs regression.
895         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
896         2007-01-10 change below.
897         [MONO_TYPE_OBJECT]: Recurse into array case.
898
899 2007-01-11  Raja R Harinath  <harinath@gmail.com>
900
901         * class-internals.h (mono_get_inflated_generic_class): Remove.
902         * class.c (mono_get_inflated_generic_class): Remove.
903         (mono_generic_class_get_class): Rename from
904         mono_class_create_generic.
905         (mono_class_from_mono_type) [GENERICINST]: Use it.
906         * reflection.c, metadata.c: Update to changes.  Use
907         'mono_class_from_mono_type'.
908
909 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
910
911         * reflection.c: use passed type when encoding an array element
912         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
913
914 2007-01-09  Robert Jordan  <robertj@gmx.net>
915
916         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
917         result arguments (someDelegate.EndInvoke (unrelatedAres)).
918         Fixes bug #80392.
919
920 2007-01-09  Raja R Harinath  <rharinath@novell.com>
921
922         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
923
924         * object.c (set_value): Avoid aliasing between type->data.klass
925         and type->data.generic_class.
926
927         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
928
929 2007-01-08  Raja R Harinath  <rharinath@novell.com>
930
931         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
932         between type->data.klass and type->data.generic_class.
933
934 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
935
936         * marshal.c: In MS.NET, StringBuilder objects are not copied by
937         value in out parameters.
938
939 2007-01-08  Raja R Harinath  <rharinath@novell.com>
940
941         Simplify invariant for MonoGenericClass::klass field.
942         * class.c (mono_class_create_generic): Verify 'klass' is null.
943         * metadata.c (do_mono_metadata_parse_generic_class): Don't
944         initialize 'klass' field.
945
946 2007-01-05  Raja R Harinath  <rharinath@novell.com>
947
948         Ongoing work to avoid redundant data and simplify invariants.
949         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
950         'generic_class', and change type to a GenericInst.
951         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
952         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
953
954 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
955
956         * class.c : skip io-layer under PLATFORM_WIN32.
957
958 2007-01-03  Tor Lillqvist  <tml@novell.com>
959
960         Fix #80305: In a bundled executable, look in the bundled exe
961         assembly to determine the runtime version. Add the possibility to
962         bundle also the machine.config file.
963         
964         * assembly.c (mono_assembly_open_from_bundle): Make
965         non-static. Allow being called even if we have no bundled
966         assemblies, and return NULL right away in that case.
967
968         * domain-internals.h: Declare mono_assembly_open_from_bundle()
969         here.
970
971         * domain.c (app_config_parse): Take an assembly exe file name as
972         parameter instead of a config file name. Check for a bundled
973         config file for that assembly by calling
974         mono_config_string_for_assembly_file() (see below) before looking
975         for one in the file system.
976         (get_runtimes_from_exe): Corrsponding change to call of
977         app_config_parse().
978         (get_runtimes_from_exe): Check for bundled assembly exe file first
979         by calling mono_assembly_open_from_bundle(). If no bundled
980         assembly exe file is found, call mono_image_open() as before to
981         look it up in the file system.
982
983         * mono-config.c: Add variable bundled_machinec_onfig.
984         (mono_config_string_for_assembly_file): New function.
985         (mono_config_for_assembly): Move code snippet that looks for a
986         bundled assembly .config file into the above new function. Call
987         it.
988         (mono_register_machine_config, mono_get_machine_config): New
989         functions to set and retrieve
990
991         * assembly.h: Declare mono_register_machine_config().
992
993         * mono-config.h: Declare mono_get_machine_config() and
994         mono_config_string_for_assembly_file().
995
996         * icall.c: No declaration of environ necessary on Win32. It is
997         declared (as a macro expanding to a function call) in stdlib.h.
998         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
999         New internal mono function. Returns the value of
1000         mono_get_machine_config() as a Mono string.
1001
1002         * icall-def.h: Add get_bundled_machine_config().
1003
1004 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1005
1006         Remove redundant field
1007         * class-internals.h (_MonoGenericContext.container): Remove field.
1008         * loader.c (mono_method_get_signature_full): Don't parse a
1009         "container" for a signature parse when the signature is inflated
1010         immediately.
1011         (method_from_methodspec): Likewise, for a generic_inst.
1012         * class.c, metadata.c, reflection.c: Update to changes.
1013
1014 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1015
1016         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1017         'cached_context', and change semantics -- it starts off NULL, and
1018         is initialized on demand.
1019         * class.c (mono_generic_class_get_context): New accessor to
1020         replace 'context' field accesses.
1021         (mono_class_get_context): New helper.
1022         (*): Update to changes.
1023         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1024
1025 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1026
1027         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1028         before the memcpy.   Fixes Marshal2 regression.
1029
1030 2007-01-02  Jb Evain  <jbevain@gmail.com>
1031
1032         * blob.h: add a MONO_TYPE_ENUM definition
1033         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1034         fix the encoding of arrays of enums in custom attributes.
1035
1036         Fixes #79666.
1037
1038 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1039
1040         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1041         string is null terminated, but only cut the string short if it
1042         overflows the buffer.   
1043         
1044         (mono_string_to_byvalstr): Also fix this routine.   The code here
1045         was not properly terminating a string (it was only terminated
1046         because of the previous catch-all memset). 
1047
1048         I left the memset, because I do not know if applications expect
1049         the runtime to clear this region. 
1050
1051         Fixes #79944.
1052
1053         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1054         Clear the error before returning to unmanaged code to prevent the
1055         runtime from being confused later on (fixes  80420).
1056         (ves_icall_type_from_name): Always call mono_loader_clear_error
1057         after parsing a type that could have failed.
1058         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1059
1060         * loader.c (mono_loader_clear_error): Fix indentation.
1061
1062 2006-12-28  Martin Baulig  <martin@ximian.com>
1063
1064         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1065
1066 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1067
1068         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1069         getting a token for an EnumBuilder.
1070
1071 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1072
1073         * reflection.c: be more careful in case resource generation
1074         fails to create the data array.
1075
1076 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1077
1078         * sgen-gc.c: write barrier for clone and fix unregister handles.
1079
1080 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1081
1082         * reflection.c: some fixes needed in the generics code for the moving GC.
1083
1084 2006-12-22  Robert Jordan  <robertj@gmx.net>
1085
1086         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1087         account. Fixes bug #80299.
1088
1089 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1090
1091         Fix WaitHandle usage in delegates.
1092         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1093         * object.c (mono_wait_handle_new): Use the property set method to
1094         initialize the handle.
1095         (mono_wait_handle_get_handle): New.
1096         * threadpool.c (mono_async_invoke): Use it.
1097         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1098         Likewise.
1099         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1100
1101 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1102
1103         * marshal.c (emit_marshal): Call emit_marshal_variant and
1104         emit_marshal_com_interface when applicable.
1105         (emit_marshal_variant, emit_marshal_com_interface): Add
1106         methods for this case and remove if's from emit_marshal_object.
1107         
1108 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1109
1110         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1111
1112 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1113
1114         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1115         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1116         and GlobalFree on Windows. Remove FIXME.
1117
1118 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1119
1120         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1121         implementation for managed objects.
1122
1123 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1124
1125         * object.c: implemented code to be used for checking
1126         that no reference field overlaps with non-references.
1127
1128 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1129
1130         * threadpool.c: fix queue code to be compatible with the
1131         moving GC.
1132
1133 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1134
1135         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1136         in structures by throwing ArgumentNullException.
1137
1138         (emit_marshal_safehandle): Also when they are null parameters.
1139
1140         (emit_marshal_safehandle): Add support for ref
1141         SafeHandles parameters
1142
1143 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1144
1145         * profiler.c: updated to use the mono-dl API instead of
1146         gmodule.
1147
1148 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1149
1150         * profiler.c: updated to use the mono-dl dynamic loading
1151         API instead of gmodule.
1152
1153 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1154
1155         * profiler.c: use readlink, older versions of glib don't have
1156         g_file_read_link ().
1157
1158 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1159
1160         * profiler.c: try to detect the path to mono if libc fails to provide
1161         a useful name (bug #80286).
1162
1163 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1164
1165         Fix #80242
1166         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1167         instance, use the generic type definition instead.
1168         (ves_icall_Type_GetNestedTypes): Likewise.
1169         * class.c (mono_class_create_generic): Always set the
1170         nested_classes of a generic instance to NULL, even if the generic
1171         type definition has nested types.
1172
1173 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1174
1175         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1176         and fix on Linux.
1177         
1178 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1179
1180         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1181         my arguments were in the wrong order.   I also fixed the Windows
1182         version which seems to have had the same issue.
1183
1184         (mono_free_bstr): On Unix, this is g_free.
1185         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1186         conversions (for the tests in corlib to pass).
1187
1188 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1189
1190         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1191         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1192         exception if a ref SafeHandle in a struct has changed).
1193         
1194         (emit_struct_conv): Do not perform layout checks for classes
1195         derived from SafeHandle, as those are specially handled. 
1196
1197         (emit_object_to_ptr_conv): Add support for
1198         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1199
1200         (emit_marshal_safehandle): Implement conversion of return values
1201         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1202         
1203         * threads.c: WaitHandle now is compiled with two different handles
1204         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1205         for 2.0.
1206         
1207         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1208         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1209         these routines to cope with both kinds of fields.
1210
1211 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1212
1213         * metadata.c (mono_type_to_unmanaged): Handle the case where
1214         type->data.klass is a SafeHandle, and in that case, return the
1215         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1216         MONO_MARSHAL_CONV_SAFEHANDLE. 
1217
1218 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1219
1220         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1221         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1222         calling emit_marshal_object.
1223
1224         (emit_marshal_safehandle): Implement marshalling of
1225         SafeHandle parameters (no ref support yet).
1226
1227         (MarshalAction): Document the defines as I implement
1228         them for SafeHandle.
1229
1230         (emit_marshal_object): indentation police.
1231
1232         * class-internals.h: Define MonoSafeHandle.
1233         Add safehandle_class to MonoDefaults type.
1234
1235         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1236         list of classes to check for fields. 
1237
1238         * domain.c (mono_init_internal): Add SafeHandle to the list of
1239         mono_defaults loaded.
1240
1241 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1242
1243         Fix #80253
1244         * reflection.c (mono_reflection_bind_generic_parameters): If the
1245         generic type definition is a type builder, ensure that it is fully
1246         initialized before instantiating it.  Kill some dead code.
1247
1248 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1249
1250         * object.c: clear the loader_error () before loading
1251         more metadata stuff (bug #80258).
1252
1253 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1254
1255         * icall.c, icall-defs.h: type modifiers icalls for
1256         parameters and properties.
1257
1258 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1259
1260         * object.c, icall.c: fixed warnings.
1261
1262 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1263
1264         * marshal.c: fixed a couple of leaks and coding style in a few places.
1265
1266 2006-12-08  Dick Porter  <dick@ximian.com>
1267
1268         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1269         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1270         80173.
1271
1272 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1273
1274         * process.c: ProcessStartInfo may have only filename set and
1275         arguments can be NULL.
1276
1277 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1278
1279         * icall.c: fix leak found by Robert Jordan.
1280
1281 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1282
1283         * marshal.c, marshal.h: generate managed method to access an element
1284         of a multi-dimensional array.
1285
1286 2006-11-30  Paolo Molaro (lupus@ximian.com)
1287
1288         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1289
1290 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1291
1292         * icall.c: back out GetFields () fix until the serialization code is
1293         fixed to not depend on the incorrect behaviour.
1294
1295 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1296
1297         * profiler.c: provide defaults if none are set.
1298
1299 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1300
1301         * Makefile.am, attrdefs.h: new public header file with
1302         constants for attributes for use by embedders.
1303
1304 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1305
1306         * icall.c: GetFields () fix for bug #80064.
1307
1308 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1309
1310         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1311         removed long unused icalls.
1312
1313 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1314   
1315         * marshal.c: 
1316                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1317                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1318                 can be generated without a delegate class.
1319                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1320         
1321         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1322
1323 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1324
1325         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1326         #80069.
1327
1328 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1329
1330         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1331         icall-def.h: added icalls needed by System.GC.
1332
1333 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1334
1335         * loader.c: ensure the class in catch clauses is handled
1336         correctly for generics methods (fixes bug#79980).
1337
1338 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1339
1340         * monitor.h, monitor.c: added mono_locks_dump () function
1341         to help debug deadlocks involving managed locks.
1342
1343 2006-11-13  Dick Porter  <dick@ximian.com>
1344
1345         * file-io.c (get_file_attributes): If the file is a symlink try
1346         and get the stat data for the target, but also add the
1347         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1348         the specs for the windows symlink support, but will probably have
1349         to be reworked when I have test data from a vista machine.  Fixes
1350         bug 79887.
1351
1352 2006-11-13  Dick Porter  <dick@ximian.com>
1353
1354         * gc.c (mono_domain_finalize): 
1355         * marshal.c (mono_delegate_begin_invoke): 
1356         * threadpool.c (socket_io_init, mono_thread_pool_init)
1357         (mono_thread_pool_finish): 
1358         * monitor.c (mono_monitor_try_enter_internal): 
1359         * threads.c (mono_thread_resume, mono_thread_init)
1360         (mono_thread_suspend_all_other_threads)
1361         (mono_thread_execute_interruption): 
1362         * appdomain.c (mono_domain_unload): Check for NULL error returns
1363         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1364         75733.
1365
1366 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1367
1368         * process.c
1369         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1370         Only close the handle if the value of the handle is not
1371         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1372         robust.
1373
1374         Improvement for #75733, so that we do not run into this problem. 
1375
1376         
1377         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1378         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1379         internal variables.  Fixes #79462 
1380         
1381
1382 2006-11-09  Dick Porter  <dick@ximian.com>
1383
1384         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1385         Use poll() not select().  Fixes bug 79397.
1386
1387 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1388
1389         Fix #79872
1390         * assembly.c (mono_assembly_load_from_full): Check that the given
1391         image has an assembly manifest.
1392
1393 2006-11-09  Ankit Jain  <jankit@novell.com>
1394
1395         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1396         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1397         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1398
1399 2006-11-07  Dick Porter  <dick@ximian.com>
1400
1401         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1402         Put the old resolver behaviour back for pre-2.0 profiles.
1403
1404 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1405
1406         * threadpool.c: precise GC and locking fixes.
1407
1408 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
1409
1410         * class.c: don't load types that have an explicit unaligned
1411         managed reference. Provide better info in the TypeLoad exception.
1412         Part of the fix for bug #79744.
1413         * object.c: use the correct check for class type load issues.
1414
1415 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1416
1417         * class.c: enforce alignment of fields with managed references
1418         even when Pack=1 is forced by the user (bug #77788).
1419
1420 2006-11-03  Dick Porter  <dick@ximian.com>
1421
1422         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1423         If the address reverse lookup fails, return it as the hostname
1424         anyway.  Fixes bug 79721.
1425
1426 2006-11-03  Dick Porter  <dick@ximian.com>
1427
1428         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
1429         Fix build on Windows.
1430
1431 2006-11-02  Dick Porter  <dick@ximian.com>
1432
1433         * icall-def.h: 
1434         * object-internals.h: 
1435         * exception.c (mono_get_exception_thread_interrupted): 
1436         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
1437         Fixes bug 74525.
1438
1439         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
1440         Check for pending Thread.Interrupt.
1441
1442 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
1443         * loader.c: Fixed bug 79684.
1444
1445 2006-10-27  Dick Porter  <dick@ximian.com>
1446
1447         * file-io.c (get_file_attributes): Force symlinks to directories
1448         to be returned as a regular file.  Fixes bug 79733.
1449 2006-10-26  Dick Porter  <dick@ximian.com>
1450
1451         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
1452         CreateFile to open a directory then we need to set the
1453         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
1454
1455 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
1456
1457         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
1458         friends.
1459
1460 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1461
1462         * sgengc.c: small cleanup of timer code.
1463
1464 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1465
1466         * sgen-gc.c: fix some warnings and start adding support for
1467         complete object removal on domain unload.
1468
1469 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
1470
1471         * assembly.c: build_assembly_name should not consider a version
1472         number without build or revision number invalid. Fixes bug #79715.
1473
1474 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
1475
1476         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
1477         call kernel32 function OutputDebugString directly.
1478         
1479         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1480         
1481 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
1482
1483         * reflection.c: small cleanup, using a function to insert a MonoString
1484         in the string heap.
1485
1486 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
1487
1488         * reflection.c: moving GC fixes.
1489
1490 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
1491
1492         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
1493         all the objects with finalizers belonging to an unloading appdomain.
1494
1495 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
1496
1497         * sgen-gc.c: added ability to allocate even when the nursery is fully
1498         pinned and fixed a couple of bugs.
1499
1500 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1501
1502         * threads.h: Revert the last change for now.
1503
1504         * threads.h (mono_thread_get_pending_exception): Rename this to
1505         mono_thread_get_undeniable_exception ().
1506
1507 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1508
1509         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
1510         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
1511         when fname does not refer to valid assembly. This result in a more
1512         meaningful error message.
1513         * exception.c: added mono_get_exception_bad_image_format2 which 
1514         constructs a BadImageFormatException using the ctor taking a custom
1515         message and the file name. Passing in a NULL msg results in a default
1516         message.
1517         * exception.h: define mono_get_exception_bad_image_format2 function.
1518         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
1519         when file name pointed to an invalid IL image. Use 
1520         mono_get_exception_file_not_found2 to construct FileNotFoundException,
1521         as this results in a more meaningful error message.
1522
1523 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1524
1525         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
1526         #79465.
1527
1528 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
1529
1530         * metadata.c (mono_type_size): Change the align parameter to guint32 for
1531         consistency with the other _size functions.
1532         (mono_type_stack_size): Ditto.
1533
1534         * class.c object.c icall.c: Fix warnings caused by the above change.
1535
1536         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
1537
1538         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
1539
1540         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
1541
1542 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1543
1544         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1545         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1546         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1547         threadpool.h, threads-types.h: mark more internal functions.
1548
1549 2006-10-11  Dick Porter  <dick@ximian.com>
1550
1551         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1552         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1553         reproduce the bug even before applying the fix.)
1554
1555 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1556
1557         * reflection.c: allow retrieving attributes for arguments in generic
1558         methods (bug #79241).
1559
1560 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1561
1562         * debug-mono-symfile.c: properly check fopen () result (found by
1563         coverity).
1564
1565 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1566
1567         * reflection.c: make error message clearer and fixed two
1568         issuelets found by Coverity.
1569
1570 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1571
1572         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1573
1574 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1575
1576         * object-internals.h, gc-internal.h, profiler-private.h:
1577         mark internal functions.
1578
1579 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1580
1581         * reflection.c: put data in the text section.
1582         * icall.c: recognize more types in type_from_typename ().
1583         * process.c, marshal.c: added some GC FIXMEs.
1584
1585 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1586
1587         * loader.c: check for NULL before initializing.
1588
1589 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1590
1591         * gc.c (finalizer_thread): Use a non-alertable wait here.
1592
1593         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1594         until the correct solution is found.
1595
1596 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1597
1598         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1599         modules with no metadata. Fixes #79596.
1600
1601         * image.c (load_metadata_ptrs): Put back the error message when
1602         the #- heap is encountered since the support is not complete yet.
1603
1604 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1605
1606         * gc.c: do not allow the user to SuppressFinalize () a
1607         delegate because it would leak the trampoline if present.
1608
1609 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1610
1611         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1612         PropertyPtr table.
1613
1614 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1615
1616         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1617
1618         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1619
1620         * row-indexes.h: Add definitions for *Ptr tables.
1621
1622         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1623
1624         * metadata.c (mono_metadata_translate_token_index): New helper function to
1625         translate table indexes used in uncompressed metadata.
1626         (mono_metadata_decode_table_row): Ditto.
1627         (mono_metadata_decode_table_row_col): Ditto.
1628
1629         * metadata.c: Add table schema for *Ptr tables.
1630
1631         * class.c loader.c: Use the new helper function to access the affected metadata
1632         tables.
1633         
1634         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1635         #38532.
1636         
1637 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1638
1639         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1640         sequences which can be unbounded in size. Fixes #79583.
1641
1642 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1643
1644         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1645         static initialization.
1646
1647         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1648
1649         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1650
1651         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1652
1653         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1654         ctor fails, i.e. throw the same exception on subsequent accesses.
1655         
1656 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1657
1658         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1659         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1660         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1661         Handle marshalling of interfaces and VARIANTs contained in structs.
1662         
1663         Code is contributed under MIT/X11 license.
1664         
1665 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1668         
1669         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1670         mempool.
1671
1672 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1673
1674         * console-io.c: ignore previous SIGINT handler.
1675
1676 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1677
1678         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1679         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1680         #79460, #79461, #79485.
1681
1682         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1683
1684         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1685         #79217.
1686
1687 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1688
1689         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1690         could be generated from it.
1691
1692 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1693
1694         * rand.c: fix read loop to correctly handle EINTR.
1695
1696 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1697
1698         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1699         internal calls are defined to keep methods closer to the declaring
1700         type and allow a significant reduction in runtime relocations and
1701         memory usage.
1702
1703 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1704
1705         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1706         exception message to have FileNotFoundException use the default
1707         assembly load error message. Fixes bug #79426.
1708         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1709
1710 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1711
1712         * threadpool.c: (start_thread_or_queue) use the root domain when
1713         creating the thread instead of the async object one.
1714
1715 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1716
1717         * class.c, object.c, class-internals.h, reflection.c:
1718         for arrays, store element_size inside MonoClass (speedup
1719         for array object creation).
1720
1721 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1722
1723         * icall.c: fixed CodeBase to use the file name and not the module
1724         name (bug #79365).
1725
1726 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1727
1728         * mono-debug.c, mono-debug.h: export find_method as
1729         mono_debug_find_method ().
1730
1731 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1732
1733         * debug-helpers.c, class-internals.h: added a few functions useful
1734         when debugging under gdb.
1735
1736 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1737
1738         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1739         characters that need special handling.
1740
1741 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1742
1743         * mono-config.c: make the os/cpu specification more flexible,
1744         allowing lists and negation.
1745
1746 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1747
1748         * marshal.c: COM Interop fixes. Handle case where method->klass.
1749         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1750         calling convention on non-windows platforms. This is for
1751         compatibility with XPCOM and MainWin COM.
1752         
1753         Code is contributed under MIT/X11 license.
1754         
1755
1756 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1757
1758         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1759         correctly. Fixes #79217.
1760
1761         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1762
1763 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1764
1765         * mono-config.c: allow both an os and cpu attribute for dllmap
1766         and dllentry elemnets to enable a single config file to be used
1767         for multiple architectures.
1768
1769 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1770
1771         * loader.c: MonoLoaderError was cleared too soon on load failure.
1772         Fixes bug #79424.
1773
1774 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1775
1776         * icall.c: use the defining class vtable when accessing a
1777         static field, not a pobblibly derived class.
1778
1779 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1780
1781         * icall.c string-icalls.c: Remove references to unicode.h.
1782
1783         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1784
1785         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1786
1787         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1788         indicating the image where custom marshaller types should be looked up.
1789         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1790         custom marshallers, instead of corlib. Fixes #79425.
1791
1792 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1793
1794         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1795
1796 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1797
1798         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1799         Implement Environment.ProcessorCount.
1800         
1801         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1802         Implement Environment.ProcessorCount.
1803         
1804         * icall.c: 
1805         Add Environment.ProcessorCount icall.
1806         
1807         Patch by Jason McFall.
1808
1809 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1810
1811         * assembly.c: don't append .exe/.dll when the filename already contains
1812         one of those extensions.
1813
1814 2006-09-12  Martin Baulig  <martin@ximian.com>
1815
1816         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1817         to array interfaces.
1818
1819 2006-09-11  Martin Baulig  <martin@ximian.com>
1820
1821         * reflection.c (mono_image_build_metadata): Create the
1822         MethodImpl's after emitting all types and methods, so we don't
1823         need another fixup pass for them.
1824
1825 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1826
1827         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1828         change.
1829
1830 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1831
1832         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1833         unload.
1834
1835 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1836
1837         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1838         args is not set. Fixes #78926.
1839
1840 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1841
1842         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1843
1844         * image.c (load_class_names): Move this to class.c, and rename it to 
1845         'mono_image_init_name_cache'.
1846         (load_modules): Fix a warning.
1847
1848         * class.c icall.c image.c: Initialize image->name_cache lazily.
1849
1850         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1851         on its name using information in the AOT file.
1852
1853         * class.c (mono_class_from_name): Use the new hook function.
1854
1855 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1856
1857         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1858         correctly.
1859
1860         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1861         Fixes #79289.
1862         
1863 2006-09-06  Martin Baulig  <martin@ximian.com>
1864
1865         * icall.c (mono_lookup_internal_call): Small fix.
1866
1867 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1868
1869         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1870         double g_free.
1871
1872 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1873
1874         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1875         when --debug is specified.
1876
1877 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1878
1879         * class.c (setup_generic_array_ifaces): Fix a warning.
1880
1881 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1882
1883         * Temporarily remove the patch to assemly.c that checks the
1884         assembly versions as it breaks our gacutil.
1885
1886 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1887
1888         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1889
1890         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1891         a net 1.0 runtime.
1892
1893         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1894         created using the default ctor. Fixes #79152.
1895         (mono_string_builder_to_utf16): Ditto.
1896
1897 2006-09-01  Martin Baulig  <martin@ximian.com>
1898
1899         Fix handling of the generic array interfaces.
1900
1901         * class-internals.h
1902         (MonoDefaults): Removed `generic_array_class' and added
1903         `generic_ilist' class.
1904
1905         * class.c
1906         (mono_bounded_array_class_get): Add the new generic array interfaces.
1907         (setup_generic_array_ifaces): New static method; create vtable
1908         entries for each method in the generic array interfaces.
1909
1910         * metadata.c
1911         (select_container): Allow "parent-less" generic methods.
1912
1913         * marshal.c
1914         (mono_marshal_get_generic_array_helper): New public method.
1915
1916         * icall.c
1917         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1918         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1919         moved the interncall into System.Array.
1920
1921 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1922
1923         A few more cases of avoiding work on types with ->byref set.
1924         Has the real fix for #79238
1925         * icall.c (is_generic_parameter): New helper.
1926         (ves_icall_Type_GetGenericParameterPosition): Use it.
1927         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1928         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1929         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1930         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1931         reference types.
1932         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1933         reference types.
1934         (ves_icall_Type_get_IsGenericInstance): Likewise.
1935         (ves_icall_Type_get_IsGenericType): Likewise.
1936
1937 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1938
1939         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1940         class if possible.
1941
1942         * mempool.h (mono_mempool_get_allocated): New helper function.
1943
1944         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1945         change.
1946
1947         * mempool.c: Fix warnings and the calculation of stats.
1948
1949         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1950
1951         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1952
1953         * loader.c (mono_get_method_from_token): Update method_count stat.
1954
1955         * class-internals.h (MonoStats): Add some stats.
1956
1957 2006-08-31 Robert Jordan  <robertj@gmx.net>
1958
1959         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1960         with managed variants.
1961         All code is contributed under the MIT/X11 license.
1962         
1963 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1964
1965         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1966         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1967
1968         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1969
1970         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1971         with cycles in classes.
1972
1973         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1974
1975         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1976         missing a [MarshalAs] directive. Fixes #79203.
1977
1978         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1979         klass->marshal_info. Fixes #79217.
1980
1981 2006-08-30  Martin Baulig  <martin@ximian.com>
1982
1983         Committing a patch from Joachim Ante <joe@otee.dk>:
1984         Add support for binary data symbol stores.
1985
1986         * debug-mono-symfile.c
1987         (mono_debug_open_mono_symbol_file): Renamed into
1988         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1989         arguments.
1990
1991         * mono-debug.c
1992         (mono_debug_open_image): Added `raw_contents' and `size' args.
1993         (mono_debug_init_2_memory): New public function.
1994
1995 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1996
1997         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1998
1999 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2000
2001         * appdomain.c: implement support for ShadowCopyFiles.
2002
2003 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2004
2005         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2006         when value is NULL (and should remove CID #51).
2007
2008 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2009
2010         * image.c: moved 2 functions to ../utils.
2011
2012 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2013
2014         * gc.c: cope with the target object of a GC handle being NULL
2015         (bug #78877).
2016
2017 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2018
2019         * class.c: recursively check parent's explicit implementations
2020         of interface methods (fixes bug #79125).
2021
2022 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2023
2024         * filewatcher.c: Avoid warnings when building, do not redefine
2025         constants that are defined.
2026
2027         Remove warnings.
2028
2029 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2030
2031         * image.c: don't fail when the link points to an absolute path.
2032
2033 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2034
2035         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2036         Fix CID #3.
2037
2038 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2039
2040         * image.c (full_path): A new method used to obtain the actual path
2041         of an assembly even in the presence of symbolic links.  
2042
2043         This is necessary for the case where we are running a binary that
2044         has been GACed, but we are using the "published" path name
2045         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2046         file in the GAC.
2047
2048         This was the source of the failure for the `xsp' command with the
2049         recent AppDomain changes, as far as the runtime was concerned,
2050         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2051         $prefix/mono/gac/blah/version/blah.exe.
2052
2053         (do_mono_image_open): use full path
2054
2055 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2056
2057         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2058
2059 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2060
2061         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2062         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2063
2064 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2065
2066         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2067         small structures. Fixes #78990.
2068
2069 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2070
2071         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2072
2073         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2074
2075 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2076
2077         * appdomain.c:
2078         * marshal.c: don't load all the assemblies from a domain into newly
2079         created ones. The new domains might have different rules and load
2080         assemblies from different locations. Fixes bug #76757.
2081
2082         Patch by Lluis. Conflicts resolved by Brian Crowell.
2083
2084 2006-08-16  Alp Toker  <alp@atoker.com>
2085
2086         * socket-io.c: First half of the fix for #79084.
2087         Set sa_size to the length of the content, not that of the struct.
2088         Don't add NULL suffix to the content, this should be done in
2089         managed code if needed.
2090
2091 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2092
2093         Fix part of #79012
2094         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2095         mono_metadata_parse_type returns NULL.
2096
2097 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2098
2099         * normalization-tables.h : new file for string normalization data.
2100         * locales.c, locales.h, icall.c :
2101           added load_normalization_resource() for string normalization,
2102           and icall as well.
2103         * Makefile.am : added normalization-tables.h to the sources.
2104
2105 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * marshal.c: Add more helper functions to reduce code duplication and use them
2108         everywhere.
2109
2110 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2111
2112         * marshal.c: Fix non-x86 stdcall warnings.
2113         
2114         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2115         them everywhere.
2116
2117 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2118
2119         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2120         type check on multi-dimensional arrays. Fixes #79000.
2121
2122 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2123
2124         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2125         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2126         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2127         * class-internals.h: add is_com_object to class structure.
2128         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2129         null checks to COM object marshalling. Fix .ctor call on RCW.
2130         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2131         
2132         All code is contributed under the MIT/X11 license.
2133
2134 2006-08-09  Dick Porter  <dick@ximian.com>
2135
2136         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2137         racing mono_monitor_allocator_lock() somewhere, so don't delete
2138         the critical section for now.  Found by running and exiting
2139         monodevelop.
2140
2141 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2142
2143         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2144         (ves_icall_System_ComObject_FindInterface): Ditto.
2145         (ves_icall_System_ComObject_CacheInterface): Ditto.
2146
2147         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2148         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2149
2150 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2151
2152         * threadpool.c: treat pipes from process asynchronous reads as sockets
2153         when reading from them, so we get select/poll or epoll to wait for
2154         data.
2155
2156 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2157
2158         * loader.c: Fix a typo (CID #233) in the null check.
2159
2160 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2161
2162         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2163         Hopefully fixes #78949.
2164         
2165         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2166         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2167         bytes. Fixes #78972.
2168
2169 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2170
2171         * filewatcher.c: we need to set errno here.
2172
2173 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2174
2175         * filewatcher.c: let Win32Exception get the error value.
2176
2177 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2178
2179         * filewatcher.c: translate errno into win32 errors for Win32Exception
2180         to know what happened.
2181
2182 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2183
2184         * threadpool.c: Fix more warnings.
2185
2186         * assembly.c (search_loaded): Fix warnings.
2187
2188         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2189         (mono_async_invoke): Ditto.
2190
2191 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2192
2193         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2194         entries for __ComObject type in addition to ComImport types.
2195         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2196         about hash table.
2197         
2198         All code is contributed under the MIT/X11 license.
2199
2200 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2201
2202         * image.c: avoid tentative loading of modulerefs that contain
2203         no metadata (P/Invoke library names).
2204
2205 2006-07-28  Dick Porter  <dick@ximian.com>
2206
2207         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2208         mono_loader_lock() somewhere, so don't delete the critical section
2209         for now.  Found by running and exiting monodevelop.
2210
2211 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2212
2213         * filewatcher.c: define the inotify syscalls when we're building on
2214         linux and have sys/syscall.h. The build system might not have support
2215         for inotify but the target system might have it.
2216
2217 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2218
2219         * domain.c: Documentation updates.
2220
2221         * loader.c (mono_free_method): Do not release the method
2222         information if we are being profiled, as profilers will use this
2223         information at shut down to present some data to the user.
2224
2225         This is needed so that the profiler does not crash, as the
2226         profiler tends to keep MonoMethods around, and they might become
2227         invalid if we free these.
2228
2229         (mono_get_method_constrained): Return the original CIL stream
2230         method as well, so verification can be performed against it.
2231
2232 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2233
2234         * filewatcher.[ch]: support for inotify file system watcher.
2235         * icall.c: add new internal calls for the inotify file system watcher.
2236
2237 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2238
2239         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2240         #78888.
2241
2242 2006-07-20  Dick Porter  <dick@ximian.com>
2243
2244         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2245         warning.
2246
2247 2006-07-20  Dick Porter  <dick@ximian.com>
2248
2249         * threads.c (start_wrapper): Do the thread cleanup while we still
2250         hold a reference to its object.  Fixes bug 78123.
2251
2252 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2253
2254         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2255         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2256           "managed-to-managed".
2257         * icall.c: Redirect string constructors that take sbyte* to
2258           ves_icall_System_String_ctor_RedirectToCreateString.
2259         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2260           to CreateString () methods with matching signature.
2261         * reflection.c: Use original security informations for
2262           MONO_WRAPPER_MANAGED_TO_MANAGED.
2263         * security-manager.c: Use original security informations for
2264           MONO_WRAPPER_MANAGED_TO_MANAGED.
2265         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2266           that is a placeholder and only its address should be used.
2267         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2268           that is a placeholder and only its address should be used.
2269
2270 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2271
2272         Begin implementing COM Interop.
2273         * appdomain.c: Increment corlib version.
2274         * class.c: Set ComImport classes' parent to __ComObject.
2275         * loader.c: Mark cominterop methods as such.
2276         * domain.c: Add __ComObject class to MonoDefaults structure.
2277         * image.c: Add 2 hashtables to the image for COM Interop related methods
2278         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2279         using the mempool allocator
2280         
2281         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2282         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2283         declaration for mono_metadata_type_dup_mp.
2284         
2285         * debug-helpers.c: Added strings for two additional wrapper types
2286         * object.c: Create proxy objects for ComImport classes
2287         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2288         and added __ComObject class to MonoDefaults structure.
2289         
2290         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2291         MonoComInteropProxy and MonoComObject.
2292         
2293         * marshal.c: Added support for COM Interop
2294         (signature_cominterop): Converts managed signature to corresponding
2295         unmanaged COM signature.
2296         (cominterop_get_function_pointer): gets unmanaged function pointer via
2297         COM object vtable
2298         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2299         (cominterop_get_method_interface): returns interface type that method is defined on
2300         (mono_mb_emit_cominterop_call): emits native call to function pointer
2301         gotten from vtable
2302         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2303         that matches signature of unmanaged function.
2304         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2305         (cominterop_get_invoke): forwards call from proxy to __ComObject
2306         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2307         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2308         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2309         
2310         * marshal.h: Added Marshal icall declarations.
2311         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2312         so we can access them in finalizer
2313         
2314 2006-07-14  Dick Porter  <dick@ximian.com>
2315
2316         * object.c (mono_type_initialization_cleanup): Fix a race
2317         condition by temporarily commenting out the critical section
2318         deletion.
2319
2320 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2321
2322         * reflection.c (create_custom_attr): Fix some warnings.
2323         (create_custom_attr_data): Ditto.
2324         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2325         types. Fixes #78855.
2326
2327 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2328
2329         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2330
2331         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2332
2333 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2334
2335         * reflection.c (resolve_object): Add support for DynamicMethod.
2336
2337         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2338         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2339
2340 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2341
2342         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2343         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2344
2345 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2346
2347         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2348         Fixes #77888.
2349
2350 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2351
2352         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2353         slightly: remove a shadow local variable.
2354
2355 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2356
2357         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2358         definition that introduces the virtual function slot.
2359         Also fix Coverity #105.
2360
2361 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2362
2363         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2364         for dynamic assemblies. Fixes #78724.
2365
2366 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2367
2368         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2369         Fixes #78722.
2370
2371 2006-06-21  Martin Baulig  <martin@ximian.com>
2372
2373         * reflection.c
2374         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2375         fixes #76484.
2376
2377 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2378
2379         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2380
2381 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2382
2383         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2384         nor TYPEREFs.
2385         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2386         Inflate result if necessary.
2387         (mono_class_get_full): Remove old version.  Rename from
2388         'mono_class_get' and add 'context' argument.  Pass it to
2389         ..._create_from_typespec.
2390         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2391         (mono_ldtoken): Revert change below.
2392
2393 2006-06-20  Martin Baulig  <martin@ximian.com>
2394
2395         * class.c (mono_ldtoken): Don't pass the generic context to
2396         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2397
2398 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2399
2400         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2401         and later freeing it. Fixes #78638.
2402
2403 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2404
2405         * icall.c (mono_class_get_throw): Revert over-zealous error
2406         throwing, the caller for mono_class_get_throw will cope with
2407         errors when classes are not properly initialized already.
2408
2409         The code still copes with loader exceptions though.
2410
2411         Fixes the regression in reftype1 and reftype3 from the CAS tests.
2412         
2413 2006-06-14  Miguel de Icaza  <miguel@novell.com>
2414
2415         Fixes the `make run1' version of RuntimeAbort (to be commited,
2416         source is in Bugzilla).
2417         
2418         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
2419         FALSE on class loading failure instead of returning true.
2420
2421         * class.c (mono_class_create_from_typedef): It is possible for
2422         mono_metadata_interfaces_from_typedef_full to fail if a class is
2423         not found, cope with this.
2424         
2425
2426 2006-06-14  Dick Porter  <dick@ximian.com>
2427
2428         * socket-io.c: 
2429         * process.c: Fix a bunch of signed/unsigned warnings from gcc
2430         4.1.1
2431
2432 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
2433
2434         * culture-info-table.h : oops, forgot to make it nsync with r61548.
2435
2436 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2437
2438         * icall.c: Another fix for building mono in Visual Studio.
2439
2440 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2441
2442         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
2443         
2444 2006-06-09  Martin Baulig  <martin@ximian.com>
2445
2446         * debug-mono-symfile.c: Put this back and really fix it this
2447         time. Sorry for all the trouble.
2448
2449 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
2450
2451         * icall.c (mono_class_get_throw): Fix a warning.
2452         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
2453         ReflectionTypeLoadException if needed. Fixes #78606.
2454
2455         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
2456         (mono_class_init): Ditto.
2457
2458         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
2459         ref_only exceptions.
2460         (mono_loader_clear_error): Make this work even if there is no error.
2461
2462 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
2463
2464         * object-internals.h marshal.c marshal.h icall.c: Implement method 
2465         Marshal.GetComSlotForMethodInfo using internal call.
2466
2467 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
2468
2469         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
2470         a function for signalling it.
2471
2472         * class.c (mono_class_from_typeref): Use the new kind of loader error when
2473         a referenced assembly is not found.
2474
2475         * loader.c (mono_loader_error_prepare_exception): Add support for 
2476         LOADER_ERROR_ASSEMBLY. Fix formatting.
2477
2478 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2479
2480         * domain.c appdomain.c class-internals.h marshal.c: Add support 
2481         for VARIANT marshalling on windows and increment corlib version
2482         since Variant struct was added.
2483
2484 2006-06-03  Miguel de Icaza  <miguel@novell.com>
2485
2486         * debug-mono-symfile.c: Revert Martin's previous patch which broke
2487         stack trace line information:
2488
2489         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
2490         (Martin) when looking up B which is between A and C, return A not C.
2491
2492         Bug is #78573.
2493
2494         Thanks to Alexander Olk for tracking this down.
2495
2496 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
2497
2498         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
2499         
2500         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
2501         avoid clobbering its value.
2502         (mono_string_to_lpstr): Fix a warning on windows.
2503
2504 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2505
2506         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
2507
2508         * reflection.c loader.c: Removed references to 'dummy' flag.
2509
2510         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
2511
2512         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
2513         it gets GC tracking.
2514
2515         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
2516         GC tracking.
2517         
2518         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
2519
2520         * marshal.c threadpool.c: Update callers of mono_async_result_new.
2521
2522         * appdomain.c: Bump corlib version.
2523
2524 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2525
2526         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2527         CEE_STIND_REF when working with object references.
2528
2529 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2530
2531         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
2532         Fixes #78539.
2533
2534 2006-05-30  Miguel de Icaza  <miguel@novell.com>
2535
2536         * loader.c (method_from_memberref): Fix argument value for
2537         mono_loader_set_error_method_load (I was passing the MonoClass
2538         instead of the class name char *).
2539
2540 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2541
2542         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2543         CEE_STIND_REF when working with object references.
2544
2545 2006-05-30  Martin Baulig  <martin@ximian.com>
2546
2547         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2548         mono_method_full_name() change and replace the ':' with a '.'
2549         here.
2550
2551 2006-05-30  Martin Baulig  <martin@ximian.com>
2552
2553         * debug-mono-symfile.c
2554         (mono_debug_symfile_lookup_location): Fix the algorithm:
2555         when looking up B which is between A and C, return A not C.
2556
2557 2006-05-29  Martin Baulig  <martin@ximian.com>
2558
2559         * mono-debug.h
2560         (MonoDebugMethodInfo): Make the typedef public.
2561         (MonoDebugSourceLocation): New public struct.
2562
2563         * mono-debug.c
2564         (mono_debug_source_location_from_address): Removed.
2565         (mono_debug_source_location_from_il_offset): Removed.
2566         (mono_debug_il_offset_from_address): Removed.
2567         (mono_debug_address_from_il_offset): Removed.
2568         (mono_debug_lookup_method): New public function.
2569         (mono_debug_lookup_source_location): New public function; replaces
2570         the old mono_debug_source_location_from_*() functions; see the
2571         inline documentation.
2572         (mono_debug_free_source_location): New public function.
2573         (mono_debug_print_stack_frame): New public function; see the
2574         inline documentation.
2575
2576         * debug-mono-symfile.c
2577         (mono_debug_find_source_location): Renamed into
2578         mono_debug_symfile_lookup_location(); only take a
2579         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2580         documentation.
2581         (mono_debug_find_method): Renamed into
2582         mono_debug_symfile_lookup_method().
2583
2584 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2585
2586         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2587         returned by mono_image_open_full ().
2588
2589         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2590         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2591         #78517.
2592
2593         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2594         #78518.
2595
2596 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2597
2598         * class.c (mono_class_from_typeref): handle missing images
2599         earlier, deals with bug #78418.   Refactor code; 
2600
2601         Fix a warning introduced in my previous commit (some stale code
2602         from before I revisited my patch).
2603
2604         * class.c (mono_class_create_from_typedef): On failure, remove the
2605         class from the MonoImage->class_cache as the class is not
2606         initialized;   Fixes the leak pointed out by Paolo.
2607
2608 2006-05-25  Dick Porter  <dick@ximian.com>
2609
2610         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2611         DeleteCriticalSections until I figure out which one may still be
2612         sometimes locked when mono_thread_cleanup is called.
2613
2614 2006-05-24  Dick Porter  <dick@ximian.com>
2615
2616         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2617         of mono_thread_manage and back into its own function, so it can be
2618         called after the finalizer thread has finished.
2619
2620         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2621
2622 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2623
2624         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2625         Fixes #78495.
2626
2627         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2628         with non-blittable elements.
2629         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2630
2631 2006-05-24  Martin Baulig  <martin@ximian.com>
2632
2633         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2634         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2635
2636         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2637         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2638         `mono_debugger_event_handler' to NULL.
2639
2640 2006-05-24  Martin Baulig  <martin@ximian.com>
2641
2642         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2643
2644 2006-05-24  Martin Baulig  <martin@ximian.com>
2645
2646         * mono-debug-debugger.h
2647         (mono_debugger_create_notification_function): Added
2648         `MonoCodeManager *' argument.
2649
2650 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2651
2652         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2653
2654 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2655
2656         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2657         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2658         implementation.
2659
2660 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2661
2662         * icall.c: precise GC support: objects can't be stored in unmanaged
2663         memory anymore, even if they are kept alive by other references: since
2664         they can move the GC needs to be able to always find them.
2665
2666 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2667
2668         * object.c: precise GC support for static fields. Support
2669         for moving GCs: write barriers and pinned allocation for interned
2670         strings.
2671
2672 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2673
2674         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2675         structure.
2676
2677 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2678
2679         * class.c, gc.c: sgen and precise GC updates.
2680
2681 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2682
2683         * marshal.h, marshal.c: added write barrier wrapper and precise type
2684         fixes.
2685
2686 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2687
2688         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2689         support.
2690
2691 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2692
2693         * reflection.c: precise and sgen GC updates.
2694
2695 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2696
2697         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2698
2699 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2700
2701         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2702
2703 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2704
2705         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2706         MONO_TYPE_OBJECT. Fixes #78462.
2707
2708 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2709
2710         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2711         and blittable types.
2712
2713 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2714
2715         * class.c (mono_class_get_exception_for_failure): Implement parts
2716         of a TODO: if the loader error is set (instead of the class
2717         error), we return a Loader exception that can be properly thrown
2718         elsewhere.
2719
2720         This was exposed by some Winforms 2.0 code that I tried to run
2721         (Atsushi pointed me to it).
2722
2723 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2724
2725         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2726         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2727         
2728         * marshal.c (emit_marshal_vtype): Add limited support for 
2729         UnmanagedType.LPStruct. Fixes #78427.
2730
2731         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2732         Applied a patch from kangaroo to fix #77523.
2733
2734 2006-05-17  Martin Baulig  <martin@ximian.com>
2735
2736         * threads.c
2737         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2738         (debugger_thread_created): Removed.
2739         (debugger_thread_exited): Removed.
2740
2741 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2742
2743         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2744
2745         * object-internals.h (MonoReflectionResource): Sync with managed version.
2746
2747 2006-05-12  Wade Berrier <wberrier@novell.com>
2748
2749         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2750
2751 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2752
2753         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2754         functions try to allocate from the image mempool.
2755
2756 2006-05-12  Dick Porter  <dick@ximian.com>
2757
2758         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2759
2760 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2761
2762         * object.c: The FieldGetter and FieldSetter methods require the full
2763         name of the class, not only the name. Fixes bug #78277.
2764
2765 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2766
2767         * loader.c (method_from_memberref): Do not pass the NULL klass to
2768         mono_loader_set_error_() methods.  Pass the non-NULL value
2769         (class). 
2770
2771 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2772
2773         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2774         (mono_assembly_close): Null out assembly->image->references after freeing it.
2775
2776         * image.c (mono_image_close): Free image->references.
2777         
2778         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2779
2780 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2781
2782         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2783         before checking if it's NULL (g_assert).
2784
2785 2006-05-10  Martin Baulig  <martin@ximian.com>
2786
2787         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2788         I thought I already killed that two months ago, but now it somehow reappeared.
2789
2790 2006-05-10  Martin Baulig  <martin@ximian.com>
2791
2792         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2793
2794 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2795
2796         * reflection.c: Allocate memory for dynamically created methods in the image
2797         mempools.
2798
2799 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2800
2801         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2802         don't use the ad pointer before checking if it's NULL (g_assert).
2803
2804 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2807         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2808
2809         * marshal.c: Allocate all signatures from mempools.
2810
2811         * marshal.c: Allocate some more signatures from mempools.
2812
2813 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2814
2815         * object.c (mono_load_remote_field): The code used to provide a
2816         temporary variable for returning results if the user did not
2817         provide a result pointer.  But our temporary variable was allocted
2818         on the satck.
2819
2820         Fix calling code to always pass a result area.   Coverity ID 103.
2821
2822 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2823
2824         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2825         value, not the old. Fixes #78312.
2826         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2827
2828         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2829         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2830         per-image cache.
2831
2832         * assembly.c (mono_assembly_close): Free image->references.
2833
2834         * assembly.c (mono_assembly_names_equal): Fix a warning.
2835         (mono_assemblies_cleanup): Cleanup more global data.
2836
2837         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2838
2839         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2840         ptr_cache and image->modules.
2841
2842         * image.c (mono_image_init): Allocate array_cache lazily.
2843         
2844 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2845
2846         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2847         behavior was changed recently and has bad side effects.
2848
2849 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2850
2851         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2852         
2853         * assembly.c (mono_assembly_close): Remove a debug printf.
2854
2855         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2856
2857         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2858         to also allow for temporary references between mono_image_open ()/close ().
2859
2860         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2861
2862 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2863
2864         * marshal.c: Fix support for dynamic methods.
2865
2866         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2867
2868         * marshal.c (mono_marshal_cleanup): New cleanup function.
2869
2870         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2871         image mempools.
2872
2873         * class.c (mono_class_init): Fix leaking class->nested_classes.
2874
2875         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2876
2877         * image.c (mono_image_init): Initialize the new cashes.
2878
2879         * image.c (mono_image_close): Destroy the new cashes.
2880
2881         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2882
2883         * mempool.c (mono_mempool_strdup): New helper function.
2884
2885         * class-internals.h: Add prototype for mono_loader_unlock ().
2886
2887         * domain.c (mono_jit_info_table_find): Fix a warning.
2888         (mono_debugger_check_runtime_version): Ditto.
2889
2890         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2891         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2892         functions to these modules.
2893
2894         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2895         metadata modules.
2896         
2897         * marshal.c (mono_free_bstr): Fix a warning.
2898
2899         * assembly.c (mono_assembly_open_full): Fix another small leak.
2900
2901         * object.c: Fix some unload leaks in the remoting code.
2902
2903         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2904         function.
2905
2906         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2907
2908         * reflection.c: Fix some unload leaks in dynamic assemblies.
2909
2910 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2911
2912         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2913         * marshal.h: Add BSTR support on Win32
2914         * icall.c: Add BSTR icalls
2915         * metadata.h: Add BSTR enums
2916
2917 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2918
2919         Work to catch the crash from #76795 and turn it into an
2920         exception.   As I stubbed out pieces of the VisualBasic support,
2921         I found a number of places where the code was failing and I added
2922         checks to those places. 
2923         
2924         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2925         function return a status code.  If we fail to parse the signature
2926         from mono_metadata_parse_generic_inst, return FALSE.
2927
2928         * loader.c (mono_get_method_from_token): If we fail to load the
2929         method (mono_class_get) return NULL.   
2930
2931         * (method_from_memberref): Return NULL if we are unable to parse
2932         the method signature
2933
2934         (mono_loader_error_prepare_exception): Since we now use the
2935         loader_error flag internally to stop processing, and obtaining
2936         exceptions that might be thrown will walk this code path the
2937         proper way of going from a MonoLoaderError into a
2938         MonoException was convoluted.   This new routine encapsulates the
2939         process of turning the error into an exception and *clearing* the
2940         error afterwards.
2941         
2942 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2943
2944         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2945         with missing assemblies), and to cope with:
2946
2947                 * Missing fieldref from a non-existing assembly.
2948                 * Missing methodref from a non-existing assembly.
2949
2950         The first batch of work to address *some* of the issues from 76661.
2951         
2952         * object.c (mono_class_create_runtime_vtable): If we fail to
2953         initialize the class raise the exception here. 
2954
2955         * metadata.c (mono_class_get_overrides_full): If any methods fail
2956         to load return the failure to the caller.
2957
2958         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2959         flagging assemblies that failed to load.   
2960
2961         Do not crash if we are unable to load the assembly.
2962
2963         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2964         assemblies. 
2965
2966         * loader.c (mono_loader_set_error_type_load): Change the
2967         convention to always pass unallocated strings, so we make our own
2968         copies (I know our own code had duplicated strings before, but
2969         this keeps the normal conventions).
2970         (method_from_memberref): Call mono_loader_set_error_method_load
2971         for all possible failures of loading the class. 
2972         Remove assert, turn into a loader error.
2973
2974         (mono_loader_error_to_exception): Move this routine from mini
2975         (mini_loader_error_to_exception) there was no need to have that in
2976         mini. 
2977
2978         * class.c (mono_class_from_typeref): If we were not able to load
2979         the assembly with mono_assembly_load_reference, call the
2980         mono_loader_set_error_type_load to register the problem.
2981
2982         (mono_class_setup_fields): If we fail to load the type from
2983         mono_metadata_parse_type_full, call mono_class_set_failure and
2984         break from the loop.
2985
2986         If class->exception_type is set, we do not layout the fields as
2987         that might crash the runtime, and instead return (from breaking
2988         from the previous loop).
2989
2990         (mono_class_setup_vtable): This now returns a boolean indicating
2991         whether the table was properly setup.   The decision is driven by
2992         mono_class_get_overrides_full which might run into non-existing
2993         methods. 
2994         
2995         (mono_class_init): Returns TRUE on success or FALSE if there was a
2996         problem in loading the type (incorrect assemblies, missing
2997         assemblies, methods, etc).
2998
2999         When we call mono_class_setup_fields we also check for a potential
3000         error inside this call (either a class exception or a general
3001         loader exception).
3002
3003         (mono_class_create_from_typedef): If the parent fails to load
3004         (calling mono_class_get_full) return NULL.
3005         
3006         ** Important **
3007
3008         calls to mono_metadata_parse_type_full should be checked
3009         everywhere and set the mono_class_set_failure
3010         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3011
3012         The current patch checks the places where my manually constructed
3013         tests show the errors are showing up, but we should do it
3014         everywhere. 
3015
3016         ** Important2 **
3017
3018         mono_class_init return values should be tested everywhere, like
3019         the previous case this is something that we should audit
3020         everywhere and not only on the cases exposed by the tests I
3021         created. 
3022
3023 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3024
3025         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3026         boolean parameter and instead pass the information on `options'
3027         parameter (FileOptions).
3028
3029         * icall.c: Register the new signature for MonoIO.Open.
3030
3031         * debug-helpers.c (dis_one): Trying to understand how coverity
3032         works.  Fix Run 5, item 78.
3033
3034 2006-04-26  Dick Porter  <dick@ximian.com>
3035
3036         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3037         dereference.
3038
3039 2006-04-25  Martin Baulig  <martin@ximian.com>
3040
3041         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3042
3043         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3044         debugger_thread_created().
3045         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3046         special way.
3047         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3048         (mono_debugger_finalize_threads): New function; undo the effects
3049         of mono_debugger_init_threads().
3050         (mono_debugger_create_all_threads): Removed.
3051
3052 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3053
3054         * image.c (mono_image_close): Tidy up trace messages.
3055
3056         * assembly.c (mono_assembly_close): Ditto.
3057
3058         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3059         no longer references an already freed assembly. Fixes #78168.
3060
3061 2006-04-21  Dick Porter  <dick@ximian.com>
3062
3063         * threads.c (mono_thread_detach): Fix reference counting when
3064         detaching threads.
3065
3066 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3067
3068         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3069         #78155.
3070
3071 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3072
3073         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3074         (mono_type_to_stind): Ditto.
3075
3076         * marshal.c: Use the new helper functions to simplify code.
3077
3078         * image.c (mono_image_close): Add some code for help debug assembly unloading
3079         problems.
3080
3081         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3082         image mempool.
3083
3084         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3085         assembly was already loaded in another appdomain. Fixes #78083.
3086
3087 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3090         referenced assemblies.
3091         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3092
3093         * domain.c (mono_domain_free): Add a trace message.
3094
3095         * appdomain.c (add_assemblies_to_domain): Ditto.        
3096
3097         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3098         field.  
3099
3100 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3101
3102         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3103
3104 2006-04-12  Martin Baulig  <martin@ximian.com>
3105
3106         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3107         `USE_INCLUDED_LIBGC'.   
3108
3109 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3110
3111         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3112         the patch contains ../ and a small directory name later. Hopefully fixes
3113         #78035.
3114
3115 2006-04-10  Martin Baulig  <martin@ximian.com>
3116
3117         Clean up the debugger's thread-handling code.
3118
3119         The debugger's thread-handling code has been moved from
3120         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3121         over the `threads' hash, keep track of exiting threads and also
3122         use proper locking.
3123
3124         We can now debug XSP and XSP based applications with the debugger.
3125
3126         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3127
3128         * threads.h
3129         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3130         (mono_install_thread_callbacks): Likewise.      
3131
3132         * threads.c (mono_thread_callbacks): Removed.
3133         (debugger_thread_created, debugger_thread_exited): New static functions.
3134         (start_wrapper): Call debugger_thread_created().
3135         (thread_cleanup): Call debugger_thread_exited().
3136         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3137         (mono_debugger_init_threads): New public function.
3138         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3139         iterate directly over the `threads' hash and also use proper locking.
3140
3141         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3142
3143         * mono-debug-debugger.h
3144         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3145
3146 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3147
3148         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3149         argument type=array. Fixes #78057.
3150
3151 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3152
3153         * culture-info-table.h : regenerated. Fixed bug #69652.
3154
3155 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3156
3157         * loader.c metadata.c: Reapply a variant r59116.
3158         
3159         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3160
3161         * class.c (mono_class_setup_interface_offsets): New internal function.
3162
3163         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3164         interfaces too. Fixes #77398.
3165
3166         * reflection.c (encode_cattr_value): Add support for 
3167         parameter type=object, argument type=array.
3168         (load_cattr_value): Ditto. Fixes #77916.
3169
3170         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3171         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3172
3173         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3174         a byval char array and CharSet is Ansi.
3175
3176         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3177
3178 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3179
3180         * metadata.c: Add some locking comments.
3181         
3182         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3183         mempool.
3184         (mono_metadata_free_method_signature): Don't free the signature itself.
3185
3186         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3187
3188         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3189         reference the same MonoImage.
3190         (mono_assembly_load_from_full): Add an assert.
3191
3192 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3193
3194         * image.c (mono_image_close): Don't put the image we are about to free into the
3195         loaded_images_guid_hash.
3196
3197         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3198         to reduce code duplication.
3199
3200         * marshal.c: Register the native functions called by this module as icalls, to
3201         somewhat centralize the creation of MonoMethodSignature's.
3202
3203         * loader.c (mono_method_signature): Add a cache for method signatures.
3204
3205         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3206         the parameter attributes of a method.
3207         (mono_metadata_parse_method_signature_full): Refactored the computation of
3208         parameter attributes into a separate function. Also avoid one allocation in
3209         most cases.
3210
3211         * assembly.c (mono_assembly_close): Ditto.
3212
3213         * image.c (mono_image_close): Log trace messages with INFO level.
3214
3215         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3216
3217         * image.c reflection.c: Correct reference counting of image modules.
3218         
3219         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3220         of this function from the image mempool.
3221         
3222         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3223         to allow more cached types to be used.
3224
3225         * mono-debug.c (mono_debug_add_method): Appled patch from
3226         David S. Miller  <davem@sunset.davemloft.net>: Access 
3227         minfo->lexical_blocks[] entry elements using read32().
3228
3229 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3230
3231         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3232         methods as it is allocated from the mempool.
3233
3234         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3235         image mempool.
3236
3237         * metadata-internals.h: Add comments describing the reference counting scheme
3238         used for MonoImage and MonoAssembly.
3239
3240         * image.c assembly.c reflection.c: Rework reference counting of images and 
3241         assemblies so they are freed when the runtime is shut down. Free some 
3242         additional memory structures when an image is unloaded.
3243         
3244 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3245
3246         * class.c loader.c reflection.c: Allocate more data structures in
3247         the image mempool.
3248
3249 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3250
3251         * icall.c
3252         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3253         build on pre glib 2.4 systems.
3254
3255 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3256
3257         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3258
3259         * icall.c: Fix some warnings.
3260
3261 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3262
3263         * culture-info-table.h : regenerated.
3264
3265 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3266
3267         * threads.c, object-internals.h, verify.c: changed the culture caching
3268         code to use a normal MonoArray for storage so the GC can keep track of
3269         them easily. Fixed bits of the cache logic, too and simplified the
3270         code.
3271
3272 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3273
3274         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3275         thread for non-Boehm GCs.
3276
3277 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3278
3279         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3280         needed to keep track of the data for static fields.
3281
3282 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3283
3284         Fix #75172
3285         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3286         for interface classes.  Use 'num_methods' instead.
3287         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3288         before using '->vtable_size' field.
3289
3290 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3291
3292         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3293         doesn't contain managed pointers, so use a normal hashtable.
3294
3295 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3296
3297         * reflection.c, class-internals.h, domain.c: fixed handling of types
3298         used as values for objects in custom attributes (bug #77915):
3299
3300 2006-03-24  Martin Baulig  <martin@ximian.com>
3301
3302         * class.c (mono_class_setup_fields): Added support for generic
3303         instances; fixes #77580.
3304
3305 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3306
3307         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3308
3309 2006-03-24  Dick Porter  <dick@ximian.com>
3310
3311         * file-io.c (get_file_attributes): More stat macro breakage.
3312         Fixes bug 77759.
3313
3314 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3315
3316         * profiler.c: added the file=filename option in the default profiler
3317         to output the profile data to filename.
3318
3319 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3320
3321         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3322         bug #77877.
3323
3324 2006-03-22  Martin Baulig  <martin@ximian.com>
3325
3326         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3327         allocated `MonoClassField *' in `fb->handle'.
3328
3329 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3330
3331         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3332         allocate interface ID to save memory and allow better ID reuse on
3333         appdomain unload. setup_generic_vtable () removal from Martin.
3334
3335 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3336
3337         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3338         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3339         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3340         write barriers for reference stores with managed objects accessed with
3341         C structures in the runtime and in embedding programs.
3342
3343 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3344
3345         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3346         'interface_id' and 'max_interface_id' fields of MonoClasses
3347         representing open generic types.
3348
3349 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3350
3351         * object.h, object.c, icall.c: added functions to deal with
3352         storing valuetypes that contain references in managed objects.
3353         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3354         fixes and comments around uses of mono_array_addr ().
3355
3356 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3357
3358         * object.h, icall.c, monitor.c: object.GetHashCode ()
3359         implementation that supports the moving garbage collector.
3360
3361 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3362
3363         * icall.c, threads-types.h, threads.c: implemented finalizer for
3364         LocalDataStoreSlot.
3365
3366 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * metadata.c (mono_type_size): Add a fixme.
3369         (mono_type_stack_size): Ditto.
3370
3371         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3372         'type_forwarders' field.
3373
3374         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3375         attribute from net 2.0.
3376
3377         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3378         from class.c.
3379
3380         * class.c (mono_class_setup_fields): Fix a warning.
3381         
3382         * class.c (mono_class_from_name): Add support for assemblyref entries
3383         in the EXPORTEDTYPE table.
3384
3385         * reflection.c: Add support for handling type forwarders under net 2.0.
3386
3387         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3388         
3389 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3390
3391         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3392         overwriting entries in ModuleBuild->types, also clean up the code
3393         a little. Fixes #77774.
3394
3395 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3396
3397         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3398         load friend assembly info when present.
3399
3400 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3401
3402         Fix crasher on gtest-158.cs.
3403         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3404         the return value if the MonoClass we want is yet in an
3405         inconsistent state.
3406         * class.c (mono_class_create_from_typedef): Add an comment
3407         explaining an order dependency between mono_class_setup_parent and
3408         mono_class_setup_mono_type.
3409
3410 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
3411
3412         * class.c: documentation updates and events bug fix.
3413
3414 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3415
3416         * class.c: some cleanup, locking fixes.
3417
3418 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3419
3420         * class.c: fix the generics code to setup nested
3421         type info to the instantiated type (bug #77770).
3422
3423 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3424
3425         * marshal.c: fixed a few type correctness issues.
3426
3427 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3428
3429         * loader.c: the Set/Get/Addrtess array methods should be public.
3430
3431 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3432
3433         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
3434         
3435         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
3436         info->wrapper.
3437
3438 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3439
3440         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
3441
3442         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
3443
3444         * mempool.c (mono_mempool_alloc): Speed this up a bit.
3445         (mono_mempool_alloc0): Ditto.
3446
3447 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3448
3449         * socket-io.c:
3450         (create_object_from_sockaddr): it was allocating 4 extra bytes
3451         for the AF_UNIX data. Fixes bug #77747.
3452
3453 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3454
3455         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
3456
3457 2006-03-09  Dick Porter  <dick@ximian.com>
3458
3459         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
3460         Fixes bug 76966 again.
3461
3462 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3463
3464         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
3465         names from r57532
3466         * appdomain.c: Bumped corlib version to 48 (due to r57532)
3467
3468 2006-03-07  Martin Baulig  <martin@ximian.com>
3469
3470         * object.c
3471         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
3472
3473 2006-03-07  Martin Baulig  <martin@ximian.com>
3474
3475         * class.c
3476         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
3477         regression introduced in r56970; see gtest-252.cs.
3478
3479         * loader.c (mono_get_method_constrained): Correctly handle generic
3480         methods; see gtest-253.cs.
3481
3482 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
3485
3486 2006-03-04  Martin Baulig  <martin@ximian.com>
3487
3488         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
3489         compute the parent type at runtime, just like we're already doing
3490         it for interfaces.
3491
3492         * reflection.c
3493         (mono_reflection_bind_generic_parameters): Don't compute the
3494         parent type anymore.
3495
3496         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
3497
3498 2006-03-04  Martin Baulig  <martin@ximian.com>
3499
3500         * mono-debug-debugger.h
3501         (mono_debugger_create_notification_function): Allocate memory at
3502         runtime and return a pointer to it.
3503
3504 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
3505
3506         * assembly.c: Fix windows build.
3507         
3508         * assembly.c: Fix build.
3509
3510         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
3511
3512         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
3513         
3514 2006-03-03  Dick Porter  <dick@ximian.com>
3515
3516         * process.c
3517         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3518         Check parameters before dereferencing them.  Fixes Aaron's part of
3519         bug 77393.
3520
3521 2006-03-03  Raja R Harinath  <rharinath@novell.com>
3522
3523         Fix performance regression.
3524         * loader.c (find_method_in_class): Add 'from_class' argument.
3525         Rename 'klass' argument to 'in_class'.  The signature is compared
3526         against the method in 'in_class', and the corresponding method is
3527         returned from 'from_class'.
3528         (find_method): Walk both 'in_class' and 'from_class' in parallel.
3529         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
3530         type definition and generic instantiation in parallel.
3531         (mono_get_method_constrained): Update to changes.
3532
3533 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3534
3535         * threads.c: make sure the domain is correct, too when doing
3536         mono_thread_attach ().
3537
3538 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
3539
3540         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
3541         windows. Fixes #77683.
3542
3543 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3544
3545         * object.h, *: introduced specific way to set elements of an array
3546         of references to be used as write barrier. Still need to audit the
3547         uses of mono_array_addr.
3548
3549 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3550
3551         * object-internals.h: New field to cache the assmebly name, patch
3552         from Tambet Ingo (tambet@ximian.com)
3553
3554 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3555
3556         * decimal.h, class-internals.h, metadata-internals.h,
3557         file-io.h: mark a few function declarations as internal, to
3558         reduce the number of PLT entries.
3559
3560 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3561
3562         * file-io.c: fix typo in warning message.
3563
3564 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3565
3566         * loader.c: on unix, lookup the "*A" version of a function
3567         if charset is auto as a second option before failing.
3568
3569 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3570
3571         * class.h (mono_class_inflate_generic_method): Revert to two
3572         argument version.
3573         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3574         (mono_class_inflate_generic_method_full): Add.
3575         * class.c (mono_class_inflate_generic_method_full): Rename from
3576         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3577         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3578         * loader.c, reflection.c: Update to changes.
3579
3580 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3581
3582         * icall.c: const fixes and small improvements.
3583
3584 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3585
3586         * threadpool.c: for asynchronous connect(), enable the same workaround
3587         for BSD 6 as for the Mac. Fixes bug #77637.
3588
3589 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3590
3591         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3592         formatted classes. Fixes #77524.
3593
3594 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3595
3596         * class.c (inflate_generic_type): Add a couple more
3597         micro-optimizations.
3598         (inflate_generic_context): Don't use the 'gmethod' from
3599         'inflate_with'.
3600         (mono_class_inflate_generic_method): If the method has generic
3601         parameters, but the passed-in context doesn't have a 'gmethod',
3602         create one.  Use the possibly simplified generic instantiation
3603         from the declaring class instead of the one passed in.
3604
3605 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3606
3607         Make generic method signature and method header handling lazy.
3608         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3609         (inflate_generic_header): Likewise.
3610         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3611         parameter to avoid inflating types.
3612         (mono_get_inflated_method): Empty out.
3613         * class.h (mono_class_inflate_generic_method): Update to changes.
3614         * loader.c (mono_get_method_from_token): Don't parse signature for
3615         generic methods, nor methods of generic classes.
3616         (mono_method_signature): Rename from 'mono_method_signature'.
3617         Inflate signature on demand.
3618         (mono_method_get_header): Inflate method header on demand.
3619         * reflection.c: Update to changes.
3620
3621 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3622
3623         * metadata.c (mono_metadata_inflate_generic_inst): If the
3624         instantiation is closed, don't bother expanding it in the new
3625         context.
3626         * class.c (inflate_generic_class): If the generic instantiation
3627         doesn't change after inflation, return the argument itself.
3628         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3629         Add bounds checks.
3630         (inflate_generic_context): If neither the generic class nor the
3631         generic method instantiations change, return the original context.
3632         * reflection.c (mono_method_get_object): Do
3633         'mono_get_inflated_method' before accessing the ->klass field.
3634         (inflate_mono_method): Don't create a MonoGenericMethod unless
3635         necessary.
3636         (inflate_method): Don't pass a constructed type as the declaring
3637         type of a methodbuilder.
3638
3639 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3640
3641         * object.c: fix memory overwrite.
3642
3643 2006-02-22  Dick Porter  <dick@ximian.com>
3644
3645         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3646         it doesn't work any more.
3647         (mono_threads_request_thread_dump): Fix unused variable warnings.
3648
3649 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3650
3651         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3652         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3653         the public header file.
3654
3655 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3656
3657         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3658
3659 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3660
3661         * class-internals.h, object.c: reduce the size of MonoVTable
3662         and store the interface_offsets array at negative offsets.
3663
3664 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3665
3666         * metadata.c: tweak table descriptors data structures to reduce
3667         size and runtime relocations.
3668
3669 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3670
3671         * marshal.c: fix some types and opcodes to be type-safe
3672         in marshaling wrappers.
3673
3674 2006-02-21  Ankit Jain  <jankit@novell.com>
3675
3676         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3677
3678 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3679
3680         * metadata.c (get_constraints): Relax debugging checks for monodis.
3681
3682 2006-02-21  Ankit Jain  <jankit@novell.com>
3683
3684         * metadata.c (mono_metadata_load_generic_params): Move the code
3685         checking for ambiguous generic params from here to mono/dis/get.c
3686         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3687
3688 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3689
3690         Fix assertion triggered when compiling nemerle.
3691         * class.c (mono_get_shared_generic_inst): Rename from
3692         get_shared_inst and make non-static.
3693         * loader.c (mono_get_shared_generic_method): New.  Used to create
3694         the MonoGenericContext-equivalent of a MonoGenericContainer.
3695         (mono_get_method_from_token): Initialize the 'context' field of
3696         the created MonoGenericContainer.
3697         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3698         * metadata.c (get_constraints): Add sanity check.
3699         * class-internals.h: Add new internal methods.
3700
3701         * reflection.c (verify_safe_for_managed_space): New sanity check.
3702         Currently checks that owner-less generic parameters aren't allowed
3703         in managed space.
3704         (mono_type_get_object): Use it.
3705         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3706         that are now in mono_type_get_object.
3707         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3708
3709 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3710
3711         * metadata.c (mono_type_create_from_typespec): Rename from
3712         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3713         argument and caching of types in the generic container.
3714         (unwrap_arrays, find_generic_param): Remove.
3715         * metadata-internals.h: Update.
3716         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3717
3718 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3719
3720         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3721
3722         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3723         return values. Fixes #77581.
3724
3725         * class.c (mono_fnptr_class_get): Switch name and name_space.
3726
3727         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3728         classes and add support for [In, Out] attributes.
3729         (mono_marshal_free_asany): Ditto. Fixes #77524.
3730
3731 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3732
3733         * class.c (mono_class_from_generic_parameter): Make more robust to
3734         incomplete MonoGenericContainers from monodis.
3735
3736 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3737
3738         * class-internals.h: added some more exception types.
3739         * class.c, metadata.c: added a few checks to handle missing
3740         types.
3741
3742 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3743
3744         Use owner-less generic-params some more.
3745         * class.c (my_mono_class_from_generic_parameter): Remove.
3746         (mono_class_from_generic_parameter): Handle null image,
3747         param->name and param->owner.
3748         (mono_class_from_mono_type): Update.
3749         (mono_class_create_from_typespec): Remove 'container' parameter.
3750         If that parameter is non-null, the result is always inflated by
3751         'mono_class_get_full' anyway.
3752         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3753         parameter.
3754         (mono_class_get_full): Update.
3755
3756         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3757         instance is not open, don't bother inflating.
3758         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3759         parse metadata for inflated classes.
3760         (_mono_class_get): Change GenericContext* parameter to
3761         GenericContainer*.
3762         (mono_class_create_from_typespec): Likewise.  Simplify, and
3763         implement trivially.  All the cases are handled in
3764         mono_class_from_mono_type.  Don't inflate returned class.
3765         (mono_class_get_full): Delegate GENERICINST optimization to
3766         inflate_generic_type.
3767         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3768
3769 2006-02-16  Dick Porter  <dick@ximian.com>
3770
3771         * socket-io.c (create_object_from_sockaddr): Fix typo.
3772         (create_sockaddr_from_object): Check array lengths before
3773         potentially accessing items off the end.
3774         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3775         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3776         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3777         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3778         length checks to avoid wraparound overflows.
3779         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3780         contents of the array of sockets
3781         (hostent_to_IPHostEntry2)
3782         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3783         Check return value of inet_ntop ().
3784         (addrinfo_to_IPHostEntry): Fix typo
3785
3786 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3787
3788         Type metadata parsing doesn't use generic-instantiation information.
3789         * metadata.c (mono_metadata_parse_array_full): Change
3790         MonoGenericContext* parameter to MonoGenericContainer*.
3791         (mono_metadata_parse_type_full): Likewise.
3792         (mono_type_create_from_typespec_full): Likewise.
3793         (mono_metadata_parse_mh_full): Likewise.
3794         (mono_metadata_parse_generic_inst): Likewise.
3795         (do_mono_metadata_parse_generic_class): Likewise.
3796         (do_mono_metadata_parse_type): Likewise.
3797         * metadata-internals.h: Update to changes.
3798         * class.c (mono_class_find_enum_basetype): Likewise.
3799         (mono_class_setup_fields): Likewise.
3800         (mono_class_create_from_typespec): Likewise.
3801         * loader.c (method_from_methodspec): Likewise.
3802         (mono_get_method_from_token): Likewise.
3803         (mono_method_get_header): Likewise.
3804
3805 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3806
3807         * marshal.c: handle additional GENERICINST case (patch from
3808         Thong Nguyen <tum@veridicus.com>).
3809         Fix a few cases where LDIND_I/STIND_I was used for references.
3810
3811 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3812
3813         * reflection.c (mono_reflection_get_token): Remove unused variable.
3814
3815 2006-02-16  Martin Baulig  <martin@ximian.com>
3816
3817         * reflection.c (mono_reflection_get_token): Add support for fields
3818         in instantiated generic types.
3819
3820         * icall.c
3821         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3822
3823 2006-02-15  Martin Baulig  <martin@ximian.com>
3824
3825         * icall.c
3826         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3827         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3828         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3829         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3830
3831 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3832
3833         * class.c, metadata.c, metadata.h, object.c, icall.c,
3834         marshal.c: changed mono_type_get_underlying_type () to do
3835         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3836         Fixed handling of instantiated generic valuetypes (bug #75479).
3837
3838 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3839
3840         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3841         Delegate to mono_metadata_decode_value, and work on the returned value.
3842
3843         * icall.c (ves_icall_MonoType_GetGenericArguments):
3844         Add consistency check here too.
3845         
3846 2006-02-15  Ankit Jain  <jankit@novell.com>
3847
3848         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3849         char/short etc.
3850
3851 2006-02-15  Ankit Jain  <jankit@novell.com>
3852
3853         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3854         signed values, used only for representing lower bounds of arrays.
3855         (mono_metadata_parse_array_full): Use new
3856         mono_metadata_decode_signed_value to decode lower bounds.
3857
3858 2006-02-14  Martin Baulig  <martin@ximian.com>
3859
3860         * reflection.c
3861         (mono_reflection_get_token): Support "MonoGenericMethod" and
3862         "MonoGenericCMethod" and allow generic instances / methods.
3863
3864 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3865
3866         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3867         to obtain the terminal size using an ioctl.
3868
3869         * object.c (mono_nullable_init): Revert this as nullable reference
3870         types are not valid.
3871         (mono_nullable_box): Ditto.
3872
3873 2006-02-09  Dick Porter  <dick@ximian.com>
3874
3875         * threads.c (mono_thread_detach): Drop a reference to the thread
3876         we're detaching.
3877
3878 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3879
3880         * object.c (mono_nullable_init): Handle nullable reference types.
3881         (mono_nullable_box): Ditto. Fixes #77446.
3882
3883 2006-02-07  Martin Baulig  <martin@ximian.com>
3884
3885         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3886
3887 2006-02-07  Ankit Jain  <jankit@novell.com>
3888
3889         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3890         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3891         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3892         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3893         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3894         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3895
3896 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3897
3898         * class.c (mono_class_create_generic): Set type_token as well.
3899
3900         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3901         compatible with MS.
3902
3903 2006-02-02  Martin Baulig  <martin@ximian.com>
3904
3905         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3906         has never been used so far.
3907
3908 2006-02-02  Martin Baulig  <martin@ximian.com>
3909
3910         * mono-debug-debugger.h: Changed comment at the top of this file;
3911         the header is not installed, but it's safe to #include it from
3912         within the JIT.
3913
3914         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3915         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3916
3917 2006-02-02  Martin Baulig  <martin@ximian.com>
3918
3919         * mono-debug.h
3920         (MonoSymbolTable): Removed the `metadata_info' field.
3921
3922         * mono-debug.c
3923         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3924
3925         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3926         (mono_debugger_add_builtin_types): Removed.
3927         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3928         (mono_debugger_create_notification_function): We now operate on a
3929         pre-allocated area; take a `gpointer' and return `void'.
3930
3931         * mono-debug-debugger.c
3932         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3933         (mono_debugger_add_builtin_types): Removed.
3934
3935 2006-02-02  Martin Baulig  <martin@ximian.com>
3936
3937         * threads.c (mono_debugger_create_all_threads): New public method.
3938
3939 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3940
3941         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3942         breaks on several platforms.
3943
3944 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3945
3946         * assembly.c: the VS.NET build doesn't supply default values for
3947         MONO_ASSEMBLIES and MONO_CFG_DIR.
3948
3949 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3950
3951         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3952         helper function.
3953
3954         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3955
3956         * loader.c (method_from_memberref): Fix a warning.
3957
3958         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3959
3960         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3961         with explicit layout. Fixes #77433.
3962
3963 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3964
3965         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3966         max_interface_id is initialized before using it. Fixes #77398.
3967         (ves_icall_Type_GetInterfaces): Ditto.
3968
3969 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3970
3971         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3972         allocate memory for parameter attributes when parsing memberref
3973         signatures.
3974         * loader.c (mono_loader_set_error_method_load): Don't warn.
3975         (method_from_memberref): Ensure MissingMethodException gets thrown
3976         if method is not found.  Make warning more informative.
3977
3978 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3979
3980         Fix #77397
3981         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3982         return true if is byref.
3983         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3984         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3985         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3986
3987 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3988
3989         Fix tests/find-method.2.il
3990         * loader.c (find_method, find_method_in_class): Remove is_inflated
3991         argument.  Revert 2006-01-18 change.
3992         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3993         is generic, search for method in its generic definition.
3994         * class.c (mono_class_setup_vtable_general): Print generic
3995         arguments of generic types in debugging printf.
3996
3997 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3998
3999         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4000
4001         * threads.c (mono_threads_request_thread_dump): New helper function.
4002
4003 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4004
4005         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4006
4007 2006-01-25  Ankit Jain  <jankit@novell.com>
4008
4009         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4010         move definition to ..
4011         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4012         
4013 2006-01-25  Ankit Jain  <jankit@novell.com>
4014             Raja R Harinath  <rharinath@novell.com>
4015
4016         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4017         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4018         as necessary.
4019
4020 2006-01-25  Martin Baulig  <martin@ximian.com>
4021
4022         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4023         `MonoDebuggerThread' into debug-debugger.c.
4024
4025 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4026
4027         * profiler.c: fix printing of data.
4028
4029 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4030
4031         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4032           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4033
4034 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4035
4036         * object.c: fix deadlock related to string interning.
4037
4038 2006-01-23  Martin Baulig  <martin@ximian.com>
4039
4040         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4041
4042         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4043
4044 2006-01-23  Martin Baulig  <martin@ximian.com>
4045
4046         * mono-debug.h: Moved the prototypes of some functions which are
4047         used by the JIT here from mono-debug-debugger.h.
4048
4049 2006-01-21  Martin Baulig  <martin@ximian.com>
4050
4051         * Makefile.am: Don't install mono-debug-debugger.h.
4052
4053 2006-01-21  Martin Baulig  <martin@ximian.com>
4054
4055         * mono-debug-debugger.h: Enforce the private status of this header
4056         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4057         Moved some stuff from mono-debugger-jit-wrapper.h here.
4058
4059 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4060
4061         * class.c (mono_class_from_typeref): Add a sanity test to help
4062         catch lack of assembly load/search hooks.
4063
4064 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4065
4066         * marshal.c (emit_struct_conv): Relax the fields with same offset
4067         check even more. Fixes #77230.
4068
4069 2006-01-18  Martin Baulig  <martin@ximian.com>
4070
4071         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4072         argument; if false, we compare the uninstantiated signatures.
4073         (method_from_memberref): Compare the uninstantiated signatures;
4074         fixes #76417.
4075
4076 2006-01-18  Robert Jordan  <robertj@gmx.net>
4077
4078         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4079         Clear the weak link. Fixes bug #77170.
4080
4081         * gc.c (mono_gchandle_free):
4082         Reflect *-gc.c changes (tiny optimization).
4083
4084 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4085
4086         * metadata.c (mono_metadata_signature_dup): Applied patch from
4087         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4088         Fixes #77288.
4089
4090 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4091
4092         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4093         marshalling from native to managed code. Fixes #77230.
4094
4095 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4096
4097         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4098         connect. Fixes bug #77020.
4099
4100 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4101
4102         * class.c: fixed id assignement for nested interfaces (bug #77275).
4103         Added also better info for --print-vtable debugging.
4104
4105 2006-01-12  Martin Baulig  <martin@ximian.com>
4106
4107         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4108         interfaces on-the-fly; fixes #76625.
4109
4110         * class-internals.h
4111         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4112         don't need that anymore.
4113
4114 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4115
4116         * socket-io.c
4117         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4118         To avoid initing the nested_classes when not needed I turned the
4119         PeerCredData as a toplevel internal class, as it has to be shared
4120         anyways. 
4121
4122         Fixes the CASA issue.
4123
4124 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4125
4126         * domain.c: Accessors for MonoJitInfo
4127
4128         * profiler-private.h: Add jitinfo to the end jit hook
4129
4130         * profiler.[ch]: Define new hooks, called after jitting which give
4131         the MonoJitInfo that was compiled
4132
4133 2006-01-10  Martin Baulig  <martin@ximian.com>
4134
4135         * class.c (mono_class_setup_events): Add support for generic
4136         classes; fixes #76440.
4137
4138 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4139
4140         Fix #77160.
4141         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4142         on passed-in method.
4143
4144 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4145
4146         * object.c (mono_runtime_invoke_array): Add Nullable support.
4147
4148         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4149
4150 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4151
4152         * file-io.c: Don't consider sockets as directory and avoid an endless
4153         loop. Fix bug #76966.
4154
4155 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4156
4157         * object.c (mono_nullable_init): New helper function.
4158         (mono_nullable_box): Ditto.
4159
4160         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4161
4162         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4163
4164         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4165         
4166 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4167
4168         * class.c (mono_class_is_assignable_from): Make T assignable to 
4169         Nullable<T>.
4170
4171 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4172
4173         * appdomain.c: Bump corlib version to 46.
4174         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4175         serialization purpose) and changed ves_icall_System_Reflection_
4176         Assembly_get_code_base signature to accept a boolean (to escape, or 
4177         not, the assembly code base).
4178
4179 2005-12-23  Dick Porter  <dick@ximian.com>
4180
4181         * icall.c: 
4182         * threads-types.h: 
4183         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4184         CreateEvent icall now returns "created" boolean parameter.
4185
4186 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4187
4188         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4189         #76967.
4190
4191         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4192         when attr_klass is an interface. Fixes #77045.
4193
4194 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * marshal.c (emit_struct_conv): Fix previous patch.
4197         
4198         * marshal.c (emit_struct_conv): Add a check for fields with the same
4199         offset.
4200
4201 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4202
4203         Fix regression in Mono.C5.
4204         * class.c (mono_class_create_generic): If 'klass' is an interface
4205         set up the interface offsets.
4206         (mono_class_is_assignable_from): Don't throw away generic arguments.
4207
4208 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4209
4210         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4211         type parameters.
4212
4213 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4214
4215         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4216         dead store.
4217         (do_mono_metadata_parse_generic_class): Don't pass the current
4218         generic context when parsing the type being instantiated: it
4219         cannot use it, anyway.
4220
4221         * loader.c (method_from_memberref): Don't inflate a signature if
4222         it doesn't contain any type parameters.
4223
4224 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4227
4228 2005-12-14  Martin Baulig  <martin@ximian.com>
4229
4230         * class.c
4231         (mono_type_get_name_recurse): Don't return null for type
4232         parameters and open generic classes.
4233         (mono_class_setup_methods): Don't exclude generic instances.
4234         (mono_get_unique_iid): Use different IDs for different
4235         instantiations of the same generic type.
4236         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4237         open generic instances; create a normal vtable for closed generic
4238         instances.
4239         (mono_class_setup_vtable_general): We're now also called for
4240         closed generic instances.
4241
4242         * reflection.c
4243         (mono_reflection_bind_generic_parameters): Correctly use
4244         mono_metadata_lookup_generic_inst() everywhere.
4245
4246 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4247
4248         * object.c (mono_class_create_runtime_vtable): Call 
4249         mono_class_setup_vtable ().
4250
4251         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4252         function.
4253         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4254         #76959.
4255
4256         * loader.c (mono_loader_set_error_type_load): Print the type load
4257         warnings to the console so they are more visible to the user.
4258         (mono_loader_set_error_method_load): Ditto.
4259
4260         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4261         is still broken.
4262         
4263         * reflection.c (ensure_runtime_vtable): Fix build.
4264
4265         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4266         doesn't work in all cases.
4267
4268 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4269
4270         * object.c (mono_array_new_full): Treat a single dimensional array
4271         with 0 lower bounds as an szarray. Fixes #76973.
4272
4273         * reflection.c (custom_attr_visible): Really fix this.
4274
4275 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4276
4277         * reflection.c (custom_attr_visible): Allow nested public attributes
4278         as well.
4279
4280         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4281         interface check.
4282
4283 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4284
4285         * class.c (set_generic_param_owner): Delete.
4286         (mono_class_create_from_typedef): Don't set ->owner field of
4287         generic parameters to "param containers" of enclosing classes.
4288         * reflection.c (mono_reflection_initialize_generic_parameter):
4289         Likewise.
4290
4291 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4292
4293         * reflection.c (custom_attr_visible): Fix build.
4294
4295 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4296
4297         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4298         private attributes.
4299         
4300         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4301         handling of null parameter defaults.
4302
4303 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4304
4305         * class.c (mono_class_from_generic_parameter): Don't set
4306         klass->generic_container.
4307         (my_mono_class_from_generic_parameter): Likewise.
4308
4309 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4310
4311         * reflection.c (load_public_key): Fix a warning.
4312         (method_encode_code): Fix unaligned accesses.
4313
4314 2005-12-07  Martin Baulig  <martin@ximian.com>
4315
4316         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4317
4318         * reflection.c
4319         (write_generic_param_entry): Encode our custom attrs.
4320
4321         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4322
4323 2005-12-07  Martin Baulig  <martin@ximian.com>
4324
4325         * reflection.c (encode_new_constraint): Removed; we don't use the
4326         `NewConstraintAttribute' anymore.
4327
4328 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4329
4330         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4331         not fire a TypeResolve event when Assembly.GetType () is called.
4332
4333 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4334
4335         Beginning of support for nullable types in the runtime. Parts of
4336         this patch are from Martin.
4337
4338         * appdomain.c (MONO_CORLIB_VERSION): Bump
4339
4340         * domain.c (mono_init_internal): get the nullable type
4341
4342         * class.c (mono_class_is_nullable): New method
4343         (mono_class_get_nullable_param): New mehod
4344         (mono_class_create_generic): In types T? set cast_class to T
4345
4346         * class-internals.h (MonoDefaults): new nullable default class
4347         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4348         new methods.
4349
4350 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4351
4352         * metadata.c (select_container): New.  Refactor code to select the
4353         appropriate GenericContainer given the type of generic parameter
4354         we are looking for.
4355         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4356         not a MonoGenericContext.  Use select_container.  Update parameters.
4357         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4358         and MONO_TYPE_MVAR.
4359         (unwrap_arrays): Remove duplicate tests.
4360         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4361         generic instantiated class to find any arguments that are generic
4362         parameters.
4363         (mono_type_create_from_typespec_full): Use find_generic_param to
4364         avoid evicting some generic instantiations from the typespec
4365         cache.
4366
4367 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4368
4369         * reflection.c: fixed writing of doubles on ARM FPA.
4370
4371 2005-12-02  Robert Jordan  <robertj@gmx.net>
4372
4373         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4374
4375 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4376
4377         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4378         least on SUSE 10 they are not the same (on debian, they are just the
4379         same thing).
4380
4381 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4382
4383         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4384         DeclaringType for VARs and MVARs.
4385         * class.c (set_generic_param_owner): Fix initialization of owner
4386         fields.
4387
4388 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4389
4390         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4391
4392 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4393
4394         * threadpool.c: workaround for a bug that shows up on the Mac:
4395         select()+connect() on a blocking socket is not like it should
4396         be, so we proceed to connect() in that case, wasting the I/O
4397         threadpool thread until connect succeedes. Fixes bug #75436.
4398
4399 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4400
4401         * threadpool.c: fix typo when setting file descriptor states.
4402
4403 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4404
4405         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4406         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4407         create a temporary signature container.
4408         (mono_metadata_parse_generic_param): Update to changes.
4409         (mono_type_create_from_typespec_full): Update to changes.
4410         * loader.c (method_from_memberref): Don't use a
4411         MonoGenericContainer while parsing a memberref signature.
4412         (method_from_methodspec): Remove dead-store of the 'container'
4413         variable.  It's overwritten before use.
4414
4415         * metadata.c (mono_type_create_from_typespec_full): Make debugging
4416         checks tighter.
4417         (mono_metadata_parse_generic_param): Likewise.
4418         * loader.c (find_method_in_class): Does not need a
4419         MonoGenericContainer.  Use 'mono_method_signature' rather than
4420         'mono_method_signature_full'.
4421         (find_method, mono_get_method_constrained, method_from_memberref):
4422         Update to changes.
4423
4424         * metadata.c (mono_type_create_from_typespec_full): Ensure that
4425         owner-less generic-parameters are never evicted from the typespec
4426         cache.
4427
4428         * loader.c (method_from_memberref): Don't use the current context
4429         when parsing signatures.
4430         (method_from_methodspec, mono_get_method_from_token): Update to changes.
4431
4432         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
4433         side-effects in g_assert.
4434         * loader.c (mono_get_method_from_token): Resolve klass earlier so
4435         that we don't potentially lose information.
4436
4437 2005-11-26  Dick Porter  <dick@ximian.com>
4438
4439         * icall.c:
4440         * threads.c: icalls to implement basic (ie, not named)
4441         System.Threading.Semaphore.
4442
4443 2005-11-24  Dick Porter  <dick@ximian.com>
4444
4445         * process.c
4446         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4447         Use GetProcessId() if it's available.
4448
4449 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
4450
4451         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
4452
4453 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4454             Ankit Jain  <jankit@novell.com>
4455
4456         * loader.c (mono_get_method_from_token): Initialize 'method' field
4457         of all generic parameters before parsing the signature.  Remove
4458         code that "fixed"-up MVAR references.
4459
4460 2005-11-23  Ankit Jain  <jankit@novell.com>
4461
4462         * metadata.c (mono_metadata_has_generic_params):
4463         (mono_metadata_load_generic_param_constraints):
4464         (mono_metadata_load_generic_params): Move duplicate code ...
4465         (mono_metadata_get_generic_param_row): ... here. Returns the
4466         first row-id in GenericParam table for a given owner (token).
4467         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
4468         prototype.
4469
4470 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4471             Ankit Jain  <jankit@novell.com>
4472
4473         * metadata.c (mono_metadata_class_equal): Pass signature_only when
4474         comparing VARs too.
4475         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
4476         type->data.generic_param only if the type is an MVAR.
4477         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
4478         leak owner-less VARs and MVARs into managed space.
4479
4480 2005-11-21  Martin Baulig  <martin@ximian.com>
4481
4482         * class-internals.h
4483         (MonoMethod): Moved the `generic_container' here from
4484         `MonoMethodNormal' since we now also need it for
4485         `MonoMethodPInvoke';
4486         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
4487         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
4488         an union containing both `MonoMethodNormal' and
4489         `MonoMethodPInvoke'.
4490
4491         * loader.c
4492         (mono_get_method_from_token): Allow implementing generic methods
4493         as interncalls.
4494
4495         * threads.c
4496         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
4497         icall.
4498
4499 2005-11-17  Dick Porter  <dick@ximian.com>
4500
4501         * icall.c: 
4502         * process.h: 
4503         * process.c: Split the Process Start_internal icall into
4504         ShellExecuteEx_internal and CreateProcess_internal, which are
4505         called depending on whether UseShellExecute is true.  Fixes bug
4506         76670.
4507
4508         * appdomain.c (MONO_CORLIB_VERSION): Incremented
4509
4510 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4511
4512         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
4513         'msize' parameters, use the information in 'mspec' instead.
4514         (emit_object_to_ptr_conv): Ditto.
4515
4516         * marshal.c (emit_struct_conv): Handle explicit layout structs with
4517         fields out of order. Fixes #76733.
4518
4519 2005-11-17  Ankit Jain  <jankit@novell.com>
4520
4521         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
4522
4523 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
4524
4525         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
4526           bug #76575.
4527
4528 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4529
4530         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
4531         for types with non-auto layout. Fixes #76717.
4532
4533 2005-11-16  Ankit Jain  <jankit@novell.com>
4534
4535         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
4536         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
4537         if generic_context is null.
4538           (mono_metadata_generic_param_equal): param->owner can be null.
4539           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
4540         null.
4541
4542 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4543
4544         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4545         the correct value.
4546
4547 2005-11-15  Martin Baulig  <martin@ximian.com>
4548
4549         * object.c (set_value): Use mono_class_from_mono_type() instead of
4550         the hack for generic instances; fixes #76136.
4551
4552 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4553
4554         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4555         fields.
4556
4557         * image.c (load_metadata_ptrs): Initialize the new fields.
4558
4559         * reflection.c (create_dynamic_mono_image): Ditto.
4560
4561         * reflection.c (build_compressed_metadata): Use the new fields.
4562
4563         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4564         icall.
4565
4566         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4567         icall.
4568         
4569 2005-11-15  Ankit Jain  <jankit@novell.com>
4570             Raja R Harinath  <harinath@gmail.com>
4571
4572         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4573         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4574         new per-generic_container cache if the cached MonoType's context matches
4575         the current context.
4576           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4577         to the expected context.
4578           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4579
4580 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4581
4582         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4583         we changed the signature of an icall.
4584         * icall.c: Modify to mono_double_ParseImpl return true/false 
4585         depending on the success, instead of throwing the exception. This will
4586         help us in Double.TryParse methods.
4587         
4588 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4589
4590         * marshal.c (emit_marshal_object): Throw an exception when
4591         marshalling 'object' instead of crashing. Fixes #76696.
4592
4593 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4594
4595         * class-internals.h: Add prototype for mono_type_get_full_name ().
4596
4597 2005-11-11  Dick Porter  <dick@ximian.com>
4598
4599         * threads.c (mono_thread_manage): Make sure the main thread has
4600         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4601
4602 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4603
4604         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4605         console about the missing type.
4606         (mono_loader_set_error_method_load): Ditto.
4607
4608 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4609
4610         * mono-config.c (mono_get_config_dir): Set the system defaults if
4611         none is specified.
4612
4613         * assembly.c (mono_set_dirs): New API entry point to set the
4614         assembly and the config directory in one call
4615
4616 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4617
4618         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4619         the ftnptr was created from a delegate in a domain other than the
4620         current domain. Fixes #75377.
4621
4622         * exception.h exception.c: Add mono_get_exception_not_supported ().
4623
4624 2005-11-08  Martin Baulig  <martin@ximian.com>
4625
4626         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4627
4628 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4629
4630         * security-manager.h: Added definitions to deal with strongname key 
4631         pairs bigger (and smaller) than 1024 bits.
4632         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4633         adjust wrt the public key length being used.
4634
4635 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4636
4637         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4638           Windows build (r51396-51397).
4639
4640 2005-11-03  Martin Baulig  <martin@ximian.com>
4641
4642         * class.c (mono_class_setup_vtable_general): Also add generic
4643         methods to the vtable; fixes #76581.
4644
4645 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4646
4647         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4648         sure that we lookup GetString method from the System.Text.Encoding
4649         class, not the derived class or we get an empty method.
4650
4651         Fixed class #76612.
4652
4653 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4654
4655         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4656         if it has been previously set (embedders). 
4657
4658         Make mono_set_rootdir available also on Unix.
4659
4660 005-10-24  Robert Jordan  <robertj@gmx.net>
4661
4662         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4663
4664 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4665
4666         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4667         only calls which are made to native code use this flag.
4668
4669         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4670
4671 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4672
4673         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4674         Add support for FieldBuilders.
4675
4676 2005-10-29  Martin Baulig  <martin@ximian.com>
4677
4678         * mono-debug.c
4679         (mono_debug_using_mono_debugger): New public method; returns
4680         whether we're running inside the debugger.
4681
4682 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4683
4684         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4685         for Method/Constructor/FieldBuilders.
4686
4687 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4688
4689         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4690         and fields as well.
4691
4692 2005-10-26  Martin Baulig  <martin@ximian.com>
4693
4694         * mono-debug-debugger.c
4695         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4696
4697 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4698
4699         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4700         integer to isspace.
4701
4702 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4703
4704         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4705         when passing valuetypes byref. Fixes #76502.
4706
4707 2005-10-19  Jackson Harper  <jackson@ximian.com>
4708
4709         * profiler.c: Don't put a . in front of types that are not in a
4710         namespace.
4711
4712 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4713
4714         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4715
4716 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4717
4718         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4719         #76436.
4720         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4721
4722 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4723
4724         * assembly.c metadata-internals.h icall.c: Define an additional
4725         parameter for mono_assembly_name_parse_full, so we can avoid creating
4726         S.R.AssemblyName.Version when no version info wasn't passed.
4727         
4728 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4729
4730         * class.c (mono_type_get_full_name): Reimplement method that was
4731         removed. 
4732
4733         * image.c: Some docs
4734
4735 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4736
4737         * profiler.c (output_newobj_profile): Fix printing of Total memory
4738         on x86.
4739
4740 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4741
4742         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4743
4744 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4745
4746         * threads.c: remove debug output.
4747
4748 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4749
4750         * threads.c (mono_thread_manage): Fix crashes if more than 64
4751         threads need to be aborted. Hopefully fixes #75899.
4752
4753         * assembly.c (mono_stringify_assembly_name): New helper function.
4754
4755         * class.c: Use mono_stringify_assembly_name instead of the similar
4756         static function.
4757
4758         * assembly.h assembly.c: Add support for calling a postload search 
4759         hook if an assembly cannot be loaded.
4760
4761         * appdomain.c: Register new search hooks which call the AssemblyResolve
4762         events in AppDomain. Fixes #75231
4763
4764 2005-10-07  Martin Baulig  <martin@ximian.com>
4765
4766         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4767         methods without debug info.
4768
4769 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4770
4771         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4772         wrappers.
4773
4774 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4775
4776         * file-io.c: now that we return symlinks, use lstat and, when the file
4777         is a symbolic link, stat, to get the file attributes. Also avoid the
4778         conversion to/from utf16/external.
4779
4780 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4781
4782         * class.c (mono_class_layout_fields): Compute klass->has_references
4783         correctly if an embedded valuetype is not yet initialized. Fixes
4784         #76331.
4785
4786 2005-10-04  Martin Baulig  <martin@ximian.com>
4787
4788         * metadata.c
4789         (mono_metadata_load_generic_param_constraints): New public
4790         function; splitted the constraints loading out from
4791         mono_metadata_load_generic_params().
4792
4793         * class.c (mono_class_create_from_typedef): Call
4794         mono_metadata_load_generic_param_constraints() after setting up
4795         the type and creating our parent; fixes #75329.
4796
4797 2005-10-04  Martin Baulig  <martin@ximian.com>
4798
4799         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4800         non-dynamic parent classes.
4801
4802 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4803
4804         * file-io.c : win32 build fix (ETXTBSY seems not found).
4805
4806 2005-10-04  Martin Baulig  <martin@ximian.com>
4807
4808         * reflection.c
4809         (mono_image_get_methodspec_token): Make the cache actually work;
4810         fixes #75974.
4811
4812 2005-10-04  Martin Baulig  <martin@ximian.com>
4813
4814         * class.c (mono_class_name_from_token): Removed the unneccessary
4815         `MonoGenericContext *' argument.
4816
4817 2005-10-04  Martin Baulig  <martin@ximian.com>
4818
4819         * loader.c
4820         (method_from_methodspec): Make the caching work again; fixes the
4821         performance regression from #76262.
4822
4823 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4824
4825         * file-io.c:
4826         * file-io.h:
4827         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4828         GetFileSystemEntries that performs the same work but without going
4829         into io-layer, locking, etc.
4830
4831 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4832
4833         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4834         ThreadState_Stopped as well. Fixes #76047.
4835
4836 2005-09-29  Martin Baulig  <martin@ximian.com>
4837
4838         * class.c
4839         (inflate_generic_context): If the new context has a `gmethod', set
4840         its `container' that that gmethod's `container'.
4841
4842         * metadata.c
4843         (mono_metadata_parse_generic_param): Simplify things;
4844         `generic_container = generic_context->container;' is just fine.
4845
4846         * loader.c (method_from_methodspec): Code cleanups.
4847
4848 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4849
4850         * decimal.c: fix warning (and let gcc generate correct
4851         code on ARM with optimizations).
4852
4853 2005-09-28  Martin Baulig  <martin@ximian.com>
4854
4855         * loader.c
4856         (method_from_memberref): Added `MonoGenericContext *class_context'
4857         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4858         (method_from_methodspec): If we're a memberref, use the enclosing
4859         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4860
4861 2005-09-28  Martin Baulig  <martin@ximian.com>
4862
4863         * object.c (mono_runtime_invoke_array): Added support for
4864         MONO_TYPE_GENERICINST; fixes #75917.
4865
4866 2005-09-27  Martin Baulig  <martin@ximian.com>
4867
4868         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4869         `k->byval_arg.type' to determine the actual type.
4870
4871         * loader.c (method_from_methodspec): Removed some hacks.
4872
4873 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4874
4875         * class-internals.h (mono_field_is_deleted): Do the test for
4876         rtspecialname before we check the actual name of the field. This
4877         prevents us from dereferencing a pointer into the string table,
4878         saving us from accessing a few pages
4879
4880         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4881         macros. This will allow a deadlock debugger to easily be plugged
4882         in.
4883
4884 2005-09-27  Martin Baulig  <martin@ximian.com>
4885
4886         * loader.c (method_from_methodspec): Create a "signature"
4887         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4888
4889 2005-09-27  Martin Baulig  <martin@ximian.com>
4890
4891         * class.c
4892         (inflate_generic_class): Correctly set the new context's
4893         container.
4894
4895         * loader.c
4896         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4897         instead of a `MonoGenericContext *'.
4898         (mono_method_signature_full): Take a `MonoGenericContainer *'
4899         instead of a `MonoGenericContext *'.
4900
4901         * metadata.c
4902         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4903         instead of a `MonoGenericContext *'.
4904         (mono_metadata_parse_method_signature_full): Likewise.
4905
4906 2005-09-26  Martin Baulig  <martin@ximian.com>
4907
4908         * class.c
4909         (mono_class_from_generic_parameter): Set `klass->generic_container'
4910         (mono_class_from_generic_parameter): Likewise.
4911         (mono_bounded_array_class_get): We inherit the generic container
4912         from the element class.
4913
4914         * loader.c
4915         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4916         argument rather than computing it here.
4917         (method_from_memberref): Correctly set the generic context before
4918         parsing the signature.  Fixes #75681.
4919
4920 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4921
4922         * object.c (mono_class_has_special_static_fields): Fix warnings.
4923
4924 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4925
4926         * assembly.c: Add parse_public_key function, to
4927         par the public keys. Also added mono_assembly_name_parse_full,
4928         to define it the parsed key should be freed or not.
4929         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4930         to parse a long format assembly name.
4931         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4932         private, since calling it to preserve the key requires
4933         freeing it manually.
4934         
4935 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4936
4937         * locales.c : removed HAVE_ICU part.
4938
4939 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4940
4941         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4942         field_is_special_static if the klass has no special static fields.
4943
4944         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4945         (MonoCachedClassInfo): Likewise.
4946
4947         * object.c (mono_class_has_special_static_fields): New helper function.
4948
4949 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4950
4951         * class.c (mono_class_create_from_typedef): Don't call 
4952         interfaces_from_typedef_full for enums.
4953         (mono_class_create_from_typedef): Compute the base types of enums directly
4954         without calling mono_class_setup_fields ().
4955         (mono_class_find_enum_basetype): New helper function.
4956
4957         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4958         one place inside the string heap.
4959         
4960 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4961
4962         * class.c: locking fixes, code cleanups, some docs added.
4963         Allocate some data structures in the image mempool.
4964
4965 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4966
4967         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4968         the example code.
4969         
4970 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4971
4972         * class-internals.h, class.c, reflection.c: reduce memory taken by
4973         MonoClass.
4974
4975 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4976
4977         * metadata.c, metadata.h, loader.h: documentation updates, code and
4978         API cleanups.
4979
4980 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4981
4982         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4983         the example code.
4984
4985         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4986         page faults caused by the runtime while reading metadata.
4987
4988 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4989
4990         * socket-io.c: the field names were changed 3 months ago and no one
4991         realized until bug #76077 got filed!
4992
4993 2005-09-20  Martin Baulig  <martin@ximian.com>
4994
4995         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4996
4997 2005-09-20  Martin Baulig  <martin@ximian.com>
4998
4999         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5000         write the rank into the class entry.
5001
5002 2005-09-20  Martin Baulig  <martin@ximian.com>
5003
5004         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5005
5006 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5007
5008         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5009
5010         * icall.c (custom_attrs_defined_internal): New icall.
5011
5012         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5013         function.
5014         (mono_custom_attrs_construct_by_type): New helper function.
5015
5016 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5017
5018         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5019         terminate the resulting string. Fixes #76123.
5020
5021 2005-09-16  Martin Baulig  <martin@ximian.com>
5022
5023         * mono-debug.c
5024         (mono_debug_add_method): Ignore inflated methods for the moment.
5025
5026 2005-09-14  Martin Baulig  <martin@ximian.com>
5027
5028         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5029
5030 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5031
5032         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5033         return a success/failure indication.
5034         (mono_metadata_interfaces_from_typedef_full): Ditto.
5035         (get_constraints): Ditto.
5036
5037 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5038
5039         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5040         
5041         * marshal.c (emit_marshal_array): Add support for returning string
5042         arrays from delegates. Fixes #76063.
5043
5044         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5045
5046 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5047
5048         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5049         icall.
5050
5051 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5052
5053         * reflection.c icall.c: Fix after mono_get_exception_type_load
5054         signature change.
5055
5056         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5057         (mono_assembly_load_reference): Use the new helper.
5058
5059         * class-internals.h (MonoLoaderError): New structure containing 
5060         information about type loading errors.
5061
5062         * class-internals.h loader.c: Add APIs to store per-thread loader
5063         error information.
5064
5065         * loader.c class.c: Set the loader error if needed.
5066
5067         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5068
5069 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5070
5071         * decimal.c: fixed to handle the broken ARM fp format.
5072
5073 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5074
5075         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5076         broken.
5077
5078 2005-09-06  Martin Baulig  <martin@ximian.com>
5079
5080         * domain.c (supported_runtimes): Added v2.0.50727.
5081
5082 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5083
5084         * culture-info.h: reduce the size of some structures.
5085
5086 2005-09-05  Martin Baulig  <martin@ximian.com>
5087
5088         Reflect latest API changes in the August CTP.
5089
5090         * icall.c
5091         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5092         ("MonoType.HasGenericArguments"): Removed.
5093         ("MonoMethod.BindGenericParameters"): Renamed to
5094         "MakeGenericMethod".
5095         ("MethodBuilder.BindGenericParameters"): Renamed to
5096         "MakeGenericMethod".    
5097
5098 2005-09-05  Martin Baulig  <martin@ximian.com>
5099
5100         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5101
5102 2005-09-05  Martin Baulig  <martin@ximian.com>
5103
5104         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5105
5106         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5107         generic_container is non-NULL.
5108
5109 2005-09-05  Martin Baulig  <martin@ximian.com>
5110
5111         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5112
5113         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5114
5115 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5116
5117         * reflection.c (encode_locals,
5118         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5119         for large generic types.
5120
5121 2005-09-05  Martin Baulig  <martin@ximian.com>
5122
5123         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5124
5125         * class.c (mono_dup_array_type): New public method.
5126         (mono_metadata_signature_deep_dup): New public method.
5127         (dup_type): Correctly duplicate array and function types.
5128
5129 2005-09-05  Martin Baulig  <martin@ximian.com>
5130
5131         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5132
5133         * reflection.c (get_default_param_value_blobs): Handle generic types
5134         and generic methods.
5135
5136 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5137
5138         * class.c: Fixed error reporting (method/class were inversed) for 
5139         inheritance demands.
5140         * security-manager.c|h: Added the AppDomain when calling the managed
5141         System.Security.SecurityManager.InheritanceDemand method.
5142
5143 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5144
5145         * reflection.c (encode_marshal_blob): 'marshaltype' and
5146         'marshaltyperef' are alternate sources for the custom marshaler
5147         name.
5148
5149 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5150
5151         * class.c: fix creation of array classes with rank == 1
5152         (patch by Ankit Jain <jankit@novell.com>).
5153
5154 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5155
5156         * object.c: fix check for creating the bound data for arrays vs
5157         szarrays.
5158
5159 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5160
5161         * object.c: configuration file name is now based on the executable name,
5162         not the image name. Fixes bug #75931.
5163
5164 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5165
5166         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5167         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5168
5169 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5170
5171         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5172
5173 2005-08-24  Ankit Jain  <jankit@novell.com>
5174             Raja R Harinath  <rharinath@novell.com>
5175
5176         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5177           called by it recursively.
5178           (mono_class_init): Remove special case in pending_init handling, since it's
5179           superseded by the fix to mono_class_from_typeref.
5180
5181 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5182
5183         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5184         BROKEN_THREAD_START stuff.
5185
5186 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5187
5188         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5189         trampoline.
5190
5191         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5192         
5193         * object.c (mono_delegate_ctor): Replace the original function address with
5194         a delegate trampoline.
5195
5196 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5197
5198         * icall.c: add boolean argument to base64_to_byte_array and 
5199         InternalFromBase64String to control whether a whitespace-only string
5200         is allowed (or should casue a FormatException to be thrown). We need
5201         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5202         to match the MS behaviour in both profiles.
5203         * appdomain.c: Bump corlib version.
5204
5205 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5206
5207         This patch implements a big portion of publisher policy
5208         support, used to bind assembly versions and redirect
5209         one assembly from version A to version B.
5210
5211         * assembly.c:
5212         New GSList loaded_assembly_bindings, for storing the cached
5213         assembly bindings.
5214         (assembly_binding_maps_name): New static function for checking if a 
5215         assembly binding information maps an assembly name.
5216         (mono_assembly_binding_info_free): New function for freeing
5217         assembly binding information resources.
5218         (get_publisher_policy_info): New static function for retrieving 
5219         assembly binding information from a MonoImage.
5220         (compare_versions): New static function for comparing an assembly
5221         binding information data and the version of an assembly name.
5222         (check_policy_versions): New static function for checking if an
5223         assembly binding info mapping an assembly name is valid for it.
5224         (mono_assembly_load_publisher_policy): New static function for
5225         loading the 'policy.major.minor.MyAssembly' image for an assembly
5226         with an assembly name 'aname'.
5227         (mono_assembly_bind_version): New static function for updating
5228         assembly redirection.
5229         (mono_assembly_apply_binding): New static function for applying
5230         assembly binding.
5231         (search_binding_loaded): New static function for searching 
5232         loaded assembly binding infos in the cache domain.
5233         (mono_assembly_load_full): Don't apply assembly binding for
5234         reflection only assemblies.
5235
5236         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5237         which contains information about assembly binding. Also
5238         declare signature for mono_config_parse_publisher_policy ()
5239         function, used to retrieve pub policy info.
5240         
5241         * mono-config.c:
5242         (publisher_policy_start): New static function used to parse publisher 
5243         policy config files.
5244         (publisher_policy_parser): New static MonoParseHandler containing 
5245         the functions used when parsing config files.
5246         (mono_config_parse_publisher_policy): New function for parsing
5247         publisher policy files.
5248         
5249 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5250
5251         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5252
5253         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5254
5255         * object.c (mono_get_addr_from_ftnptr): New helper function.
5256
5257         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5258
5259         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5260
5261 2005-08-19  Dick Porter  <dick@ximian.com>
5262
5263         * threads.c, threads.h, appdomain.c, appdomain.h,
5264         profiler-private.h, monitor.c, object.c, object-internals.h,
5265         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5266         store the thread ID, so it can hold a 64 bit value if needed.
5267
5268 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5269
5270         * reflection.c (mono_reflection_create_dynamic_method): Store the
5271         handle class into the method references as well so ldtoken works in
5272         dynamic methods.
5273
5274         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5275         types.
5276
5277 2005-08-19  Ankit Jain <jankit@novell.com>
5278
5279         Fix #75847.
5280         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5281           here rather than using the method signature of a arbitrary function
5282           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5283           two arguments.
5284           Hack done with Harinath.
5285
5286 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5287
5288         * threadpool.c: disable printing stack traces when we get a exception
5289         in a threadpool thread. I need to do more testing to figure out which
5290         cases actually print this. Fixes bug #75828.
5291
5292 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5293
5294         * icall.c: there might be ignored whitespace after the last '='. This
5295         fixes length computation and bug #75840.
5296
5297 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5298
5299         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5300         well. Fixes #75809.
5301
5302         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5303         #75784.
5304         
5305         * reflection.c (create_custom_attr_data): Ditto.
5306
5307 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5308
5309         * locales.c, culture-info.h : removed RegionLCIDMap.
5310         * culture-info-tables.h : regenerated.
5311
5312 2005-08-16  Martin Baulig  <martin@ximian.com>
5313
5314         * class.c (mono_type_get_name_recurse): Small fix.
5315
5316 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5317
5318         * locales.c : indentation fixie.
5319
5320 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5321
5322         * object-internals.h,
5323           locales.h,
5324           locales.c,
5325           culture-info.h,
5326           icall.c : added RegionInfo table support.
5327         * culture-info-table.h : regenerated for region support.
5328
5329 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5330
5331         * reflection.c (resolve_object): handle all kinds of MonoMethod
5332         including generic ones
5333
5334 2005-08-12  Ankit Jain <jankit@novell.com>
5335
5336         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5337           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5338
5339 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5340
5341         * process.c: Don't close a thread handle when it's NULL. This is a
5342         workaround for bug #75733.
5343
5344 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5345
5346         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5347
5348 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5349
5350         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5351
5352 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5353
5354         * threadpool.c: if a work item in the thread pool has a callback that
5355         catches a exception, don't propagate it after invoking the callback.
5356         Fixes bug #75336.
5357
5358 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5359
5360         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5361
5362         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5363
5364         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5365
5366         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5367
5368 2005-08-03  Ankit Jain  <jankit@novell.com>
5369
5370         Fix #75683.
5371         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5372           PInvoke calling convention is 0.
5373
5374 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5375
5376         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5377         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5378
5379 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5380
5381         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5382         to handle threads not started by the GC (patch by Michael Meeks
5383         <michael.meeks@novell.com>).
5384
5385 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5386
5387         * reflection.c: Make buffer used in emitting types larger for some
5388         big generic types (patch by Michal Moskal).
5389
5390 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5391
5392         * mono-debug.c: Fix some (not all) alignment problems.
5393
5394 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5395
5396         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5397         Invoke mono_image_load_from_data_full passing the refonly
5398         parameter.
5399
5400         * assembly.c
5401         (mono_assembly_open_from_bundle): Add the refonly argument, 
5402         in order to pass it to other methods it calls to.
5403         (do_mono_assembly_open): Add the refonly argument, in order 
5404         to pass it to other methods it calls to.
5405         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5406         the refonly parameter to it.
5407
5408         * image.c: Add loaded_images_refonly_hash and
5409         loaded_images_refonly_guid_hash to cache the reflection
5410         only loaded images.
5411         (mono_images_init): Initialize the hash tables used for
5412         caching the reflection only images.
5413         (load_modules): Invoke mono_image_open_full passing the refonly
5414         parameter to load the modules the correct way.
5415         (build_guid_table): Add the refonly argument, to re-build the 
5416         correct hash table.
5417         (do_mono_image_open): Added the refonly argument, in order to
5418         define it for the loaded image.
5419         (mono_image_loaded_full): New function, which receives an
5420         additional parameter to look for the image in the refonly or
5421         non-refonly section.
5422         (mono_image_loaded): Updated, using mono_image_loaded_full.
5423         (mono_image_loaded_by_guid_full): The same case that happens
5424         with mono_image_loaded_full.
5425         (mono_image_loaded_by_guid): Likewise.
5426         (register_image): Use the ref_only variable inside MonoImage
5427         to decide in which hash table store the current image.
5428         (mono_image_open_from_data_full): Rename
5429         mono_image_open_from_data to mono_image_open_from_data_full,
5430         adding the refonly argument, to define the ref_only variable 
5431         inside MonoImage.
5432         (mono_image_open_from_data): Return 
5433         mono_image_open_from_data_full.
5434         (mono_image_open_full): Rename mono_image_open to
5435         mono_image_open_full, receiving the new refonly argument,
5436         to pass it to inner methods.
5437         (mono_pe_file_open): Update this function, to open
5438         a MonoImage as a non-refonly image.
5439         (mono_image_close): Use the refonly variable inside
5440         MonoImage to remove the image from the correct caches.
5441
5442         * image.h: Add the signatures of mono_image_open_full,
5443         mono_image_open_from_data_full, mono_image_loaded_full,
5444         mono_image_loaded_by_guid_full.
5445
5446         * metadata-internals.h: Add the ref_only field to 
5447         MonoImage.
5448         
5449 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5450
5451         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
5452         Fix the last behavior, which used to load the assemblies and
5453         extract MonoReflectionAssemblyName information, instead of
5454         extract it from the metadata tables. Needed for Reflection
5455         Only assemblies.
5456         
5457 2005-07-29  Martin Baulig  <martin@ximian.com>
5458
5459         * mono-debug-debugger.c
5460         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
5461         not initialized.
5462
5463         * mono-debug.c
5464         (mono_debug_address_from_il_offset): Check whether we have
5465         debugging support before attempting to take the lock.
5466         (mono_debug_source_location_from_address): Likewise.
5467         (mono_debug_source_location_from_il_offset): Likewise.
5468         (mono_debug_il_offset_from_address): Likewise.
5469         (mono_debug_address_from_il_offset): Likewise.
5470
5471 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
5472
5473         * class.c (mono_class_from_name_case): Add support for dynamic images.
5474         Fixes #75650.
5475
5476         * object.c (mono_class_compute_gc_descriptor): Add a workaround
5477         for #75479.
5478
5479 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5480         
5481         * reflection.c (mono_method_get_object): Fix warning.
5482
5483 2005-07-28  Martin Baulig  <martin@ximian.com>
5484
5485         * mono-debug.c
5486         (mono_debug_add_wrapper): Also write the wrapper type.
5487
5488 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5489
5490         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
5491         
5492         * class.c (mono_class_init): Avoid reading nested classes if the AOT
5493         data indicates the class has none.
5494
5495 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
5496
5497         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
5498         loader lock with the debugger lock. Prevents deadlocks for beagle.
5499
5500         Beagle can now run on an smp box for a weekend without any
5501         issues. Woohoo!
5502
5503 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
5504
5505         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
5506         in a module. Fixes #75629.
5507
5508 2005-07-26  Martin Baulig  <martin@ximian.com>
5509
5510         * mono-debug.c (mono_debug_add_wrapper): New static method.
5511         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
5512         interncall or a wrapper.
5513
5514         * mono-debug.h (MonoDebugWrapperData): New public typedef.
5515         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
5516         (MONO_DEBUGGER_VERSION): Bump to 51.
5517
5518         * mono-debug-debugger.c
5519         (mono_debugger_add_type): Removed this empty function.
5520         (mono_debugger_add_method): Likewise.
5521
5522 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5523
5524         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
5525         before accessing method->slot.
5526
5527 2005-07-21  Jb Evain  <jbevain@gmail.com>
5528
5529         * reflection.c (method_encode_clauses/class): Handle filters clauses.
5530         Fixes #75010.
5531
5532 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5533
5534         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
5535         #75587.
5536
5537 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5538
5539         * image.h image.c: Add mono_image_get_guid () API function.
5540
5541 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
5542
5543         There were issues when multiple threads tried to load
5544         assemblies. A deadlock was created between assemblies_mutex and
5545         mono_domain_assemblies_lock. This fixes the issue by making the
5546         assembly ref counting be lock free. See bug 75586.
5547         
5548         * image.c (mono_image_close): The add ref function here was using
5549         Interlocked operations while the unref was using a mutex and a
5550         --. I don't think this was ever a bug that would be exposed in a
5551         non-pendantic way (ie, by an embedder doing a ref on one thread
5552         and an unref on another), but for the sake of correctness, this is
5553         now Interlocked.
5554
5555         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5556         (mono_assembly_load_reference): Call mono_assembly_addref rather
5557         than touching the refcount ourselves.
5558         (mono_assembly_close): Use InterlockedDecrement to unref the
5559         assembly. Don't acquire the lock unless it is actually needed.
5560
5561 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5562
5563         * class.c (mono_class_layout_fields): Fix calculation of has_references
5564         for generic types.
5565
5566 2005-07-12  Martin Baulig  <martin@ximian.com>
5567
5568         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5569
5570         * metadata.c
5571         (mono_type_hash): Provide better hashing for generic instances.
5572         (mono_generic_inst_hash): Improve hashing.
5573         (mono_generic_class_hash): Likewise.
5574
5575         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5576         generic instances.
5577
5578 2005-07-12  Martin Baulig  <martin@ximian.com>
5579
5580         * reflection.c (mono_reflection_create_runtime_class): Remove the
5581         hack for generic type definitions and non-`Run' assemblies.
5582         (mono_reflection_bind_generic_parameters): Also use
5583         `klass->wastypebuilder' to check for TypeBuilders.
5584
5585 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5586
5587         * class.c (mono_class_layout_fields): Fix calculation of has_references
5588         for generic types.
5589
5590         * class.c (inflate_generic_class): Fix a leak.
5591         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5592         for generic types.
5593
5594 2005-07-11  Martin Baulig  <martin@ximian.com>
5595
5596         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5597         on error.
5598
5599 2005-07-11  Martin Baulig  <martin@ximian.com>
5600
5601         * loader.c (find_method): Also lookup in
5602         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5603
5604 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5605
5606         * appdomain.c (mono_domain_unload): Don't free the error message
5607         before passing it to mono_get_exception_...
5608
5609         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5610         
5611 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5612
5613         * threads.c: try to better guess an available RT signal (bug #75387).
5614
5615 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5616
5617         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5618         and CACHE_OBJECT.
5619
5620 2005-07-07  Martin Baulig  <martin@ximian.com>
5621
5622         * class.c (mono_type_get_name_full): Return NULL for
5623         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5624         fixes #75408.
5625
5626 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5627
5628         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5629         exit the appdomain as well being aborted.
5630
5631         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5632         change back to the root domain after calling managed code. This enables
5633         appdomains using threadpools to be unloaded.
5634
5635 2005-07-07  Martin Baulig  <martin@ximian.com>
5636
5637         * class-internals.h
5638         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5639         into `MonoDynamicGenericClass' since we only need it for dynamic
5640         types.
5641
5642         * reflection.c (mono_class_bind_generic_parameters): We don't need
5643         to compute the `parent' here.
5644
5645 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5646
5647         * culture-info-table.h : regenerated.
5648
5649 2005-07-06  Martin Baulig  <martin@ximian.com>
5650
5651         * icall.c
5652         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5653
5654         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5655
5656 2005-07-06  Martin Baulig  <martin@ximian.com>
5657
5658         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5659         we're doing a signature-only comparision; fixes #74945.
5660
5661 2005-07-06  Martin Baulig  <martin@ximian.com>
5662
5663         * class-internals.h (MonoGenericClass): Moved some things out into
5664         a new `MonoInflatedGenericClass' type.  
5665         (MonoInflatedGenericClass): New type; the `klass' of a
5666         `MonoGenericClass' is now computed lazyly in
5667         mono_get_inflated_generic_class().      
5668
5669         * class.c (mono_get_inflated_generic_class): New public function.
5670         (mono_class_inflate_generic_method): Removed the unused
5671         `MonoClass *' argument.
5672         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5673         all the methods.
5674         (mono_class_create_generic): Make this static and merge it with
5675         mono_class_create_generic_2(); we're now called automatically from
5676         mono_get_inflated_generic_class().
5677
5678         * loader.c (mono_method_signature): Call
5679         mono_get_inflated_method() here.
5680
5681 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5682
5683         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5684         type of fields with RVA.
5685
5686         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5687         for this pseudo class.
5688         (my_mono_class_from_generic_parameter): Likewise.
5689         (mono_class_init): Allow interfaces to have cctors.
5690
5691 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5692
5693         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5694         lazily for AOT methods.
5695
5696 2005-07-05  Martin Baulig  <martin@ximian.com>
5697
5698         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5699         returns FALSE for a successful match, not TRUE.
5700
5701 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5702
5703         * loader.c (mono_method_get_index): Optimize this a bit.
5704
5705 2005-07-04  Martin Baulig  <martin@ximian.com>
5706
5707         * class.c
5708         (class_compute_field_layout): Move the check for generic type
5709         definitions into mono_class_layout_fields().  Fixes #74684.
5710         (mono_class_from_generic_parameter): Correctly compute
5711         `klass->parent'; fixes #75457.
5712
5713         * reflection.c (register_assembly, register_module): Make sure
5714         `domain->rejobject_hash' is already created.
5715
5716 2005-07-02  Martin Baulig  <martin@ximian.com>
5717
5718         * class-internals.h
5719         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5720         `MonoDynamicGenericClass'.      
5721
5722 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5723
5724         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5725         returned by a field getter is null, since null is a valid value.
5726
5727 2005-07-01  Martin Baulig  <martin@ximian.com>
5728
5729         * reflection.c (mono_reflection_generic_class_initialize): Update
5730         the `dgclass->fields [i].parent' to the correct class.
5731         (mono_image_get_fieldref_token): Use the declaring type, not the
5732         reflected type.
5733
5734 2005-07-01  Martin Baulig  <martin@ximian.com>
5735
5736         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5737
5738 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5739
5740         * threads.c (thread_cleanup): assert that thread != NULL
5741         (wait_for_tids_or_state_change): We were using the wrong variable
5742         when accessing wait->threads. `i' was always out of the bounds of
5743         the array.
5744
5745 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5746
5747         * loader.c: map user32 and kernel32 to libMonoSupportW
5748
5749 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5750
5751         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5752
5753 2005-06-28  Martin Baulig  <martin@ximian.com>
5754
5755         * loader.c (method_from_methodspec): Fix #75334.
5756
5757 2005-06-28  Martin Baulig  <martin@ximian.com>
5758
5759         Fix #74953 - Arrays now implement the generic IList<T> interface
5760         on the 2.0 platform.
5761
5762         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5763
5764         * reflection.c (mono_class_bind_generic_parameters): New public
5765         function; similar to mono_reflection_bind_generic_parameters(),
5766         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5767
5768         * domain.c (mono_init_internal): Try to initialize.
5769         `mono_defaults.generic_array_class' here; this'll only succeed if
5770         we're using the 2.0 corlib.
5771
5772         * icall.c
5773         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5774         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5775         (mono_lookup_internal_call): Added support for nested classes.
5776
5777         * loader.c
5778         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5779         we're an interncall and have generic arguments.
5780
5781         * class.c
5782         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5783         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5784         instance of System.Array.InternalArray<T> for arrays, so they
5785         implement the generic IList<T> interface.
5786
5787 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5788
5789         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5790         (chastamar@yahoo.com). Fixes #75374.    
5791
5792 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5793
5794         * culture-info-table.h: regenerated.
5795
5796 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5797
5798         * icall.c: handle spaces correctly for base64 strings.
5799
5800 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5801
5802         * *.c: Kill some warnings.
5803
5804 2005-06-23  Duncan Mak  <duncan@novell.com>
5805
5806         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5807         that this builds on Solaris 10 (x86).
5808
5809 2005-06-23  Martin Baulig  <martin@ximian.com>
5810
5811         * class.c
5812         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5813         generic type definitions.
5814
5815 2005-06-23  Martin Baulig  <martin@ximian.com>
5816
5817         Fix #75331.
5818
5819         * metadata.c (mono_class_get_overrides): Renamed to
5820         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5821         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5822         pass it to mono_get_method_full().
5823
5824 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5825
5826         * reflection.c (mono_reflection_create_runtime_class): take the
5827         mono_domain_lock in this method. Prevents deadlocks
5828
5829 2005-06-22  Martin Baulig  <martin@ximian.com>
5830
5831         * loader.c (method_from_methodspec): Fix #75330.
5832
5833 2005-06-22  Martin Baulig  <martin@ximian.com>
5834
5835         * reflection.c (type_get_qualified_name): Use
5836         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5837         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5838         argument; use it if we don't have an assembly name.
5839
5840 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5841
5842         * object.c: In mono_message_init, set "copy out" flag for in
5843         parameters with the [Out] flag.
5844
5845 2005-06-21  Martin Baulig  <martin@ximian.com>
5846
5847         * class.c
5848         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5849         and MONO_TYPE_PTR.
5850
5851 2005-06-21  Martin Baulig  <martin@ximian.com>
5852
5853         * class.c (mono_class_init): Don't initialize `class->fields' for
5854         generic instances since they're initialized again in
5855         compute_field_layout(). 
5856         (compute_field_layout): Set the field's `generic_info' here; fix
5857         #75320. 
5858
5859 2005-06-21  Martin Baulig  <martin@ximian.com>
5860
5861         * class-internals.h
5862         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5863
5864         * metadata.c (mono_metadata_generic_method_equal): Also
5865         distinguish the `generic_class'; fixes #75334.
5866
5867 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5868
5869         * domain.c:
5870         * appdomain.c:
5871         * domain-internals.h:
5872         * reflection.c: 'domain_assemblies' field is now protected by its own
5873         lock. Don't call into managed code to run the AssemblyLoad event if we
5874         now there are no registered delegates for it.
5875
5876 2005-06-20  Martin Baulig  <martin@ximian.com>
5877
5878         * class.c (mono_class_is_assignable_from): Use a custom version of
5879         mono_class_has_parent() to make things work for generic instances;
5880         fix #75300.
5881
5882 2005-06-20  Martin Baulig  <martin@ximian.com>
5883
5884         * loader.c (method_from_methodspec): Apply a patch from
5885         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5886
5887 2005-06-20  Martin Baulig  <martin@ximian.com>
5888
5889         * class.c (mono_class_init): Reverted Zoltan's last change; it
5890         breaks generics.
5891
5892 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5893
5894         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5895
5896 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5897
5898         * socket-io.c: fix the index in the socket array for writable/error
5899         sockets. Fixes bug #75306.
5900
5901 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5902
5903         * class.c (mono_class_init): Allow interfaces to have static ctors.
5904
5905 2005-06-17  Martin Baulig  <martin@ximian.com>
5906
5907         * loader.c (method_from_methodspec): Use `context->container' when
5908         parsing the `gmethod->inst'.
5909
5910 2005-06-17  Martin Baulig  <martin@ximian.com>
5911
5912         * class.c (mono_type_get_name_recurse): Don't add the assembly
5913         name for type arguments.
5914
5915 2005-06-15  Martin Baulig  <martin@ximian.com>
5916
5917         * reflection.c (mono_image_get_inflated_method_token): Encode
5918         correct klass; fixes #75260.
5919
5920 2005-06-13 Michal Moskal <malekith@nemerle.org>
5921
5922         * icall.c: Make GetCorrespondingMethod/Constructor take
5923         MonoReflectionMethod method not MonoMethod. Removed
5924         MonoType.GetCorrespondingField, and make
5925         MonoGenericType.GetCorrespondingField take name not
5926         MonoClassField.
5927
5928 2005-06-13  Michal Moskal <malekith@nemerle.org>
5929
5930         * reflection.c (field_encode_signature, encode_locals):
5931          Make sizes of buffers for types larger (for big generic types).
5932          (create_generic_typespec,
5933          mono_reflection_sighelper_get_signature_local,
5934          mono_reflection_sighelper_get_signature_field):
5935          Add asserts for too small buffers.
5936
5937 2005-06-15  Martin Baulig  <martin@ximian.com>
5938
5939         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5940         if our parent is not a dynamic type.
5941
5942 2005-06-15  Martin Baulig  <martin@ximian.com>
5943
5944         * class-internals.h (MonoTypeNameFormat): New enum.
5945
5946         * class.c
5947         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5948         (mono_type_get_full_name): Removed.
5949         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5950         argument instead of the boolean's.
5951
5952         * icall.c (ves_icall_System_MonoType_getFullName):
5953         Added `gboolean assembly_qualified'.    
5954
5955         * reflection.h
5956         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5957
5958         * reflection.c (mono_reflection_parse_type): Parse the new type
5959         name format.
5960
5961 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5962
5963         * icall.c: no need to convert from utf16 to utf8 and then back again
5964         after the call to GetLogicalDrives.
5965
5966 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5967
5968         * icall.c: frombase64. Fix problems exposed by new tests.
5969
5970 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5971
5972         * icall.c: added internal calls for converting char [] and strings in
5973         base64 into byte [].
5974
5975 2005-06-10  Martin Baulig  <martin@ximian.com>
5976
5977         * class.c (mono_class_create_generic_2): Read the nested classes
5978         from the metadata rather than from `gklass->nested_classes' since
5979         `gklass' might not be initialized yet.
5980
5981 2005-06-09  Duncan Mak  <duncan@novell.com>
5982
5983         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5984         all public headers. Fixes #74919.
5985
5986 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5987
5988         * domain.c: The key for proxy_vtable_hash is now a pointer
5989         array. Added new GHashFunc and GCompareFunc functions for this.
5990
5991         * class.h: The list of interfaces in MonoRemoteClass is known in
5992         advance and can't grow (we create a new MonoRemoteClass if needed),
5993         so now the interface array can be allocated together with
5994         MonoRemoteClass.
5995         
5996         * object.c: Added a new method create_remote_class_key.
5997         Fixed mono_remote_class so it does not depend on
5998         mono_upgrade_remote_class.
5999         Removed extend_interface_array.
6000         Added new method clone_remote_class(), which makes a copy of a remote
6001         class and adds a new interface or class to it.
6002         mono_upgrade_remote_class() now creates a new remote class (or gets
6003         it from the cache) if an vtable upgrade is needed. In this way
6004         we make sure that other objects sharing the same remote class
6005         don't get the new vtable with unwanted interfaces.
6006         
6007         * object-internals.h:
6008         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6009         
6010         * marshal.c: Track changes in mono_upgrade_remote_class().
6011
6012 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6013         * icall.c: Add runtime methods for obtaining members of inflated
6014         class, which were created from supplied non-inflated members. It
6015         is used in internal Get{Method,Constructor,Field} methods in
6016         System.Type
6017
6018 2005-06-09  Martin Baulig  <martin@ximian.com>
6019
6020         * reflection.c
6021         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6022
6023 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6024         * reflection.c (mono_image_basic_init): Define
6025         Version in MonoDynamicAssembly. 
6026         
6027 2005-06-08  Martin Baulig  <martin@ximian.com>
6028
6029         Fix #75136.
6030
6031         * loader.c
6032         (mono_method_signature_full): New public method; takes a
6033         `MonoGenericContext *'.
6034         (find_method): Use mono_method_signature_full() and pass the
6035         klass'es context to it.
6036
6037         * class.c (mono_class_is_inflated_method): Use
6038         mono_method_signature_full() and pass the context to it.
6039
6040 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6041
6042         * object.c: add proper locking in mono_remote_class_vtable(),
6043         fixes possible memory corruption.
6044
6045 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6046
6047         * marshal.c (mono_remoting_marshal_init): set
6048         initialized after initialization.
6049
6050 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6051
6052         * locales.c : hush.
6053
6054 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6055
6056         * object.c (extend_interface_array): fix really silly
6057         memory corrupting / comparison bug.
6058
6059 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6060
6061         * reflection.c: Functions added to support the creation
6062         of CustomAttributeData, which includes Attribute data
6063         used by ReflectionOnly methods.
6064
6065         * reflection.h:  mono_reflection_get_custom_attrs_data and
6066          mono_custom_attrs_data_construct added (functions exposed).
6067
6068          * icall.c: Added mono_reflection_get_custom_attrs_data
6069          as icall.
6070         
6071 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6072
6073         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6074         lupus's request.
6075
6076 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6079
6080         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6081         dynamic DllImportAttribute.
6082
6083         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6084         dynamic DllImportAttribute.
6085
6086         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6087         Fixes #75162.
6088
6089 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6090
6091         * threads.c: avoid segfault when an unstarted thread is aborted.
6092
6093 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6094
6095         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6096         Returns the name and version of the runtime for reporting.
6097
6098 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6099
6100         * appdomain.c: bump corlib version.
6101         * object-internals.h: new field in MonoReflectionAssembly.
6102
6103 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6104
6105         * object-internals.h: Carlos forgot to add this field.
6106
6107 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6108
6109         * icall.c: Added create_version to create instances
6110         of Version of MonoReflectionAssemblyName. This change helps
6111         the AssemblyName tests to keep running fine.
6112         
6113 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6114   
6115         * object.c (mono_method_return_message_restore): A somehow less
6116         intrusive fix for #75138.
6117
6118 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6119
6120         * object.c (mono_method_return_message_restore): Fix computation
6121         of expected number of out args.
6122
6123 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6124
6125         * reflection.c (mono_image_get_method_info): Fix the case when the
6126         charset is empty.
6127
6128 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6129
6130         * object.c: Added missing null check in
6131           mono_method_return_message_restore.
6132
6133 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6134
6135         * reflection.c (mono_image_get_method_info): Handle the case when
6136         dllentry is empty.
6137
6138 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6139
6140         * object.c: When creating the vtable for a proxy, take into account
6141         all inherited interfaces, not only the ones registered in
6142         iclass->interfaces. This fixs bug #74996.
6143         Also, in mono_method_return_message_restore, verify that the array
6144         of out args has the expected lengh.
6145
6146 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6147
6148         * socket-io.c: update the timeout in Poll when the call is interrupte.
6149
6150 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6151
6152         * socket-io.c: support abort/suspend in Select_internal after last
6153         change.
6154
6155 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6156
6157         * threadpool.c: remove warning.
6158
6159 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6160
6161         * icall.c:
6162         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6163         removing the 1024 limit from select(). Runtime part of the fix for
6164         bug #71203.
6165
6166 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6167
6168         * socket-io.c: when resolving the addresses for the same
6169         host returned by gethostname(), get the local IPs from the interface
6170         list. Loopback addresses are discarded if the are interfaces up with
6171         non-loopback ones. Fixes bug #63265.
6172
6173 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6174
6175         * appdomain.c, verify.c, object-internals.h, reflection.c:
6176         bumped corlib number to 36, and added new extra_flags field
6177         to ReflectionMethodBuilder and friends.  Fixes #75060.
6178
6179 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6180
6181         * gc.c: register a new weak link only if the object is non-null
6182         (fixes bug#75047).
6183
6184 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6185
6186         * culture-info.h : short time pattern too.
6187
6188 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6189
6190         * culture-info.h : expand long time pattern string length.
6191
6192 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6193
6194         * culture-info-table.h : update (more French date format; #72788).
6195
6196 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6197
6198         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6199         the method is static. Fixes #75029.
6200
6201 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6202
6203         * reflection.c: Update the table_idx field of method builders after
6204         saving the module, since it can change. This is a workaround for
6205         bug #74914. 
6206
6207 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6208
6209         * culture-info-table.h : update (additional French date format).
6210
6211 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6212
6213         * icall.c (ves_icall_type_Equals): Revert last change.
6214         
6215         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6216
6217         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6218
6219 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6220
6221         * class-internals.h: Added executioncontext_class field to 
6222         MonoDefaults structure.
6223         * domain.c: Cache System.Threading.ExecutionContext class in 
6224         mono_defaults.
6225         * object.c: Capture the ExecutionContext for asynchroneous calls in
6226          mono_async_result_new.
6227         * object-internals.h: Added execution_context and original_context 
6228         fields to MonoAsyncResult. Added execution_context to MonoThread.
6229         * security-manager.c|.h: Added mono_get_context_capture_method to 
6230         return the capture method (if required by the security manager or by
6231         the framework version used).
6232         * threadpool.c: Apply capture (if present) ExecutionContext in 
6233         mono_async_invoke and revert to original context after it completes.
6234
6235 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6236
6237         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6238
6239 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6240
6241         * culture-info-table.h : zh-CHT related workaround.
6242
6243 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6244
6245         * marshal.c (emit_marshal_custom): Add some error checking and call the
6246         methods in the ICustomMarshaler interface. Fixes #74875.
6247         
6248         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6249         native->managed wrappers.
6250
6251 2005-05-12  Martin Baulig  <martin@ximian.com>
6252
6253         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6254         here and use the loader lock.
6255
6256         * mono-debug.c: Properly lock when the debugger is not attached.
6257         (mono_debug_init): Release the initial lock if we're not running
6258         in the debugger.
6259
6260 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6261
6262         * marshal.c (emit_marshal_custom): Pass through NULL values without
6263         calling the custom marshalling routines.
6264
6265         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6266         conversion in structures. Fixes #74882.
6267
6268 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6269
6270         * culture-info-table.h : zh-* cultures were missing.
6271
6272 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6273
6274         * threads.c: Added a new event background_change_event which is signaled
6275         when a thread changes its background mode.
6276         Moved here several checks previously done in managed code. The checks
6277         require the thread lock, and using the thread lock in managed code
6278         can result in deadlocks.
6279         Merged Start_internal and Thread_internal into a single method. Now 
6280         Thread_internal does all work of creating and starting a thread.
6281         Added icalls for setting and getting the state of the object. Moved from
6282         managed code to avoid locking there.
6283         Added wait_for_tids_or_state_change() which is called instad of
6284         wait_for_tids when waiting for non-backround threads to end. This method
6285         will return if one of the threads ends or the background_change_event
6286         is signaled.
6287         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6288         the background mode. This method signals the background_change_event
6289         event.
6290         * icall.c:
6291         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6292         removed Start_internal.
6293         
6294 2005-05-11  Martin Baulig  <martin@ximian.com>
6295
6296         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6297         to order of some fields to get proper alignment on 64-bit machines.
6298
6299 2005-05-11  Martin Baulig  <martin@ximian.com>
6300
6301         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6302         changes as they're broken and completely fuck up the debugger.
6303
6304         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6305
6306 2005-05-10  Martin Baulig  <martin@ximian.com>
6307
6308         * reflection.c (mono_reflection_generic_class_initialize): Don't
6309         call mono_class_setup_parent() here.
6310
6311 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6312
6313         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6314         send/receive timeout use an integer in milliseconds. We were using a
6315         struct timeval.
6316
6317 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6318
6319         * locales.c:
6320         (internal_get_cultures): reserve the first slot of the array for the
6321         InvariantCulture, which will be filled in managed code.
6322
6323 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6324
6325         * reflection.c (mono_image_fill_module_table): Initialize the
6326         GENERATION field as well.
6327
6328 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6329
6330         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6331         Monitor.Enter on the object.
6332
6333 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6334
6335         * threads.c: Enable the wait for running threads when exiting.
6336         * icall.c: Suspend all threads before exiting.
6337
6338 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6339
6340         * assembly.c (mono_assembly_load_reference): Fix warning.
6341
6342 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6343
6344         * threadpool.c: changed the default number of threads per cpu. From now
6345         on, the default will be 20 + (5 * number of cpus) instead of 50.
6346
6347 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6348
6349         * loader.c (mono_method_get_signature_full): Add locking here.
6350
6351 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6352
6353         * appdomain.c: Moved methods for parsing and freeing assembly
6354         names to assembly.c.
6355         * assembly.c, domain-internals.h: Created public methods for parsing
6356         assembly names. Fixed mono_assembly_load_with_partial_name:
6357         it now finds the best match, taking into account the version,
6358         token and culture specified in the partial name. Also return
6359         the latest version if no version information is specified.
6360
6361 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6362
6363         * threadpool.c: replace check for SocketAsyncCall class.
6364
6365 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6366
6367         * threadpool-internals.h:
6368         * Makefile.am: added threadpool-internals.h
6369
6370         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6371         that happen in threadpool threads (tested on MS).
6372         (mono_thread_pool_remove_socket): new function that dispatch any pending
6373         AIO call on a socket that is closing. By now only epoll really needs it,
6374         as select/poll wake up when the socket closes.
6375
6376
6377         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6378
6379 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6380
6381         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6382
6383 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6384
6385         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6386
6387 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6388
6389         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6390         has an abort request, convert it into a suspend request.
6391
6392 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6393
6394         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6395         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6396         is not supported yet.
6397
6398 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6399
6400         * image.c: register assemblies loaded from data (bundles) in the loaded
6401         assemblies hash. Fixes bug #74772.
6402
6403 2005-04-29  Martin Baulig  <martin@ximian.com>
6404
6405         * class.c (mono_type_get_name_recurse): Update to the new naming
6406         schema from the latest .NET 2.x beta2.
6407         (mono_class_setup_vtable_general): If we're a generic instance,
6408         copy the vtable from our generic type definition and inflate all
6409         the methods in it.
6410
6411         * loader.c (find_method): Update to the new naming schema from the
6412         latest .NET 2.x beta2.
6413
6414 2005-04-29  Raja R Harinath  <harinath@gmail.com>
6415
6416         * class.c (mono_class_init): Add a mono_loader_unlock to the
6417         #74734 fix.
6418
6419 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
6420
6421         * icall.c (ves_icall_System_Environment_Exit): Remove the 
6422         suspend_all_other_threads () call for the time being, since it can hang.
6423
6424         * threads.c (mono_thread_manage): Similarly, disable the waiting for
6425         the background threads to exit, since it can also hang.
6426
6427         * class.c (mono_class_init): Applied patch from Ankit Jain 
6428         (radical@gmail.com). Avoid pending init errors when a field refers
6429         to a nested class using a typeref. Fixes #74734.
6430
6431         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
6432         this for dynamic modules.
6433
6434 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6435
6436         * threads.c: don't wait for threads that are in the process of aborting
6437         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
6438         and waiting for background threads to finish. This makes xsp and
6439         mod-mono-server exit without random length delays and/or hangs.
6440
6441 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6442
6443         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
6444
6445 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
6446
6447         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
6448         dynamic types to prevent infinite loops. Fixes #74727.
6449
6450         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
6451         ..._is_assignable_to.
6452
6453 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
6454
6455         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
6456
6457 2005-04-25  Martin Baulig  <martin@ximian.com>
6458
6459         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
6460
6461         * domain.c
6462         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
6463
6464         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
6465
6466         * reflection.c (build_compressed_metadata): Set metadata header
6467         version to 2.0.
6468
6469 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
6470
6471         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
6472         number into an integral and a decimal part. Fixes #70473.
6473
6474         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
6475
6476 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
6477
6478         * culture-info-table.h : reflected the latest locale-builder output.
6479
6480 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6481
6482         * threadpool.c: check for SuspendRequested too when deciding if
6483         mono_thread_interruption_checkpoint should be called.
6484
6485 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6486
6487         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
6488         * threads.c: remove interruption_mutex and use Interlocked instead. When
6489         suspending all the threads, wait for all the suspended events at once.
6490         If we're shutting down and get an APC that is going to be queued,
6491         call mono_thread_execute_interruption immediately, as the thread might
6492         be sleeping on a pthread condition or mutex.
6493
6494         * icall.c: call mono_runtime_set_shutting_down before suspending the
6495         threads.
6496
6497         Fixes bug #74693. And now xsp is happier when exiting.
6498
6499 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
6500
6501         * loader.c (mono_stack_walk): Fix #74690.
6502
6503 2005-04-22  Martin Baulig  <martin@ximian.com>
6504
6505         * mono-debug.h (MonoDebugMethodJitInfo): Added
6506         `MonoDebugMethodJitInfo *jit'.
6507
6508         * mono-debug.c (mono_debug_read_method): Cache the
6509         MonoDebugMethodJitInfo in `address->jit'.
6510         (mono_debug_free_method_jit_info): New public method.
6511
6512 2005-04-22  Martin Baulig  <martin@ximian.com>
6513
6514         * class.c (mono_class_is_assignable_from): Disallow
6515         type parameter -> interface.
6516
6517 2005-04-21  Dick Porter  <dick@ximian.com>
6518
6519         * threads.c (mono_thread_create): Turn an assertion into an error.
6520
6521 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
6522
6523         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
6524         
6525         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
6526         Fix some gcc 4.0 warnings.
6527
6528 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
6529
6530         * file-io.c: fix alt dir separator char on unix systems
6531         and cleanup (fixes bug #71214).
6532
6533 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
6534
6535         * marshal.c: Use CALLVIRT instead of CALL when dispatching
6536         a call to a remote domain, since the method may be an
6537         interface method in the client domain. This fixes bug #74192.
6538
6539 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6540
6541         * threadpool.c: recv/send are now performed before going back to managed
6542         code to save one transition.
6543
6544 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6545
6546         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6547
6548         * metadata/threadpool.c: removed hack to workaround the bug above.
6549
6550         Fixes bug #74618.
6551
6552 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6553
6554         * reflection.c reflection.h: Fix handling of parameter defaults in
6555         dynamic methods. Also fixes handling of parameter attributes.
6556         Fixes #74609.
6557
6558         * mono-debug.c (mono_debug_close_image): Fix warning.
6559
6560 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6561
6562         * socket-io.h: replaced old unused field with new 'blocking'.
6563         * threadpool.c: restore socket blocking state on windows(tm).
6564
6565 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6566
6567         * icall.c: don't return the codebase in the AssemblyName[] returned by
6568         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6569         * object-internals.h: Removed FIXME (fields were presents) and fixed
6570         versioncompat declaration.
6571
6572 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6573
6574         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6575         not closed, so don't cleanup when it happens.
6576
6577 2005-04-13  Chris Toshok  <toshok@ximian.com>
6578
6579         * mono-debug-debugger.h: change prototype for
6580         mono_debugger_lookup_type.
6581
6582         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6583         this function, although it should probably be named
6584         mono_debugger_init_type.
6585
6586 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6587
6588         * threadpool.c: fix non-AIO case.
6589
6590 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6591
6592         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6593         the built-in profiler to measure just JIT compilation times.
6594
6595 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6596
6597         * threadpool.c: the epollfd might be closed by another thread at
6598         any time, so ignore EBADF at treat it as a "we're closing" sign.
6599
6600 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6601
6602         * threadpool.c: release the semaphores with a count equals to the number
6603         of working threads in both IO and regular pools. Fixed typo that messed
6604         up the count of IO pool threads. Don't initialize the pipe handles if
6605         we're using epoll.
6606
6607 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6608
6609         * threadpool.c: some systems don't like a NULL when deleting the socket
6610         from epoll.
6611
6612 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6613
6614         * threadpool.c: fix semaphore allocation.
6615
6616 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6617
6618         * threadpool.c: added epoll() based implementation for asynchronous IO
6619         that is used instead of the default poll() when available.
6620         It can be disabled by setting MONO_DISABLE_AIO.
6621
6622 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6623
6624         * threadpool.c: windows needs 'closesocket' and instead of returning
6625         0 when the stream is closed while in select, it returns -1. Fixes bug
6626         #74573.
6627
6628 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6629
6630         * class.c (class_compute_field_layout): Fix the regression caused by
6631         the previous try.
6632
6633 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6634
6635         * threadpool.c: separate pool for socket async. IO.
6636         * threadpool.h: mono_max_worker_threads is not a global any more.
6637
6638 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6639
6640         * class.c (class_compute_field_layout): Fix #74549.
6641
6642 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6643
6644         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6645         use 2 connected sockets instead.
6646
6647 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6648
6649         * mono-config.c: Add new entry point for mkbundle
6650         mono_config_parse_memory. 
6651
6652 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6653
6654         * threadpool.c: removed another unused function.
6655
6656 2005-04-08  Ankit Jain  <radical@corewars.org>
6657
6658         * reflection.c (get_default_param_value_blobs): Add 'types'
6659         parameter to get the types encoded in the constant table.
6660         (mono_param_get_objects): Use the type from the constant table,
6661         not the type of the parameter, when creating default values.
6662         Handle null default values correctly.
6663
6664 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6665
6666         * file-io.c:
6667         * file-io.h:
6668         * threadpool.c:
6669         * threadpool.h:
6670         * icall.c:
6671         * socket-io.c: removed dead code for async IO.
6672
6673 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6674
6675         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6676
6677         * threadpool.c: intercept socket async. calls and pass them to a thread
6678         that is polling and dispatching the job items to the threadpool as
6679         socket become ready. Fixes bugs #71217, #71933.
6680
6681         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6682         between char and short/ushort arrays.
6683
6684         * socket-io.c: remove dead code.
6685
6686 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6687
6688         * locales.c,
6689           icall.c : removed InternalToUpper_Comp() and
6690           InternalToLower_Comp().
6691
6692 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6693
6694         * char-conversions.h : The tables were incorrectly generated. Should
6695           be generated against invariant culture.
6696
6697 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6698
6699         * object.c (mono_runtime_invoke_array): Fix return value when 
6700         passing pre-created valuetype objects to ctors.
6701
6702         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6703         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6704         Fixes #74338.
6705
6706 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6707
6708         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6709         only used with --security and hides the wrong corlib version error.
6710
6711 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6712
6713         * class.c: Changed mono_class_name_from_token so that types
6714         outside of a namespace don't have an initial period.  Improved
6715         the g_warning message used in _mono_class_get when loading
6716         fails.
6717         * assembly.c: In mono_assembly_load_reference, when an assembly
6718         can't be found, "No such file or directory" is misleading and
6719         unhelpful because a few paths were checked for the presence of
6720         the assembly.  When that happens (ENOENT), display a nicer
6721         message indicating the directories that were searched.  In all
6722         cases, the warning is made easier to read for non-hackers.
6723
6724 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6725
6726         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6727         project/solution.
6728         * appdomain.h|domain.c: Removed inline from functions.
6729         * appdomain.c: Reduced warnings when compiling on windows.
6730         * icall.c: Fixed output_debug declaration to gunichar2*.
6731         * mono-config.c: Reduced warnings when compiling on windows.
6732         * rand.c: Added missing "windows.h". Added missing return value.
6733         * rawbuffer.c: Added missing winsock2.h for windows.
6734         * sysmath.h: Added mono-compiler.h header to allow/ease 
6735         compilation with non-GCC compilers.
6736         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6737         Removed cast warnings.
6738
6739         Adapted from the work of J Lothian (for VC6).
6740
6741 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6742
6743         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6744         from default_path.
6745
6746 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6747
6748         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6749         the 2.0 profile.
6750
6751 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6752
6753         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6754         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6755         stuff, and it would probably use $(prefix)/share rather than
6756         $(prefix)/lib.
6757
6758 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6759
6760         * console-io.c: added 2 includes that might be missing.
6761
6762 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6763
6764         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6765         profile.
6766
6767         * reflection.c (create_custom_attr): Allocate the params array using
6768         alloca so it gets GC tracking.
6769
6770 2005-03-23  Chris Toshok  <toshok@ximian.com>
6771
6772         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6773         out some spew.
6774
6775 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6776
6777         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6778         changes to pick up any changes in prefix, etc.
6779
6780 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6781
6782         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6783         
6784         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6785         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6786
6787 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6788
6789         * class-internals.h object-internals.h class.c reflection.c: Extend the
6790         mono_lookup_dynamic_token () function to return the class of the
6791         token as well. 
6792
6793         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6794         well. Fixes #73848.
6795
6796 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6797
6798         * security-manager.c: Skip inheritance checks for intra-corlib
6799         class inheritance and method overrides. This skips a lot of checks
6800         and (anyway) permissions cannot work until corlib is loaded.
6801
6802 2005-03-23  Martin Baulig  <martin@ximian.com>
6803
6804         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6805         MONO_TYPE_GENERICINST.  
6806
6807 2005-03-23  Martin Baulig  <martin@ximian.com>
6808
6809         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6810
6811 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6812
6813         * class.c: added locking comments to some functions.
6814         Cache the interface offsets arrays (saves about 20 KB
6815         of runtime memory in a typical app).
6816         Reduce the time overhead in mono_class_setup_supertypes ().
6817
6818 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6819
6820         * icall.c: speedup and fix leaks in GetMethodsByName and
6821         GetPropertiesByName.
6822
6823 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6824
6825         * reflection.c: some locking fixes.
6826
6827 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6828
6829         * metadata.c: added missing break in case statement.
6830
6831 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6832
6833         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6834         typedbyref return values. Fixes #73941.
6835
6836 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6837
6838         * security-manager.c|h: Added demandunmanaged method and 
6839         suppressunmanagedcodesecurity class to MonoSecurityManager.
6840         Renamed aptc class to allowpartiallytrustedcallers.
6841
6842 2005-03-17  Martin Baulig  <martin@ximian.com>
6843
6844         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6845
6846 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6847
6848         * file-io.c: disabled file async. IO using aio_*. It uses the
6849         threadpool now. Workaround for bug #73718.
6850
6851 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6852
6853         * assembly.h, mono-config.c: added code to deal with bundled configs
6854         for bundled assemblies.
6855
6856 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6857
6858         * *.c, private.h: cleanup, removing old private.h header file.
6859
6860 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6861
6862         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6863         and throw_on_unmappable_char attributes.
6864
6865 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6866
6867         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6868         _ProcessName_internal.
6869
6870 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6871
6872         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6873         #73631.
6874
6875         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6876         are no longer used.
6877
6878 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6879
6880         * object.c (compute_class_bitmap): Add support for generics. Fixes
6881         #73527.
6882
6883 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6884
6885         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6886
6887 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6888
6889         * filewatcher.c: commented out the code for windows watcher, as we don't
6890         use it (we use the managed implementation instead).
6891
6892 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6893
6894         * object-internals.h (MonoThread): Remove 'unused1' field.
6895
6896         * appdomain.c: Bump corlib version.
6897
6898         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6899
6900         * reflection.c (mono_reflection_create_runtime_class): Remove the
6901         AssemblyBuilder.Save optimization since it causes too many problems.
6902
6903 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6904
6905         * exception.c|h: Added mono_get_exception_reflection_type_load to
6906         create a ReflectionTypeLoadException object.
6907         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6908         to return NULL is a InheritanceDemand fails during reflection. Updated
6909         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6910         ReflectionTypeLoadException if an InheritanceDemand fails during 
6911         reflection. Added icall mapping for GetLinkDemandSecurity.
6912         * security-manager.c|h: Added ves_icall_System_Security_
6913         SecurityManager_GetLinkDemandSecurity internal call to return the
6914         class and methods permissions set for a LinkDemand. Removed unused
6915         fields in MonoSecurityManager.
6916
6917 2005-03-10  Martin Baulig  <martin@ximian.com>
6918
6919         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6920         it's a generic instance.
6921
6922 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6923
6924         * reflection.c (mono_get_object_from_blob): Applied patch from
6925         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6926
6927         * class.c (mono_class_is_assignable_from): Another try at fixing 
6928         #73469 without breaking anything.
6929
6930 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6931
6932         * class.c: (mono_class_is_assignable_from): Revert the last changes
6933         since they don't work with generics.
6934         
6935         * class.c (mono_class_is_assignable_from): Fix build bustage.
6936
6937         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6938         the managed IsAssignableFrom method. Fixes #73469.
6939
6940         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6941         function.
6942
6943 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6944
6945         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6946         memory when the remoting callback does not sets the out arguments.
6947         Fixes #73007.
6948
6949         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6950         by mistake.
6951
6952         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6953
6954         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6955
6956         * appdomain.c: Bump corlib version.
6957
6958 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6959
6960         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6961         function.
6962
6963         * threads.c (mono_thread_attach): Detect threads which are not started
6964         by the GC pthread wrappers.
6965
6966 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6967
6968         * icall.c: Added new icall for RNG.
6969         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6970         single handle on Linux to access /dev/urandom and fix #73183.
6971
6972 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6973
6974         * object.c: setting the new vtable in a transparent proxy object must
6975         not change the GC descriptor.
6976
6977 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6978
6979         * object.c: fixed compilation without GCJ support.
6980         * reflection.c: for runtime-created types ensure klass->has_references
6981         is correct (bug #73215).
6982
6983 2005-03-02  Martin Baulig  <martin@ximian.com>
6984
6985         * class.c (mono_class_is_assignable_from): Make this work if
6986         `oklass' is a generic instance; fixes #72831.
6987
6988 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6989
6990         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6991         with hasthis set.
6992         
6993         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6994
6995         * marshal.c: Reorganize native->managed marshalling code to also use
6996         the emit_marshal_... functions.
6997
6998 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6999
7000         * object.c: typed allocs have issues with bitmap sizes > 30,
7001         so check for max_set >= 30.
7002
7003 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7004
7005         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7006         managed code. Fixes #73012.
7007
7008         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7009
7010         * metadata.c reflection.c: Load/Emit elem_mult as well.
7011         
7012         * metadata.h (MonoMarshalSpec): Add comment.
7013
7014         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7015
7016         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7017         num_elem to -1 if not given.
7018
7019         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7020
7021         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7022         given values.
7023
7024 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7025
7026         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7027
7028 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7029
7030         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7031
7032         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7033
7034 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7035
7036         * object.c: generalized the reference bitmap creation
7037         and added hooks for the new GC.
7038         * class-internals.c: removed the gc_bitmap field from MonoClass.
7039
7040 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7041
7042         * domain.c: help the compiler to produce better code
7043         in mono_jit_info_table_find ().
7044
7045 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7046
7047         * object.c: make all allocations look typed.
7048
7049 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7050
7051         * socket-io.c: load Mono.Posix if it's not loaded already
7052         (fixes bug#73033).
7053
7054 2005-02-24  Martin Baulig  <martin@ximian.com>
7055
7056         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7057         * reflection.c (dup_type): Likewise.
7058
7059 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7060
7061         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7062         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7063
7064 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7065
7066         * domain.c, threads.c, object-internals.h: make the critical thread
7067         local vars use the fast access mode (even when we're compiled in
7068         a lib). Provide accessors to be used by the jit during codegen.
7069
7070 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7071
7072         * appdomain.c: Changed hook functios behavior to include
7073         support for the reflection only assemblies. Some icalls were changed
7074         to support the mentioned assemblies too. Signatures of static methods
7075         try_assembly_resolve and real_load now have an additional parameter:
7076         refonly.
7077
7078         * assembly.c: General changes to mono_assembly_ methods to support
7079         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7080         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7081         suffix, to support an additional gbool parameter to specify whether
7082         the assembli is reflection only or not. Created some new hook functions 
7083         to add support for reflection only assemblies. Signatures of static 
7084         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7085         have now an additional parameter: refonly.
7086
7087         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7088         indicating whether the assembly is reflection only or not.
7089
7090         * exception.c: Add mono_get_exception_invalid_operation.
7091
7092         * icall.c: Throw an InvalidOperationException when trying to invoke
7093         a property/method/event, or trying to set/get the value of a field.
7094         Also add an icall to retrieve the ref_only flag to the
7095         MonoReflectionAssembly.
7096
7097 2005-02-23  Chris Toshok  <toshok@ximian.com>
7098
7099         Part of fix for #72827.
7100         * mono-debug.c (mono_debug_add_method): add lexical block data to
7101         the info we write.  Kind of a hack at the moment - we copy the
7102         lexical block info from the MonoDebugMethodInfo to the
7103         MonoDebugMethodJitInfo here, before writing it.
7104         (mono_debug_read_method): read the lexical block info.
7105
7106         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7107
7108         * debug-mono-symfile.h: add lexical block support.
7109
7110         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7111         support.
7112
7113 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7114
7115         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7116
7117         * object.c (mono_runtime_free_method): Call mono_free_method () and
7118         put the TODOs there.
7119
7120         * loader.c (mono_free_method): Free up most memory allocated for 
7121         dynamic methods.
7122
7123 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7124
7125         * reflection.c: properly flag a Type argument to a
7126         named custom attr value (bug #72248).
7127
7128 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7129
7130         * reflection.c: reduce code duplication in named custom
7131         attribute encoding.
7132
7133 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7134
7135         * reflection.c: properly encode custom attrs of type object
7136         (bug #72649).
7137
7138 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7139
7140         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7141
7142 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7143
7144         * socket-io.c: load System.dll if it's not loaded already
7145         (bug #72850 and #70477).
7146
7147 2005-02-21  Martin Baulig  <martin@ximian.com>
7148
7149         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7150         generic instances.
7151
7152 2005-02-21  Martin Baulig  <martin@ximian.com>
7153
7154         * reflection.c (mono_image_build_metadata): We also need to
7155         "fixup" the MethodImpl table after we computed the final method
7156         indices.  Call fixup_methodimpl() to do that.
7157         (fixup_methodimpl): New private method.
7158
7159 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7160
7161         * assembly.c: special case mscorlib.dll (bug#72536),
7162         patch from Carlos Alberto Cortez.
7163
7164 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7165
7166         * threads-types.h threads.c: Fix build bustage.
7167
7168         * threads.c: Use a union for long<->double conversions.
7169
7170         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7171         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7172
7173         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7174         containing the checkpoint call with NOT_TAKEN.
7175         
7176         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7177         checkpoint before pushing the arguments, so they won't have to be
7178         spilled to stack.
7179
7180 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7181
7182         * domain.c, assembly.c, domain-internals.h: make some data
7183         const and relocation-free.
7184
7185 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7186
7187         * object.c, appdomain.c, class-internals.h: introduce the
7188         MonoClassRuntimeInfo structure to hold the info needed to
7189         use a class at runtime. Made mono_class_vtable() lock-free
7190         for all the appdomains.
7191
7192 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7193
7194         * metadata-internals.h, image.c: introduce a per-image mempool to
7195         be used for memory that has the same lifetime as the image.
7196
7197 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7198
7199         * domain.c: In mono_init_internal(), instead of selecting the first
7200         runtime version supported by an executable, get a list of all
7201         supported versions and select the one for which an mscorlib exists
7202         (since even if the runtime supports a given version, it doesn't mean
7203         that the framework for that version is installed).
7204         Modified get_runtimes_from_exe to support this behavior.
7205         In supported_runtimes, added information about additional system
7206         assembly versions.
7207         
7208         * assembly.c: Added support for more than one system assembly version
7209         per runtime version. Updated the assembly list.
7210         In mono_assembly_remap_version, removed the initial version check,
7211         since we don't know to which version we need to compare until we
7212         get the version set on which the assembly is based.
7213         Moved the code for loading corlib into the new method
7214         mono_assembly_load_corlib(), so it can be used by the initialization
7215         code.
7216         
7217         * domain-internals.h: Updated data structures and added declaration
7218         for mono_assembly_load_corlib.
7219
7220 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7221
7222         * reflection.c (resolve_object): Fix the creation of the signature in 
7223         the SignatureHelper case.
7224
7225         * assembly.c (mono_assembly_remap_version): Fix binary search.
7226         
7227 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7228  
7229         * class.c: Added inheritance check when a method is overloaded (from a
7230         virtual method or when implementing an interface) and when a class is
7231         inherited. Added functions to set a failure for a class and to 
7232         retreive the exception from a failure.
7233         * class-internals.h: Added fields to MonoClass to keep the exception
7234         information status for inheritance (or other exceptions) to be thrown
7235         later (i.e. not at load time).
7236         * object.c: Throw the inheritance SecurityException when a type is to 
7237         be created with either class or method inheritance violations.
7238         * reflection.c|h: Fix when getting declsec from a class. Removed 
7239         unrequired code for class. Improved sanity in parameter naming.
7240         * security-manager.c|h: Added functions to check for class and method
7241         inheritance.
7242
7243 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7244
7245         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7246         and has_finalize in dynamic types as well.
7247
7248 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7249
7250         * culture-info-table.h : fixed currency format for en-GB (and so on).
7251
7252 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7253
7254         * gc.c: ensure the GC handles never have 0 as a value.
7255
7256 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7257
7258         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7259         a pointer to a struct to unmanaged code. Fixes #72625.
7260
7261 2005-02-16  Martin Baulig  <martin@ximian.com>
7262
7263         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7264
7265 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7266
7267         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7268
7269 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7270
7271         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7272
7273         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7274         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7275         etc. Fixes #71471.
7276
7277         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7278
7279         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7280
7281 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7282
7283         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7284         changes to make the current context a field in MonoThread.
7285
7286 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7287
7288         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7289         the last change.
7290         
7291         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7292         extracted from mono_marshal_get_native_wrapper.
7293
7294         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7295         to create wrappers around native functions.
7296
7297         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7298         delegates for arbitrary function pointers. Fixes #71472.
7299
7300 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7301
7302         * threads.c: cleaned up the code a little.
7303
7304 2005-02-15  Martin Baulig  <martin@ximian.com>
7305
7306         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7307         the data table.
7308
7309         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7310         allocate larger chunks if needed.
7311
7312 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7313
7314         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7315         in by mistake.
7316
7317 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7318
7319         * domain.c: keep the domains in an array and ensure the domain ids
7320         are kept small, so they can be used as indexes to domain-specific data
7321         with a small memory overhead.
7322
7323 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7324
7325         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7326
7327 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7328
7329         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7330
7331 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7332
7333         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7334
7335         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7336         values.
7337
7338         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7339         
7340 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7341
7342         * domain-internals.h: add the hashtable here.
7343
7344         * class-internals.h: Remove `info' from MonoMethod
7345
7346         * domain.c: Add a new hashtable, jit_trampoline_hash
7347
7348 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7349
7350         * object.c: don't set the value of static fields
7351         (fixes bug#72494).
7352
7353 2005-02-11  Martin Baulig  <martin@ximian.com>
7354
7355         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7356         (mono_debug_add_method): Silently ignore the method if it's too big.
7357         (mono_debug_add_type): Likewise.
7358
7359 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7360
7361         * threads.c, appdomain.c: remove #ifdefs from the code.
7362
7363 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7364
7365         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7366         common security informations. This allows us to stay in unmanaged code
7367         when doing LinkDemand and it's special cases (except for the first 
7368         time for initialization). The flags a very much used with --security.
7369         * reflection.c|h: Added code to get declarative security attributes 
7370         for LinkDemand and InheritanceDemand. This required to refactor the
7371         existing code for Demand.
7372         * security-manager.c|h: Added new method fields for the special cases
7373         of LinkDemand.
7374
7375 2005-02-10  Martin Baulig  <martin@ximian.com>
7376
7377         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7378         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7379
7380 2005-02-10  Martin Baulig  <martin@ximian.com>
7381
7382         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7383         debugging code; this is almost a complete rewrite.
7384
7385         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7386
7387 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7388
7389         * domain.c, object.h: expose mono_string_equal () and 
7390         mono_string_hash ().
7391         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7392         it's implemented in managed code.
7393
7394 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7395
7396         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7397         lo leak objects between appdomains.
7398
7399 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7400
7401         * assembly.c: old compilers compilation fix from 
7402         robertj@gmx.net (Robert Jordan).
7403
7404 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7405
7406         * class-internals.h: Little reminder for the future.
7407
7408         * debug-helpers.c: Fix up wrapper_type_names
7409
7410 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7411
7412         * image.c, metadata-internals.h: when loading an image from a file,
7413         mmap all of it and use the same codepaths as when using a
7414         in-memory image: the code is simpler and we use less memory
7415         (both writable and readonly).
7416
7417 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7418
7419         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
7420         API to alloc runtime data structures that need to be tracked by the
7421         GC and contain pointers.
7422         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
7423         make the code more readable and eventually use a different GC.
7424
7425 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
7426
7427         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
7428         for out arguments.
7429         
7430 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
7431
7432         * object.c: In release_type_locks(), don't release the cctor lock
7433         if it has already been released. This fixes a crash in the
7434         thread5 test.
7435
7436 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7437
7438         * gc.c, marshal.c, icall.c: register a delegate for finalization
7439         only when the native function pointer has been allocated for it.
7440
7441 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7442
7443         * object.c: cleaned up some code, allocate objects that are
7444         pointer free with the atomic malloc variant. Allocate memory
7445         for static data from the mempool if it's pointer-free.
7446         Allocate the bounds array at the end of the array data, when needed.
7447         * object-internals.h, object.h: move a private function in a private
7448         header.
7449         * class.c: handle missing case in tracking references in fields.
7450
7451 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7452
7453         * class.c, class-internals.h: keep track if a type has
7454         reference fields in either the instance or static fields.
7455
7456 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
7457
7458         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
7459         and renamed to MonoRuntimeInfo. Added fields to store the expected
7460         framework assembly version. Changed mono_get_framework_version and
7461         mono_get_runtime_version for a single mono_get_runtime_info method.
7462         
7463         * assembly.c: Added method to remap system assembly versions to the
7464         current executing runtime version. Removed old mapping code.
7465         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
7466         
7467         * icall.c, reflection.c: Track api changes.
7468
7469 2005-02-06  Miguel de Icaza  <miguel@novell.com>
7470
7471         * loader.c (method_from_memberref): Improve error reporting,
7472         produce the class name instead of the typeref/typedef index. 
7473
7474 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
7477
7478 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7479
7480         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
7481         stdcall and charset name mangling.  Reorganize the code and add
7482         some tracing stuff.
7483
7484 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7485
7486         * monodiet.c: More iters!
7487
7488         * marshal.c: Iter usage.
7489
7490         * icall.c: Iter usage.
7491
7492         * object.c: Use iters.
7493
7494         * debug-helpers.c: More iters
7495
7496 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7497
7498         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
7499         under win32.
7500
7501 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7502
7503         * mono-debug-debugger.c: use iters
7504
7505         * class.c, class-internals.h: mono_class_setup_events is static
7506         now
7507
7508         * All callers: use iters
7509
7510 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7511
7512         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
7513         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
7514
7515 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7516
7517         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
7518
7519         * marshal.h: Add prototypes for ldfld/stfld_remote.
7520
7521         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
7522         this is called during startup.
7523         
7524 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
7525
7526         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
7527         MonoThreadsSync struct private in monitor.c. Changed the way
7528         MonoThreadsSync is allocated so it's faster and there is no
7529         need to keep track of it with a finalizer and it uses less memory.
7530         This also finally allows us to allocate mono objects as ptrfree when
7531         there are no reference fields.
7532
7533 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
7534
7535         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
7536         disappearing link to the GC interface and use them to simplify
7537         the gchandles code.
7538
7539 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7540
7541         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
7542         stfld_remote which call mono_load/store_field_new. This allows methods
7543         calling ldfld/stfld wrappers to be AOTed.
7544
7545         * console-io.c: Include sys/filio.h under solaris.
7546         
7547         * console-io.c: Include curses.h if needed correctly.
7548
7549 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7550         
7551         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7552         method->klass as well.
7553
7554         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7555
7556         * class.c (mono_class_init): Switch on lazy initialization of 
7557         methods.
7558
7559         * class.c (mono_class_get_finalizer): Handle the case when the 
7560         finalizer is inherited.
7561
7562 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7563
7564         * console-io.c: <curses.h> is needed by term.h on solaris.
7565
7566 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7567
7568         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7569         mono_class_setup_properties where possible. Remove this ftn from
7570         the header file, and make it static.
7571
7572 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7573
7574         * loader.c: Add missing setup_... call.
7575
7576         * class.c: Add missing setup_... calls.
7577
7578         * class.c (mono_class_init): Switch on lazy initialization of 
7579         the generic vtable.
7580         
7581         * class.c (mono_class_init): Fix generics broken by the recent changes.
7582
7583         * monodiet.c (handle_type): Add missing setup_... calls.
7584
7585         * class.c: Back out garbage in previous patch.
7586         
7587         * class.c: Add missing setup_... calls.
7588
7589         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7590         mono_class_setup_methods () if possible.
7591
7592         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7593
7594         * class-internals.h (MonoCachedClassInfo): New structure.
7595
7596         * class.c: Initialize properties and events fields of MonoClass lazily.
7597
7598         * class.c: Add infrastructure for lazily initializing the methods and
7599         vtable fields of MonoClass. Not yet used.
7600
7601         * class.c (mono_class_get_finalizer): New helper function.
7602
7603         * class.c: Add infrastructure for loading some class related data from
7604         an AOT file.
7605
7606         * object.c: Add infrastructure for initializing the vtable from data
7607         in the AOT file.
7608
7609         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7610
7611         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7612         appropriate initialization function before accessing parts of the
7613         MonoClass structure.
7614
7615         * marshal.c: Fix warnings.
7616         
7617         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7618
7619         * mono-debug-debugger.c (get_exception_message): Use 
7620         mono_class_get_method_from_name_flags ().
7621
7622 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7623
7624         * reflection.c, appdomain.c: Replace a few manual searches that
7625         Zoltan missed. (Paolo approved this part of my initial patch).
7626
7627 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7628
7629         * profiler.c: disable recording statistical events at report time.
7630
7631 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7632
7633         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7634         to byteswap arrays of enum values, too (bug #72080).
7635
7636 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7637
7638         * appdomain.c (set_domain_search_path): Allow this to be called if
7639         domain->setup is not yet set.
7640
7641         * loader.c (mono_method_get_index): New helper function.
7642
7643         * loader.c reflection.c: Use mono_method_get_index ().
7644
7645         * class.c (mono_class_get_method_from_name_flags): New helper method.
7646
7647         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7648         this.
7649
7650         * class.c (mono_class_get_cctor): New helper method.
7651
7652         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7653         mono_class_get_method () to look up methods.
7654
7655 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7656
7657         * console-io.c: Fix the build, this should work on Windows.
7658
7659 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7660
7661         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7662         be set to null to keep things valid
7663
7664 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7665
7666         * icall.c: added Console 2.0 icalls.
7667         * Makefile.am: added console-io.[ch]
7668         * console-io.[ch]: internal calls for Console 2.0 API.
7669
7670 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7671
7672         * class.c: make sure we consider all the interfaces
7673         when calculating max_interface_id (bug found by
7674         Jeroen Frijters running ikvm).
7675
7676 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7677
7678         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7679         valuetype fields to null.
7680
7681         * object.c (set_value): Ditto. Fixes #71669.    
7682
7683 2005-01-31  Martin Baulig  <martin@ximian.com>
7684
7685         * metadata.c (mono_metadata_has_generic_params): New public
7686         function; checks whether something is a generic method.
7687
7688 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7689
7690         * appdomain.c: fix infinite recursion when adding assemblies.
7691
7692 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7693
7694         * object.c: Fix small typo to return all items for Environment.
7695         GetCommandLineArgs.
7696
7697 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7698
7699         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7700         reflection.c: more domain and assembly-unload related fixes
7701         and memory leaks plugs.
7702
7703 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7704
7705         * 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.
7706
7707 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7708
7709         * loader.c (mono_method_signature): Make this method lazy
7710         (mono_get_method_from_token): Don't computate the signature here.
7711
7712         Doing this saves quite a bit of memory. I got 90 kb on starting up
7713         monodoc. It should also save some disk reads on startup.
7714
7715         * *: MonoMethod->signature might be NULL now. You *MUST* use
7716         mono_method_signature.
7717
7718 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7719
7720         * object.c (mono_runtime_get_main_args): Return an array from the
7721         current domain here. Fixes #71938.
7722
7723 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7724
7725         * monitor.c: formatting changes to comply with the
7726         mono coding style and remove #ifdefs from the code.
7727
7728 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7729
7730         * metadata.c, private.h: remove some unneeded data
7731         and use a more compact representation for table schemas.
7732
7733 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7734
7735         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7736         to get a better distribution in hash tables.
7737         * *.c: use mono_aligned_addr_hash() where appropriate.
7738         * assembly.c: make var static.
7739
7740 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7741
7742         * domain-internals.h: Put MonoJitInfo on a diet.
7743
7744         * domain.c: Fix a warning.
7745
7746 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7747
7748         * gc.c: rework the gc handles code to reuse handles
7749         when freed.
7750
7751 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7752
7753         * domain.c: fixed long standing bug in mono_string_equal() which
7754         was brought to light with the ldstr changes.
7755
7756 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7757
7758         * reflection.c: Remove warning by adding missing include for marshal.h
7759
7760 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7761
7762         * domain.c, object.c: change the ldstr_table to hold
7763         MonoString* as keys: makes the runtime isinterned lookup
7764         faster and simplifies memory management.
7765
7766 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7767  
7768         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7769         possible to add imperative security checks before calling the icall.
7770         * reflection.c: Return security attributes on the original MonoMethod
7771         (and not the wrapped one). This fix permissions on icalls.
7772
7773 2005-01-25  Dick Porter  <dick@ximian.com>
7774
7775         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7776         the check for mktime() support actually test the mktime() return
7777         value.  "Fixes" bug 71682, though the output is still different to
7778         MS.
7779
7780 2005-01-25  Martin Baulig  <martin@ximian.com>
7781
7782         * class.c (mono_class_is_assignable_from): Make this work for
7783         generic instances.
7784
7785 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7786
7787         * marshal.c (mono_string_utf8_to_builder)
7788         (mono_string_builder_to_utf16): We might not have ownership of the
7789         string. In thise case, we need to create a new buffer.
7790
7791         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7792         be null, in which case, use the default capacity.
7793
7794 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7795
7796         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7797         GC events to the profiler.
7798
7799 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7800
7801         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7802         if you don't want the GC to run.
7803
7804 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7805
7806         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7807         start providing a GC API and keeping different implementations in
7808         their own file.
7809         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7810
7811 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7812
7813         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7814         mmap rather than allocating a huge buffer.
7815         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7816         above.
7817
7818 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7819
7820         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7821         and CheckExecutionRights.
7822         * reflection.c|h: Keep the index of the declarative security to be 
7823         used, instead of the pointer, when AOT compiler is used. Also add 
7824         class initialization when requesting demands.
7825         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7826         CheckExecutionRights. Both properties are now FALSE by default, and
7827         unmodifiable, unless the --security option is used.
7828
7829 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7830
7831         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7832         reflection.c: properly refcount images and assemblies, many leaks fixed.
7833
7834 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7835
7836         * threadpool.c: increase the timeout for threads in the thread pool to
7837         10s.  Fixes bug #67159.
7838
7839 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7840
7841         * class-internals.h: Sun's compiler insists on explicit
7842         signed on bit fields to handle then correctly.
7843
7844 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7845
7846         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7847         Make the size of the array fit only the number of invalid path
7848         chars that we have.
7849
7850         * class.c (_mono_class_get): Improve the error reporting when a
7851         class referenced is not found, to assist debugging. 
7852
7853 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7854
7855         * threads.c: fix off-by-one error.
7856         * domain.c: free data allocated in the domain.
7857
7858 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7859
7860         * reflection.c (mono_method_body_get_object): Fill out exception info
7861         as well.
7862
7863         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7864         structure.
7865         
7866 2005-01-19  Martin Baulig  <martin@ximian.com>
7867
7868         * loader.c (mono_get_method_constrained): Make this work again.
7869
7870 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7871
7872         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7873         guint16 to match the managed side.
7874
7875         * reflection.c (mono_reflection_body_get_object): Fill out local
7876         variables array.
7877
7878         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7879         as well.
7880
7881         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7882         'local_var_sig_token'.
7883
7884 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7885
7886         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7887         System.Drawing.
7888
7889         * reflection.c (mono_method_body_get_object): Handle abstract and
7890         runtime methods.
7891
7892 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7893
7894         * marshal.c, loader.c, class-internals.h, reflection.c:
7895         store the emthod data for a wrapper in an array instead of a list.
7896
7897 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7898
7899         * marshal.c: change the code to allocate memory more
7900         conservatively for method wrappers.
7901
7902 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7903
7904         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7905         fields from MonoClass to the marshal info structure where they belong.
7906
7907 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7908
7909         * class.c, object.c, class-internals.h, marshal.c: rearrange
7910         some fields and tweak some types to lower memory usage.
7911
7912 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7913
7914         * threads.c (signal_thread_state_change): Handle the case when the
7915         target thread is the current thread.
7916
7917         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7918
7919         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7920         emit_ptr_to_object_conv. 
7921
7922         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7923         marshalling. Fixes #71352.
7924
7925 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7926
7927         * metadata.h, blob.h: move table enum to blob.h so it can be included
7928         in any header.
7929         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7930         cut the size of MonoImage/MonoDynamicImage.
7931
7932 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7933
7934         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7935
7936 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7937
7938         * reflection.c, reflection.h, icall.c: add a function to check
7939         if an attribute type is defined for a metadata object.
7940
7941 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7942
7943         * object-internals.h: Added some needed fields from StringBuilder class.
7944         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7945
7946 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7947
7948         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7949         threads before shutting down the runtime.
7950
7951         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7952
7953 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7954
7955         * object-internal.h, threads.c: implement stacksize and 
7956         parameterized thread start functionality (requires
7957         matching corlib). Marked broken code for later removal.
7958
7959 2005-01-12  Martin Baulig  <martin@ximian.com>
7960
7961         * class-internals.h (MonoGenericClass): Moved the `initialized'
7962         flag to MonoDynamicGenericClass, removed `init_pending'.
7963         (MonoGenericInst): Added `is_reference' flag.
7964
7965 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7966
7967         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7968         inside the MSDOS header. Fixes #71201.
7969
7970         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7971         gc thread.
7972         (mono_domain_finalize): Ditto.
7973
7974 2005-01-12  Martin Baulig  <martin@ximian.com>
7975
7976         * class.c (mono_get_shared_generic_class): Use the cache for
7977         non-dynamic generic classes.
7978
7979         * class-internals.h (mono_class_create_generic_2): Removed
7980         function prototype, this function is now static inside class.c.
7981
7982         * class.c (mono_class_create_generic_2): Made this static, only
7983         call it from mono_class_init() and mono_class_setup_parent().
7984         (collect_implemented_interfaces_aux): Call mono_class_init() on
7985         the interfaces we collect.
7986         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7987
7988 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7989
7990         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7991         it a real thread handle.
7992
7993         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7994         MonoJitExceptionInfo, since each catch clause needs its own variable.
7995         
7996 2005-01-11  Dick Porter  <dick@ximian.com>
7997
7998         * image.c (mono_pe_file_open): New variant on mono_image_open()
7999         that does not set up the CLI metadata; used for FileVersionInfo so
8000         it can get the data for windows binaries too.
8001         
8002         * process.c (process_read_string_block): Don't read off the end of
8003         the StringTable block.
8004
8005         These both fix bug 70766.
8006
8007 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8008
8009         * gc.c: set some fields to NULL at GC cleanup time.
8010         * threads.c: if we quit the main thread, call exit ().
8011
8012 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8013
8014         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8015
8016 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8017
8018         * threads.h, threads.c, object.c: added accessor and settor for
8019         main_thread. Handle it specially when exiting from it: wait
8020         for other foreground threads to exit.
8021
8022 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8023
8024         * process.c, verify.c: remove some bloat.
8025
8026 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8027
8028         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8029         the calling convention to cdecl under win32.
8030
8031 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8032
8033         * object.c (mono_object_get_size): New function to get the size of
8034         an object instance.
8035
8036         * profiler.c (simple_allocation): Use above.
8037
8038 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8039
8040         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8041         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8042         get an appdomain by it's id and we can't assume the root's id is 0).
8043         * domain-internals.h: Change the function prototype to match.
8044         * icall.c: Change the icall table for AppDomain.
8045
8046 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8047
8048         * locales.c (string_invariant_compare_char): Only compute
8049         GUnicodeTypes in the case where we need them.  Test for ordinality
8050         first and return if so.
8051
8052         From the commit:
8053
8054                 /*
8055                  * FIXME: here we must use the information from c1type and c2type
8056                  * to find out the proper collation, even on the InvariantCulture, the
8057                  * sorting is not done by computing the unicode values, but their
8058                  * actual sort order.
8059                  */
8060
8061 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8062
8063         * loader.c: for P/Invoke methods, allow the "Internal" shared
8064         library name to refer to the calling process symbol namespace.
8065
8066 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8067
8068         * Makefile.am: Add the security manager to the build.
8069         * security-manager.c|h: New. Initialization of the security manager.
8070
8071 2005-01-07  Dick Porter  <dick@ximian.com>
8072
8073         * threads.c: 
8074         * monitor.c: Update thread state during Monitor and WaitHandle
8075         waits.  Fixes bug 71031.
8076
8077 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8078
8079         * reflection.c (property_encode_signature): Correctly handle when the
8080         property has no methods.
8081
8082 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8083
8084         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8085         
8086         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8087         fields from mb, not rmb. Fixes #71017.
8088
8089         * marshal.c (emit_ptr_to_str_conv): Add support for 
8090         ByValTStr -> string conversion. Fixes #71015.
8091
8092         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8093
8094         * mempool.c (mono_mempool_contains_addr): New helper function.
8095
8096 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8097
8098         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8099         HasSematics encoded fields.
8100         
8101         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8102         invalid string marshalling.
8103
8104         * metadata.c: Fix warnings.
8105         
8106 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8107
8108         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8109         profiler support.
8110
8111 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8112
8113         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8114         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8115         tests.
8116
8117 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8118
8119         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8120         so methods containing these can be AOTed.
8121
8122 2005-01-03  Martin Baulig  <martin@ximian.com>
8123
8124         * loader.c (find_method): Removed the hack for generic instances.
8125         (method_from_memberref): If our parent is a generic instance, pass
8126         its generic type definition to find_method() and then inflate the
8127         method.
8128         (mono_get_method_constrained): Pass the generic type definition to
8129         find_method() and inflate the method later.
8130
8131         * class-internals.h (MonoStats): Added `generic_class_count'.
8132
8133         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8134         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8135
8136         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8137         generic type definitions.
8138
8139 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8140
8141         * loader.c icall.c: Fix warnings.
8142
8143 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8144
8145         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8146         blittable types. Fixes #70864.
8147
8148 2004-12-29  Martin Baulig  <martin@ximian.com>
8149
8150         * icall.c
8151         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8152
8153         * reflection.c (mono_method_get_object): Create a
8154         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8155         call mono_get_inflated_method().
8156
8157         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8158
8159 2004-12-27  Martin Baulig  <martin@ximian.com>
8160
8161         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8162         (MonoMethodInflated): Added `inflated' field.
8163
8164         * class.c (mono_class_inflate_generic_method): Don't really
8165         inflate the method here; just set the `is_inflated' flag in the
8166         MonoMethod.
8167         (mono_class_get_inflated_method): Actually inflate the method here
8168         if it's not already inflated; we use the MonoMethodInflated's new
8169         `inflated' field as a cache.
8170
8171 2004-12-26  Martin Baulig  <martin@ximian.com>
8172
8173         * class.c
8174         (inflate_generic_class): Moved some code out of inflate_generic_type().
8175         (mono_class_inflate_generic_method): If we're already inflated,
8176         inflate the context and use the declaring method; ie. make sure
8177         the declaring method of an inflated method is always the generic
8178         method definition.
8179         (mono_class_create_from_typedef): Create
8180         `class->generic_container->context->gclass'.
8181
8182 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8183
8184         * metadata-internals.h, marshal.c, reflection.c: More
8185         MonoGHashTable->GHashTable.
8186
8187         * domain-internals.h, class.c: Change MonoGHashTable's into
8188         GHashTables for some cases where no gc stuff is used
8189
8190         All users: update apis
8191
8192 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8193
8194         * metadata.c (builtin_types): Make this `const'. Makes this get
8195         put into the shareable section.
8196         (mono_metadata_init): Casts to make gcc happy.
8197
8198 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8199
8200         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8201
8202 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8203
8204         * icall.c: Added an internal call to retrieve the position and length
8205         of assembly-level declarative security attributes (RequestMinimum, 
8206         RequestOptional and RequestRefuse). This is used by the Assembly class
8207         to re-create the corresponding permission sets.
8208
8209 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8210
8211         * marshal.c: fix the stelemref wrapper to be type correct
8212         (and faster).
8213
8214 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8215
8216         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8217         to do key & 0x7fffffff. Hashtable already does this. It just
8218         results in longer code.
8219
8220 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8221
8222         * appdomain.c: Bump corlib version.
8223         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8224         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8225         * reflection.c|h: Add functions to get declarative security infos
8226         (blob position and length) for assemblies, classes and methods.
8227
8228 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8229
8230         * reflection.c: sort the constant table (bug #70693).
8231
8232 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8233
8234         * object-internals.h, threads.c, domain.c: add accessors for
8235         the MonoThread and MonoDomain tls keys.
8236
8237 2004-12-18  Martin Baulig  <martin@ximian.com>
8238
8239         * class.c (inflate_generic_type): If we're inflating a generic
8240         instance, set `ngclass->context->container = context->container';
8241         ie. the container we inflated into.
8242
8243         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8244         inflate_generic_type() changes.
8245
8246 2004-12-17  Martin Baulig  <martin@ximian.com>
8247
8248         * class-internals.h
8249         (MonoGenericClass): Replaced `MonoType *generic_type' with
8250         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8251         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8252         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8253
8254 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8255
8256         * exception.c (mono_exception_from_token): New helper function.
8257
8258 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8259
8260         * assembly.c (mono_assembly_load_with_partial_name): Call 
8261         mono_assembly_loaded before invoking the preload hooks. Fixes
8262         #70564.
8263
8264         * object-internals.h (MonoThread): Change culture_info and 
8265         ui_culture_info into an array.
8266
8267         * threads.c: Cache culture info objects from more than one appdomain.
8268
8269         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8270         current UI culture.
8271
8272 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8273
8274         * threads.h threads.c appdomain.c: Clear the culture_info field of
8275         all threads during unloading if they point to an object in the dying
8276         appdomain.
8277
8278 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8279
8280         * culture-info.h (TextInfoEntry): New struct
8281         * object-internals.h: sync with managed
8282         * locales.c: fill the `text_info_data' field
8283         * culture-info-tables.h: update
8284
8285 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8286
8287         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8288         collector.
8289
8290 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8291
8292         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8293         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8294
8295 2004-12-12  Martin Baulig  <martin@ximian.com>
8296
8297         * mono-debug-debugger.c (write_type): If we're an enum and the
8298         builtin types have already been initialized, call mono_class_init().
8299
8300 2004-12-11  Martin Baulig  <martin@ximian.com>
8301
8302         * metadata.c (mono_metadata_load_generic_params): Added
8303         `MonoGenericContainer *parent_container' argument; automatically
8304         compute `container->is_method'; pass the correct owner to
8305         get_constraints().      
8306
8307         * reflection.c (compare_genericparam): Sort the GenericParam table
8308         according to increasing owners. 
8309
8310 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8311
8312         * profiler.c: allow disabling the default profiler.
8313
8314 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8315
8316         * decimal.c, icall.c: allow disabling System.Decimal support.
8317
8318 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8319
8320         * reflection.c: Add support for null attribute arguments.
8321
8322 2004-12-09  Martin Baulig  <martin@ximian.com>
8323
8324         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8325         names to get rid of compiler warnings.
8326
8327 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8328
8329         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8330         mono_marshal_load_type_info (). Fixes #69625.
8331         (mono_marshal_get_ptr_to_struct): Likewise.
8332
8333 2004-12-08  Martin Baulig  <martin@ximian.com>
8334
8335         * mono-debug.h: Bumped version number to 47.
8336
8337         * mono-debug-debugger.c
8338         (mono_debugger_event_handler, mono_debugger_event): Take two
8339         guint64 arguments insteed of a gpointer and a guint32.  
8340
8341 2004-12-08  Martin Baulig  <martin@ximian.com>
8342
8343         * debug-mono-symfile.h
8344         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8345         `address' to `native_offset'.
8346
8347 2004-12-08  Martin Baulig  <martin@ximian.com>
8348
8349         * class.c (mono_class_create_from_typespec): Only inflate if we
8350         either have `context->gclass' or `context->gmethod'.
8351
8352 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8353
8354         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8355
8356         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8357
8358         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8359
8360         * reflection.c (mono_assembly_get_object): Remove the workaround put
8361         in for the release.
8362         
8363         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8364
8365         * appdomain.c: Bump corlib version.
8366
8367         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8368         be visible in other appdomains.
8369
8370 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8371
8372         * threads.c: Interlocked inc and dec for longs were messed up,
8373         use a KISS based impl for this. Fixes 70234
8374
8375 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8376
8377         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8378
8379 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8380
8381         * icall.c: fix to follow policy not to allow struct
8382         arguments in icalls.
8383
8384 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8385
8386         * process.c: make the patch that handles spaces in file paths work
8387         on mono/windows too.
8388
8389 2004-12-06  Martin Baulig  <martin@ximian.com>
8390
8391         * class.c (mono_class_create_generic): Call
8392         mono_class_setup_supertypes() if we're dynamic.
8393         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8394
8395 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8396
8397         * object-internals.h: Add new fields to MonoThread.
8398
8399         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8400
8401         * icall.c threads-types.h threads.c: Add new icalls.
8402
8403         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8404
8405         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8406         managed side.
8407
8408         * appdomain.c: Bump corlib version.
8409
8410         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
8411         internal assemblies. Fixes #69181.
8412
8413 2004-12-05  Martin Baulig  <martin@ximian.com>
8414
8415         * class.c (mono_class_inflate_generic_signature): Make this a
8416         no-op if `context' is NULL or we don't have any type parameters;
8417         also copy `sentinelpos'.        
8418
8419 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
8420
8421         * image.c: Add unbox_wrapper_cache.
8422
8423         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
8424
8425         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
8426         function generator.
8427         
8428         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
8429         Fixes #70173.
8430
8431         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
8432         
8433 2004-12-04  Martin Baulig  <martin@ximian.com>
8434
8435         * loader.c (mono_method_get_signature_full): New public function;
8436         like mono_method_get_signature(), but with an additional
8437         `MonoGenericContext *' argument.
8438
8439         * class.c (mono_class_inflate_generic_signature): Formerly known
8440         as inflate_generic_signature(); make this public.
8441
8442 2004-12-04  Martin Baulig  <martin@ximian.com>
8443
8444         * metadata.c
8445         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
8446         instead of a `MonoGenericContainer *'.  
8447         (mono_metadata_parse_array_full): Likewise.
8448         (mono_metadata_parse_signature_full): Likewise.
8449         (mono_metadata_parse_method_signature_full): Likewise.
8450         (mono_metadata_parse_generic_inst): Likewise.
8451         (mono_metadata_parse_generic_param): Likewise.
8452         (mono_metadata_parse_mh_full): Likewise.
8453         (mono_type_create_from_typespec_full): Likewise.
8454
8455 2004-12-03  Martin Baulig  <martin@ximian.com>
8456
8457         * class-internals.h (MonoGenericContainer): Replaced the
8458         `MonoGenericContext * pointer with a `MonoGenericContext'
8459         structure and made it the first element.
8460
8461 2004-12-03  Martin Baulig  <martin@ximian.com>
8462
8463         * class.c
8464         (inflate_generic_type): Set the `context->container' when creating
8465         a new MonoGenericContext.
8466         (mono_class_inflate_generic_method): Likewise.
8467         (mono_class_create_from_typespec): Just use `context->container'
8468         to get the container.
8469
8470         * loader.c (method_from_methodspec): Set `context->parent' from
8471         `context->container' - and if that's a method container, use its
8472         parent.  Also set the `context->container' when creating a new
8473         MonoGenericContext.
8474         (mono_get_method_from_token): Use just `context->container' to get
8475         the container.
8476
8477         * metadata.c (do_mono_metadata_parse_generic_class): Also set
8478         `gclass->context->container'.
8479
8480         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
8481         the `context->container' when creating a new MonoGenericContext.
8482
8483 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
8484
8485         * reflection.c (compare_genericparam): Sort params with identical
8486         owner by their number. Fixes gen-111 on sparc.
8487
8488 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8489
8490         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
8491         around the domain changes.
8492
8493         * appdomain.c (mono_domain_unload): Handle the case when the thread
8494         calling Unload is itself being aborted during unloading. Fixes #70022.
8495
8496         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
8497
8498         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
8499         checkpoint_func as an icall so it gets a wrapper.
8500         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
8501         in the cross-appdomain wrappers too.
8502
8503         * threads.c (mono_thread_has_appdomain_ref): Make this public.
8504
8505         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
8506
8507         * reflection.c: Fix some memory leaks.
8508         
8509 2004-12-02  Martin Baulig  <martin@ximian.com>
8510
8511         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
8512
8513         * metadata.c (generic_class_cache): New static hashtable.
8514         (mono_metadata_lookup_generic_class): New public method.
8515
8516 2004-12-02  Martin Baulig  <martin@ximian.com>
8517
8518         * class.c (mono_class_create_from_typedef): Call
8519         mono_class_setup_parent() and mono_class_create_mono_type() before
8520         parsing the interfaces.
8521
8522 2004-12-02  Martin Baulig  <martin@ximian.com>
8523
8524         * metadata.c (generic_inst_cache): New static hashtable.
8525         (mono_metadata_lookup_generic_inst): New public function.
8526         (mono_metadata_inflate_generic_inst): New public function.
8527         (mono_metadata_parse_generic_inst): New public function.
8528         (do_mono_metadata_parse_generic_class): Use the new
8529         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
8530         since this'll also use the cache.
8531
8532         * reflection.c (mono_reflection_bind_generic_method_parameters):
8533         Use mono_metadata_lookup_generic_inst() to use the new cache.
8534
8535         * class.c (inflate_mono_type): Use
8536         mono_metadata_inflate_generic_inst() to inflate a generic
8537         instance; this'll also use the new cache.
8538
8539         * loader.c (method_from_methodspec): Use
8540         mono_metadata_parse_generic_inst() and
8541         mono_metadata_inflate_generic_inst() rather than parsing it
8542         manually, so we can use the new cache.
8543
8544 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8545
8546         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8547         the wait times out.
8548
8549 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8550
8551         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8552         iter->args based on whether parameters are passed in registers (i.e.
8553         MONO_ARCH_REGPARMS is defined)
8554
8555 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8556
8557         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8558         the exception message. Fixes #70070.
8559         (method_from_methodspec): Fix warnings.
8560
8561 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8562
8563         * process.c: (complete_path) return the path quoted
8564
8565 2004-12-01  Martin Baulig  <martin@ximian.com>
8566
8567         * class-internals.h (MonoGenericInst): New structure.
8568         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8569         `is_open' with `MonoGenericInst *inst'.
8570         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8571         `is_open' with `MonoGenericInst *inst'.
8572
8573 2004-11-30  Martin Baulig  <martin@ximian.com>
8574
8575         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8576
8577         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8578         to `generic_class_cache'.
8579
8580         * metadata.c
8581         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8582         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8583         (mono_generic_inst_is_valuetype): Renamed to
8584         mono_generic_class_is_valuetype().
8585
8586         * class-internals.h
8587         (MonoGenericInst): Renamed to MonoGenericClass.
8588         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8589         (MonoClass): Renamed `generic_inst' to `generic_class'.
8590         (MonoGenericContext): Renamed `ginst' to `gclass'.
8591
8592         * object-internals.h
8593         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8594
8595         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8596         mono_reflection_generic_class_initialize().
8597
8598         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8599         now known as "System.Reflection.MonoGenericClass".
8600         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8601
8602 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8603
8604         * class-internals.h: Added a flag field to MonoClass to cache the
8605         declarative security attributes actions associated with the class.
8606         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8607         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8608         applicable to the JITted method.
8609         * reflection.c|h: Added functions to extract (as flags) which security
8610         actions are available (declaratively) for a method, class or assembly.
8611         * metadata.c|h: Added functions to search the declarative security
8612         table in the metadata.
8613         
8614 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8615
8616         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8617         EXPORTEDTYPES are already in the class name cache, so there is no
8618         need to add extra code here to look at them. Just removes a bit of
8619         cruft.
8620
8621         (ves_icall_System_Environment_get_TickCount): No need for #if
8622         WINDOWS. We already have the code in io-layer.
8623
8624 2004-11-28  Martin Baulig  <martin@ximian.com>
8625
8626         * loader.c
8627         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8628         Fixes gen-112.cs.
8629
8630 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8631
8632         * assembly.c (do_mono_assembly_open): Instead of having a
8633         conditional WITH_BUNDLE, incorporate support for bundles here, by
8634         having a global `bundles' variable holding a pointer to the actual
8635         bundles. 
8636
8637         (mono_register_bundled_assemblies): New API call used by the
8638         bundle code. 
8639
8640         See mkbundle.1 for details.
8641         
8642 2004-11-27  Martin Baulig  <martin@ximian.com>
8643
8644         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8645         the vtable for generic methods.
8646
8647 2004-11-26  Martin Baulig  <martin@ximian.com>
8648
8649         * metadata.c
8650         (mono_metadata_generic_method_hash): New public function.
8651         (mono_metadata_generic_method_equal): Likewise.
8652
8653         * class-internals.h
8654         (MonoGenericContainer): Added `GHashTable *method_hash'.
8655
8656         * reflection.c (ReflectionMethodBuilder): Added
8657         `MonoGenericContainer *generic_container'.
8658         (reflection_methodbuilder_to_mono_method): Don't create a new
8659         MonoGenericContainer each time we're called.
8660         (mono_reflection_bind_generic_method_parameters): Use
8661         `container->method_hash' to cache the results so we don't create a
8662         different method if we're called several times with the same
8663         arguments.
8664
8665         * loader.c (method_from_methodspec): Use the new
8666         `container->method_hash' here, too.
8667
8668 2004-11-26  Martin Baulig  <martin@ximian.com>
8669
8670         * class.c (inflate_generic_signature): Correctly compute
8671         `res->has_type_parameters'.
8672         (mono_class_vtable): Use the `has_type_parameters' flag to
8673         determine whether we're a generic method.
8674
8675         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8676
8677 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8678
8679         * object.c (mono_runtime_run_main): Fix a small memory leak.
8680
8681 2004-11-25  Martin Baulig  <martin@ximian.com>
8682
8683         * class.c (set_generic_param_owner): Fixed the loop.
8684
8685 2004-11-25  Martin Baulig  <martin@ximian.com>
8686
8687         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8688         generic methods.
8689
8690 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8691
8692         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8693         names. Fixes #69787.
8694
8695 2004-11-24  Martin Baulig  <martin@ximian.com>
8696
8697         * class.c (mono_class_create_generic_2): If we don't have a
8698         `ginst->parent', inflate `gklass->parent' to get our parent.
8699
8700 2004-11-24  Martin Baulig  <martin@ximian.com>
8701
8702         * reflection.c (compare_genericparam): Correctly sort the
8703         GenericParam table; fixes #69779.
8704
8705 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8706
8707         * reflection.c: When writing a PE file, don't create a huge
8708         buffer in memory. Just write the arrays we have to the file.
8709         This reduces memory usage.
8710
8711         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8712         globally.
8713
8714 2004-11-17  Martin Baulig  <martin@ximian.com>
8715
8716         * class.c (mono_class_init): Don't setup `class->parent' for
8717         dynamic instances; moved this to mono_class_generic_2().
8718         (mono_class_create_generic): Also set `klass->inited' for dynamic
8719         generic instances.
8720         (mono_class_create_generic_2): Don't do anything for dynamic
8721         generic instances.  Set `klass->parent' here and also call
8722         mono_class_setup_parent() here. 
8723
8724         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8725         `MonoType *parent' argument; set `ginst->parent' before calling
8726         mono_class_create_generic_2(), so we set the correct parent.
8727
8728 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8729
8730         * reflection.c: allow getting attributes from ModuleBuilder
8731         (used by ikvm).
8732
8733 2004-11-17  Martin Baulig  <martin@ximian.com>
8734
8735         * class.c (mono_class_create_from_typedef): If a type parameter is
8736         inherited from an outer class, set its owner to that class.
8737
8738 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8739
8740         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8741           for (int*) written size. This fixes bug #69592.
8742
8743 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8744
8745         * icall.c: Added IsAuthenticodePresnet internal call.
8746         * image.c|h: New function that check a MonoImage for an Authenticode
8747         signature in the certificate PE data directory.
8748         * security.c|h: New internal call to ask the runtime if an 
8749         Authenticode signature seems referenced in the PE header.
8750
8751 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8752
8753         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8754
8755         * reflection.c (mono_image_create_pefile): Free the assembly streams
8756         after writing out the assembly file.
8757
8758         * object.c (mono_runtime_run_main): Fix small memory leak.
8759
8760         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8761         property access modifiers. Fixes #69389.
8762
8763 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8764
8765         * domain.c, object.c, object-internals.h, domain-internals.h,
8766         object.h, marshal.c: keep dynamic code info per domain.
8767
8768 2004-11-15  Martin Baulig  <martin@ximian.com>
8769
8770         * class.c (mono_type_get_name_recurse): Put type arguments in
8771         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8772         see bug #68387.
8773
8774 2004-11-15  Martin Baulig  <martin@ximian.com>
8775
8776         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8777         (mono_class_setup_vtable): When computing `the_cname' for a
8778         generic instance, don't include the namespace since we'd otherwise
8779         add it twice.
8780
8781 2004-11-15  Martin Baulig  <martin@ximian.com>
8782
8783         * class.c (mono_class_create_generic): Changed return type to void.
8784         (mono_class_create_generic_2): New public function; setup
8785         `class->method', `class->field' and `class->interfaces' here
8786         instead of in mono_class_init().
8787
8788         * class.h (mono_class_create_generic): Moved to class-internals.h.
8789
8790 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8791
8792         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8793         rather than writing to memory, write to this file. Right now,
8794         we are just writting into a buffer, and copying that. However
8795         we can avoid the buffer later.
8796
8797         (mono_dynamic_stream_reset): new function
8798
8799         * icall.c, object-internals.h: update for the above.
8800
8801 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8802
8803         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8804         have been using gc'd memory. First it is slower, unlikely
8805         the comment in the source code said, secondly, it increases
8806         our footprint to do it in the gc.
8807
8808         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8809         the method so that it does not have to copy to managed code.
8810
8811 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8812
8813         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8814
8815 2004-11-12  Martin Baulig  <martin@localhost>
8816
8817         * reflection.c (mono_image_create_token): Allow generic method
8818         definitions here, since they may appear in an `.override'; see
8819         gen-98/gen-99 for an example.
8820
8821 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8822
8823         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8824         #69365.
8825
8826         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8827         descriptive.
8828
8829 2004-11-11  Martin Baulig  <martin@ximian.com>
8830
8831         * class.c (mono_class_setup_vtable): In an explicit interface
8832         implementation, the method name now includes the arity.
8833
8834 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8835
8836         * object.c (mono_array_full_copy): Fix warning.
8837
8838 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8839
8840         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8841         mono_class_get_method_from_name() instead.
8842         
8843         * class-internals.h: Added two new types of wrappers. 
8844         Added MonoRemotingTarget enum. Added new trampoline function type, which
8845         takes an additional MonoRemotingTarget value as parameter, so it is
8846         possible to request a trampoline for a specific target.
8847         
8848         * class.c: Added new mono_class_get_method_from_name() method.
8849         
8850         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8851         general remoting sinks and one specific for cross domain calls.
8852         
8853         * debug-helpers.c: Added new wrapper names.
8854         
8855         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8856         of a remote class.
8857         
8858         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8859         
8860         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8861         with several other methods (mono_marshal_get_xappdomain_dispatch,
8862         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8863         and others) can generate a fast remoting wrapper for cross domain calls.
8864         More information can be found in docs/remoting.
8865         Other changes: Removed mono_find_method_by_name, and used
8866         mono_class_get_method_from_name instead.
8867         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8868         is stored in the remoting invoke hashtable.
8869         
8870         * marshal.h: published the new method for getting the xdomain wrapper,
8871         and also added a method for getting the adequate wrapper for a given
8872         method and target.
8873         
8874         * object-internals.h, object.c: Added a couple of methods for capying and
8875         cloning arrays.
8876         Modified mono_install_remoting_trampoline, which takes the new remoting
8877         trampoline that has a remoting target as parameter.
8878         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8879         will return the most suitable vtable for the target.
8880         Added mono_remote_class_vtable, which returns the vtable of a remote class
8881         (which can be the normal remoting vtable or the xdomain vtable).
8882         
8883         * threads.c: the xdomain invoke and dispatch wrappers must also be
8884         protected against interruptions.
8885
8886 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8887
8888         * icall.c: use memmove in BlockCopyInternal when the source and
8889         destination arrays are the same.
8890
8891 2004-11-09  Martin Baulig  <martin@ximian.com>
8892
8893         * class-internals.h (MonoGenericContainer): Removed `method' and
8894         `signature', replaced them with `is_method' and `is_signature'
8895         flags.  Added `context'.
8896
8897         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8898         instead of a `MonoGenericContainer *'.
8899
8900         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8901         for dynamic type parameters.
8902         (mono_metadata_load_generic_params): Setup `container->context'.
8903
8904         * reflection.c (mono_reflection_setup_generic_class): Setup
8905         `tb->generic_container->context'.
8906         (do_mono_reflection_bind_generic_parameters): Use
8907         mono_class_inflate_generic_type() to correctly inflate types,
8908         rather than using our own hack just for MONO_TYPE_VAR.
8909
8910 2004-11-09  Martin Baulig  <martin@ximian.com>
8911
8912         * class.c (mono_class_inflate_generic_method): Small fix; don't
8913         crash here.
8914
8915         * icall.c
8916         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8917         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8918         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8919         (ves_icall_Type_BindGenericParameters): Likewise.
8920         (ves_icall_Type_get_IsGenericInstance): Likewise.
8921         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8922         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8923         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8924         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8925
8926 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8927
8928         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8929         assembly versions and public key tokens. Fixes #69113.
8930
8931 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8932
8933         * metadata.c: fix bug introduced with the type cache changes
8934         on 2004-11-06.
8935
8936 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8937
8938         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8939         the MonoClass pointer instead of the token in exception clauses.
8940         * reflection.c: updates for the above and make the code not depend
8941         on the structure of MonoExceptionClause.
8942
8943 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8944
8945         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8946         Add support for dynamic assemblies. Fixes #69114.
8947
8948         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8949
8950 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8951
8952         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8953         since most only those methods use it. the code member of
8954         MonoMethodPInvoke was dead, so that can be removed too. Also,
8955         remove inline_count (again, not used), and move slot so that it
8956         can share bits with some other flags. This saves 8 bytes in the
8957         structure and gives us about 50 kb back for mcs helloworld.cs
8958
8959         * *.[ch]: Do naming changes for the above.
8960
8961         * loader.c (mono_method_get_header): Lazily init the header
8962         on first access.
8963         (mono_get_method_from_token): don't init the header here
8964         (mono_free_method): the header may never be allocated
8965
8966         Overall, this saves 150 kb of unmanaged allocations
8967         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8968         memory at runtime.
8969         
8970         * loader.c, loader.h (mono_method_get_header): new accessor.
8971
8972         * *.[ch]: use the above method. Prepares us to lazily load
8973         the header.
8974
8975         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8976         three warnings, which are actual bugs (see 69206).
8977
8978         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8979         unused. Saves a cool 4 bytes / method.
8980
8981 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8982
8983         * metadata.c (builtin_types): Add types for System.Object here.
8984         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8985         for a class or valuetype from klass->this_arg or klass->byval_arg.
8986
8987         On mcs for a hello world, this gets us down from 21836 MonoType's
8988         to 14560.
8989
8990         (mono_metadata_free_type): Account for the above change.
8991
8992 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8993
8994         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8995         exception instead of asserting if name is null.
8996         (ves_icall_System_AppDomain_GetData): Ditto.
8997
8998 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8999
9000         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9001         EnumBuilder.
9002
9003         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9004         Return NULL when the domain does not have entry_assembly set.
9005
9006         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9007         Add a 'resource_modules' argument.
9008         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9009
9010         * reflection.c (mono_reflection_create_runtime_class): Move setting
9011         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9012         for enums too.
9013
9014         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9015         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9016         Throw an ArgumentNullException if 'ptr' is null.
9017
9018         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9019         assemblies here. Fixes #69020.
9020
9021 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9022
9023         * reflection.c (build_compressed_metadata): Fix the previous patch for
9024         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9025         the stack.
9026
9027 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9028
9029         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9030         the cultures is false. Fixes #69090.
9031
9032         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9033         detected by valgrind.
9034         
9035         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9036         TypeResolve multiple times for the same type. Fixes #65577.
9037
9038 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9039
9040         * marshal.c: Avoid using ldftn to call managed functions. It is
9041         much slower than just a call.
9042
9043         * reflection.c (mono_module_get_object): free the basename we
9044         allocate here from glib.
9045         
9046         * reflection.c (ensure_runtime_vtable): make sure to free
9047         overrides.  Also, we were allocating an array of MonoMethod not an
9048         array of MonoMethod*.
9049
9050         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9051
9052         * image.c (mono_image_close): free image->guid here.
9053
9054 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9055
9056         * reflection.c: Fix some spec conformance issues with the PE file
9057         structures so mcs compiled apps run on the Net 2.0 beta.
9058
9059 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9060
9061         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9062         Implement this. Fixes #67264.
9063
9064         * debug-helpers.h debug-helpers.c marshal.c: Move 
9065         mono_find_method_by_name to debug-helpers.c.
9066
9067 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9068
9069         * object.c (mono_release_type_locks): type_initialization_hash is
9070         a GHashTable.
9071
9072         * reflection.c object.c object-internals.h: Fix warnings.
9073
9074         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9075         without accessors. Fixes #61561.
9076
9077         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9078         application base from the root domain if not set. Fixes #65641.
9079         (mono_runtime_init): Fix warning.
9080
9081 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9082
9083         * appdomain.c: call mono_thread_pool_init.
9084         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9085         of worker threads based on the number of CPUs and the environment
9086         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9087         for non-windows (windows) systems.
9088
9089 2004-10-27  Chris Toshok  <toshok@ximian.com>
9090
9091         * mono-debug-debugger.c (write_class): don't call mono_class_init
9092         here, as even with the check for (!klass->init_pending), we get
9093         into a situation where we're hitting cycles in class
9094         initialization.  Fixes #68816.
9095
9096 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9097
9098         * image.c: Avoid overwriting values in the loaded_images_hash when an
9099         assembly is loaded multiple times. Fixes #61152.
9100
9101         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9102         so multiple satellite assemblies for the same name can be loaded.
9103         Fixes #68259.
9104
9105         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9106         not NULL.
9107
9108         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9109         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9110
9111         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9112         pending finalizers are not invoked after the appdomain has been 
9113         unloaded. Fixes #67862.
9114
9115 2004-10-22  Martin Baulig  <martin@ximian.com>
9116
9117         * mono-debug-debugger.c
9118         (mono_debugger_runtime_invoke): Don't box valuetypes.
9119
9120 2004-10-22  Chris Toshok  <toshok@ximian.com>
9121
9122         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9123         don't hide private methods.
9124
9125 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9126
9127         * icall.c: Allows the runtime to "share" (when known) the public key
9128         token of an assembly. This avoid the need to recalculate the token 
9129         (from the public key) in managed code.
9130
9131 2004-10-21  Chris Toshok  <toshok@ximian.com>
9132
9133         * debug-helpers.c (append_class_name): argh, revert last patch.
9134         
9135 2004-10-21  Chris Toshok  <toshok@ximian.com>
9136
9137         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9138         not '/', so that it matches what the debugger uses to look up
9139         methods.
9140
9141 2004-10-21  Martin Baulig  <martin@ximian.com>
9142
9143         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9144         public method; this is called each time an exception is thrown and
9145         allows the debugger to use exception catch points.
9146
9147 2004-10-21  Martin Baulig  <martin@ximian.com>
9148
9149         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9150         the stack pointer and the exception object in some struct and pass
9151         that to the debugger.
9152
9153 2004-10-21  Chris Toshok  <toshok@ximian.com>
9154
9155         * mono-debug-debugger.c (do_write_class): add instance/static
9156         event support.  We don't expose "raise" or "other" yet.
9157         (event_is_static): new method.
9158
9159 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9160
9161         * mono-debug-debugger.c
9162         (mono_debugger_handle_exception): Remove
9163         bogus return value for fussy compilers.
9164
9165 2004-10-20  Martin Baulig  <martin@ximian.com>
9166
9167         * mono-debug-debugger.c
9168         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9169         (mono_debugger_handled_exception): Likewise.
9170
9171 2004-10-20  Martin Baulig  <martin@ximian.com>
9172
9173         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9174         MONO_DEBUGGER_EVENT_EXCEPTION.
9175
9176         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9177         public function to send the debugger a notification for an
9178         exception and inform it about a catch/finally clause.
9179
9180 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9181
9182         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9183         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9184         fix 2.95 build. 
9185
9186         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9187
9188 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9189
9190         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9191         marshalled as [In,Out]. Fixes #58325.
9192
9193 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9194
9195         * reflection.c (mono_method_body_get_object): Implement some fields.
9196
9197 2004-10-12  Martin Baulig  <martin@ximian.com>
9198
9199         * reflection.c (mono_reflection_bind_generic_parameters): Small
9200         fix, correctly retrieve our parent from a generic instance.
9201
9202 2004-10-12  Martin Baulig  <martin@ximian.com>
9203
9204         * metadata.c (mono_metadata_generic_param_equal): We always have
9205         an owner.
9206
9207         * class.c
9208         (mono_class_from_generic_parameter): We need to have an owner.
9209         (my_mono_class_from_generic_parameter): Likewise.
9210
9211         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9212         mono_reflection_create_generic_class() and added a new
9213         mono_reflection_setup_generic_class().  
9214         (mono_reflection_initialize_generic_param): If we're a nested
9215         generic type and inherited from the containing class, set our
9216         owner to the outer class.
9217
9218 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9219
9220         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9221
9222         * reflection.c (mono_method_body_get_object): New function to create
9223         a MethodBody object.
9224
9225         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9226
9227 2004-10-11  Martin Baulig  <martin@ximian.com>
9228
9229         * metadata.c (_mono_metadata_type_equal): Renamed to
9230         do_mono_metadata_type_equal() and made static.
9231
9232 2004-10-11  Martin Baulig  <martin@ximian.com>
9233
9234         * appdomain.c: Bump corlib version number to 28.
9235
9236 2004-10-10  Martin Baulig  <martin@ximian.com>
9237
9238         * class-internals.h
9239         (MonoGenericInst): Added `MonoGenericContainer *container'.
9240         (MonoGenericMethod): Likewise.
9241         (MonoGenericContext): Likewise.
9242         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9243
9244         * metadata.c
9245         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9246         (do_mono_metadata_parse_generic_inst): Likewise.
9247         (mono_metadata_parse_type_full): New public method.  This is the actual
9248         mono_metadata_parse_type() implementation - with an additional
9249         `MonoGenericContainer *' argument.
9250         (mono_metadata_parse_array_full): Likewise.
9251         (mono_metadata_parse_signature_full): Likewise.
9252         (mono_metadata_parse_method_signature_full): Likewise.
9253         (mono_metadata_parse_mh_full): Likewise.
9254         (mono_type_create_from_typespec): Likewise.
9255         (mono_metadata_interfaces_from_typedef_full): New public method;
9256         this is similar to the other _full() methods, but we take a
9257         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9258         (mono_metadata_parse_generic_param): Take an additional
9259         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9260         from that container.
9261         (mono_metadata_generic_param_equal): New static method to compare
9262         two type parameters.
9263         (_mono_metadata_type_equal): New static method; takes an
9264         additional `gboolean signature_only' argument - if true, we don't
9265         compare the owners of generic parameters.
9266         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9267         with a TRUE argument - do a signature-only comparision.
9268
9269         * loader.c: Use the new _full() methods and pass the
9270         MonoGenericContainer to them.
9271
9272         * object-internals.h (MonoReflectionTypeBuilder): Added
9273         `MonoGenericContainer *generic_container' field.
9274         (MonoReflectionMethodBuilder): Likewise.
9275
9276 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9277
9278         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9279         case initial images of dynamic assemblies.
9280
9281         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9282
9283         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9284
9285         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9286         length of event->other array.
9287         (typebuilder_setup_events): Ditto.
9288
9289         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9290         'assembly_by_name' and add an 'assemblies' list.
9291
9292         * assembly.h assembly.c: Add a new search hook for determining whenever
9293         an assembly is already loaded. Use this instead of searching in the
9294         loaded_assemblies list.
9295
9296         * domain.c appdomain.c: Implement the new search hook so loaded 
9297         assemblies are now scoped by appdomain. Fixes #67727.
9298
9299 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9300
9301         * threads.c (mono_thread_attach): Initialize synch_lock field so
9302         mono_thread_detach works again.
9303
9304         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9305         'lib' too. Fixes #63130.
9306
9307 2004-10-06  Jackson Harper  <jackson@ximian.com>
9308
9309         * culture-info-tables.h: regenerated.
9310
9311 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9312
9313         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9314         implemented by other interfaces in the result. Fixes #65764.
9315         
9316         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9317         Handle unloadable modules without crashing.
9318
9319         * image.c (load_modules): Revert the previous patch since modules must
9320         have a fixed index inside the array.
9321         
9322         * image.c (load_modules): Don't include native modules in the modules
9323         array.
9324
9325 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9326
9327         * reflection.h: Add param_defaults field.
9328
9329         * reflection.c: Add support for parameter defaults in dynamic methods.
9330         Fixes #64595.
9331
9332         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9333         an empty string when a type has no namespace. Fixes #64230.
9334
9335 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9336
9337         * tabledefs.h: Added "internal" security actions to support non-CAS
9338         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9339         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9340
9341 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9342
9343         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9344         constructor of abstract class. Fixes #61689.
9345
9346 2004-10-04  Martin Baulig  <martin@ximian.com>
9347
9348         * class-internals.h (MonoGenericContainer): New type.
9349         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9350         `MonoGenericContainer *generic_container'.
9351         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9352         `MonoGenericContainer *generic_container'.
9353
9354         * metadata.c (mono_metadata_load_generic_params): Return a
9355         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9356         removed the `num' argument.
9357
9358 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9359
9360         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9361         for dynamic images.
9362
9363         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9364         machine fields.
9365
9366         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9367
9368         * reflection.c: Save pe_kind and machine values into the generated
9369         image file.
9370
9371         * appdomain.c: Bump corlib version number.
9372
9373         * object-internals.h: Reorganize layout of LocalBuilder.
9374
9375         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9376         New helper function.
9377
9378         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9379         created MonoType for dynamic types. Fixes #66180.
9380
9381 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9382
9383         * threadpool.c: the ares hashtable needs a critical section around it.
9384         this prevents some nasty segfaults
9385
9386 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9387
9388         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9389         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9390         bug 67324).
9391         
9392 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9393
9394         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9395         
9396 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9397
9398         * image.c: Always canonicalize image file names, to avoid loading
9399         the same assembly twice when referenced using a relative path.
9400
9401 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9402
9403         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9404
9405         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9406
9407         * marshal.c: Fix warnings.
9408
9409 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
9410
9411         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
9412         attempting to marshal the delegate_trampoline as the method_addr.
9413         This patch has a static hashtable of marshalled delegates so that 
9414         we can map delegate_trampoline addresses back to delegates.  This
9415         allows a delegate passed to managed code to be passed back into native
9416         code.  Fixes #67039
9417
9418 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9419
9420         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
9421
9422         * reflection.c (method_encode_code): Align method headers properly.
9423         Fixes #66025.
9424
9425 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9426
9427         * marshal.c: In the runtime invoke wrapper, reset the abort
9428         exception if it is cached. This avoids the automatic rethrowal of 
9429         the exception after the catch of the wrapper. Also check for pending
9430         interruptions before calling the managed method. This is done using
9431         the new method emit_thread_force_interrupt_checkpoint, since the
9432         normal checkpoint method is ignored when running the invoke wrapper.
9433         * object.c: If the abort exception is rethrown, set the abort_exc
9434         field of the thread, so it will be rethrown aftere every catch.
9435         * threadpool.c: Only run an interruption checkpoint if what has been
9436         requested is a stop of the thread (aborts will be ignored).
9437         * threads.c: By default, a thread will now never be interrumped while
9438         running the runtime invoke wrapper (this ensures that runtime_invoke
9439         will always return to the caller if an exception pointer is provided).
9440         There is a new special method mono_thread_force_interruption_checkpoint()
9441         to force an interruption checkpoint even if running a protected
9442         wrapper, which is used by the same runtime invoke wrapper to do a check
9443         at a safe point.
9444
9445 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9446
9447         * object.c, object-internals.h: Implemented mono_release_type_locks,
9448         which releases the cctor locks held by a thread.
9449         * threads.c, threads.h: In thread_cleanup, release cctor locks held
9450         by a thread. Added mono_thread_exit() method to be used to safely stop
9451         a thread.
9452
9453 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9454
9455         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9456         Move null check before dereference.  Avoid indexing beyond the end
9457         of the 'modules' array.
9458
9459 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9460
9461         * metadata-internals.h (MonoImage): Add module_count field.
9462         * image.c (load_modules): Set image->module_count.
9463         (mono_image_load_file_for_image): Use image->module_count.
9464         * reflection.c (mono_image_load_module): Append to image->modules array 
9465         of dynamic assembly.
9466         (mono_module_get_object): Fix loop to actually increment index.
9467         Use image->module_count.
9468         * assembly.c (mono_assembly_load_references): Use image->module_count.
9469         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
9470         Likewise.
9471
9472 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9473
9474         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
9475         Avoid assert on generic types.
9476
9477 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
9478
9479         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
9480
9481         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
9482
9483         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
9484         function to convert a MarshalSpec structure to its managed counterpart.
9485
9486         * reflection.c: Fix warnings.
9487         
9488         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
9489         field.
9490
9491         * icall.c (mono_create_icall_signature): Fix build.
9492
9493 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
9494
9495         * icall.c: Add MakePointType icall.
9496
9497         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
9498         warnings.
9499
9500 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9501
9502         * threadpool.c: reuse allocated slots in the queue.
9503
9504 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
9505
9506         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
9507
9508         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
9509
9510         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
9511         previous change.
9512
9513         * tabledefs.h: Add constants for pinvoke attributes BestFit and
9514         ThrowOnUnmappableChar.
9515
9516         * icall.c (ves_icall_Type_GetPacking): New icall.
9517
9518 2004-09-24  Martin Baulig  <martin@ximian.com>
9519
9520         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
9521
9522 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9523
9524         * appdomain.c:
9525         (mono_domain_set): allow setting a domain that is being unloaded.
9526         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
9527         being unloaded.
9528
9529 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9530
9531         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
9532         the GetCustomAttributes icall.
9533
9534 2004-09-23  Martin Baulig  <martin@ximian.com>
9535
9536         * object-internals.h (MonoReflectionGenericParam): Replaced
9537         'has_ctor_constraint', `has_reference_type' and `has_value_type'
9538         with `guint32 attrs'.
9539
9540 2004-09-23  Martin Baulig  <martin@ximian.com>
9541
9542         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
9543
9544 2004-09-23  Martin Baulig  <martin@ximian.com>
9545
9546         * object-internals.h (GenericParameterAttributes): New enum.
9547
9548 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9549
9550         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9551         
9552         * class.c (init_events): Fill out event->other field.
9553
9554         * class.c: Fix warnings.
9555
9556         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9557
9558 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9559
9560         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9561         walk which doesn't supply the IL offset.
9562
9563 2004-09-22  Martin Baulig  <martin@ximian.com>
9564
9565         * reflection.c (mono_reflection_setup_internal_class): If we're
9566         System.ValueType, System.Object or System.Enum, set
9567         `klass->instance_size' and create the vtable.
9568         (mono_reflection_create_internal_class): If we're an enum type,
9569         get the base class from our current corlib.
9570
9571 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9572
9573         * reflection.h (MonoResolveTokenError): New type.
9574
9575         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9576         icall.
9577
9578         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9579
9580 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9581
9582         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9583         Support also calling constructors, but only for already allocated objects.
9584
9585 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9586
9587         * reflection.c (type_get_qualified_name): If the klass is null
9588         return the typename to avoid a NullRefEx.
9589         (encode_cattr_value): Get the qualified name of the boxed type,
9590         not the underlying enumtype.  Fixes #62984.
9591
9592 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9593
9594         * marshal.c: Fix problems with previous checkin.
9595
9596 2004-09-21    <vargaz@freemail.hu>
9597
9598         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9599         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9600
9601         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9602
9603 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9604
9605         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9606         should only return a type for pointers, arrays, and passbyref types.
9607         Fixes bug #63841.
9608
9609 2004-09-21  Martin Baulig  <martin@ximian.com>
9610
9611         * domain.c (mono_debugger_check_runtime_version): New public
9612         function.
9613
9614         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9615
9616 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9617
9618         * reflection.c: Added missing sort to the declarative security 
9619         attributes table. MS implementation stops seeing the attributes if the
9620         token number regress in the table (as shown by ildasm and permview).
9621
9622 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9623
9624         * object-internals.h (MonoReflectionModule): Add 'token' field.
9625         
9626         * reflection.c (mono_reflection_get_token): Add support for Module
9627         and Assembly.
9628         (mono_module_get_object): Set 'token' field.
9629         (mono_module_file_get_object): Set 'token' field.
9630
9631         * icall.c: Add new Assembly and Module icalls.
9632
9633         * appdomain.c: Bump corlib version.
9634
9635 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9636
9637         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9638         tokens of metadata objects.
9639
9640         * reflection.h reflection.c (mono_reflection_get_token): New function
9641         to obtain the token of a metadata object.
9642
9643         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9644
9645 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9646
9647         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9648         
9649         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9650
9651 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9652
9653         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9654         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9655         AssemblyBuilder to access the permissions set in the class lib.
9656         * reflection.c: Added security attributes encoding step in 
9657         mono_image_build_metadata.
9658         * tabledefs.h: Added new security actions defined in 2.0:
9659         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9660
9661 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9662
9663         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9664         macro parameter.
9665
9666 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9667  
9668         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9669           finalized. There where random SIGSEVs at program termination, when
9670           an object being finalized was trying to do a string comparison and
9671           the current culture was already finalized.
9672  
9673 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9674
9675         * threads.c: call thread_cleanup before finishing the thread if we get
9676         there.
9677
9678 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9679
9680         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9681         assemblies from the parent. Fixes #65665.
9682
9683 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9684
9685         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9686         modifiers.
9687
9688 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9689
9690         * reflection.h: add prototype for mono_get_dbnull_object
9691         * reflection.c: add prototypes for get_default_param_value_blobs 
9692         and mono_get_object_from_blob for fussier compilers
9693
9694 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9695  
9696         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9697         false deadlock checks in class initialization.
9698  
9699 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9700
9701         * image.c (mono_image_addref): Fix comment.
9702
9703         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9704         possible.
9705
9706 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9707
9708         * reflection.c (mono_param_get_objects): Modified to return
9709         ParameterInfo.DefaultValue object.
9710
9711         (get_default_param_value_blobs):
9712         (mono_get_object_from_blob):
9713         (mono_get_dbnull_object): New helper routines. 
9714
9715         * object.c (mono_get_constant_value_from_blob): New helper routine
9716         carved out from get_default_field_value ()
9717
9718         * object-internals.h (mono_get_constant_value_from_blob): Added
9719         function declaration.
9720
9721 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9722
9723         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9724         referenced assemblies. Fixes #62135.
9725
9726         * exception.h exception.c (mono_get_exception_file_not_found2): New
9727         helper function.
9728
9729 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9730
9731         * class.h class.c: Add mono_type_get_underlying_type ().
9732
9733 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9734
9735         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9736         Fix GetTypes() to support dynamically created assemblies.
9737
9738 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9739
9740         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9741         
9742         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9743         previous patch.
9744
9745         * reflection.h reflection.c loader.c: Allow dynamic construction of
9746         pinvoke methods. Fixes #65571.
9747         
9748         * reflection.c (mono_reflection_get_type): Revert previous change since
9749         it causes regressions.
9750
9751 2004-09-08  Martin Baulig  <martin@ximian.com>
9752
9753         * class.c (class_compute_field_layout): Don't call
9754         mono_class_layout_fields() for open generic instances.
9755
9756 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9757         * threads.c appdomain.c: fix typo in GC macro
9758
9759 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9760
9761         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9762         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9763
9764 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9765
9766         * image.c (mono_image_close): Applied patch from 
9767         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9768         assembly is loaded multiple times from data.
9769         
9770         * image.c (mono_image_open): Fix warning.
9771
9772 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9773
9774         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9775         once. Fixes #58334.
9776         
9777         * reflection.c (mono_reflection_create_runtime_class): Initialize
9778         klass->nested_classes. Fixes #61224.
9779
9780 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9781
9782         * threads.c: sched_yield() on exit, to allow threads to quit.
9783
9784 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9785
9786         * object.c (mono_unhandled_exception): Remove leftover debug code.
9787
9788 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9789
9790         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9791
9792 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9793
9794         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9795         
9796         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9797
9798 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9799
9800         * marshal.c (emit_marshal_array): Null terminate string arrays.
9801         
9802         * marshal.c (raise_auto_layout_exception): Fix warning.
9803
9804         * reflection.c (mono_param_get_objects): Initialize the default value
9805         with DBNull.Value, not null. Fixes #62123.
9806
9807 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9808
9809         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9810         throw an exception with a cute explanation.
9811
9812 2004-09-06  Dick Porter  <dick@ximian.com>
9813
9814         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9815         Close the new process's thread handle, as we don't use it.  The
9816         handle stays around forever otherwise.
9817
9818 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9819
9820         * object.c (arith_overflow): Fix warning.
9821
9822         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9823         calling conventions in method refs. Fixes #65352.
9824
9825         * reflection.c: Fix warnings.
9826
9827 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9828
9829         * icall.c: Add a new icall for Array.Clear
9830
9831 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9832
9833         * object.c: When allocating an array, we have to throw
9834         an overflow exception if any of the lengths are < 0.
9835
9836 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9837
9838         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9839         properly. Also move implementation of string array marshalling to 
9840         managed code. Fixes #42316.
9841
9842 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9843
9844         * assembly.c: provide more information when loading an assembly fails.
9845
9846 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9847
9848         * filewatcher.c: don't expect the development fam package to be
9849         installed.
9850
9851 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9852
9853         * marshal.c: Make a copy of the signature cookie since it will be
9854         freed by the caller.
9855         
9856         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9857
9858         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9859
9860         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9861         marshal specs.
9862
9863         * marshal.c: More refactoring.
9864         
9865         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9866         smaller functions.
9867
9868 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9869
9870         * object.c: In mono_message_invoke, fill the output parameter array after
9871           calling the managed method (it was done before the call). This fixes
9872           bug #59299.
9873
9874 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9875
9876         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9877         as well.
9878
9879 2004-09-02  Martin Baulig  <martin@ximian.com>
9880
9881         * class.c (mono_class_instance_size): Don't allow generic type
9882         definitions or open generic instances.
9883         (mono_class_array_element_size): If we're a value type, call
9884         mono_class_instance_size() on the original class.
9885
9886         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9887         handle generic instances.
9888
9889         * mono-debug-debugger.c (write_type): Handle generic instances
9890         like classes.
9891
9892 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9893
9894         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9895         the allocation request fails. Fixes #65089.
9896
9897         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9898         
9899         * object.c (mono_runtime_free_method): New function to free a dynamic
9900         method.
9901
9902         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9903         delegate trampoline.
9904
9905         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9906         with hasthis as dynamic,
9907
9908         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9909
9910         * domain.c (mono_jit_info_table_remove): New function to remove an
9911         entry from the jit info table.
9912
9913         * class-internals.h (MonoMethod): Add 'dynamic' field.
9914
9915         * loader.c: Fix warnings.
9916
9917 2004-09-01  Martin Baulig  <martin@ximian.com>
9918
9919         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9920         instead of mono_debugger_lock() because the latter one is a no-op
9921         unless running in the debugger.
9922
9923 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9924
9925         * class.c (class_compute_field_layout): Classes with auto-layout or
9926         reference fields are not blittable.
9927         
9928 2004-09-01  Dick Porter  <dick@ximian.com>
9929
9930         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9931         mono_image_get_filename() to get the assembly location.
9932
9933         * icall.c:
9934         * metadata.h: Fix compile warnings
9935
9936 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9937
9938         * class.c (class_compute_field_layout): System.Object is blittable.
9939
9940         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9941         as in/out. Fixes #59909.
9942
9943 2004-09-01  Martin Baulig  <martin@ximian.com>
9944
9945         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9946         mono_metadata_generic_inst_is_valuetype() if we're a generic
9947         instance to check whether our underlying type is a reference type.
9948
9949 2004-09-01  Martin Baulig  <martin@ximian.com>
9950
9951         * metadata.c (mono_type_size): If we're a generic instance, call
9952         mono_class_value_size() for value types.
9953
9954 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9955
9956         * marshal.c: Implement more custom marshalling functionality. Fixes
9957         #64915.
9958
9959 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9960
9961         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9962
9963 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9964
9965         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9966
9967         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9968
9969         * icall.c: Fix some warnings.
9970
9971         * threads.c (abort_appdomain_thread): Fix unref errors.
9972         (mono_thread_current): Fix THREAD_DEBUG define.
9973
9974 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9975
9976         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9977
9978         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9979
9980 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9981
9982         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9983         string arrays.
9984
9985 2004-08-28  Martin Baulig  <martin@ximian.com>
9986
9987         * metadata.c
9988         (mono_metadata_generic_inst_is_valuetype): New public function.
9989
9990         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9991         mono_metadata_generic_inst_is_valuetype() if we're a generic
9992         instance to check whether our underlying type is a valuetype.
9993
9994 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9995
9996         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9997         #63768.
9998
9999 2004-08-25  Martin Baulig  <martin@ximian.com>
10000
10001         * loader.c (mono_get_method_from_token): Abstract methods can also
10002         be generic and thus have type parameters.
10003
10004         * metadata-internals.h
10005         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10006
10007         * reflection.c (mono_image_get_generic_param_info): Don't create a
10008         metadata row, just add an entry to the `gen_params' array.
10009         (build_compressed_metadata): Sort the `gen_params' array and then
10010         actually create the metadata.
10011
10012 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10013
10014         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10015
10016 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10017
10018         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10019
10020 2004-08-24  Martin Baulig  <martin@ximian.com>
10021
10022         * class.cs (mono_class_is_subclass_of): Like an interface, a
10023         generic instance also derives from System.Object.
10024
10025 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10026
10027         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10028         custom modifiers to be in any order. Fixes #61990.
10029
10030 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10031
10032         * object.c: Register mono_object_new_fast icall.
10033         
10034         * object.c (mono_class_get_allocation_ftn): Return to calling
10035         mono_object_new_fast, since it seems faster to compute the object 
10036         size in unmanaged code than passing it as a parameter.
10037
10038         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10039
10040         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10041         this function with Boehm as the oom handler, so we don't have to check
10042         the result of GC_malloc.
10043
10044         * object.c: Remove checks for oom.
10045
10046         * object.h object.c (mono_class_get_allocation_ftn): New function to
10047         return the icall which can be used to allocate an instance of a given
10048         class. 
10049
10050         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10051
10052         * class-internals.h: Add 'enabled' field.
10053
10054 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10055
10056         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10057
10058 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10059         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10060         value 0x0010.
10061
10062 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10063
10064         * appdomain.c: use the Tls function for appdomain too,
10065         at Zoltan's request. Actually return in mono_context_get
10066
10067         * appdomain.c, profiler.c, threads.c: use __thread
10068
10069 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10070
10071         * appdomain.c threads.c: Call GC_CreateThread on windows.
10072
10073         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10074         multiple libraries since this don't work on windows.
10075
10076 2004-08-18  Martin Baulig  <martin@ximian.com>
10077
10078         * class-internals.h
10079         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10080         MonoMethodHeader.
10081
10082         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10083         MonoMethodNormal since we also need it for abstract and interface
10084         methods.
10085
10086         * reflection.c
10087         (build_compressed_metadata): Sort the GenericParam table.
10088         (mono_image_create_token): Added `gboolean create_methodspec'
10089         argument; this is false when generating a MethodImpl token.
10090         (reflection_methodbuilder_to_mono_method): Abstract and interface
10091         methods may also have generic parameters.
10092
10093 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10094
10095         * appdomain.c: thread local alloc
10096
10097 2004-08-17  Martin Baulig  <martin@ximian.com>
10098
10099         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10100
10101         * icall.c
10102         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10103         argument.
10104
10105         * class.c (mono_type_get_full_name): New public function.
10106         (mono_type_get_name): Don't include the type arguments.
10107
10108 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10109
10110         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10111         for inclusion into the mono executable.
10112
10113 2004-08-16  Martin Baulig  <martin@ximian.com>
10114
10115         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10116         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10117
10118 2004-08-14  Martin Baulig  <martin@ximian.com>
10119
10120         * class.c (dup_type): Also copy the `byref' field.
10121
10122 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10123
10124         * reflection.c (create_dynamic_mono_image): Revert the last change 
10125         since it breaks bootstrap.
10126
10127 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10128
10129         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10130
10131         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10132         not free them with g_free.
10133
10134 2004-08-11  Martin Baulig  <martin@ximian.com>
10135
10136         * reflection.c (mono_reflection_setup_internal_class): Also call
10137         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10138
10139 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10140
10141         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10142         called during default (first) AppDomain creation. Keep track of
10143         Evidence when loading assemblies.
10144
10145 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10146
10147         * opcodes.c, opcodes.h: reduce runtime relocations.
10148
10149 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10150
10151         * culture-info.h, locales.c: fixes and chages to sue the new
10152         optimized format of the locale data.
10153         * culture-info-tables.h: regenerated.
10154
10155 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10156         
10157         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10158
10159 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10160
10161         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10162         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10163         * domain-internals.h: icall declaration.
10164         * icall.c: icall registration.
10165         * object-internals.h: New fields in MonoAssembly for CAS.
10166
10167 2004-08-05  Duncan Mak  <duncan@ximian.com>
10168
10169         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10170         CEE_LDELEM_ANY.
10171
10172 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10173
10174         * reflection.c: fix to deal with object[] arrays in custom ctors
10175         (bug #62550).
10176
10177 2004-08-05  Martin Baulig  <martin@ximian.com>
10178
10179         * class.c (mono_class_array_element_size): Added support for
10180         generic instances and correctly handle "recursive" types.
10181
10182 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10183
10184         * assembly.c: Fix warnings.
10185
10186 2004-08-04  Martin Baulig  <martin@ximian.com>
10187
10188         * class.c
10189         (mono_type_get_name_recurse): Added `gboolean include_arity'
10190         argument specifying whether or not we should include the generic
10191         arity in the type name.
10192         (_mono_type_get_name): New static function.
10193         (mono_class_setup_vtable): If we're a generic instance, don't
10194         include the generic arity in the names of explicit method
10195         implementations.        
10196
10197 2004-08-03  Martin Baulig  <martin@ximian.com>
10198
10199         * class.c (mono_type_get_name_recurse): Enclose the generic type
10200         arguments in `<', '>'.
10201
10202 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10203
10204         * gc.c: make GC warning messages use the trace API, they are just
10205         noise to most of the users.
10206
10207 2004-08-03  Martin Baulig  <martin@ximian.com>
10208
10209         * debug-mono-symfile.c (read_string): Correctly read the string.
10210
10211 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10212
10213         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10214         
10215         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10216         icalls.
10217         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10218
10219 2004-07-30  Martin Baulig  <martin@ximian.com>
10220
10221         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10222         Reflect latest symbol writer changes.   
10223
10224 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10225
10226         * object.c: always create an object if null is passed
10227         to Invoke() where a valuetype is expected.
10228
10229 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10230
10231         * marshal.c (mono_marshal_init): make managed
10232         signatures match native ones better for 64bits.
10233
10234 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10235
10236         * appdomain.c: hack to build correctly the private bin path on windows.
10237         Fixes bug #61991.
10238
10239 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10240
10241         * assembly.c: Load mscorlib from the correct framework directory
10242           (mono/<version>/mscorlib.dll).
10243         * appdomain.h: Added prototypes for new functions.
10244         * internals.h: Added some prototypes.
10245         * domain.c: When initializing the runtime, get from the executable and
10246           the configuration files the runtime version that the app supports.
10247           Added support methods for reading app.exe.config. Added list of versions
10248           supported by the JIT. Added two new methods: mono_init_from_assembly,
10249           which initializes the runtime and determines the required version from
10250           the provided exe file, and mono_init_version, which initializes
10251           the runtime using the provided version.
10252         * icall.c: Get machine.config from version-specific directory.
10253         * reflection.c: When generating an image, embed the version number
10254           of the current runtime.
10255
10256 2004-07-28  Dick Porter  <dick@ximian.com>
10257
10258         * socket-io.c
10259         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10260         returned sockaddr size before creating the remote address object.
10261         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10262         61608.
10263
10264 2004-07-28  Dick Porter  <dick@ximian.com>
10265
10266         * locales.c (string_invariant_compare_char): Fix invariant char
10267         compares between upper and lower cases.  Fixes bug 61458.
10268
10269 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10270         
10271         * marshal.c: actually cache stelem.ref wrappers.
10272         
10273 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10274
10275         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10276         sections and remove the mono_cli_rva_map () function.
10277
10278 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10279
10280         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10281         by Geoff Norton (<gnorton@customerdna.com>).
10282
10283 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10284
10285         * class.c: fix class loads for pointer types (typeof(int) !=
10286         typeof(int*)).
10287
10288 2004-07-27  Martin Baulig  <martin@ximian.com>
10289
10290         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10291         reading the debugging information from an external ".mdb" file.
10292
10293 2004-07-24  Martin Baulig  <martin@ximian.com>
10294
10295         * reflection.c (mono_image_get_type_info): Only write a class
10296         layout entry if we actually have a size or a packing size.
10297
10298 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10299
10300         * reflection.c (type_get_fully_qualified_name): 
10301         insert cast to get type checking of ?: with non-gcc compilers
10302
10303 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10304
10305         * rand.c: use g_getenv for both lookups of
10306         MONO_EGD_SOCKET
10307
10308 2004-07-17  Martin Baulig  <martin@ximian.com>
10309
10310         * reflection.c (mono_reflection_bind_generic_method_parameters):
10311         Set `gmethod->reflection_info'.
10312
10313 2004-07-17  Martin Baulig  <martin@ximian.com>
10314
10315         * class.c (mono_class_create_from_typedef): Insert the newly
10316         created class into the hash table before computing the interfaces
10317         since we could be called recursively.
10318
10319 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10320
10321         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10322         function to implement stelem.ref in managed code
10323         * class-internals.h, debug-helpers.c: a new wrapper type
10324         for the above.
10325
10326 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10327
10328         * gc.c: allow GC handles to work even when no GC is compiled in.
10329         Fix part of bug #61134 (GetAddrOfPinnedObject).
10330
10331 2004-07-13  Peter Williams  <peter@newton.cx>
10332  
10333         * process.c (complete_path): Make sure we don't attempt to execute
10334         directories.
10335  
10336 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10337
10338         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10339           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10340           and will add/subtract the hour if needed
10341
10342 2004-07-12  Martin Baulig  <martin@ximian.com>
10343
10344         * reflection.c (mono_field_get_object): If we have
10345         `field->generic_info', take the attributes from
10346         `field->generic_info->generic_type'.    
10347
10348 2004-07-12  Martin Baulig  <martin@ximian.com>
10349
10350         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10351         This function must be called before initializing the runtime.
10352         (mono_debug_init_1): New function; call this after initializing
10353         the runtime, but before loading the assembly.  It tells the
10354         debugger to load corlib and the builtin types.
10355
10356         * mono-debug-debugger.c: Did some larger changes in the debugging
10357         code; support recursive class declarations, make sure we actually
10358         add all classes.
10359
10360 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * debug-helpers.c: undo my previous patch and fixed the real issue in
10363         ../mini/exceptions-x86.c
10364
10365 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10366
10367         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10368         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10369         called from other .cctors.
10370
10371 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10372
10373         * loader.c: Removed the mono_loader_wine_init hack now that we are
10374         doing a managed version of Windows.Forms.
10375
10376 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10377
10378         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10379         threadpool.c, threads.c: remove static data from rootset.
10380
10381 2004-07-09  Dick Porter  <dick@ximian.com>
10382
10383         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10384         Don't do any more processing if the matched length was 0.  It was
10385         increasing the size of the string before.  Fixes bug 61167.
10386
10387 2004-07-09  Dick Porter  <dick@ximian.com>
10388
10389         * socket-io.h:
10390         * socket-io.c
10391         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10392         Add support for SO_PEERCRED if its available.
10393
10394 2004-07-09  Peter Bartok <pbartok@novell.com>
10395         * loader.c: winelib.exe.so error message is now only displayed if
10396         MONO_DEBUG is set. To help us avoid questions when people are trying
10397         out the new Managed.Windows.Forms.
10398
10399 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10400
10401         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10402         for isinst and castclass wrappers.
10403
10404         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10405         to libmetadata from the JIT, so they could be used by the marshalling
10406         code and the interpreter.
10407
10408         * marshal.c: Register marshalling related JIT icalls here instead of
10409         in mini.c. Use CEE_MONO_ICALL instead of the family of 
10410         CEE_MONO_PROC<x> opcodes to call marshalling functions.
10411
10412         * metadata.h: Remove unneeded marshalling conversions.
10413
10414         * opcodes.c: Update for new opcodes.
10415         
10416 2004-07-08  Martin Baulig  <martin@ximian.com>
10417
10418         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
10419         (mono_debug_get_domain_data): Make this function static.
10420
10421 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10422
10423         * gc.c, object.h: add nice GC handle API for embedders.
10424
10425 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
10426
10427         * reflection.c: more changes for the new api
10428
10429         * object.c: When we reflect on a field w/ a constant value, it
10430         will not have a memory location, so we must access metadata. Also,
10431         allow easier reading of strings so that we can read them from
10432         the constant data.
10433
10434         * class.c (mono_class_layout_fields): no need for literal fields here.
10435
10436         * class-internals.h: api changes for const fields
10437
10438         * icall.c (ves_icall_get_enum_info): use new apis for const fields
10439
10440 2004-07-06  Martin Baulig  <martin@ximian.com>
10441
10442         * mono-debug.h: Increment version number to 44.
10443
10444         * mono-debug.c (mono_debug_add_wrapper): The second argument is
10445         now a gpointer, rewrote this whole method.
10446
10447         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
10448         function.  Add information about the wrapper in a new "misc table".
10449
10450         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
10451         for the new misc table.
10452
10453 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
10454
10455         * metadata-internals.h image.c: Add a cache for helper signatures.
10456
10457         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
10458
10459 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
10460
10461         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
10462         delegates from a delegate. Fixes #61033.
10463         
10464         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
10465         marshalling of stringbuilder arrays. Fixes #59900.
10466
10467 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
10468
10469         * icall.c: Add EnumBuilder:setup_enum_type icall.
10470
10471 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
10472
10473         * icall.c: Added a new icall for the property version of
10474         OffsetOfStringData.
10475
10476 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
10477
10478         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
10479         it has a constant size across platforms.
10480
10481         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
10482         stack trace.
10483
10484 2004-06-29  Martin Baulig  <martin@ximian.com>
10485
10486         * mono-debug.c (mono_debug_add_method): Protect the whole function
10487         in mono_debugger_lock(), not just parts of it.
10488
10489 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10490
10491         * reflection.c: make sure padding bytes in heaps are zeroed.
10492
10493 2004-06-24  David Waite  <mass@akuma.org>
10494
10495         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
10496         image.c, loader.c, locales.c, marshal.c, metadata.c,
10497         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
10498         string-icalls.c, threads.c: change to C90-style comments from C99 /
10499         C++ -style
10500
10501 2004-06-24  Dick Porter  <dick@ximian.com>
10502
10503         * threads.c
10504         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
10505         return createdNew.  Fixes bug 60412.
10506
10507         * threads-types.h: 
10508         * icall.c: Add createdNew parameter to CreateMutex icall
10509
10510 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10511
10512         * reflection.c, object-internals.h: save default value in params.
10513
10514 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10515
10516         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
10517         no need to build a new path combining that with the application base.
10518         Fixes bug #60442.
10519
10520 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
10521
10522         * reflection.c: fixed minor standard compliance issues.
10523
10524 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10525
10526         * reflection.c: fixed issue with encoding some custom attributes
10527         (arrays in properties and fields, bug #60411).
10528
10529 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10530
10531         * reflection.c: fix start address when copying the public key token.
10532
10533 2004-06-23  Martin Baulig  <martin@ximian.com>
10534
10535         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
10536         the `exc' object in a static object to put it into the GC's root set.
10537
10538 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
10539
10540         * reflection.c: make mono_reflection_setup_internal_class ()
10541         callable a second time to setup a new parent class.
10542
10543 2004-06-23  Dick Porter  <dick@ximian.com>
10544
10545         * threads.c: Check for WAIT_IO_COMPLETION return values.
10546
10547 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10548
10549         * appdomain.c: Removed the g_free on the public key token. Now copy 
10550         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10551         * assembly.c: Added public key token string value when loading 
10552         assemblies. Fix bug #60439.
10553         * icall.c: Added missing informations (like public key) in 
10554         GetReferencedAssemblies. Fix #60519.
10555         * image.h: Changed definition for public key token from const char*
10556         public_tok_value to guchar public_key_token [17];
10557         * reflection.c: Updated for changes to public key token.
10558
10559 2004-06-22  Lluis Sanchez Gual
10560
10561         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10562         for the field in base classes.
10563
10564 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10565
10566         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10567         mark headers as not supported, they are installed only for use by the
10568         debugger.
10569
10570 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10571
10572         * *.c, *.h: avoid namespace pollution in public headers.
10573
10574 2004-06-21  Martin Baulig  <martin@ximian.com>
10575
10576         * exception.c (mono_get_exception_security): It's in
10577         "System.Security", not in "System".
10578
10579         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10580         the exception classes.
10581
10582 2004-06-21  Martin Baulig  <martin@ximian.com>
10583
10584         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10585         Protect the exception object from being finalized.
10586
10587 2004-06-21  Martin Baulig  <martin@ximian.com>
10588
10589         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10590         public function.
10591
10592 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10593
10594         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10595         if it was not loaded before. Fix parts of #60439.
10596
10597 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10598
10599         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10600         code that was broken since Ben's change: wrappers are now
10601         dependent on the method signature only again.
10602
10603 2004-06-21  Martin Baulig  <martin@ximian.com>
10604
10605         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10606         added interface support.
10607
10608 2004-06-21  Martin Baulig  <martin@ximian.com>
10609
10610         * class.c (mono_vtable_get_static_field_data): New public method.
10611
10612 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10613
10614         * filewatcher.c : Windows build fix to be compliant with API changes.
10615
10616 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10617
10618         * class.h, class.c: more accessors.
10619         * metadata.h, metadata.c: prepare for hiding MonoType and
10620         MonoMethodSignature: people should use the accessors from now on
10621         outside of the tree.
10622
10623 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10624
10625         * *.c, *.h: more API cleanups.
10626
10627 2004-06-18  Jackson Harper  <jackson@ximian.com>
10628
10629         * assembly.c: Trace loading assemblies.
10630         * loader.c: Trace loading native libraries.
10631         * mono-config.c: Trace loading config files.
10632         
10633 2004-06-18  Dick Porter  <dick@ximian.com>
10634
10635         * locales.c: Tell ICU the lengths of strings, it can cope with
10636         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10637
10638 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10639
10640         * image.c: swapped name/filename;
10641
10642 2004-06-18  Martin Baulig  <martin@ximian.com>
10643
10644         * mono-debug-debugger.c (write_class): Write the parent class at
10645         the end of the header.
10646
10647 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10648
10649         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10650
10651 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10652
10653         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10654         (bundle_obj): New conditional define.
10655         (BUILT_SOURCES): Remove.
10656         ($(bundle_srcs)): Make parallel-make safe.
10657         (libmonoruntime_la_LIBADD): Make unconditional.
10658         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10659         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10660
10661 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10662
10663         * culture-info-tables.h: It was inconsistent with the latest
10664           supp info files.
10665
10666 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10667
10668         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10669         be loaded.
10670
10671         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10672         with gcc 2.95.
10673
10674 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10675
10676         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10677         cleaned up public header threads.h.
10678
10679 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10680
10681         * Makefile.am, *.c, *.h: more API cleanups.
10682
10683 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10684
10685         * Makefile.am: removed monosn from compilation.
10686         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10687         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10688         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10689         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10690         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10691         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10692
10693 2004-06-15  Jackson Harper  <jackson@ximian.com>
10694
10695         * assembly.c: Make locales lower case when searching the GAC for
10696         assemblies. gacutil will always make locales lowercase when
10697         installing so this effectively makes them case insensitive.
10698         
10699 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10700
10701         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10702         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10703           parameter which allows to choose whether the wait can be interrupted or 
10704           not. Also added the method mono_monitor_enter(), which locks the monitor
10705           using an infinite wait and without allowing interruption.
10706           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10707           interrupted.
10708         * object.h: Added new fields in MonoThread. suspend_event holds the event
10709           used to susped/resume the thread. synch_lock is the lock object to use for
10710           modifying the thread state.
10711         * threads.c: Use the new synch_lock object for locking, instead of "this",
10712           which can generate deadlocks.
10713           Moved thread state change in Thread.Sleep and Thread.Join from managed
10714           to unmanaged code. This avoids a deadlock when the thread was suspended
10715           just after acquiring the thread lock.
10716           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10717           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10718           which is not fully implemented in the io-layer.
10719         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10720
10721 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10722
10723         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10724         threads-types.h: more API cleanups.
10725
10726 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10727
10728         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10729         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10730         threadpool.c, threads.c: first pass at the exported API cleanup.
10731
10732 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10733
10734         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10735
10736 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10737
10738         * icall.c: added internalGetHome.
10739
10740 2004-06-14  Dick Porter  <dick@ximian.com>
10741
10742         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10743         possible to return successfully when '.' or '..' were the only
10744         entries in a directory, but were skipped.  The MonoIOStat was not
10745         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10746         Fixes bug 59574.
10747
10748 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10749
10750         * reflection.c: make binaries run on .Net 1.1 by default.
10751
10752 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10753
10754         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10755
10756 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10757
10758         * marshal.c: keep track of struct size with explicit layout
10759         (bug #59979).
10760
10761 2004-06-12  Martin Baulig  <martin@ximian.com>
10762
10763         * mono-debug-debugger.c: Comment out a debugging g_message().
10764
10765 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10766
10767         * reflection.c, reflection.h: do not free custom attrs that are cached.
10768         * icall.c: use braces to make code clearer.
10769
10770 2004-06-11  Martin Baulig  <martin@ximian.com>
10771
10772         * class.h (MonoInflatedField): New type.
10773         (MonoClassField): Replaced `MonoType *generic_type' with
10774         `MonoInflatedField *generic_info'.
10775
10776         * icall.c
10777         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10778
10779 2004-06-11  Martin Baulig  <martin@ximian.com>
10780
10781         * reflection.c (mono_image_create_method_token): Correctly encode
10782         varargs methods.
10783
10784 2004-06-11  Martin Baulig  <martin@ximian.com>
10785
10786         * metadata.c (mono_metadata_parse_method_signature): When parsing
10787         a MethodDef which has VarArgs, also set sentinelpos if we don't
10788         have any parameters.
10789
10790 2004-06-11  Martin Baulig  <martin@ximian.com>
10791
10792         * verify.c (mono_method_verify): In CEE_CALL, use
10793         mono_method_get_signature() to get the method's signature, unless
10794         we're a PInvoke method.
10795
10796 2004-06-10  Jackson Harper  <jackson@ximian.com>
10797
10798         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10799         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10800         logical name as the supplied path is just a prefix to the gac not
10801         the direct path to it.
10802         
10803 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10804
10805         * reflection.c: make the token for a created method match
10806         the token of the MethodBuilder it was created from
10807         (IKVM requires this behaviour now).
10808
10809 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10810
10811         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10812         reflection.c, socket-io.c: leak fixes.
10813
10814 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10815
10816         * icall.c: handle sentinel pos in vararg methods in position different
10817         from 0.
10818
10819 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10820
10821         * culture-info-tables.h: freshly generated.
10822
10823 2004-06-09  Martin Baulig  <martin@ximian.com>
10824
10825         * loader.c (mono_get_method_constrained): Call `mono_class_init
10826         (constrained_class)'.   
10827
10828 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10829
10830         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10831         any methods. Fixes #59629.
10832
10833 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10834
10835         * culture-info-tables.h: reflecting locale-builder updates.
10836
10837 2004-06-08  Dick Porter  <dick@ximian.com>
10838
10839         * object.h:
10840         * locales.c: Fixed compile warnings, including a real bug in
10841         CompareInfo_internal_compare.
10842         
10843 2004-06-08  Dick Porter  <dick@ximian.com>
10844
10845         * locales.c
10846         (ves_icall_System_Globalization_CompareInfo_internal_index):
10847         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10848         Double-check the resuls of usearches, because ICU currently
10849         ignores most of the collator settings here.  Fixes bug 59720.
10850         
10851 2004-06-08  Dick Porter  <dick@ximian.com>
10852
10853         * locales.c
10854         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10855         Fix memory leak and segfault-causing typo.  No idea how this one
10856         lasted so long without being noticed.
10857
10858 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10859
10860         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10861         any methods. Fixes #59629.
10862
10863 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10864
10865         * assembly.c:
10866         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10867         own the critical section before). Removed dead code (that's done
10868         in the preload hook).
10869
10870         (mono_assembly_load_with_partial_name): call the preload hook.
10871
10872 2004-06-08  Martin Baulig  <martin@ximian.com>
10873
10874         * metadata.c (mono_metadata_signature_alloc): Default
10875         `sentinelpos' to -1.
10876
10877         * reflection.c (mono_image_get_array_token): Likewise.
10878
10879 2004-06-08  Martin Baulig  <martin@ximian.com>
10880
10881         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10882
10883         * metadata.c (mono_metadata_parse_method_signature): When parsing
10884         a MethodDef which has VarArgs, set sentinelpos.
10885
10886         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10887         `gint16' since we're using -1 for non-varargs methods.
10888
10889         * reflection.c
10890         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10891         (method_encode_signature): Added varargs support.
10892         (method_builder_encode_signature): Likewise.
10893         (mono_image_get_varargs_method_token): New static method.
10894         (mono_image_create_method_token): New public method; this is
10895         called via an icall instead of mono_image_create_token() when
10896         calling a varargs method.       
10897
10898 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10899
10900         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10901
10902 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10903
10904         * culture-info-tables.h : Reflecting the latest locale-builder that
10905           fixed empty array representation ({} to {0}).
10906
10907 2004-06-07  Jackson Harper  <jackson@ximian.com>
10908
10909         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10910         looking up extra gac paths. This allows MONO_GAC_PATH to act
10911         exactly like a prefix.
10912         
10913 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10914
10915         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10916         type name before modifying it. Fixes #59405.
10917
10918 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10919
10920         * culture-info.h: added fields for "all datetime patterns".
10921         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10922           _construct_datetime_format ()): fill xxx_patterns fields.
10923         * object.h: added fields for "all datetime patterns" to
10924           MonoDateTimeFormatInfo.
10925         * culture-info-tables.h: reflecting locale-builder updates.
10926
10927 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10928
10929         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10930         the event has no add and remove methods. Fixes #59629.
10931
10932 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10933
10934         * object.c: Fixed possible integer overflow when allocating large
10935         strings.
10936
10937 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10938
10939         * culture-info-tables.h: reflecting locale-builder updates.
10940
10941 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10942
10943         * culture-info-tables.h: reflecting locale-builder updates.
10944
10945 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10946
10947         * culture-info-tables.h: reflecting locale-builder updates.
10948
10949 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10950
10951         * threads.c: Made Thread.Sleep abortable.
10952
10953 2004-06-02  Martin Baulig  <martin@ximian.com>
10954
10955         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10956
10957         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10958
10959 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10960
10961         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10962
10963 2004-05-30  Jackson Harper  <jackson@ximian.com>
10964
10965         * reflection.c: Do not hardcode assembly versions or public key
10966         tokens anymore. All of this except the corlib section was dead
10967         code anyways.
10968         
10969 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10970
10971         * object.c (mono_runtime_invoke_array): Automatically create boxed
10972         objects for byref valuetypes if needed. Fixes #59300.
10973         
10974         * object.c (mono_method_return_message_restore): Handle 
10975         MONO_TYPE_OBJECT as well.
10976
10977 2004-05-28  Jackson Harper  <jackson@ximian.com>
10978
10979         * reflection.c: The modified type encoding was causing build
10980         problems. Reverted for now.
10981         
10982 2004-05-28  Jackson Harper  <jackson@ximian.com>
10983
10984         * reflection.c/h: Take an assembly ref so that we dont create
10985         fully qualified names when encoding types in the same assembly as
10986         the custom attribute being emitted.
10987         * appdomain.c: Increment version number.
10988         
10989 2004-05-26  Duncan Mak  <duncan@ximian.com>
10990
10991         * icall.c
10992         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10993         Set the full version number (major, minor, build, revision).
10994
10995 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10996
10997         * marshal.c (emit_struct_conv): increment src/dst after blit
10998         (mono_marshal_get_managed_wrapper,
10999         mono_marshal_get_native_wrapper): make sure we have marshalling
11000         info before marshalling params (info computation affects
11001         blittable)
11002
11003         * class.c (class_compute_field_layout): correctly deal with
11004         blittable
11005         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11006         value types (as per what windows dows by default)
11007         (mono_class_setup_mono_type): System.ValueType is blittable
11008         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11009         blittable
11010
11011         * marshal.c (mono_marshal_load_type_info): flag types  as
11012         non-blittable if the native layout doesn't match the managed
11013         layout
11014
11015 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11016
11017         * appdomain.c: don't add stuff in the private search path that is
11018         above the application base. If application base is not set, there's
11019         no private search path.
11020
11021 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11022
11023         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11024         byref struct arguments in native->managed marshalling.
11025
11026 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11027
11028         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11029         cache methods using signature (special case for methods
11030         that are value type or string class)
11031         
11032         * image.c (mono_image_close): clean up allocated GSList's
11033         in runtime_invoke_cache.
11034
11035 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11036
11037         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11038         there's no MONO_CFG_DIR environment variable defined.
11039
11040 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11041
11042         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11043
11044 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11045
11046         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11047           is interrumped.
11048         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11049           before waiting for it, and call CloseHandle after the wait to unref it.
11050           This will make sure that handles are not disposed too early.
11051
11052 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11053
11054         * appdomain.c:
11055         * appdomain.h:
11056         * icall.c: removed
11057         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11058         needed now.
11059
11060         * object.c: se the application_base only for the domain that runs
11061         Main. Fixes bug #59216,
11062
11063 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11064
11065         * appdomain.c:
11066         * object.c: only the domain in which Main is run have
11067         SetupInformation.ConfigurationFile set, so moved a few lines from
11068         appdomain.c to object.c.
11069
11070 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11071
11072         * appdomain.c: we tried to load [name].(dll|exe), but according
11073         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11074         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11075         There's a test case attached to bug #58922.
11076
11077 2004-05-27  Dick Porter  <dick@ximian.com>
11078
11079         * icall.c:
11080         * file-io.c: Implemented icalls for locking and unlocking regions
11081         in a file.
11082         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11083         FALSE on error (fixes both compiler warning and real bug.)
11084
11085 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11086
11087         * culture-info-tables.h: reflecting locale-builder updates.
11088
11089           (Added missing ChangeLog entry for 05/26)
11090
11091 2004-05-27  Jackson Harper  <jackson@ximian.com>
11092
11093         * locales.c: Fix some cut and paste errors.
11094         
11095 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11096
11097         * mono-config.c: set the correct path for config. directory on windows.
11098
11099 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11100
11101         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11102           on win32.
11103
11104 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11105
11106         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11107         from pinvoke functions.
11108         
11109         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11110
11111 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11112
11113         * culture-info-tables.h: reflecting locale-builder updates.
11114
11115 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11116
11117         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11118         #59086.
11119
11120 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11121
11122         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11123         * icall.c: Modified icalls for RNG.
11124         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11125         Windows (CryptoAPI).
11126
11127 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11128
11129         * locales.c: Fix build.
11130
11131 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11132
11133         * culture-info-tables.h: reflecting locale-builder updates.
11134
11135 2004-05-25  Jackson Harper  <jackson@ximian.com>
11136
11137         * locales.c: When creating the current culture use the $LANGs
11138         specific culture. So DateTimeFormat and NumberFormat entries are created.
11139         
11140 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11141
11142         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11143         a char array as parameter.
11144
11145 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11146
11147         * image.c: In mono_image_open(), always use an absolute path name to
11148           look for already loaded images.
11149
11150 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11151
11152         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11153         missing in the windows build (like older cygwin include files).
11154
11155 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11156
11157         * icall.c: Fixed check for possible integer overflow in Buffer_
11158         BlockCopy icall. Replaced comments style // by /* */.
11159
11160 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11161
11162         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11163         
11164         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11165         check after MONO_VTADDR. Fixes pinvoke2.exe.
11166
11167         * marshal.h marshal.c metadata.h: Add beginnings of support for
11168         ftnptr -> delegate marshalling.
11169
11170 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11171
11172         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11173         * threads.c: Fix warnings.
11174
11175 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11176
11177         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11178         * icall.c: Registered icalls for Suspend and Resume.
11179         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11180           Thread.Abort.
11181         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11182         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11183         * process.c: Use WaitForSingleObjectEx.
11184         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11185           checkpoints.
11186         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11187           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11188           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11189           background threads. Added basic support for Abort in Windows.
11190           Start new threads using a managed delegate invoke wrapper. This wrapper
11191           has an interruption checkpoint that is needed since an interruption
11192           can be requested before the thread leaves the unmanaged code that starts 
11193           the thread.
11194         * marshal.c: Added interruption checkpoint after every native call, and
11195           also before managed calls for wrappers called from unmanaged code to
11196           go into managed code.
11197         * object.h: Added new field in MonoThread to keep track of interruption
11198           requests.
11199
11200 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11201
11202         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11203         calls.
11204
11205 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11206
11207         * appdomain.c:
11208         * assembly.c:
11209         * gc.c:
11210         * locales.c:
11211         * mono-config.c:
11212         * rand.c: getenv -> g_getenv (windows!)
11213
11214         * process.c: complete_path is also used on non-windows platforms.
11215
11216 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11217
11218         * icall.c: new signature for Process_Start.
11219
11220         * process.[ch]: new signature for Process_Start. If we're on windows
11221         and UseShellExecute is false, we have to search for the program by
11222         ourselves if we don't get a full path.
11223
11224 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11225
11226         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11227         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11228
11229 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11230
11231         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11232         Fixes bug #58373.
11233
11234 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11235
11236         * process.c: use double quotes to quote program name and arguments on
11237         windows. Fixes bug #58575.
11238
11239 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11240
11241         * file-io.c: don't return "." and ".." when using windows Find*File.
11242
11243 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11244
11245         * marshal.c: Don't pass wrappers to message init because method 
11246         addressed used to lookup metadata. part of remoting[2|3] fix.
11247
11248 2004-05-15  Jackson Harper  <jackson@ximian.com>
11249
11250         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11251         path is essentially the same as MONO_PATH except that it points to
11252         GACs instead of lib directories.
11253         * loader.h: The user gac is gone so we dont need function to
11254         enable/disable it.
11255         * mono-config.c: user gac option is now gone.
11256         
11257 2004-05-15  Jackson Harper  <jackson@ximian.com>
11258
11259         * culture-info.h: Make defines more consistent, add calendar data
11260         to the culture info table.
11261         * culture-info-tables.h: Add basic calendar data. Basically
11262         everyone gets default gregorian until all the data is
11263         updated.
11264         * locales.c: Use the new consistent defines. Set calendar data for
11265         culture info objects.
11266         * object.h: add a field for calendar data to CultureInfo
11267         
11268 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11269
11270         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11271         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11272         a signature.
11273         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11274         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11275         an extra param that is the pointer of the method to invoke. The IL for
11276         the invoke method is no longer specific to the method, but to the
11277         signature of the method. Thus, we can share the same code for multiple
11278         methods. This reduces the number of methods that have to be compiled.
11279
11280 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11281
11282         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11283
11284         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11285
11286         * icall.c: Optimize Buffer.BlockCopy.
11287
11288 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11289
11290         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11291         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11292         quote). Changed them to "MMMM yyyy".
11293
11294 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11295
11296         * rand.c
11297         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11298
11299 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11300
11301         * reflection.h: Updated after changes to managed structures.
11302
11303         * appdomain.c: Bump corlib version.
11304
11305 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11306
11307         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11308         windows.
11309
11310 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11311
11312         * Makefile.am: link to ../os/libmonoos.la on windows.
11313
11314         * assembly.c:
11315                 -If MONO_DEBUG, warn about non-existing directories in
11316                 MONO_PATH.
11317                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11318                 compile time variable.
11319                 -Removed init_default_path and call mono_set_rootdir from
11320                 libmonoos.a instead (windows only).
11321
11322         * assembly.h: declare mono_assembly_getrootdir().
11323
11324         * domain.c:
11325         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11326
11327         * loader.c: s/getenv/g_getenv/
11328
11329 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11330
11331         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11332
11333         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11334
11335         * metadata.h: Add new marshalling conversions.
11336
11337         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11338         function.
11339
11340         * reflection.c (mono_reflection_get_type): Lookup the type in all
11341         modules of a multi-module assembly. Fixes #58291.
11342
11343 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11344
11345         * threads.c: Before aborting a background, set the StopRequested
11346         state.  This avoids throwing the Abort exception.
11347         In mono_thread_manage, don't continue with the shutdown until all
11348         aborted threads have actually stopped.
11349
11350 2004-05-10  Jackson Harper  <jackson@ximian.com>
11351
11352         * locales.c: Remove the modifier from culture names.
11353         
11354 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11355
11356         * Makefile.am: monosn is not installed any more. It has been deprecated
11357         in favor of sn.
11358
11359 2004-05-07  Jackson Harper  <jackson@ximian.com>
11360
11361         * locales.c
11362         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11363         Fix array construction, add bailout if the length is 0.
11364
11365 2004-05-07  Dick Porter  <dick@ximian.com>
11366
11367         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11368         machine doesn't have a DNS entry.  Patch by Urs Muff
11369         (umuff@quark.com), fixes bug 57928.
11370
11371 2004-05-06  Jackson Harper  <jackson@ximian.com>
11372
11373         * reflection.c: Handle null PublicTokens properly. alloc mem for
11374         assembly names culture so we dont crash when freeing it.
11375         
11376 2004-05-06  Jackson Harper  <jackson@ximian.com>
11377
11378         * assembly.c: Check the usergac when loading with partial names.
11379         
11380 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11381
11382         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11383         does nothing for now (not required for Linux/Windows) but the class
11384         library can call it (and a newer or modified runtime could need it).
11385         * icall.c: Registred icall.
11386
11387 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11388
11389         * loader.c: prints a message on module loading error we set MONO_DEBUG
11390         environment variable.
11391
11392 2004-05-05  Jackson Harper  <jackson@ximian.com>
11393
11394         * appdomain.c: Handle PublicKeyToken=null properly.
11395         
11396 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11397
11398         * environment.c|h: Added icall ves_icall_System_Environment_
11399         GetOSVersionString to get the current OS version as a string.
11400         * icall.c: Registred icall.
11401
11402 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11403
11404         * object.c: in mono_object_get_virtual_method(), take into account that
11405         non-virtual methods don't have a slot in the vtable. Check needed when
11406         the object is a proxy.
11407
11408 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
11409
11410         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
11411         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
11412
11413         * object.c (mono_class_compute_gc_descriptor): Fix warning.
11414
11415         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
11416         passed when a valuetype is expected.
11417
11418         * object.c (mono_unhandled_exception): Only set the exit code if the
11419         exception happens in the main thread. Fixes thread5.exe.
11420
11421         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
11422         invalid names. Fixes #58047.
11423
11424 2004-05-03  Jackson Harper  <jackson@ximian.com>
11425
11426         * assembly.c: This line was committed accidently and is unneeded.
11427         
11428 2004-05-03  Jackson Harper  <jackson@ximian.com>
11429
11430         * icall.c: Add new icall for Assembly::LoadWithPartialName
11431         * assembly.c/.h: new function that probes the GAC to load partial
11432         assembly names by Paolo Molaro.
11433         
11434 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11435
11436         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
11437         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
11438         (type_get_fully_qualified_name): Added PublicKeyToken when building a
11439         full type name.
11440
11441 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11442
11443         * appdomain.c: fixed check for 'neutral' culture and removed warning.
11444         * reflection.c: fix bug when parsing a full type name and Version is not
11445         the last thing in the string.
11446
11447 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
11448
11449         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
11450         crashes when it is freed.
11451
11452 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11453
11454         * assembly.c: print the compat warning to stderr.
11455
11456 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
11457
11458         * assembly.c (mono_assembly_load_references): Add a compatibility
11459         hack to run old applications that might be still referencing the
11460         3300-based assemblies, only do this for System.xxx.
11461
11462 2004-05-01  Jackson Harper  <jackson@ximian.com>
11463
11464         * appdomain.c: If the culture is neutral we set it to "".
11465         
11466 2004-04-29  Jackson Harper  <jackson@ximian.com>
11467
11468         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
11469
11470 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
11471  
11472         * string-icalls.c: added low overhead function for copying chars
11473         * icall.c: added needed icall for the above function
11474  
11475 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11476
11477         * icall.c: fix return value of get_global_assembly_cache.  Implemented
11478         Environment.GetLogicalDrives.
11479
11480 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
11481
11482         * rand.c: try and talk to egd or prngd
11483         for random bytes if opening devices fail.
11484
11485 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
11486
11487         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
11488         alignment for the type using the native alignment of its members 
11489         instead of using klass->min_align.
11490
11491         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
11492
11493 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11494
11495         * file-io.c:
11496         * socket-io.c: added check for sys/aio.h.
11497
11498 2004-04-28  Dick Porter  <dick@ximian.com>
11499
11500         * threads.c: Don't abort a thread thats already aborting, when
11501         terminating everything.
11502
11503 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11504
11505         * icall.c: added 2 new async calls for Socket.
11506
11507         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
11508         IO on *nix systems.
11509
11510         * threadpool.c: removed unused variable.
11511
11512 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
11513
11514         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
11515
11516 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11517
11518         * locales.c: put back string_invariant_tolower () and
11519         string_invariant_toupper ().
11520
11521 2004-04-26 David Waite <mass@akuma.org>
11522
11523         * file-io.h:
11524         * socket-io.h:
11525         * threads.h:
11526         * unicode.h: remove comma from end of enumeration declarations
11527
11528 2004-04-26 David Waite <mass@akuma.org>
11529
11530         * debug-mono-symfile.h:
11531         * decimal.c:
11532         * mono_debug.h:
11533         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
11534
11535
11536 2004-04-26  Jackson Harper  <jackson@ximian.com>
11537
11538         * appdomain.c: Increment version number.
11539         
11540 2004-04-26  Jackson Harper  <jackson@ximian.com>
11541
11542         * appdomain.c: Set assembly references public token value when
11543         PublicKeyToken is specified, not the hash_value. Free public token
11544         values when free assembly name data. Previously the public key
11545         token was hex decoded, however we are using hex encoded public key
11546         tokens, so this is not neccasary.
11547         * assembly.c: Lookup assemblies in the gac if their public token
11548         value is set. Add function to allow enabling user gac
11549         lookups. Specify whether or not the assembly was loaded from the
11550         GAC. Compare full assembly names when checking the cache for
11551         assemblies (Temporarily disabled see comment in code). Remove
11552         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11553         specifies trace-loader they get extra info to stdout on the
11554         loading of assemblies.
11555         * image.h: Add a field for an assembly references public token
11556         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11557         whether an assembly has been loaded from the GAC.
11558         * image.c: Remove a corlib -> mscorlib name mapping.
11559         * loader.h: Add function to enable/disable the user gac.
11560         * mono-config.c: Check if the usergac is enabled in the config
11561         file.
11562         * icall.c: New icall to determine whether or not an assembly has
11563         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11564         * tabldefs.h: Add constant for assemblyref flag that specifies a
11565         full public key is used instead of a public token.
11566         * reflection.c: Remove mscorlib -> corlib mappings. Set
11567         PublicTokenValue instead of hash value. This value is a hex
11568         string so it does not need to be expanded.
11569
11570 2004-04-26  Martin Baulig  <martin@ximian.com>
11571
11572         * mono-debug-debugger.c (mono_debugger_initialize): Set
11573         `mono_debugger_initialized' before calling mono_debug_lock().
11574
11575 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11576
11577         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11578           InternalToUpper/InternalToLower.
11579         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11580           removed invariant culture shortcut.  This is now done in managed code.
11581         * locales.c: (string_invariant_toupper/tolower) removed.
11582
11583 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11584
11585         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11586         Added Poll internal call.
11587
11588         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11589         call for Poll. Select was too heavy for polling a single socket.
11590
11591         * threadpool.[ch]: added mono_threadpool_cleanup.
11592         * threads.c: use it. Don't use Thread_Abort on windows.
11593
11594 2004-04-23  Martin Baulig  <martin@ximian.com>
11595
11596         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11597
11598 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11599
11600         * icall.c: Registred new icalls for key pair protection and added an
11601         icall for Environment.GetFolderPath on Windows.
11602         * security.c|h: Added new icalls for key pair protection.
11603
11604 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11605
11606         * socket-io.c: don't display the non-supported family warning for known
11607         families. Now this is not displayed on windows when checking support
11608         for IPv4/IPv6.
11609
11610 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11611
11612         * class.c: don't display the layout warning for static fields.
11613
11614 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11615
11616         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11617         * locales.c, locales.h: Added new icalls for culture-specific
11618         Char.ToLower and Char.ToUpper.
11619
11620 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11621
11622         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11623         by David Waite.
11624
11625 2004-04-20  Martin Baulig  <martin@ximian.com>
11626
11627         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11628         of the type name before passing it to mono_reflection_type_from_name().
11629
11630 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11631
11632         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11633         encodings here. Fixes #56965.
11634
11635 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11636
11637         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11638         fix test on strstr result not that I can see anything that
11639         relies on the result.
11640
11641 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11642
11643         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11644         Fixes #57081.
11645
11646         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11647
11648         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11649         function to determine which marshalling to use for strings. Fixes
11650         #56965.
11651
11652         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11653
11654         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11655
11656 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11657
11658         * icall.c: #include mono-config.h
11659
11660 2004-04-15  Jackson Harper  <jackson@ximian.com>
11661
11662         * culture-info-tables.h: Fix date formats for en-US culture.
11663         
11664 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11665
11666         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11667         ThreadPool.SetMinThreads.
11668         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11669         ThreadPool.SetMinThreads.
11670
11671 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11672
11673         * mono-config.c: also load the .config file in the directory
11674         where the assembly was found.
11675
11676 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11677
11678         * assembly.c: load per-assembly config files.
11679         * icall.c: decrapified code to get the config dir and moved to
11680         mono-config.c.
11681         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11682         per-assembly config files. When doing a dll map lookup give precedence
11683         to the per-assembly data.
11684
11685 2004-04-14  Martin Baulig  <martin@ximian.com>
11686
11687         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11688         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11689         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11690
11691         * mono-debugger-debugger.c: While the debugger is locked, remember
11692         whether the symbol tables have changes and send one single
11693         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11694
11695 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11696
11697         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11698
11699         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11700         function.
11701
11702         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11703         account when marshalling string arrays. Fixes #56965.
11704
11705 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11706
11707         * icall.c: Add new icalls mapping for security.
11708         * security.c|h: Add internal calls for WindowsIdentity,
11709         WindowsImpersonationContext and WindowsPrincipal.
11710
11711 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11712
11713         * class.c: Added comment to ensure the System.MonoDummy class
11714         is removed when no longer necessary
11715
11716 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11717
11718         * appdomain.c: Pass arguments to the bootstraping exceptions to
11719         minimize JITed methods at boot
11720
11721         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11722         second string to be null.
11723
11724         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11725         Change the protocol to minimize the JIT methods at startup.  Now
11726         it Returns the internal codepage, if the value of "int_code_page"
11727         is 1 at entry, and we can not compute a suitable code page
11728         number, returns the code page as a string.
11729
11730 2004-04-13  Jackson Harper  <jackson@ximian.com>
11731
11732         * culture-info-tables.h: Fix number of decimal digits for all
11733         english locales.
11734
11735 2004-04-13  Jackson Harper  <jackson@ximian.com>
11736
11737         * icall.c: Clairfy out of sync error message. It is not always
11738         your corlib that is out of sync.
11739
11740 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11741
11742         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11743         properties when only the set accessor is overriden. Fixes #55874.
11744
11745 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11746
11747         * assembly.c (mono_assembly_load_references): Make this thread safe.
11748         Fixes #56327.
11749
11750 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11751
11752         * monosn.c: Add missing initialization calls.
11753
11754 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11755
11756         * locales.c:
11757         ves_icall_System_Globalization_CultureInfo_construct_number_format
11758         Fix g_assert so it compiles on fussier compilers re int/ptr
11759         mismatch
11760
11761 2004-04-08  Dick Porter  <dick@ximian.com>
11762
11763         * socket-io.h:
11764         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11765         53992.  Also rearrange the code so that the internal calls return
11766         an error value and exceptions are thrown from managed code.
11767
11768         * icall.c: Add type info to the socket icalls.
11769
11770 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11771
11772         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11773         owes me a beer.
11774
11775 2004-04-07  Martin Baulig  <martin@ximian.com>
11776
11777         * class.c (mono_class_from_generic_parameter): Don't default
11778         `klass->parent' to `mono_defaults.object_type'.
11779
11780 2004-04-07  Martin Baulig  <martin@ximian.com>
11781
11782         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11783         `param->pklass->reflection_info'.       
11784
11785 2004-04-07  Jackson Harper  <jackson@ximian.com>
11786
11787         * culture-info-tables.h: Fix date separator symbol.
11788         
11789 2004-04-07  Martin Baulig  <martin@ximian.com>
11790
11791         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11792         from System.Type to System.MonoType.
11793
11794 2004-04-07  Martin Baulig  <martin@ximian.com>
11795
11796         * reflection.h
11797         (MonoReflectionGenericParam): Added `has_reference_type' and
11798         `has_value_type' fields.
11799
11800         * reflection.c (mono_image_get_generic_param_info): Encode the
11801         correct flags if we have the `class' or `struct' constraint.
11802
11803 2004-04-07  Martin Baulig  <martin@ximian.com>
11804
11805         * reflection.h
11806         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11807
11808 2004-04-07  Jackson Harper  <jackson@ximian.com>
11809
11810         * appdomain.c: Revert extra patches, just wanted to bump the
11811         version number.
11812         
11813 2004-04-07  Jackson Harper  <jackson@ximian.com>
11814
11815         * Makefile.am: Add culture-info private headers.
11816         * icall.c: Add new icalls for contructing locales.
11817         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11818         * locales.h: Declare new culture info construction methods.
11819         * object.h: Add new fields used to avoid the CultureMap to
11820         MonoCultureInfo.
11821         * culture-info.h: Definition of structs used in the culture info
11822         tables.
11823         * culture-info-tables.h: Autogenerated tables that contain culture
11824         info data. This file was generated with the locale-builder tool.
11825         * appdomain.c: Incement corlib version number.
11826         
11827 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11828
11829         * appdomain.c: (mono_runtime_init) move mono_thread_init
11830         to before mono_object_new calls so critical sections
11831         are initialized before use.
11832
11833 2004-04-07  Martin Baulig  <martin@ximian.com>
11834
11835         * icall.c
11836         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11837         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11838         (ves_icall_MonoGenericParam_initialize): Removed.
11839         (monogenericparam_icalls): Removed.
11840         (generictypeparambuilder_icalls): Added new table for
11841         System.Reflection.Emit.GenericTypeParameterBuilder.
11842
11843         * reflection.c
11844         (mono_reflection_define_generic_parameter): Removed.
11845         (mono_reflection_initialize_generic_parameter): This is now called
11846         from GenericTypeParameterBuilder's .ctor.
11847
11848 2004-04-06  Martin Baulig  <martin@ximian.com>
11849
11850         * class.c (mono_class_init): Don't inflate nested classes in a
11851         generic instance.
11852         (mono_type_get_name_recurse): Include the generic arguments for
11853         generic instances and generic type declarations.
11854         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11855         (_mono_class_get_instantiation_name): Removed.
11856         (mono_class_create_generic): Always use `gklass->name' as our name.
11857
11858         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11859
11860         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11861         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11862         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11863         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11864         closed generic methods here.
11865
11866         * reflection.c
11867         (mono_reflection_generic_inst_get_nested_types): Removed.
11868         (inflate_mono_method): Copy the generic parameters from the
11869         MonoMethodHeader into out MonoGenericMethod.
11870
11871 2004-04-06  Martin Baulig  <martin@ximian.com>
11872
11873         * row-indexes.h
11874         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11875
11876         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11877
11878         * reflection.c (build_compressed_metadata): If we have any entries
11879         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11880         set the header version to 1.1.
11881
11882 2004-04-06  Martin Baulig  <martin@ximian.com>
11883
11884         * class.c (mono_class_init): If we're a generic instance,
11885         initialize our nested classes, too.
11886         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11887         suffix. 
11888
11889 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11890
11891         * process.c: quote the argument passed to the shell on windows.
11892
11893 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11894
11895         * threads.c (mono_alloc_special_static_data): Allow this to be
11896         called during startup.
11897
11898 2004-04-02  Martin Baulig  <martin@ximian.com>
11899
11900         * icall.c
11901         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11902
11903 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11904
11905         * icall.c: Fix build.
11906
11907 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11908
11909         * Makefile.am: Added security.c|h.
11910         * icall.c: Added icall for get_UserName;
11911         * security.c: New file for security related icalls. Added function
11912         get_UserName for System.Environment (fix #56144).
11913         * security.h: New. Header file for security.c
11914
11915 2004-04-02  Dick Porter  <dick@ximian.com>
11916
11917         * icall.c: Deleted the icalls that were obsoleted some time ago
11918         by the ICU string code, and which were mixed into the icall
11919         rearranging.  Fixes bug 55969.
11920
11921         * string-icalls.h: 
11922         * string-icalls.c: Deleted the code that those icalls reference.
11923
11924 2004-04-01  Martin Baulig  <martin@ximian.com>
11925
11926         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11927
11928         * class.c (mono_class_from_generic_parameter): Don't set 
11929         TYPE_ATTRIBUTE_INTERFACE.
11930         (my_mono_class_from_generic_parameter): Likewise.
11931
11932 2004-04-01  Martin Baulig  <martin@ximian.com>
11933
11934         * loader.c (find_method): Added an optional `MonoClass *ic'
11935         argument to search in a specific interface.
11936         (mono_get_method_constrained): New public function.
11937
11938 2004-04-01  Martin Baulig  <martin@ximian.com>
11939
11940         * reflection.c (mono_image_get_generic_field_token): Use the
11941         `handleref' cache here.
11942
11943 2004-04-01  Martin Baulig  <martin@ximian.com>
11944
11945         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11946
11947         * reflection.c (create_generic_typespec): Use the `typespec' hash
11948         here, not the `typeref' one.    
11949
11950 2004-04-01  Martin Baulig  <martin@ximian.com>
11951
11952         * class.c (mono_class_inflate_generic_type): Moved the
11953         functionality into a new static inflate_generic_type() which
11954         returns NULL if it didn't do anything.  Only increment the
11955         `mono_stats.inflated_type_count' if we actually inflated
11956         something.
11957         (mono_class_get_full): Check the classes type to see whether we
11958         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11959
11960 2004-04-01  Jackson Harper  <jackson@ximian.com>
11961
11962         * reflection.c: Set culture for assembly references.
11963         
11964 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11965
11966         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11967
11968 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11969
11970         * assembly.c:
11971         (do_mono_assembly_open): the critical section also covers
11972         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11973
11974 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11975
11976         * threads.c:
11977         (mono_manage_threads): abort the background threads when finishing.
11978         Fixes bug #47232.
11979
11980 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11981
11982         * gc.c: only close the done_event handle if there was no timeout.
11983         C-ified comments.
11984
11985 2004-03-30  Martin Baulig  <martin@ximian.com>
11986
11987         * icall.c (icall_entries): It's called "System.Activator", not
11988         "System.Activation".    
11989
11990 2004-03-30  Martin Baulig  <martin@ximian.com>
11991
11992         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11993         (mono_class_create_from_typespec): Likewise.
11994
11995 2004-03-30  Martin Baulig  <martin@ximian.com>
11996
11997         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11998         `has_ctor_constraint' and `initialized'.
11999
12000 2004-03-30  Martin Baulig  <martin@ximian.com>
12001
12002         * reflection.c (encode_new_constraint): New static function to add
12003         the constructor constraint attribute to a type parameter.
12004         (encode_constraints): Call encode_new_constraint() if necessary.
12005
12006         * reflection.h
12007         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12008
12009         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12010         
12011 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12012
12013         * reflection.c, icall.c: add support for pinning variables. 
12014
12015 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12016
12017         * marshal.c (mono_marshal_get_managed_wrapper):
12018         init bool local with zero rather than null.
12019
12020 2004-03-29  Martin Baulig  <martin@ximian.com>
12021
12022         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12023         the "official" behavior here.
12024         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12025
12026 2004-03-29  Martin Baulig  <martin@ximian.com>
12027
12028         * icall.c: Reflect latest API changes.
12029
12030 2004-03-29  Martin Baulig  <martin@ximian.com>
12031
12032         * loader.c (mono_get_method_from_token): Also call
12033         mono_metadata_load_generic_params () for abstract and interface
12034         methods; replace the type arguments in the method signature with
12035         the ones which are loaded from the metadata.
12036
12037 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12038
12039         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12040         of the lock is not the current thread. MS.NET don't do it, in spite of
12041         what the documentation says. See bug #56157.
12042
12043 2004-03-28  Martin Baulig  <martin@ximian.com>
12044
12045         * class.c (mono_class_init): Don't call init_properties() and
12046         init_events() for generic instances; set `prop->parent' when
12047         inflating properties.
12048
12049         * reflection.c (mono_generic_inst_get_object): Call
12050         `mono_class_init (ginst->klass)'.
12051         (mono_type_get_object): Only create a MonoGenericInst if your
12052         generic type is a TypeBuilder.
12053         (do_mono_reflection_bind_generic_parameters): Only set
12054         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12055
12056 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12057
12058         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12059         Fixes #56091.
12060
12061 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12062
12063         * icall.c: added Kill_internal icall.
12064         * process.[ch]: added Kill_internal icall.
12065
12066 2004-03-25  Martin Baulig  <martin@ximian.com>
12067
12068         * class.h (MonoStats): Added `generic_instance_count',
12069         `inflated_method_count', `inflated_type_count' and
12070         `generics_metadata_size'.       
12071
12072 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12073
12074         * reflection.c: no warnings now.
12075
12076 2004-03-25  Martin Baulig  <martin@ximian.com>
12077
12078         * class.c (mono_class_get_full): New public function; does a
12079         mono_class_get(), but also takes a `MonoGenericContext *'.
12080
12081         * loader.c (mono_field_from_memberref): Renamed to
12082         `field_from_memberref', made static and added `MonoGenericContext *'
12083         argument.
12084         (mono_field_from_token): Added `MonoGenericInst *' argument.
12085         (method_from_memberef): Likewise.
12086         (mono_get_method_from_token): Likewise.
12087         (mono_get_method_full): New public function; does a
12088         mono_get_method(), but also takes a `MonoGenericContext *'.
12089
12090         * verify.c (mono_method_verify): Get the method's generic context
12091         and pass it to mono_field_from_token(), mono_get_method_full() and
12092         mono_class_get_full().
12093
12094 2004-03-25  Martin Baulig  <martin@ximian.com>
12095
12096         * class.c (mono_class_inflate_generic_type): Take a
12097         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12098         `MonoGenericMethod *'.
12099
12100 2004-03-25  Martin Baulig  <martin@ximian.com>
12101
12102         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12103         instead of the MonoGenericMethod here.
12104
12105 2004-03-25  Martin Baulig  <martin@ximian.com>
12106
12107         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12108         each time we create a new MonoGenericInst, we also create a new
12109         context which points back to us.
12110
12111         * class.c (inflate_method): Use `ginst->context' instead of
12112         creating a new context.
12113
12114         * loader.c (method_from_memberref): Use
12115         `klass->generic_inst->context' instead of creating a new context.
12116
12117 2004-03-25  Martin Baulig  <martin@ximian.com>
12118
12119         * class.h (MonoGenericContext): New struct.
12120         (MonoGenericMethod): Removed `generic_inst'.
12121
12122         * class.c (mono_class_inflate_generic_method): Take a
12123         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12124
12125 2004-03-25  Martin Baulig  <martin@ximian.com>
12126
12127         * loader.h (MonoMethodInflated): New typedef.
12128
12129         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12130         `generic_param_count' consume just 30 bits, added `is_inflated'
12131         and `has_type_parameters' flags (one bit each).
12132
12133         * class.c (mono_class_inflate_generic_method): Create a
12134         MonoMethodInflated instead of a MonoMethodNormal and set
12135         `is_inflated' in the method signature.
12136
12137         * class.h (MonoGenericMethod): Removed `generic_method'.
12138
12139 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12140
12141         * image.c: Make sure the name of a MonoImage is always an absolute path.
12142           This fixes bug #54415.
12143
12144 2004-03-24  Martin Baulig  <martin@ximian.com>
12145
12146         * class.c (mono_class_setup_vtable): If we're a generic instance,
12147         use our generic type's vtable size.
12148
12149 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12150
12151         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12152         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12153         problems.
12154
12155 2004-03-23  Martin Baulig  <martin@ximian.com>
12156
12157         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12158         `MonoEvent *events'.
12159
12160         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12161         (typebuilder_icalls): Added "get_event_info"; calls
12162         mono_reflection_event_builder_get_event_info(). 
12163
12164         * reflection.c (mono_reflection_generic_inst_initialize): Added
12165         `MonoArray *events'.
12166         (mono_reflection_event_builder_get_event_info): New function.
12167
12168 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12169
12170         * object.h: add mono_type_initialization_init
12171
12172         * object.c (mono_runtime_class_init): 
12173         implement class constructor synchronization rules
12174         to cope with threading issues.  
12175         add mono_type_initialization_init
12176
12177         * appdomain.c (mono_runtime_init): call 
12178         mono_type_initialization_init
12179
12180         * class.h: removing initializing field from MonoVTable
12181
12182 2004-03-23  Martin Baulig  <martin@ximian.com>
12183
12184         * class.c (my_mono_class_from_generic_parameter): Use
12185         `param->name' if it's not NULL. 
12186
12187 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12188
12189         * class.c: do not insert non-virtual methods in the vtable.
12190         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12191         that means the method is non-virtual. This never would have
12192         happened before.
12193
12194 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12195
12196         * profiler.c: Added lock for accessing coverage_hash.
12197
12198 2004-03-22  Martin Baulig  <martin@ximian.com>
12199
12200         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12201         `method->method->signature->generic_param_count != 0' to make it
12202         work for interface methods.
12203
12204 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12205
12206         * process.c: quote the string passed to the shell using g_shell_quote.
12207
12208 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12209
12210         * threads.c:
12211         (mono_threads_manage): don't remove the finalizer thread and self
12212         from the threads hash table so that mono_thread_manage can be called
12213         more than once.
12214
12215 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12216
12217         * process.c: quote the arguments when UseShellExecute is true. Fixes
12218         bug #55790.
12219
12220 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12221
12222         * threads.c: set mono_thread_detach as a cleanup routine for every
12223         thread. This way it's always executed upon thread termination, either
12224         aborted or finished normally. No more xsp hangs!
12225
12226 2004-03-17  Martin Baulig  <martin@ximian.com>
12227
12228         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12229         `int count_nested' and a `MonoType **nested'.
12230
12231         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12232         most of the functionality into a new static
12233         do_mono_reflection_bind_generic_parameters() and don't take a
12234         `MonoType *nested_in' argument any more.  Don't compute nested
12235         types here.
12236         (mono_reflection_generic_inst_get_nested_types): New public method
12237         to get nested types.
12238
12239         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12240         we're a nested class.
12241
12242         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12243         mono_reflection_generic_inst_get_nested_types() to compute the
12244         nested types.
12245
12246 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12247
12248         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12249         descriptive error message under windows.
12250         
12251 2004-03-17  Martin Baulig  <martin@ximian.com>
12252
12253         * class.c (dup_type): Added `const MonoType *original' argument;
12254         copy the attrs from the original type.
12255
12256 2004-03-17  Martin Baulig  <martin@ximian.com>
12257
12258         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12259         `m->generic_inst_cache' here.
12260
12261 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12262
12263         * exception.h exception.c: Add stack_overflow_exception.
12264
12265 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12266
12267         * threadpool.c:
12268         (overlapped_callback): call SetEvent *after* invoking the callback.
12269         No need to call CloseHandle.
12270
12271 2004-03-16  Martin Baulig  <martin@ximian.com>
12272
12273         * reflection.c (mono_image_get_fieldref_token): Take a
12274         `MonoReflectionField *' instead of a `MonoClassField *' and a
12275         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12276
12277 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12278
12279         * appdomain.c: don't add the culture to the filename we're looking for
12280         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12281
12282 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12283
12284         * locales.c: don't ignore symbols when doing case insensitive compares.
12285         Thanks Dick! Fixes bug #54046.
12286
12287         * threads.c: surround 'threads' usage with enter/leave in
12288         mono_thread_manage.
12289
12290 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12291
12292         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12293         implicitly marshalled as [Out]. Fixes #55450.
12294
12295         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12296         an exception.
12297
12298 2004-03-16  Martin Baulig  <martin@ximian.com>
12299
12300         * class.c (mono_class_from_generic_parameter): Use the actual
12301         parameter name. 
12302
12303 2004-03-16  Martin Baulig  <martin@ximian.com>
12304
12305         * reflection.c (type_get_signature_size): New static function.
12306         Compues the size of the type in a method signature.
12307         (method_get_signature_size): New static function; calls
12308         type_get_signature_size() to compute the actual size of the
12309         method's signature.
12310         (method_encode_signature): Use method_get_signature_size() to get
12311         the signature's size rather than using `nparams * 10'.
12312
12313 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12314
12315         * file-io.h: define here WapiOverlapped on windows. I don't want the
12316         regular OVERLAPPED one.
12317
12318         * file-io.c:
12319         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12320         Disabling AIO on windows.
12321
12322 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12323
12324         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12325         bug #55385.
12326
12327 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12328
12329         * appdomain.c: upgraded corlib version.
12330
12331         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12332         and BeginWrite. Allow opening files for asynchrnous operations.
12333
12334         * file-io.h: new struct that maps FileStreamAsyncResult.
12335         * icall.c: added new icalls.
12336         * process.[ch]: support setting child process environment variables
12337         and use the SHELL or COMSPEC when UseShellExecute is true.
12338
12339         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12340         callback for async. IO is here and also BindHandle.
12341
12342         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12343         from here.
12344
12345 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12346
12347         * reflection.c (create_custom_attr): Allow len == 0.
12348
12349         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12350         computation on big-endian machines.
12351
12352 2004-03-13  Martin Baulig  <martin@ximian.com>
12353
12354         * class.h (MonoGenericInst): Added `int count_ifaces'.
12355
12356         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12357         `ginst->count_ifaces' instead `klass->interface_count' since we
12358         may get called before the vtable is created.
12359
12360         * loader.c (mono_method_get_param_names): If we're a generic
12361         instance, return and don't initialize the class.
12362
12363         * reflection.c (mono_reflection_setup_generic_class): Don't call
12364         ensure_runtime_vtable().
12365         (mono_reflection_bind_generic_parameters): Set
12366         `ginst->count_ifaces'.
12367
12368 2004-03-11  Jackson Harper <jackson@ximian.com>
12369
12370         * icall.c:
12371         * unicode.c:
12372         * unicode.h: Remove unused System.Char icalls.
12373         
12374 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12375
12376         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12377         code when we P/Invoke the first library in Windows.Forms, instead
12378         of when we first open the assembly.
12379
12380         * assembly.c: Drop the lookup from here.
12381
12382 2004-03-10  Martin Baulig  <martin@ximian.com>
12383
12384         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12385         class for properties, fields and events.  Finally fixes #54945.
12386
12387 2004-03-10  Martin Baulig  <martin@ximian.com>
12388
12389         * metadata.c (mono_metadata_class_equal): New static function;
12390         checks whether two generic instances or two generic parameters are
12391         equal.
12392         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12393         compare classes.        
12394
12395 2004-03-10  Martin Baulig  <martin@ximian.com>
12396
12397         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12398
12399         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12400         argument and write it into the `reflection_info' field.
12401
12402         * icall.c
12403         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12404         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12405
12406 2004-03-09  Jackson Harper  <jackson@ximian.com>
12407
12408         * char-conversions.h: use 8 bits for numeric data its all we need
12409         * icall.c: numeric data is only 8 bits now.
12410
12411 2004-03-09  Martin Baulig  <martin@ximian.com>
12412
12413         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
12414
12415         * class.c (init_properties, init_events): Initialize the new
12416         `parent' field.
12417
12418         * reflection.c (typebuilder_setup_properties): Likewise.
12419         (typebuilder_setup_events): Likewise.
12420
12421         * reflection.h (MonoEventInfo): Replaced `parent with
12422         `declaring_type' and `reflected_type'.
12423
12424         * icall.c (ves_icall_get_property_info): Distinguish between
12425         declaring and reflected type.
12426         (ves_icall_get_event_info): Likewise.
12427
12428 2004-03-09  Martin Baulig  <martin@ximian.com>
12429
12430         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
12431         (ves_icall_Type_GetField): Correctly set field->klass.
12432
12433 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
12434
12435         * loader.h: Fix warning.
12436
12437 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
12438
12439         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
12440         library routine if present.  Notice that it will still continue
12441         executing even if its missing, for those working on the Gtk#
12442         edition of Windows.Forms.
12443
12444         * assembly.c (do_mono_assembly_open): If loading the
12445         System.Windows.Forms call mono_loader_wini_init.
12446
12447 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
12448
12449         * class.h: Added MonoRemoteClass struct.
12450         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
12451         function for MonoStrings.
12452         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
12453         Added internal call for getting the proxy type.
12454         * marshal.c: Get the type of transparent proxies from its remote_class.
12455         Added methods that generate the IL for type checks and casts:
12456         mono_marshal_get_isinst, mono_marshal_get_castclass, 
12457         mono_marshal_get_proxy_cancast.
12458         * marshal.h: Declaration of the previous new methods.
12459         * object.c: Added new moethods for creating and updating MonoRemoteClass
12460         instances: mono_remote_class, mono_upgrade_remote_class, 
12461         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
12462         * verify.c: FIx transparent_proxy_fields layout.
12463         * appdomain.c: Bump corlib version.
12464
12465 2004-03-04  Jackson Harper  <jackson@ximian.com>
12466
12467         * icall.c: Add icall to access char conversion tables.
12468         * char-conversions.h: Character conversion tables.
12469         * Makefile.am: Add char-conversions.h private header file.
12470         
12471 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
12472
12473         * appdomain.c (unload_thread_main): Increase unloading timeout to
12474         10 sec as a temporary workaround for Nant problems.
12475
12476 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
12477
12478         * gc.c: Add checks for GC_enable and GC_disable.
12479
12480         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
12481         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
12482         (bug #54988).
12483         
12484 2004-02-27  Martin Baulig  <martin@ximian.com>
12485
12486         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12487         `MonoReflectionType *' instead of a `MonoType *'.
12488
12489 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
12490
12491         * gc.c (run_finalize): Avoid finalizing the object representing the
12492         finalizer thread.
12493         (finalizer_thread): Fix warning.
12494
12495 2004-02-25  Martin Baulig  <martin@ximian.com>
12496
12497         * class.c (_mono_class_get_instantiation_name): Added `int offset'
12498         argument for nested types.
12499         (mono_class_create_generic): Added support for nested generictypes.
12500
12501         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
12502         `GList *nested'.
12503
12504         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
12505
12506         * reflection.c (method_encode_signature): Increase the minimum
12507         value of `size' from 10 to 11.
12508         (mono_reflection_bind_generic_parameters): Take `int type_argc'
12509         and `MonoType **types' arguments instead of the `MonoArray
12510         *types'; added `MonoType *nested_in'.  Recursively instantiate
12511         nested classes. 
12512
12513 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
12514
12515         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
12516         stack_overflow_ex members which are used by exception handling.
12517
12518         * appdomain.c (mono_runtime_init): Initialize the new members.
12519
12520         * gc.c (mono_gc_enable): New helper function.
12521         * gc.c (mono_gc_disable): New helper function.
12522
12523 2004-02-23  Martin Baulig  <martin@ximian.com>
12524
12525         * icall.c: I must have been really stupid - make it actually work
12526         this time ;-)
12527
12528 2004-02-23  Martin Baulig  <martin@ximian.com>
12529
12530         * loader.c (method_from_memberref): Only inflate the method if
12531         it's in another klass.
12532
12533 2004-02-23  Martin Baulig  <martin@ximian.com>
12534
12535         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
12536         (mono_class_init): If we're a generic instance and an interface,
12537         compute `class->interface_id'; also create `class->interfaces'
12538         here and inflate them.
12539
12540         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
12541         `ginst->is_open'.
12542         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
12543
12544         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12545
12546 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12547
12548         * reflection.c (method_encode_code): Improved the error message
12549         generated by the exception.
12550
12551 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12552
12553         * icall.c: Martin did not do what he said in the ChangeLog for
12554         2004-02-18, but put back the changes for properties and events.
12555         Commenting those changes out again and adding comment to bug #54518.
12556         
12557         * process.c: removed warning.
12558
12559 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12560
12561         * marshal.c (emit_struct_conv): Print an error message instead of
12562         asserting when a type does not have the StructLayout attribute.
12563
12564 2004-02-20  Martin Baulig  <martin@ximian.com>
12565
12566         * reflection.c (mono_type_get_object): Also use the cache for
12567         generic instances.
12568         (mono_reflection_bind_generic_parameters): Always compute
12569         `ginst->ifaces'.        
12570
12571 2004-02-20  Martin Baulig  <martin@ximian.com>
12572
12573         * class.h (MonoGenericMethod): Removed `klass'.
12574
12575         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12576         *klass' argument.
12577
12578 2004-02-20  Martin Baulig  <martin@ximian.com>
12579
12580         * reflection.c (method_encode_methodspec): Actually use the
12581         uninflated signature for the memberref.
12582
12583 2004-02-20  Martin Baulig  <martin@ximian.com>
12584
12585         * class.h (MonoGenericMethod): Removed `declaring'.
12586
12587         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12588         is NULL, compute it here.
12589
12590 2004-02-20  Martin Baulig  <martin@ximian.com>
12591
12592         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12593
12594         * metadata.c (mono_metadata_generic_inst_hash): New method.
12595         (mono_metadata_generic_inst_equal): New method.
12596
12597         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12598         `klass->image->generic_inst_cache' cache to avoid creating
12599         duplicate MonoGenericInst's.
12600
12601         * class.c (mono_class_inflate_generic_type): Use the cache.
12602
12603 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12604
12605         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12606
12607 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12608
12609         * icall.c: added Socket.WSAIoctl icall.
12610
12611         * socket-io.[ch]: implemented
12612         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12613
12614 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12615
12616         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12617
12618 2004-02-18  Urs C Muff  <umuff@quark.com>
12619
12620         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12621         this work on PPC and other big-endian architectures.
12622
12623         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12624         fields with an underscore to make sure they're only accessed by
12625         the read32() macro.
12626
12627 2004-02-18  Martin Baulig  <martin@ximian.com>
12628
12629         * icall.c: Put the klass->refclass changes back for methods and
12630         fields, but not for properties and events.  We're currently not
12631         distinguishing between DeclaringType and ReflectedType for
12632         properties and events, that's what caused the regressions.
12633
12634 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12635
12636         * object.c:
12637         (mono_async_result_new): the handle can be NULL.
12638
12639         * threadpool.c: Use an event instead of a semaphore, don't initialize
12640         it until needed. This saves quite a few semaphores from being created
12641         when using the threadpool.
12642
12643 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12644
12645         * object.c (mono_string_is_interned_lookup): Fix interning of long
12646         strings. Fixes #54473.
12647
12648         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12649
12650         * icall.c: Revert the klass->refclass changes since they introduce
12651         regressions (bug #54518).
12652
12653 2004-02-18  Martin Baulig  <martin@ximian.com>
12654
12655         * class.c (mono_class_init): If we're a generic instance and don't
12656         come from a TypeBuilder, inflate our members here.
12657         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12658         (mono_class_create_generic): New public method.
12659         (mono_class_initialize_generic): Removed.
12660         (get_instantiation_name): Renamed to
12661         _mono_class_get_instantiation_name() and made it public.
12662
12663 2004-02-18  Martin Baulig  <martin@ximian.com>
12664
12665         * class.c (mono_class_inflate_generic_type): Clear the new
12666         instance's `nginst->klass' when inflating a generic instance.
12667         (mono_class_is_subclass_of): Added (basic) support for generic
12668         instances.
12669
12670 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12671
12672         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12673         MonoMempool to hold compiled native code.
12674
12675 2004-02-17  Martin Baulig  <martin@ximian.com>
12676
12677         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12678         `properties'.
12679
12680         * reflection.c (mono_reflection_generic_inst_initialize): Added
12681         `MonoArray *properties' argument.
12682
12683         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12684
12685 2004-02-17  Martin Baulig  <martin@ximian.com>
12686
12687         * icall.c (ves_icall_Type_GetFields): Renamed to
12688         ves_icall_Type_GetFields_internal() and added a
12689         `MonoReflectionType *rtype' argument; pass it to
12690         mono_field_get_object() to set the field's "reflected" type.
12691         (ves_icall_Type_GetConstructors): Likewise.
12692         (ves_icall_Type_GetEvents): Likewise.
12693         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12694         argument; pass it to mono_method_get_object() to set the method's
12695         "reflected" type.       
12696
12697 2004-02-17  Martin Baulig  <martin@ximian.com>
12698
12699         * class.h (MonoDynamicGenericInst): New type.
12700         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12701
12702         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12703         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12704         (ves_icall_MonoGenericInst_GetFields): New interncall.
12705
12706         * class.c (mono_class_from_generic): Don't call
12707         mono_class_initialize_generic() if this is a dynamic instance;
12708         ie. it's being created from a TypeBuilder.
12709         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12710         `class->byval_arg.type'.
12711
12712         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12713         to `inflate_method' and made static.
12714         (mono_reflection_inflate_field): Removed.
12715         (mono_reflection_generic_inst_initialize): New public method.
12716
12717         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12718         `ctors' and `fields'; added `initialized'.
12719
12720 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12721
12722         * debug-helpers.c (mono_method_full_name): Fix output for empty
12723         namespaces.
12724
12725 2004-02-12  Martin Baulig  <martin@ximian.com>
12726
12727         * class.h (MonoClassField): Added `MonoType *generic_type'.
12728
12729         * reflection.c (mono_image_get_fieldref_token): Added support for
12730         instantiated generic types.
12731         (field_encode_inflated_field): Removed.
12732         (mono_image_get_inflated_field_token): Removed.
12733         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12734
12735         * reflection.h (MonoReflectionInflatedField): Removed.
12736
12737 2004-02-12  Martin Baulig  <martin@ximian.com>
12738
12739         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12740         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12741
12742         * reflection.c (mono_image_get_methodspec_token): Take a
12743         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12744         (mono_image_create_token): Check whether we have a
12745         `method->signature->gen_method' and call
12746         mono_image_get_methodspec_token() if appropriate.
12747         (inflated_method_get_object): Removed.
12748         (mono_reflection_bind_generic_method_parameters): Return a
12749         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12750         (mono_reflection_inflate_method_or_ctor): Likewise.
12751
12752         * reflection.h (MonoReflectionInflatedMethod): Removed.
12753
12754 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12755
12756         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12757         for custom valuetype marshalling.
12758
12759         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12760
12761 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12762
12763         * icall.c: fixed WSAGetLastError_internal name.
12764
12765 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12766
12767         * threads.c (mono_thread_attach): Allow this to be called multiple
12768         times for a thread.
12769         
12770         * threads.c (build_wait_tids): Do not wait for ourselves.
12771
12772         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12773         appdomain list is empty.
12774
12775         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12776         memory returned by mono_string_builder_to_utf16, since it points into
12777         managed memory. Thanks to Bernie Solomon for noticing this.
12778
12779         * icall.c: Add AppDomainSetup icalls.
12780
12781         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12782
12783         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12784         types.
12785
12786         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12787         custom attributes to the method_aux struct. Also fix array indexes etc.
12788
12789         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12790         
12791 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12792
12793         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12794         (both static and runtime) and reduce startup time.
12795
12796 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12797
12798         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12799         AsAny marshalling conversion instead of crashing.
12800
12801         * marshal.c: Fix warnings.
12802
12803 2004-02-09  Martin Baulig  <martin@ximian.com>
12804
12805         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12806
12807         * reflection.h (MonoReflectionInflatedMethod): Removed the
12808         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12809
12810         * reflection.c (method_encode_methodspec): Removed the `method'
12811         argument; we get it from `gmethod->declaring'.
12812         (inflated_method_get_object): Removed the `declaring' argument.
12813
12814 2004-02-09  Martin Baulig  <martin@ximian.com>
12815
12816         * class.h (MonoGenericMethod): New type.
12817         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12818         `generic_method'.
12819
12820         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12821         a `MonoGenericMethod *gen_method' one.
12822
12823         * class.c (mono_class_inflate_generic_type): Take an additional
12824         `MonoGenericMethod * argument.  This is only non-NULL if we're
12825         inflating types for a generic method.   
12826         (mono_class_inflate_generic_signature): Renamed to
12827         inflate_generic_signature() and made static; take a
12828         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12829         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12830         instead of a `MonoGenericInst *' one.
12831         (mono_class_inflate_generic_method): Likewise.
12832
12833         * reflection.c (encode_generic_method_sig): Take a
12834         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12835         (method_encode_methodspec): Likewise.
12836         (inflated_method_get_object): Likewise. 
12837
12838         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12839         field with a `MonoGenericMethod *gmethod' one.  
12840
12841 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12842
12843         * class.h (mono_class_has_parent): add parens to expansion
12844         so you can ! this.
12845
12846 2004-02-08  Martin Baulig  <martin@ximian.com>
12847
12848         * image.h (MonoImage): Removed `generics_cache'.
12849
12850         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12851         instead of a `MonoType *' argument; removed the `inflate_methods'
12852         argument.  Don't inflate methods here.
12853
12854         * loader.c (find_method): If it's a generic instance, call
12855         mono_class_init() on the `sclass->generic_inst->generic_type'.
12856
12857         * metadata.c (mono_type_size): Make this work on uninitialized
12858         generic instances; call it on the `ginst->generic_type's class.
12859
12860         * reflection.c (mono_reflection_bind_generic_parameters): Call
12861         mono_class_from_generic() to create the `ginst->klass'.
12862
12863 2004-02-08  Martin Baulig  <martin@ximian.com>
12864
12865         * class.h (MonoClass): Changed type of `generic_inst' from
12866         `MonoType *' to `MonoGenericInst *'.
12867
12868 2004-02-08  Martin Baulig  <martin@ximian.com>
12869
12870         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12871         mono_type_get_object(), this is now creating a `MonoGenericInst'
12872         for MONO_TYPE_GENERICINST.
12873         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12874         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12875
12876         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12877         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12878         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12879         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12880         and reflected type.
12881
12882         * reflection.h (MonoReflectionInflatedMethod): Removed
12883         `declaring_type' and `reflected_type'.
12884
12885 2004-02-08  Martin Baulig  <martin@ximian.com>
12886
12887         * class.h (MonoGenericInst): Added `MonoType *parent' and
12888         `MonoType **ifaces'.
12889
12890         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12891         `parent' and `interfaces'.
12892
12893         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12894         `MonoType *' argument and return a `MonoType *'.
12895
12896         * icall.c
12897         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12898         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12899
12900 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12901
12902         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12903         valuetype marshalling.
12904
12905 2004-02-06  Martin Baulig  <martin@ximian.com>
12906
12907         * class.c
12908         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12909         (my_mono_class_from_generic_parameter): Likewise.
12910
12911 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12912
12913         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12914         contents of the symbol files lazily.
12915
12916         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12917
12918         * threads.h threads.c icall.c: New icalls for getting and setting the
12919         threads name.
12920
12921 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12922
12923         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12924         Raise an exception when the domain is not found.
12925
12926 2004-02-03  Martin Baulig  <martin@ximian.com>
12927
12928         * reflection.c (mono_image_get_methodspec_token): Use the
12929         uninflated signature; fixes gen-33.
12930
12931 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12932
12933         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12934         the finalizer code can use thread functionality.
12935
12936         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12937         the finalizer thread.
12938
12939         * threads.c: Make some functions more robust.
12940
12941         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12942
12943         * metadata.h: Add new marshalling conventions.
12944
12945         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12946         stringbuilder marshalling. Fixes #53700.
12947
12948         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12949
12950         * reflection.c (mono_image_get_type_info): Save declarative security
12951         info.
12952
12953         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12954         unmanaged fields as well.
12955
12956         * appdomain.c: Bump corlib version.
12957
12958 2004-02-01  Martin Baulig  <martin@ximian.com>
12959
12960         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12961         method type arguments.  
12962
12963 2004-01-30  Duncan Mak  <duncan@ximian.com>
12964
12965         * marshal.h: Add prototype for
12966         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12967         and
12968         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12969         fix the build.
12970
12971 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12972
12973         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12974         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12975
12976 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12977
12978         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12979         custom marshalling of valuetypes.
12980
12981         * marshal.c: Fix some warnings.
12982
12983 2004-01-29  Martin Baulig  <martin@ximian.com>
12984
12985         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12986         for generic method parameters.
12987
12988         * reflection.c (method_encode_methodspec): Write the uninflated
12989         signature into the methodspec table.
12990         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12991         is always the uninflated method.
12992         (reflection_methodbuilder_to_mono_method): Copy the generic
12993         parameters from the MethodBuilder into `header->gen_params'.
12994
12995 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12996
12997         * class.c (mono_class_from_generic_parameter): Fix warning.
12998
12999 2004-01-27  Martin Baulig  <martin@ximian.com>
13000
13001         * class.c (mono_class_from_generic_parameter): Don't create
13002         `klass->methods' here.  
13003
13004 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13005
13006         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13007         extension since it does not work with libraries named lib<FOO>.dll.so.
13008
13009 2004-01-25  Martin Baulig  <martin@ximian.com>
13010
13011         * class.c (mono_class_inflate_generic_type): Added support for
13012         MONO_TYPE_GENERICINST.
13013
13014         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13015         inflate methods on open constructed types.      
13016
13017 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13018
13019         * object.c: fire ProcessExit event in the root AppDomain after running
13020         Main. Fixes bug #53299.
13021
13022 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13023
13024         * socket-io.c: include the new socket-wrappers.h header.
13025         Use the wrappers instead of the unix socket functions to make the code
13026         more clear.
13027
13028 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13029
13030         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13031
13032         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13033         Fixes #22532.
13034
13035 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13036
13037         * reflection.c (mono_image_create_pefile): Handle the case when the
13038         entry point is not a MethodBuilder.
13039
13040         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13041         field to ReflectionMethod since it is not allways a builder.
13042
13043         * reflection.c (type_get_fully_qualified_name): New helper function to
13044         return the fully qualified name of a type.
13045
13046         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13047         type name for custom marshallers.
13048
13049         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13050
13051         * class.c (mono_class_setup_vtable): If a parent class already 
13052         implements an interface, use the implementing methods from that class.
13053         Fixes #53148.
13054
13055 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13056
13057         * threadpool.c: just return instead of ExitThread to allow for thread
13058         clean up earlier.
13059
13060 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13061
13062         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13063         when closing resource modules.
13064
13065         * reflection.c (mono_image_create_pefile): Handle the case when the
13066         entry point is not a MethodBuilder.
13067
13068         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13069         field to ReflectionMethod since it is not allways a builder.
13070
13071 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13072
13073         * marshal.c (mono_marshal_get_managed_wrapper): 
13074         mono_marshal_alloc takes native int so CONV_I
13075         the arg for 64bits.
13076
13077 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13078
13079         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13080         tokens in the cattr table. Fixes #53108.
13081
13082 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13083
13084         * loader.c: don't trim ".dll" before looking up in the config file.
13085         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13086
13087 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13088
13089         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13090         Return the module which contains the resource as well.
13091         (ves_icall_System_Reflection_Module_Close): New icall.
13092
13093         * appdomain.c: Bump corlib version number.
13094
13095         * image.c (mono_image_addref): New public function.
13096
13097         * assembly.c: Call mono_image_addref.
13098
13099         * reflection.c (mono_module_get_object): Increase reference count of 
13100         the image.
13101
13102         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13103         Fixes #22532.
13104
13105         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13106         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13107         proper exceptions on DllImport problems.
13108
13109 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13110
13111         * class.c, metadata.c: eliminate CSIZE macro.
13112
13113 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13114
13115         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13116         * object.h: Added async_callback field in MonoAsyncResult.
13117         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13118         * verify.c: Added async_callback in MonoAsyncResult layout.
13119
13120 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13121
13122         * reflection.c (mono_reflection_get_custom_attrs): Add support
13123         for Modules.
13124
13125 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13126
13127         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13128         marshalling.
13129         (mono_marshal_method_from_wrapper): Add null pointer check.
13130
13131 2004-01-16  Martin Baulig  <martin@ximian.com>
13132
13133         * debug-mono-symfile.h: Set version number to 36 and reflect
13134         latest symbol writer changes.
13135
13136 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13137
13138         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13139         multi-dimensional arrays.
13140         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13141         (mono_class_from_mono_type): Use bounded_array_class_get.
13142         
13143         * class.c (mono_bounded_array_class_get): New function which takes
13144         a 'bounded' bool argument to distinguish vectors from one dimensional
13145         arrays.
13146
13147         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13148         bounded_array_class_get if the array has bounds.
13149
13150         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13151         Search modules loaded using AssemblyBuilder:AddModule as well.
13152
13153 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13154
13155         * appdomain.c: increased corlib version.
13156         * filewatcher.c: removed g_print.
13157         * icall.c:
13158         (get_property_info): only allocate what is actually requested.
13159         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13160
13161 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13162
13163         * Makefile.am: added filewatcher.[ch]
13164         * filewatcher.[ch]: FileSystemWatcher runtime support.
13165         * icall.c: added new FSW icalls.
13166
13167 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13168
13169         * string-icalls.c: fix stringbuilder regression as suggested by
13170         Iain McCoy <iain@mccoy.id.au>.
13171
13172 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13173
13174         * process.c (process_read_stringtable_block): Recognize '007f' as
13175         a language neutral stringtable block.
13176
13177 2004-01-12  Patrik Torstensson
13178
13179         * object.h (MonoStringBuilder) : Changed layout to support our
13180         new stringbuilder class.
13181         * marshal.c: Change marshalling to support the new layout of 
13182         string builder.
13183         * appdomain.c: increased version number because new layout of
13184         string builder.
13185
13186 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13187
13188         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13189         assembly name as an string instead of an AssemblyName, since it is
13190         easier to extract info from it.
13191
13192         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13193         the culture subdirectories too. Fixes #52231.
13194
13195 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13196
13197         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13198         It takes 2 new parameters with an optional name for the method to look
13199         for and case ignoring info.
13200
13201         * threadpool.c: removed unused variable.
13202
13203 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13204
13205         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13206         It takes 2 new parameters with an optional name for the property to look
13207         for and case ignoring info.
13208         Fixes bug #52753.
13209
13210 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13211
13212         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13213         Fix #52451.
13214
13215 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13216
13217         * appdomain.c:
13218         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13219         Fixes bug #52630.
13220
13221 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13222
13223         * reflection.c: Add support for more than one unmanaged resource.
13224
13225         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13226         in field->def_value, as done in all other cases.
13227
13228         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13229         TypeBuilders.
13230
13231         * reflection.c (mono_reflection_create_runtime_class): Remove 
13232         errorneous assignment to klass->element_class, since it is already
13233         done in mono_reflection_setup_internal_class.
13234
13235 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13236
13237         * gc.c: added missing LeaveCriticalSection.
13238         * icall.c: indented a couple of lines.
13239         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13240         if we call EndInvoke inside a callback. Fixes bug #52601.
13241
13242 2004-01-07  Martin Baulig  <martin@ximian.com>
13243
13244         * mono-debug-debugger.h
13245         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13246
13247 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13248
13249         * appdomain.c: Use messages in NotImplementedException.
13250
13251         * exception.c (mono_get_exception_not_implemented): Now this takes
13252         a message argument.
13253
13254         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13255         exception instead of g_asserting an aborting when something is not
13256         implemented.
13257
13258         Add some inline docs.
13259
13260 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13261
13262         * reflection.h: Update after changes to object layout.
13263
13264         * reflection.c: Implement saving of unmanaged aka win32 resources.
13265
13266         * appdomain.c: Bump version number.
13267
13268         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13269         Handle missing domains gracefully.
13270
13271 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13272
13273         * file-io.c : On Windows, there are much more invalid_path_chars.
13274
13275 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13276
13277         * class.h, object.c: prepare for GetType () speedup.
13278
13279 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13280
13281         * profiler.c: workaround for --profile null reference exception on
13282           cygwin. Patch by Patrik Torstensson.
13283
13284 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13285
13286         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13287         make work for unaligned access.
13288
13289 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13290
13291         * class.c: small cleanup (class->fields [i] -> field).
13292         * image.c: check address of metadata is valid.
13293
13294 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13295
13296         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13297         search the list of loaded assemblies.
13298
13299         * reflection.c (mono_reflection_type_from_name): Use 
13300         mono_assembly_loaded instead of mono_image_loaded.
13301
13302         * reflection.c: Fix warnings.
13303
13304 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13305
13306         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13307         is dynamic. This is needed since an assembly can contain both dynamic and
13308         non-dynamic images.
13309
13310         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13311         assembly->dynamic.
13312
13313         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13314
13315         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13316         to store modules loaded using AddModule.
13317
13318         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13319         on Modules.
13320
13321         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13322
13323         * reflection.c (mono_image_fill_export_table_from_module): New function to
13324         fill out the EXPORTEDTYPES table from a module.
13325
13326         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13327         into a separate function. Also handle loaded non-dynamic modules.
13328
13329         * reflection.c (mono_image_basic_init): Fix memory allocation.
13330
13331         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13332
13333         * assembly.c (mono_assembly_load_references): Make this public.
13334
13335 2003-12-19  Martin Baulig  <martin@ximian.com>
13336
13337         * class.c (mono_class_initialize_generic): Made this static, take
13338         a `MonoGenericInst *' instead of a `MonoClass *'.
13339         (mono_class_from_generic): Call mono_class_initialize_generic()
13340         unless we're already initialized or being called from
13341         do_mono_metadata_parse_generic_inst().
13342
13343         * class.h (MonoGenericInst): Added `initialized' and
13344         `init_pending' flags.
13345
13346         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13347         `mono_class_init (gklass)' or mono_class_initialize_generic()
13348         here; set `generic_inst->init_pending' while parsing the
13349         `type_argv'.
13350
13351 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13352
13353         * locales.c: include string.h for memxxx prototypes
13354
13355 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13356
13357         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13358         constructor when accessing literal fields.
13359
13360 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13361
13362         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13363
13364         * reflection.c (assembly_add_resource_manifest): New function to fill
13365         the MANIFESTRESOURCE table.
13366
13367         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13368
13369         * reflection.h: Update to changes in class layout.
13370
13371         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13372         Reenable call to mono_runtime_is_shutting_down ().
13373
13374         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13375         determine if the runtime is shutting down.
13376
13377 2003-12-16  Jackson Harper <jackson@ximian.com>
13378
13379         * icall.c: comment out call to mono_runtime_is_shutting_down to
13380         fix build.
13381         
13382 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13383
13384         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13385         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13386
13387 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13388
13389         * reflection.c: move definition of swap_with_size
13390         to before its first call
13391
13392 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13393
13394         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13395
13396         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13397         icall.
13398
13399         * object.c: Fix warnings.
13400
13401         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13402         members if FlattenHierarchy is set.
13403
13404         * reflection.c (mono_image_add_decl_security): New function to emit
13405         declarative security.
13406
13407         * reflection.h reflection.c: Add support for declarative security.
13408
13409         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13410         
13411 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
13412
13413         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13414         
13415         * appdomain.c verify.c: Moved corlib version checking into its own
13416         function in appdomain.c since it needs to create vtables etc.
13417
13418 2003-12-13  Patrik Torstensson <p@rxc.se>
13419
13420         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
13421         instead of unwrapped server.
13422
13423 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
13424
13425         * verify.c (check_corlib): Fix field index.
13426
13427 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
13428
13429         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
13430         GetGacPath icall.
13431
13432 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
13433
13434         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
13435         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
13436         cope with sizeof(size_t) != sizeof(guint32).
13437
13438 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13439
13440         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
13441         in case of failure.
13442
13443 2003-12-10  Mark Crichton <crichton@gimp.org>
13444
13445         * icall.c: removed the GetNonZeroBytes.  We now handle this case
13446         in managed code.
13447
13448         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
13449
13450 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
13451
13452         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
13453         marked as deleted.
13454
13455 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
13456
13457         * verify.c (check_corlib): Handle the case when the version field is 
13458         initialized by a static constructor.
13459
13460 2003-12-08  Patrik Torstensson  <p@rxc.se>
13461
13462     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
13463
13464 2003-12-08  Martin Baulig  <martin@ximian.com>
13465
13466         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
13467         a MonoReflectionGenericParameter, also take the parameter index
13468         and name as arguments.
13469         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13470         (ves_icall_MonoGenericParam_initialize): New interncall.
13471         (ves_icall_Type_make_byref_type): New interncall.
13472
13473         * reflection.h (MonoReflectionGenericParam): Derive from
13474         MonoReflectionType, not just from MonoObject.  Added `refobj' and
13475         `index' fields.
13476
13477         * reflection.c (mono_reflection_define_generic_parameter): Create
13478         and return a new MonoReflectionGenericParam; don't initialize the
13479         constraints here.
13480         (mono_reflection_initialize_generic_parameter): New public method;
13481         initializes the constraints and creates the `param->pklass'.
13482
13483 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
13484
13485         * reflection.h reflection.c: Use the new fields 'num_types', 
13486         'num_fields' and 'num_methods' to track the number of types etc.
13487
13488         * verify.c (check_corlib): Check corlib version number.
13489
13490 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
13491
13492         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
13493         function works on all methods.
13494
13495 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
13496
13497         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
13498         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
13499         the custom_type_info flag of the transparent proxy.
13500         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
13501         objects that supports IRemotingTypeInfo.
13502         * object.h: Added custom_type_info field in transparent proxy.
13503
13504 2003-12-06  Martin Baulig  <martin@ximian.com>
13505
13506         * class.c (mono_class_create_from_generic): Removed.
13507         (mono_class_from_generic): Check `ginst->klass' before doing
13508         anything else.  This is important to fully support "recursive"
13509         generic types.
13510
13511         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
13512         empty `generic_inst->klass' before doing anything else.
13513
13514 2003-12-06  Dick Porter  <dick@ximian.com>
13515
13516         * verify.c: 
13517         * object.h:
13518         * icall.c:
13519         * locales.c: Use C structs to access class fields.  Don't do a
13520         conversion between MonoString and UChar because both are
13521         platform-endian UTF-16.  Compare now takes startindex and count
13522         parameters.  Add a char overload for IndexOf.  Speed up the
13523         invariant string IndexOf.
13524
13525 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
13526
13527         * Makefile.am (monosn_LDADD): Fix parallel build.
13528
13529 2003-12-04  Martin Baulig  <martin@ximian.com>
13530
13531         * icall.c
13532         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13533         (ves_icall_Type_make_array_type): New interncall.       
13534
13535 2003-12-04  Martin Baulig  <martin@ximian.com>
13536
13537         * locales.c: also change it in the !HAVE_ICU case.
13538
13539 2003-12-04  Dick Porter  <dick@ximian.com>
13540
13541         * icall.c:
13542         * locales.c: construct_compareinfo is now in CompareInfo, not
13543         CultureInfo.
13544
13545 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13546
13547         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13548         image->files array.
13549
13550         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13551         table as well.
13552
13553         * assembly.c (mono_assembly_load_references): Only load references
13554         once.
13555
13556         * class.c (mono_class_from_name): Avoid linear search of the 
13557         EXPORTEDTYPE table.
13558
13559         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13560
13561 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13562
13563         * image.h (MonoImage): Add 'field_cache' field.
13564
13565         * loader.c (mono_field_from_token): Cache field lookups.
13566         
13567         * reflection.c (mono_module_get_object): Fix name property.
13568
13569         * icall.c (ves_icall_get_enum_info): Update after changes to 
13570         mono_metadata_get_constant_index ().
13571
13572         * icall.c: Get rid of get_type_info icall, use a separate icall for
13573         each type property to avoid needless memory allocations. Fixes #51514.
13574
13575         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13576         to avoid needless binary searches.
13577
13578         * class.c (class_compute_field_layout): Move the initialization of
13579         field->def_value to mono_class_vtable ().
13580
13581         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13582         non-corlib types.
13583
13584         * object.c (mono_object_allocate): Make it inline.
13585
13586         * object.c (mono_object_allocate_spec): Make it inline.
13587         
13588 2003-12-02  Dick Porter  <dick@ximian.com>
13589
13590         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13591         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13592
13593 2003-12-01  Dick Porter  <dick@ximian.com>
13594
13595         * threads.c: Fix signature and call in CreateMutex and
13596         CreateEvent.
13597
13598 2003-12-01  Dick Porter  <dick@ximian.com>
13599
13600         * icall.c: 
13601         * locales.c: Implement string compares and searching
13602
13603         * object.h: Add extra Thread field
13604
13605 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13606
13607         * reflection.c (fixup_method): Add support for MonoCMethod.
13608
13609 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13610
13611         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13612
13613         * reflection.c (assembly_name_to_aname): Allow extra characters in
13614         assembly names. Fixes #51468.
13615
13616 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13617
13618         * exception.c (mono_exception_from_name_domain): New helper function.
13619
13620         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13621         exception object in the correct domain.
13622
13623         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13624         formatting + make a copy a the input data.
13625
13626         * loader.c (mono_get_method_from_token): Methods which contain
13627         native code do not have entries in the ImplMap.
13628
13629         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13630         Thanks to Gonzalo for spotting this.
13631         
13632         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13633         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13634
13635         * assembly.h (mono_assembly_load_from): Split the second part of 
13636         assembly loading into a new public function.
13637
13638         * exception.h (mono_get_exception_bad_image_format): New function.
13639
13640 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13641
13642         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13643         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13644         
13645         * icall.c: Add new icall for creating dynamic methods.
13646
13647         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13648
13649         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13650
13651         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13652         create a dynamic method.
13653
13654         * reflection.c (resolve_object): New helper function.
13655
13656         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13657         which manipulate it so they can also work on dynamic methods.
13658
13659         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13660         creating the MonoReflectionMethodAux structure if it is not needed.
13661         
13662         * reflection.h verify.c: Update after changes to object layout.
13663
13664         * reflection.c (method_builder_encode_signature): Fix compilation on
13665         gcc 2.95.x.
13666
13667 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13668
13669         * appdomain.h: Added support for context static fields. Added static_data
13670           field to MonoAppContext and renamed thread_static_fields to a more
13671           generic special_static_fields in MonoAppDomain, since it can now contain
13672           context static fields.
13673         * domain.c: Updated hashtable name.
13674         * object.c: Replaced field_is_thread_static() for a more generic
13675           field_is_special_static() which also checks for context static attribute.
13676           In mono_class_vtable(), added support for static context fields.
13677         * threads.c: Changed methods that manage thread static fields to more
13678           generic methods so they can be reused both for thread and context static
13679           data.
13680         * threads.h: Declared some new methods.
13681
13682 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13683
13684         * reflection.h: Update after changes to the managed types.
13685
13686         * reflection.c (encode_custom_modifiers): New helper function.
13687
13688         * reflection.c (method_encode_signature): Emit custom modifiers.
13689
13690         * reflection.c (field_encode_signature): Emit custom modifiers.
13691
13692 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13693
13694         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13695
13696         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13697         implementation.
13698
13699         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13700         icall.
13701
13702         * object.c (mono_field_get_value_object): New function.
13703
13704         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13705         specific.
13706
13707 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13708
13709         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13710         return a preallocated out-of-memory exception instance.
13711
13712         * object.c (out_of_memory): Use the new function.
13713
13714         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13715         flag is before the custom modifiers. Fixes #49802.
13716
13717 2003-11-16  Martin Baulig  <martin@ximian.com>
13718
13719         * class.c (mono_class_is_open_constructed_type): Implemented the
13720         MONO_TYPE_GENERICINST case.
13721
13722 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13723
13724         * assembly.c (mono_assembly_fill_assembly_name): New function to
13725         fill out the MonoAssemblyName structure.
13726         (mono_assembly_open): Use the new function.
13727
13728         * icall.c (fill_reflection_assembly_name): New helper function.
13729
13730         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13731         new function.
13732
13733         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13734
13735 2003-11-15  Martin Baulig  <martin@ximian.com>
13736
13737         * class.c (mono_class_is_open_constructed_type): New public
13738         function; checks whether a type is an open constructed type,
13739         ie. whether it still contains type parameters.
13740         (mono_class_inflate_generic_type): If we're a type parameter and
13741         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13742         type.
13743
13744         * class.h (MonoGenericInst): Added `guint32 is_open'.
13745
13746         * loader.c (method_from_methodspec): Check whether we're an open
13747         or closed constructed type and set `ginst->is_open'.
13748
13749         * reflection.c (mono_reflection_bind_generic_parameters): Check
13750         whether we're an open or closed constructed type and set
13751         `ginst->is_open'.
13752         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13753         from open constructed types.
13754
13755 2003-11-15  Martin Baulig  <martin@ximian.com>
13756
13757         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13758         a generic instance (instead of a generic type declaration) with
13759         unbound generic parameters, bind them to our actual types.
13760
13761 2003-11-14  Martin Baulig  <martin@ximian.com>
13762
13763         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13764
13765         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13766         an interface type, populate `res->interfaces' with instantiated
13767         versions of all the interfaces we inherit.
13768
13769 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13770
13771         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13772         when MONO_PATH is set but doesn't contain the install dir.
13773
13774 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13775
13776         * icall.c:
13777         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13778         it's also implemented in base classes. Fixes bug #50927.
13779
13780 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13781
13782         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13783         if this method is called from a finalizer. Fixes #50913.
13784
13785 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13786
13787         * threads.c: Implement VolatileRead/VolatileWrite
13788
13789         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13790
13791 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13792
13793         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13794         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13795         2.95.3.
13796
13797         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13798         from Peter Ross (pro@missioncriticalit.com).
13799         
13800 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13801
13802         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13803
13804 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13805
13806         * assembly.c (mono_assembly_load_references): Disable check because it
13807         triggers on older corlibs which lots of people have.
13808
13809 2003-11-12  Jackson Harper  <jackson@ximian.com>
13810
13811         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13812         load corlib.dll if mscorlib.dll is not found.
13813         * assembly.h: Remove corlib name define.
13814         * class.c:
13815         * domain.c:
13816         * image.c: Change corlib name to mscorlib.
13817         
13818 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13819
13820         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13821
13822 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13823
13824         * appdomain.h: Added loader_optimization here to sync with the C#
13825         code, and add disallow_binding_redirects field.
13826
13827 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13828
13829         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13830
13831         * reflection.c (mono_image_build_metadata): Fix crash on modules
13832         with no types.
13833
13834         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13835
13836         * icall.c (ves_icall_get_method_info): Return callingConvention as
13837         well.
13838
13839         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13840         namespaces from the EXPORTEDTYPE table as well.
13841
13842         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13843         from all modules inside the assembly.
13844         
13845 2003-11-11  Martin Baulig  <martin@ximian.com>
13846
13847         * reflection.c (mono_reflection_bind_generic_parameters): Make
13848         this work for interfaces.
13849
13850 2003-11-11  Martin Baulig  <martin@ximian.com>
13851
13852         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13853
13854 2003-11-11  Martin Baulig  <martin@ximian.com>
13855
13856         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13857         "MonoInflatedMethod" and "MonoInflatedCtor".
13858
13859 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13860
13861         * reflection.c (resolution_scope_from_image): Use the assembly table
13862         from the manifest module, since other modules don't have it.
13863
13864         * debug-helpers.c (mono_type_full_name): New helper function.
13865
13866         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13867
13868         * image.c (mono_image_load_file_for_image): New public function which
13869         is a replacement for the load_file_for_image in class.c.
13870
13871         * assembly.c (mono_assembly_load_module): A wrapper for the function
13872         above which does assembly association and reference loading too.
13873
13874         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13875
13876 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13877
13878         * appdomain.c: not all of the attributes for the full assembly name
13879         are required and the order doesn't matter. Fixes bug #50787.
13880
13881 2003-11-10  Dick Porter  <dick@ximian.com>
13882
13883         * locales.c: Use platform-endian UTF16
13884
13885 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13886
13887         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13888         
13889 2003-11-10  Martin Baulig  <martin@ximian.com>
13890
13891         * metadata.c
13892         (mono_metadata_load_generic_params): Make this actually work.
13893
13894         * reflection.c (mono_reflection_bind_generic_parameters): If our
13895         parent is a generic instance, pass all the `types' to it, no
13896         matter whether it has the same number of type parameters or not.
13897
13898 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13899
13900         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13901
13902         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13903         assignment code to this function so it gets called recursively for all
13904         modules.
13905
13906         * image.c (load_modules): Remove the assembly assignment since it is
13907         now done by mono_assembly_load_references.
13908         
13909         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13910         Add 'module' argument.
13911         (mono_module_get_types): New helper function.
13912         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13913
13914 2003-11-08  Martin Baulig  <martin@ximian.com>
13915
13916         * class.c (mono_class_inflate_generic_method): Interface method
13917         don't have a header.
13918
13919         * reflection.c (mono_image_get_methodspec_token): Take an
13920         additional `MonoGenericInst *' argument instead of reading it from
13921         the header; this is necessary to support interfaces.
13922         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13923         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13924         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13925         argument.
13926
13927         * reflection.h (MonoReflectionInflatedMethod): Added
13928         `MonoGenericInst *ginst'.
13929
13930 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13931
13932         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13933
13934 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13935
13936         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13937
13938 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13939
13940         * reflection.c 
13941         (reflection_methodbuilder_from_method_builder):
13942         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13943         initialize a ReflectionMethodBuilder structure.
13944         (mono_image_get_methodbuilder_token):
13945         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13946         tokens which point to types in another module inside the same assembly.
13947
13948         * reflection.c: Use the new helper functions.
13949         
13950         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13951
13952         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13953         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13954
13955         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13956         neccesary.
13957
13958         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13959         current module. Emit the manifest only for the main module.
13960
13961         * reflection.c (mono_image_create_token): Add assertion when a 
13962         memberref needs to be created.
13963
13964         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13965
13966         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13967         larger buffer for the custom attribute blob. Fixes #50637.
13968         
13969 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13970
13971         * threadpool.c: notify listener on async processing handles after
13972         invoking the async callback. Thanks to Zoltan.
13973
13974 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13975
13976         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13977         avoid code duplication.
13978
13979         * reflection.h (MonoDynamicImage): New type which is currently unused,
13980         but will be used through the ref.emit code in place of 
13981         MonoDynamicAssembly.
13982
13983         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13984         object layout.
13985
13986         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13987         a MonoDynamicImage instead of just a MonoImage.
13988         
13989         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13990         icalls to ModuleBuilder but keep their semantics, so they will work
13991         with moduleb->assemblyb. This will change later.
13992         
13993 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13994
13995         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13996         object layout.
13997
13998         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13999         main module, since it is now done by the managed code.
14000
14001 2003-11-03  Martin Baulig  <martin@ximian.com>
14002
14003         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14004         `ginst->klass' here.
14005         (method_encode_methodspec): Don't use the `ginst->generic_method's
14006         klass if it's a generic instance, use `ginst->klass' in this case.
14007
14008 2003-11-03  Martin Baulig  <martin@ximian.com>
14009
14010         * reflection.c (mono_image_get_generic_method_param_info):
14011         Removed, use mono_image_get_generic_param_info() instead.
14012         (mono_image_get_type_info): Write the GenericParam table before
14013         the Method table.  This is neccessary because in the GenericParam
14014         table, type parameters of the class (ie. '!0' etc.) must come
14015         before the ones from its generic methods (ie. '!!0' etc).
14016
14017 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14018
14019         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14020
14021 2003-11-02  Martin Baulig  <martin@ximian.com>
14022
14023         * reflection.c (create_generic_typespec): Take a
14024         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14025         the generic parameters from it.
14026
14027 2003-11-02  Martin Baulig  <martin@ximian.com>
14028
14029         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14030         instead of a `MonoClassField *' since we just need the type.
14031         (create_generic_typespec): New static function.  Creates a
14032         TypeSpec token for a generic type declaration.
14033         (mono_image_get_generic_field_token): New static function.
14034         (mono_image_create_token): If we're a FieldBuilder in a generic
14035         type declaration, call mono_image_get_generic_field_token() to get
14036         the token.
14037
14038 2003-11-02  Martin Baulig  <martin@ximian.com>
14039
14040         * reflection.h
14041         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14042         `MonoReflectionGenericInst *declaring_type' and
14043         `MonoReflectionGenericInst *reflected_type' fields.
14044
14045         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14046         `MonoReflectionGenericInst *declaring_type' and a
14047         `MonoReflectionGenericInst *reflected_type' argument instead of a
14048         single `MonoReflectionGenericInst *type' one.  Set
14049         `res->declaring_type' and `res->reflected_type' from them.
14050         (mono_reflection_inflate_field): Likewise.      
14051
14052 2003-11-02  Martin Baulig  <martin@ximian.com>
14053
14054         * class.c (mono_class_setup_vtable): Don't store generic methods
14055         in the vtable.  
14056
14057 2003-11-02  Martin Baulig  <martin@ximian.com>
14058
14059         * reflection.h (MonoReflectionGenericInst): Added
14060         `MonoReflectionType *declaring_type'.
14061
14062         * reflection.c (mono_reflection_bind_generic_parameters): Use
14063         `if (tb->parent)' instead of `klass->parent'.
14064
14065 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14066
14067         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14068         with an empty ASSEMBLY table.
14069
14070         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14071         variable in the inner and outer loops.
14072
14073 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14074
14075         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14076         argument.
14077
14078         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14079         
14080         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14081         icalls. Instead, do everything in managed code. This is needed since
14082         it is hard to restore the original domain etc. in unmanaged code in the
14083         presence of undeniable exceptions.
14084
14085         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14086         New icalls to push and pop appdomain refs.
14087
14088 2003-10-31  Martin Baulig  <martin@ximian.com>
14089
14090         * class.c (inflate_generic_type): Renamed to
14091         mono_class_inflate_generic_type() and made it public.
14092
14093         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14094         New interncall.
14095
14096         * loader.c (mono_field_from_memberref): Also set the retklass for
14097         typespecs.
14098
14099         * fielder.c (mono_image_get_inflated_field_token): New static
14100         method; creates a metadata token for an inflated field.
14101         (mono_image_create_token, fixup_method): Added support for
14102         "MonoInflatedField".
14103         (fieldbuilder_to_mono_class_field): New static function.
14104         (mono_reflection_inflate_field): New public function.
14105
14106         * reflection.h
14107         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14108         (MonoReflectionInflatedField): New typedef.     
14109
14110 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14111
14112         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14113         for Solaris and other platforms without s6_addr16
14114
14115 2003-10-30  Martin Baulig  <martin@ximian.com>
14116
14117         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14118         argument instead of two.
14119         (mono_class_inflate_generic_signature): Likewise.
14120         (inflate_generic_header): Likewise.
14121         (mono_class_inflate_generic_method): Likewise.  In addition, if
14122         `ginst->klass' is set, it becomes the new `method->klass'.
14123
14124         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14125         field.
14126
14127         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14128         first byte. [FIXME]
14129         (method_encode_methodspec): If we have generic parameters, create
14130         a MethodSpec instead of a MethodRef.
14131         (fixup_method): Added support for "MonoInflatedMethod" and
14132         "MonoInflatedCtor".
14133         (mono_image_create_token): Added support for "MonoInflatedMethod"
14134         and "MonoInflatedCtor".
14135         (inflated_method_get_object): New static function; returns a
14136         managed "System.Reflection.MonoInflatedMethod" object.
14137         (mono_reflection_bind_generic_method_parameters): Return a
14138         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14139         (mono_reflection_inflate_method_or_ctor): Likewise.
14140         (mono_image_get_generic_method_param_info): Initialize unused
14141         fields to zero.
14142         (mono_image_get_generic_param_info): Likewise.
14143
14144         * reflection.h (MonoReflectionInflatedMethod): New public
14145         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14146         "S.R.MonoInflatedCtor" classes.
14147
14148         * loader.c (method_from_memberref): If we're a TypeSpec and it
14149         resolves to a generic instance, inflate the method.
14150
14151 2003-10-28  Dick Porter  <dick@ximian.com>
14152
14153         * object.c (mono_runtime_run_main): Convert command-line arguments
14154         into utf8, falling back to the user's locale encoding to do so.
14155
14156 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14157
14158         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14159         at this time.
14160
14161         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14162
14163         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14164         up icalls at method definition time. Partially fixes #33569.
14165
14166 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14167
14168         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14169         marshalling of arrays. Fixes #50116.
14170
14171         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14172
14173         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14174         points to a vtable in the dying appdomain.
14175
14176         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14177         listeners into unmanaged code inside the lock.
14178
14179         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14180         domains and add some comments.
14181
14182 2003-10-25  Martin Baulig  <martin@ximian.com>
14183
14184         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14185
14186         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14187
14188         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14189         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14190         currently parsing.  Create the generic class and store it in
14191         `generic_inst->klass' before parsing the type arguments.  This is
14192         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14193         for an example.
14194         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14195         to support recursive typespec entries.
14196
14197         * class.c (mono_class_setup_parent): If our parent is a generic
14198         instance, we may get called before it has its name set.
14199         (mono_class_from_generic): Splitted into
14200         mono_class_create_from_generic() and mono_class_initialize_generic().
14201
14202 2003-10-25  Martin Baulig  <martin@ximian.com>
14203
14204         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14205         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14206         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14207         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14208
14209         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14210         (create_typespec): Likewise.
14211         (mono_reflection_bind_generic_parameters): Return a
14212         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14213         (mono_reflection_inflate_method_or_ctor): New public function.
14214
14215         * reflection.h (MonoReflectionGenericInst): New typedef.        
14216
14217 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14218
14219         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14220         inside the domain lock. Fixes #49993.
14221         
14222         * object.c (mono_class_vtable): When typed allocation is used, 
14223         allocate vtables in the GC heap instead of in the mempool, since the
14224         vtables contain GC descriptors which are used by the collector even
14225         after the domain owning the mempool is unloaded.
14226
14227         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14228
14229         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14230         reflect what it does. Also invalidate mempools instead of freeing
14231         them if a define is set.
14232
14233         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14234         of the appdomain.
14235         
14236         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14237         hold the finalizable objects in this domain.
14238
14239         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14240         appdomain.
14241
14242         * appdomain.c (mono_domain_set): New function to set the current
14243         appdomain, but only if it is not being unloaded.
14244
14245         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14246         appdomain which is being unloaded.
14247         
14248         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14249         unloading of the root appdomain.
14250
14251         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14252         icall to execute a method in another appdomain. Intended as a 
14253         replacement for InternalSetDomain, which can confuse the code 
14254         generation in the JIT.
14255
14256         * appdomain.c (mono_domain_is_unloading): New function to determine
14257         whenever an appdomain is unloading.
14258
14259         * appdomain.c (mono_domain_unload): New function to correctly unload
14260         an appdomain.
14261
14262         * assembly.c (mono_assembly_load_references): Check that an assembly
14263         does not references itself.
14264
14265         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14266         domain manually, it asks the finalizer thread to do it, then waits for
14267         the result. Also added a timeout.
14268
14269         * icall.c: Register the new icalls.
14270
14271         * threads.h threads.c: Export the mono_gc_stop_world and 
14272         mono_gc_start_world functions.
14273         
14274         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14275         function to fill out the mempool with 0x2a.
14276
14277 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14278
14279         * reflection.h (MonoReflectionMethodAux): New structure to store
14280         information which is rarely used, thus is not in the MonoMethod
14281         structure.
14282
14283         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14284         store the aux info.
14285
14286         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14287         and marshalling info into the aux structure.
14288
14289         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14290         from the aux structure.
14291
14292         * loader.c (mono_method_get_param_names): Retrieve the param names from
14293         the aux structure.
14294         
14295 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14296
14297         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14298         warning.
14299
14300 2003-10-21  Dick Porter  <dick@ximian.com>
14301
14302         * socket-io.c
14303         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14304         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14305
14306 2003-10-21  Martin Baulig  <martin@ximian.com>
14307
14308         * reflection.c (mono_reflection_bind_generic_parameters):
14309         `klass->parent' is NULL for interfaces.
14310
14311 2003-10-21  Martin Baulig  <martin@ximian.com>
14312
14313         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14314
14315 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14316
14317         * exception.c (mono_exception_from_name_msg): New helper function for
14318         creating exceptions and initializing their message field.
14319
14320         * exception.c: Simplify functions using the new helper.
14321
14322         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14323         New function.
14324
14325         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14326         mono_raise_exception, since otherwise gcc doesn't generate the function
14327         epilog for raise_exception, confusing the stack unwinding in the JIT.
14328         Fixes #45043.
14329
14330         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14331         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14332         Fixes #49499.
14333
14334 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14335
14336         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14337         utf8.
14338
14339 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14340
14341         * icall.c: Removed GetUninitializedObject method because
14342           AllocateUninitializedClassInstance does the same.
14343
14344 2003-10-18  Martin Baulig  <martin@ximian.com>
14345
14346         * class.c (inflate_generic_signature): Renamed to
14347         mono_class_inflate_generic_signature() and made it public.
14348         (my_mono_class_from_generic_parameter): New static function; if we
14349         don't already have the generic parameter's MonoClass, create a
14350         very simple one which is just used internally in the runtime and
14351         not passed back to managed code.
14352
14353         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14354
14355         * metadata.h (MonoMethodSignature): Moved the
14356         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14357         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14358
14359         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14360         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14361         interncall on the MonoMethod class, not on MethodInfo.
14362         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14363         calling mono_reflection_bind_generic_method_parameters() directly.
14364
14365         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14366         return the already computed `method->signature'.
14367         (method_from_methodspec): New static function to load a method
14368         from a MethodSpec entry.
14369         (mono_get_method_from_token): Call the new method_from_methodspec()
14370         for MethodSpec tokens.  
14371         (mono_get_method_from_token): If we're a generic method, load the
14372         type parameters.
14373
14374         * reflection.c (mono_image_get_memberref_token): Allow
14375         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14376         table.
14377         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14378         (mono_image_create_token): First check whether it's a generic
14379         method (so we'd need to create a MethodSpec), then do the other
14380         two alternatives.
14381         (mono_reflection_bind_generic_method_parameters): Return a
14382         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14383         called directly from the interncall.
14384
14385 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14386
14387         * reflection.c (load_public_key): Move loading of the public key
14388         into managed code.
14389
14390         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14391
14392         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14393         fields.
14394
14395         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14396         culture, hash_alg and public_key. Fixes #49555.
14397
14398 2003-10-17  Martin Baulig  <martin@ximian.com>
14399
14400         * class.h (MonoGenericInst): Moved this declaration here and added
14401         `MonoMethod *generic_method'.
14402
14403         * icall.c
14404         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14405         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14406
14407         * metadata.c (mono_metadata_type_equal): Two types of
14408         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
14409         index; ie. don't compare the address of the `MonoGenericParam'
14410         structure.
14411         (mono_metadata_load_generic_params): Removed the `MonoMethod
14412         *method' argument.
14413
14414         * metadata.h (MonoGenericInst): Moved declaration to class.h.
14415         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
14416
14417         * reflection.c (method_encode_signature): Encode the number of
14418         generic parameters.
14419         (encode_generic_method_sig): New static function.
14420         (method_encode_methodspec): New static function; creates an entry
14421         in the MethodSpec table for a generic method.
14422         (mono_image_get_methodspec_token): New static function.
14423         (mono_image_create_token): Call mono_image_get_methodspec_token()
14424         for generic methods.
14425         (mono_reflection_bind_generic_method_parameters): New public
14426         function.  Instantiates a generic method.
14427
14428 2003-10-16  Martin Baulig  <martin@ximian.com>
14429
14430         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
14431         *gen_params' here from MonoMethodHeader.
14432
14433         * metadata.c (mono_metadata_parse_method_signature): If we have
14434         generic parameters, initialize `method->gen_params' and then set
14435         the correct `type->data.generic_param' in all the parameters.
14436
14437 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
14438
14439         * threads.c (mono_threads_get_default_stacksize): New function to 
14440         return the default stacksize.
14441
14442         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
14443         termination of the finalizer thread, since the previous method had
14444         race conditions. Fixes #49628.
14445
14446         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
14447         as for the other managed threads.
14448
14449 2003-10-16  Martin Baulig  <martin@ximian.com>
14450
14451         * class.c (inflate_generic_signature): Copy `generic_param_count'
14452         and `gen_params'.
14453
14454         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
14455         New interncall.
14456
14457         * metadata.c (mono_metadata_parse_method_signature): Actually set
14458         the `method->generic_param_count' here.
14459         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
14460
14461 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
14462
14463         * object.h: Add a new field to TypedRef to simplify the implementation
14464         of the REFANY opcodes in the JIT.
14465
14466         * icall.c: Make use of the new field.
14467
14468         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
14469         dynamically.
14470
14471 2003-10-15  Martin Baulig  <martin@ximian.com>
14472
14473         * class.c (mono_class_from_gen_param): Renamed to
14474         mono_class_from_generic_parameter() and moved most of the
14475         functionality from mono_reflection_define_generic_parameter()
14476         here; ie. we create a "real" class here.
14477         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
14478         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
14479         previously been called.
14480
14481         * class.h (MonoGenericParam): Moved the declaration of this struct
14482         here from metadata.h and added `MonoMethod *method'.
14483
14484         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
14485         interncall.
14486
14487         * loader.c (mono_get_method_from_token): If we have any generic
14488         parameters, call mono_metadata_load_generic_params() to read them
14489         from the MONO_TABLE_GENERICPAR.
14490
14491         * metadata.c (mono_metadata_load_generic_params): Added
14492         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
14493
14494         * metadata.h (MonoMethodSignature): Replaced
14495         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
14496         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
14497
14498         * reflection.c (mono_reflection_define_generic_parameter): Moved
14499         most of the functionality into the new
14500         mono_class_from_generic_parameter(); set the `method' field if
14501         we're a method parameter.       
14502
14503 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
14504
14505         * marshal.c (emit_struct_conv): if native size is 0
14506         emit no code.
14507
14508 2003-10-14  Martin Baulig  <martin@ximian.com>
14509
14510         * icall.c: The generics API has changed in the spec since it was
14511         added to System.Type; these modifications make it match the spec
14512         again.
14513         (ves_icall_Type_GetGenericParameters): Renamed to
14514         `ves_icall_Type_GetGenericArguments'.
14515         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
14516         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
14517         `ves_icall_MonoType_get_HasGenericArguments'.
14518         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
14519         `ves_icall_MonoType_get_IsGenericParameter'.
14520         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
14521         this is no interncall anymore.
14522         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
14523         `ves_icall_TypeBuilder_get_IsGenericParameter'.
14524
14525 2003-10-14  Martin Baulig  <martin@ximian.com>
14526
14527         * reflection.c (mono_reflection_bind_generic_parameters): Also
14528         inflate generic methods if we're reading the class from IL.
14529
14530 2003-10-13  Martin Baulig  <martin@ximian.com>
14531
14532         * reflection.c (mono_reflection_define_generic_parameter): This
14533         method isn't called directly from the icall anymore; take a
14534         `MonoReflectionAssemblyBuilder *' so we can use this for type and
14535         method generic parameters.
14536         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
14537         (method_builder_encode_signature): Encode generic parameters.
14538         (mono_image_get_method_info): Write generic params to the
14539         MONO_TABLE_GENERICPARAM table.
14540
14541         * reflection.h (MonoReflectionMethodBuilder): Added
14542         `MonoArray *generic_params'.
14543
14544         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14545
14546         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14547         wrapper for mono_reflection_define_generic_parameter().
14548         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14549
14550 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14551
14552         * marshal.h: Add missing function to fix build.
14553
14554         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14555         the SetLastError pinvoke attribute.
14556
14557         * marshal.c (mono_marshal_set_last_error): New helper function called
14558         by the generated code.
14559         
14560         * marshal.c (mono_mb_emit_branch): New helper function.
14561
14562         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14563
14564         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14565         classes as parameters and return values of delegates. Fixes #29256. 
14566
14567 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14568
14569         * locales.c: use gint32 in non HAVE_ICU case
14570
14571 2003-10-11  Martin Baulig  <martin@ximian.com>
14572
14573         * mono-debug.c (mono_debug_add_method): Added a workaround for
14574         bug #48591.
14575
14576 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14577
14578         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14579         delegates passed to native code must use the STDCALL calling 
14580         convention. Fixes #35987.
14581
14582 2003-10-10  Martin Baulig  <martin@ximian.com>
14583
14584         * class.c (inflate_generic_type): If we're inflating for a generic
14585         type instance (and not for a generic method), return
14586         MONO_TYPE_MVAR unchanged.
14587
14588 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14589
14590         * string-icalls.c: Join ignores null strings in the source array.
14591         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14592         * threads.c: GetAvailableTheads is slightly more accurate.
14593
14594 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14595
14596         * threads.h threads.c : add mono_threads_set_default_stacksize
14597         and pass default to CreateThread calls.
14598
14599 2003-10-09  Dick Porter  <dick@ximian.com>
14600
14601         * icall.c:
14602         * locales.h:
14603         * locales.c: Internal calls for constructing CultureInfo and
14604         related objects from libicu (if its available.)
14605
14606 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14607
14608         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14609
14610 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14611
14612         * threadpool.c: added an argument to async_invoke_thread that is the
14613         item to process, pass the MonoAsyncResult to the thread start function
14614         when creating a new thread. This way we don't need to acquire any lock
14615         when we're creating a new thread. Readded a semaphore for faster
14616         response times (instead of that Sleep i added).
14617
14618 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14619
14620         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14621         get daylight change dates better on Windows, fix handling
14622         of platforms without tm_gmtoff.
14623
14624 2003-10-06  Martin Baulig  <martin@ximian.com>
14625
14626         * class.c (inflate_generic_method): Renamed to
14627         mono_class_inflate_generic_method() and made public.
14628         (mono_class_init): Don't inflate the generic methods here.
14629         (mono_class_from_generic): Added `gboolean inflate_methods'
14630         argument.  Inflate the methods here.
14631
14632         * loader.c (mono_method_get_param_names): Ignore instances of
14633         generic types for the moment.
14634
14635         * reflection.c (fixup_method): Added support for inflated methods.
14636         (mono_image_create_token): Use mono_image_get_methodref_token()
14637         for inflated methods.
14638         (mono_custom_attrs_from_param): Ignore instances of generic types
14639         for the moment.
14640         (mono_reflection_bind_generic_parameters): New public function.
14641         Moved all the functionality from
14642         ves_icall_Type_BindGenericParameters() here and added support for
14643         dynamic types.
14644         (mono_reflection_define_generic_parameter): Initialize
14645         `klass->methods' here.
14646
14647         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14648         functionality into mono_reflection_define_generic_parameter().
14649         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14650         TypeBuilder, return that TypeBuilder.
14651
14652 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14653
14654         * appdomain.c: removed mono_delegate_semaphore.
14655
14656         * threadpool.c:
14657         (mono_thread_pool_add): moved hash table creation inside and the thread 
14658         creation outside of the critical region.
14659         (mono_thread_pool_finish): removed obsolete code.
14660         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14661         continue or exit the thread depending on the queue.
14662
14663 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14664
14665         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14666         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14667         handle more bool marshalling options
14668
14669 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14670
14671         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14672         arrays of structs. Also add a more descriptive error message when
14673         a structure member is marshalled as LPArray.
14674
14675 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14676
14677         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14678         marshalling arrays of complex types. Fixes #29098. Also remove an
14679         usused and incomplete function.
14680
14681 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14682
14683         * gc.c: report heap_size - free_bytes as total memory allocated
14684         (bug#49362).
14685
14686 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14687
14688         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14689         fix timezone handling problems on Windows.
14690         
14691         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14692         asserts when the year is outside the range handled by ms the functions.
14693
14694         * class.c (setup_interface_offsets): If the class is an interface,
14695         fill out its interface_offsets slot.
14696
14697 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14698
14699         * threadpool.c: mark threadpool threads as background.
14700
14701 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14702
14703         * decimal.c - define DECINLINE to nothing if not using GCC
14704
14705 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14706
14707         * assembly.c: More refcount fixes.
14708
14709 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14710
14711         * string-icalls.c: if we're not trimming, return the same string.
14712         When not splitting, don't create a new string.
14713
14714 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14715
14716         * image.c:
14717         (mono_image_open): increment the ref_count inside the critical section.
14718
14719 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14720
14721         * image.c (mono_image_open): Fix reference counting bug.
14722
14723 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14724
14725         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14726         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14727         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14728         mono_lookup_pinvoke_call throws.        
14729
14730 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14731
14732         * reflection.c (mono_reflection_parse_type): Fix #49114.
14733
14734         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14735         temporary workaround for cygwin header problem.
14736
14737         * object.c (mono_object_isinst): Synchronize this with the code
14738         generated by the JIT for casts.
14739
14740 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14741
14742         * reflection.c (encode_type): Fix #38332.
14743
14744 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14745
14746         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14747         the original method from the wrapper method.
14748
14749 2003-09-25  Martin Baulig  <martin@ximian.com>
14750
14751         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14752         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14753         (ves_icall_Type_get_IsGenericInstance): New interncall.
14754
14755 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14756
14757         * object.c: fix cast warning in big endian code.
14758
14759 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14760
14761         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14762         
14763 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14764
14765         * assembly.c: don't call check_env from mono_assembly_load. It's
14766         already done once in mono_assemblies_init and may cause headaches when
14767         multiple threads are loading assemblies.
14768
14769 2003-09-19  Martin Baulig  <martin@ximian.com>
14770
14771         * reflection.c (mono_reflection_define_generic_parameter): Don't
14772         allocate `klass->methods', set `klass->flags' to
14773         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14774
14775 2003-09-18  Martin Baulig  <martin@ximian.com>
14776
14777         * class.c (mono_class_init): Don't create `class->methods' if it's
14778         already initialized.
14779
14780         * metadata.c (mono_metadata_load_generic_params): Make this
14781         actually work.
14782
14783         * reflection.c (mono_reflection_define_generic_parameter): Set
14784         parent class and interfaces from the constraints.
14785
14786         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14787         to keep this struct in sync with the declaration in TypeBuilder.cs.
14788
14789 2003-09-17  Martin Baulig  <martin@ximian.com>
14790
14791         * metadata.h (MonoType): Replaced the data's `int type_param'
14792         field with `MonoGenericParam *generic_param'.
14793         (MonoGenericParam): Added `MonoClass *klass'.
14794
14795         * class.c (mono_class_from_gen_param): Removed the
14796         `MonoImage *image' and `int type_num' arguments.
14797
14798         * metadata.c (mono_metadata_parse_generic_param): New static
14799         method; creates a MonoGenericParam which just contains the index.
14800         (do_mono_metadata_parse_type): Call
14801         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14802         MONO_TYPE_MVAR.
14803
14804         * reflection.c (mono_image_typedef_or_ref): Generic type
14805         parameters may be in the same assembly, but never use a typedef
14806         for them.
14807         (mono_reflection_define_generic_parameter): We're now creating a
14808         "real" class for the type parameter; it's now safe to call
14809         mono_class_from_mono_type() on the class'es type, it'll do the
14810         right thing.
14811
14812 2003-09-16  Martin Baulig  <martin@ximian.com>
14813
14814         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14815         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14816         the `symfile' data structure must be fully initialized before it
14817         gets added to the table.
14818
14819 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14820
14821         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14822
14823         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14824         class init trampolines.
14825
14826 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14827
14828         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14829         to the built-in profiler to turn off time and allocation profiling
14830         respectively.
14831
14832 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14833
14834         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14835         g_direct_equal.
14836
14837         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14838         in human readable form.
14839
14840 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14841
14842         * reflection.c icall.c: Fixed warnings.
14843
14844         * image.c (load_class_names): Use a temporary hash table to hold the
14845         namespaces in order to avoid doing many string comparisons.
14846
14847         * image.h: Fix typo.
14848
14849         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14850         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14851         since the NULL case is short-circuited inside g_hash_table_lookup, 
14852         leading to better performance.  
14853
14854         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14855         obtain the first custom attribute for a given index. Depends on the
14856         CustomAttribute table being sorted by the parent field.
14857
14858         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14859         for better performance.
14860
14861 2003-09-07  Martin Baulig  <martin@ximian.com>
14862
14863         * class.c (mono_class_init): If we're a generic instance, inflate
14864         all our methods instead of loading them from the image.
14865         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14866
14867 2003-09-07  Martin Baulig  <martin@ximian.com>
14868
14869         * mono-debug-debugger.c: Added support for constructors.
14870
14871 2003-09-06  Martin Baulig  <martin@ximian.com>
14872
14873         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14874         New interncall.
14875
14876         * reflection.c (mono_reflection_setup_generic_class): Call
14877         ensure_runtime_vtable() to create the vtable.
14878
14879 2003-09-05  Martin Baulig  <martin@ximian.com>
14880
14881         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14882         MONO_TYPE_MVAR.
14883
14884 2003-09-04  Martin Baulig  <martin@ximian.com>
14885
14886         * reflection.c (mono_reflection_define_generic_parameter): Generic
14887         parameters start with zero.
14888
14889 2003-09-04  Martin Baulig  <martin@ximian.com>
14890
14891         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14892
14893         * reflection.h (MonoReflectionGenericParam): New typedef.
14894         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14895         the generic parameters from the managed TypeBuilder.
14896
14897         * reflection.c (mono_reflection_define_generic_parameter): New function.
14898         (mono_reflection_create_runtime_class): Encode generic parameters.
14899         (mono_reflection_setup_generic_class): New function; this is
14900         called after adding adding all generic params to the TypeBuilder.
14901         (encode_type): Added MONO_TYPE_VAR.
14902
14903 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14904
14905         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14906         here from the JIT.
14907
14908         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14909         load hook.
14910
14911 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14912
14913         * reflection.h reflection.c class.h class.c: Delete duplicate 
14914         definition of mono_type_get_name () from reflection.c and export the
14915         one in class.c.
14916
14917         * class.c: Class loading fixes from Bernie Solomon 
14918         (bernard@ugsolutions.com).
14919
14920         * reflection.c: Endianness fixes from Bernie Solomon 
14921         (bernard@ugsolutions.com).
14922         
14923 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14924
14925         * assembly.h assembly.c: Define a file format version for AOT
14926         libraries.
14927         
14928         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14929
14930         * appdomain.h (MonoJitInfo): New field to determine whenever the
14931         code is domain neutral.
14932         
14933 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14934
14935         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14936
14937 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14938
14939         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14940         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14941         Avoid caching the result since strings must be domain specific. Fixes
14942         #48050.
14943
14944 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14945
14946         * marshal.c (mono_marshal_init): Make this callable multiple times
14947         since it is hard to find a correct place to call it.
14948
14949         * object.c (mono_runtime_class_init): Execute static constructors in
14950         the correct appdomain.
14951
14952         * image.c (build_guid_table): Handle the case when multiple images have
14953         the same GUID.
14954
14955 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14956
14957         * icall.c: added a couple of icalls for System.Web.
14958
14959 2003-08-28  Martin Baulig  <martin@ximian.com>
14960
14961         * icall.c (ves_icall_Type_BindGenericParameters): Use
14962         `klass->generic_inst' instead of `&klass->byval_arg' in the
14963         mono_type_get_object() call.  The returned type must be
14964         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14965
14966 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14967
14968         * NOTES: New file.
14969
14970         * object.c (mono_class_proxy_vtable): Make it thread safe.
14971
14972         * pedump.c: Fix warning.
14973
14974         * object.c appdomain.h: Get rid of metadata_section. 
14975         It is no longer needed and it was causing deadlocks with domain->lock.
14976
14977         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14978
14979 2003-08-26  Martin Baulig  <martin@ximian.com>
14980
14981         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14982
14983 2003-08-26  Martin Baulig  <martin@ximian.com>
14984
14985         * pedump.c (main): Call mono_metadata_init(),
14986         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14987         and mono_loader_init().
14988
14989 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14990
14991         * loader.h: Add missing include to fix build.
14992
14993         * image.h: mono_image_load_references is no more.
14994
14995         * assembly.c: Reworked assembly loading to make it really thread safe.
14996         After these changes, the assembly returned by mono_assembly_open is
14997         fully initialized, i.e. all its references assemblies are loaded.
14998
14999         * assembly.c (mono_image_load_references): Renamed to 
15000         mono_assembly_load_references, and made private, since clients no
15001         longer need to call it.
15002
15003         * class.c: Removed calls to mono_assembly_load_references, since it was
15004         a source of deadlocks.
15005
15006         * loader.h loader.c class.h class.c: Protect data structures using a 
15007         new lock, the loader lock.
15008
15009         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15010         GPtrArrays only when needed.
15011
15012         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15013         into empty structures by mcs. Fixes pinvoke7.cs.
15014         
15015         * domain.c (mono_init): Call a new initialization function.
15016
15017         * appdomain.c (mono_runtime_init): Call the new initializer function
15018         of the marshal module.
15019
15020         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15021         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15022
15023         * marshal.h marshal.c: Added locks around the wrapper caches to make
15024         this module thread safe.
15025
15026         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15027         this argument. Fixes pinvoke1.exe.
15028
15029 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15030
15031         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15032         enumeration of values. Removed fields to store remote call output values in
15033         MonoAsyncResult. Not needed any more.
15034         * object.c: Initialize call_type and async_result fields in mono_message_init.
15035         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15036         dispatching the message.
15037         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15038         async call to finish. To do it use a message with EndInvoke call type.
15039
15040 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15041
15042         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15043         determines whenever a method has marshalling info.
15044
15045 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15046
15047         * assembly.c: fix the build on windows.
15048
15049 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15050
15051         * object.cs: Fixed bug #47785.
15052
15053 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15054
15055         * string-icalls.c (StringReplace): If their are no occurances of
15056         the old string found return a reference to the supplied
15057         string. This saves some memory and matches MS behavoir.
15058         
15059 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15060
15061         * socket-io.c: fixed compilation for systems that define AF_INET6
15062         and don't define SOL_IP/SOL_IPV6.
15063
15064 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15065
15066         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15067         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15068
15069         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15070
15071         * domain.c: Make this module thread safe.
15072
15073         * domain.c (mono_init): Call new initialization function.
15074
15075         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15076         reference types too. Fixes #38812.
15077
15078         * image.c (mono_image_init): Fixed warnings.
15079
15080         * class.c (mono_class_from_typeref): Handle assembly load failure
15081         correctly.
15082
15083         * appdomain.c (add_assemblies_to_domain): Handle the case when
15084         the references of an assembly are not yet loaded.
15085
15086         * metadata.c image.c assembly.c: Moved initialization of global
15087         variables to a separate function called at startup since lazy 
15088         initialization of these variables is not thread safe.
15089         
15090         * image.c assembly.c: Made this module thread safe by adding locks in 
15091         the appropriate places.
15092
15093         * domain.c (mono_init): Call the new initialization functions of the
15094         three modules.
15095
15096 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15097
15098         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15099           make a direct call. It is proxy's work to make the call asynchronous.
15100           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15101           the return values.
15102         * object.cs: mono_method_call_message_new(): read AsyncResult and
15103           state object from parameters list, if this info is requested.
15104         * object.h: Added fields to store remote call output values in
15105           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15106
15107 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15108
15109         * object.h: add needed fields to MonoThread.
15110         * threads.c, threads.h: allow registering a function to cleanup data
15111         allocated per thread by the JIT.
15112
15113 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15114
15115         * loader.h: portability fix by Bernie Solomon
15116         * <bernard@ugsolutions.com>.
15117
15118 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15119
15120         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15121         return a MonoArray. This simplifies the code and also ensures that
15122         the cache allways contains an object reference as a value.
15123
15124         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15125         function.
15126
15127 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15128
15129         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15130         fixes a problem with byte ordering when getting the address family for
15131         a socket.
15132
15133 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15134
15135         * .cvsignore: Added monosn.
15136
15137         * reflection.h reflection.c loader.c: Added support for parameter
15138         marshalling to dynamically created types. Fixes #47295.
15139
15140 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15141
15142         * rand.c: remove useless warnings.
15143
15144 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15145
15146         * class.c: implemented ldtoken for methods and fieldrefs.
15147
15148 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15149
15150         * threadpool.c: when mono_async_invoke was called, no one took care of
15151         monitoring the queue. So if the method invoked took some time and we
15152         got new async invoke requests after 500 ms (the thread created waited
15153         that long in WaitForSingleObject), the new async invoke was not called
15154         until the previous one finished.
15155
15156         This is fixed now. Thanks to Totte for helping with it.
15157
15158 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15159
15160         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15161
15162 2003-08-11  Martin Baulig  <martin@ximian.com>
15163
15164         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15165
15166 2003-08-06  Martin Baulig  <martin@ximian.com>
15167
15168         * mono-debug-debugger.c: Added support for static fields,
15169         properties and methods.
15170
15171 2003-08-06  Martin Baulig  <martin@ximian.com>
15172
15173         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15174         make this work for applications with multiple application domains.
15175
15176 2003-08-04  Martin Baulig  <martin@ximian.com>
15177
15178         * mono-debug-debugger.c: Completely reworked the type support; the
15179         most important thing is that we're now just using one single
15180         `MonoType' instance per type.
15181
15182 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15183
15184         * mono-endian.h, mono-endian.c, icall.c: Added icall
15185         ves_icall_System_Double_AssertEndianity to assert double word endianity
15186         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15187
15188 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15189
15190         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15191         support, icalls and fixes.
15192
15193 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15194
15195         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15196         classes that are a punctuation character in .NET is not the same a
15197         g_unichar_ispunct.
15198
15199 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15200
15201         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15202
15203 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15204
15205         * icall.c: Add new MemCopy internalcall.
15206         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15207         Simplified code; It is not necessary to handle all the cases here,
15208         as the C# code takes care of it.  Only handle the case of the name
15209         resource embedded into the assembly.
15210
15211         Changed signature to return the data pointer and the size of the
15212         data. 
15213
15214 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15215
15216         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15217         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15218
15219 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15220
15221         * socket-io.c: ignore EINTR error in select.
15222
15223 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15224
15225         * class.h, class.c: removed unused subclasses field in MonoClass.
15226
15227 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15228
15229         * icall.c: improve fix of get_base_definition(). If the parent class
15230           doesn't have the mehod, look at the parent of the parent.
15231         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15232           to check if a parameter is an in or out parameter
15233           (PARAM_ATTRIBUTE_IN is not set by default).
15234           mono_method_return_message_restore(): Use mono_class_value_size to
15235           get the size of a value type. mono_type_stack_size (parameterType)
15236           does not return the correct value if parameterType is byRef.
15237           mono_load_remote_field(), mono_load_remote_field_new(),
15238           mono_store_remote_field(), mono_store_remote_field_new():
15239           raise exception if the remote call returns an exception.
15240
15241 2003-07-28  Martin Baulig  <martin@ximian.com>
15242
15243         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15244         method.  This is a wrapper around mono_runtime_invoke() which
15245         boxes the instance object if neccessary.
15246
15247 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15248
15249         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15250         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15251
15252 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15253
15254         * icall.c: disable mcs bug workaround.
15255
15256 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15257
15258         * object.c (mono_runtime_class_init): Take the metadata_section
15259         mutex before obtaining the domain mutex.
15260
15261         * appdomain.h: Added definition of metadata_section mutex here. 
15262
15263         * object.c: define metadata_mutex here.
15264
15265 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15266
15267         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15268         fixed.
15269
15270 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15271
15272         * reflection.c: Fix bug #46669
15273
15274 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15275
15276         * exception.c:
15277         * exception.h:
15278         * icall.c:
15279         * object.h: fill in the type name for TypeLoadException.
15280
15281 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15282
15283         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15284         relationship between TypeBuilders while compiling corlib) and bug
15285         45993 (Array types returned from the runtime while compiling
15286         corlib were from the loaded corlib).
15287
15288 2003-07-22  Martin Baulig  <martin@ximian.com>
15289
15290         * mono-debug-debugger.c: Reworked the type support a bit more;
15291         distinguish between types and classes.
15292
15293 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15294
15295         * icall.c: add IsArrayImpl icall.
15296
15297 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15298
15299         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15300         initializing real_size only once. Also fix bug #46602.
15301
15302 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15303
15304         * object.c: Renamed mono_metadata_section to metadata_section.
15305
15306 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15307
15308         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15309           empty array if the type is an array. Fixed.
15310           ves_icall_MonoMethod_get_base_definition: if the base method
15311           is abstract, get the MethodInfo from the list of methods of
15312           the class.
15313         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15314           and it was 1-based. Fixed in mono_param_get_objects.
15315
15316 2003-07-20  Martin Baulig  <martin@ximian.com>
15317
15318         * mono-debug.h: Set version number to 31.
15319         (mono_debug_init): Added `MonoDomain *' argument.
15320
15321         * mono-debug-debugger.c: Reworked the type support; explicitly
15322         tell the debugger about builtin types; pass the `klass' address to
15323         the debugger.
15324
15325 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15326
15327         * image.c: Allow new metadata tables to be loaded without a
15328         warning. Also update the warning message to give the new constant value.
15329                 
15330 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15331
15332         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15333         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15334         array type representation changes.
15335
15336 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15337
15338         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15339         on Environment.Exit () call.
15340
15341 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15342
15343         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15344         requires a matching corlib.
15345
15346 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15347
15348         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15349           Committed again without the CRs.
15350         
15351 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15352
15353         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15354           getting it from the "this" socket instance. Did not work
15355           if the socket is a subclass of Socket.
15356           Also fixed bug #35371.
15357
15358 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15359
15360         * metadata.c: fixed size for TypedByRef.
15361         * loader.c: when searching for a method, consider the vararg amrker.
15362         * unicode.c, decimal.c: constify some arrays.
15363
15364 2003-07-15  Dick Porter  <dick@ximian.com>
15365
15366         * socket-io.c: Fixed compilation for gcc < 3.2.
15367
15368         Fixed compilation for machines that don't have AF_INET6 (thanks to
15369         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15370
15371         Fixed compile warnings.
15372         
15373         Fixed formatting and line endings.
15374
15375 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15376
15377         * socket-io.h:
15378         * socket-io.c: Added IPv6 support.
15379
15380 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15381
15382         * class.c (mono_class_is_assignable_from): New function to implement
15383         the is_assignable_from logic. Used by mono_object_isinst, 
15384         Type::IsAssignableFrom () and the interpreter.
15385
15386         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15387         Object, even interfaces.
15388         
15389         * object.c (mono_object_isinst): Implement in terms of 
15390         is_assignable_from.
15391
15392         * icall.c (ves_icall_type_is_assignable_from): New icall.
15393
15394 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15395
15396         * domain.c (foreach_domain): fix compiler warning.
15397
15398 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15399
15400         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15401         not available on all plattforms
15402
15403 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15404
15405         * image.h image.c: Store the metadata version string in MonoImage.
15406         * icall.c: New icall to retrieve the image version.
15407         * reflection.c (create_dynamic_image): Fill in the image version field
15408         * reflection.c (build_compressed_metadata): Use the image version
15409         from the image structure.
15410
15411 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15412
15413         * appdomain.c: modified comment.
15414         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
15415         That will be its last iteration when mono_gc_cleanup is called from
15416         mono_runtime_cleanup and before the domain is unloaded.
15417
15418         Fixes bug #45962.
15419
15420 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
15421
15422         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
15423         attributes.
15424
15425 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15426
15427         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
15428         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
15429         Bernie Solomon <bernard@ugsolutions.com>.
15430
15431 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15432
15433         * object.c, object.h: provide mono_object_new_fast() for faster
15434         allocation in some special cases.
15435
15436 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
15437
15438         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
15439         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
15440
15441 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
15442
15443         * threadpool.c: fix leaks.
15444
15445 2003-07-01  Dick Porter  <dick@ximian.com>
15446
15447         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
15448         using MonoGHashTables.  Fixes threadpool bug posted to list.
15449
15450 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15451
15452         * image.h, image.c: added support to load an assembly from a byte array.
15453         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
15454         assembly bundle support.
15455
15456 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
15457
15458         * threadpool.c (mono_thread_pool_add): keep a reference to the
15459         AsyncResult to prevent GC
15460
15461 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15462
15463         * class.c: leak fix.
15464
15465 2003-06-25  Dick Porter  <dick@ximian.com>
15466
15467         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
15468         for the async object, the WaitHandle object will close the handle.
15469         Fixes bug 45321.
15470
15471 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15472
15473         * class.c: in mono_array_class_get (), lookup from the hash with the
15474         same type we insert: this works around a bug in
15475         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
15476         lluis. The real fix will have to wait for after the release.
15477
15478 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15479
15480         * icall.c: fix memory leak when getting type members.
15481
15482 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15483
15484         * reflection.c: added more pubtoken special cases.
15485
15486 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
15487
15488         * class.c: handle field offset correctly when class size
15489         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
15490
15491 2003-06-20  Martin Baulig  <martin@ximian.com>
15492
15493         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
15494         *image' field.
15495
15496 2003-06-20  Martin Baulig  <martin@ximian.com>
15497
15498         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
15499
15500 2003-06-20  Martin Baulig  <martin@ximian.com>
15501
15502         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
15503         just distinguish between variables in registers and variables at
15504         an offset relative to a register.
15505
15506 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15507
15508         * icall.c: #ifdef out latest changes until mcs is fixed.
15509
15510 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15511
15512         * icall.c: return members in metadata order.
15513
15514 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15515
15516         * icall.c: avoid infinite loop in GetTimeZoneData.
15517
15518 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
15519
15520         * icall.c: added Marshal.Prelink/All icalls.
15521
15522 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15523
15524         * object.c, object.h: fix warnings and do some overflow checking
15525         when creating arrays.
15526
15527 2003-06-17  Dick Porter  <dick@ximian.com>
15528
15529         * file-io.h:
15530         * file-io.c: File attributes need to be tweaked slightly when
15531         passed from the managed to the w32 world.
15532
15533 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15534         * profiler.h profiler-private.h profiler.c: Rework last patch
15535         based on suggestion by Paolo.
15536         
15537 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15538
15539         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
15540         instruction level coverage data collection.
15541         * profiler.h profiler.c (: Added new callback function which can be
15542         used by the profiler to limit which functions should have coverage
15543         instrumentation.
15544         * profiler.c (mono_profiler_load): Call g_module_build_path to
15545         generate the file name of the profiler library.
15546
15547 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15548
15549         * profiler.c, profiler.h, profiler-private.h: added basic block 
15550         coverage profiling API.
15551
15552 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15553
15554         * reflection.c (mono_reflection_create_runtime_class): Add support
15555         for events in dynamically generated code.
15556
15557         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15558         not allocated.
15559
15560 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15561
15562         * icall.c: when getting timezone info, return reasonable values if we
15563         can't get the actual data.
15564
15565 2003-06-14  Dick Porter  <dick@ximian.com>
15566
15567         * threads.c (start_wrapper): Remove the reference to the thread
15568         object in the TLS data, so the thread object can be finalized.
15569         This won't be reached if the thread threw an uncaught exception,
15570         so those thread handles will stay referenced :-( (This is due to
15571         missing support for scanning thread-specific data in the Boehm GC
15572         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15573
15574 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15575
15576         * reflection.c: ensure streams and tables are first allocated with
15577         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15578
15579 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15580
15581         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15582
15583 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15584
15585         * reflection.c (mono_reflection_create_runtime_class): Add support for
15586         properties to dynamically created classes.
15587         * reflection.c: Fix a few places where non-MonoObjects were inserted
15588         into the tokens hashtable.
15589
15590 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15591
15592         * object.c: some support to handle out of memory exceptions.
15593
15594 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15595
15596         * marshal.c (mono_marshal_get_native_wrapper): support reference
15597         return types
15598
15599 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15600
15601         * object.h, object.c: more portability stuff from Bernie Solomon.
15602         Unexport mono_object_allocate(). Added mono_object_unbox ().
15603         Set exitcode when an unhandled exception is thrown.
15604
15605 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15606
15607         * marshal.c (mono_marshal_get_native_wrapper): use custom
15608         marshaler for return types.
15609
15610 2003-06-10  Dick Porter  <dick@ximian.com>
15611
15612         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15613         ip_mreq is available
15614
15615 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15616
15617         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15618         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15619         by Bernie Solomon <bernard@ugsolutions.com>.
15620
15621 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15622
15623         * gc.c (mono_gc_init): Avoid error message on shutdown when
15624         GC_DONT_GC=1 is used.
15625
15626         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15627         New icall to return the GUID of a module.
15628
15629 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15630
15631         * class.c: ensure instance size always includes the parent's size
15632         even whem class size is set explicitly (fixes bug#44294).
15633
15634 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15635
15636         * profiler.h, profiler.c: made the simple profiler thread-safe,
15637         get more accurate timing info. Allow the loading of an
15638         externally-developed profiler module.
15639
15640 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15641
15642         * marshal.c (mono_marshal_get_native_wrapper): improved
15643         class/byref arguments.
15644         (mono_marshal_get_native_wrapper): better string marshaling support.
15645
15646 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15647
15648         * class.c: ensure .pack and .size are handled correctly and
15649         simplified layout of static fields.
15650
15651 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15652
15653         * appdomain.c
15654         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15655
15656         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15657         current directory (fix bug 44008)
15658
15659 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15660
15661         * marshal.c (mono_marshal_get_native_wrapper): started support for
15662         custom marshalers.
15663         (mono_delegate_to_ftnptr): consider marshalling specifications
15664
15665 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15666
15667         * reflection.c, reflection.h: emit custom marshal info.
15668
15669 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15670
15671         * object.c: free the GError.
15672         * icall.c: added CloseEvent_internal.
15673         * threads.[ch]:
15674         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15675         call.
15676
15677 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15678
15679         * loader.c (mono_method_get_signature): Add support for dynamic
15680         assemblies.
15681
15682 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15683
15684         * reflection.c: fixed bug #43905.
15685
15686 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15687
15688         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15689         handling TypedReference and ArgIterator.
15690         * loader.c, loader.h: added function to get signature at call site.
15691
15692 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15693
15694         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15695         data readonly. Buglets and warning fixes. Some MethodSpec support.
15696
15697 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15698
15699         * class.h, class.c, object.c: remove relative numbering support.
15700
15701 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15702
15703         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15704         free the string, until we get a chance to fix Gtk#
15705
15706 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15707
15708         * marshal.c: revert last patch.
15709
15710 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15711
15712         * icall.c: updates for new mono_class_vtable() not calling
15713         the type constructor anymore.
15714
15715 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15716
15717         * object.h, object.c: separate vtable creation from type
15718         initialization. Make running the .cctor thread safe.
15719
15720 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15721
15722         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15723
15724 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15725
15726         * loader.c (mono_get_method): consider calling convention
15727
15728 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15729
15730         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15731         to return the invisible global type for a module.
15732
15733         * reflection.c (mono_image_build_metadata): Emit global fields too.
15734
15735 2003-05-20  Peter Williams  <peterw@ximian.com>
15736
15737         * loader.c (mono_lookup_internal_call): Add a few newlines.
15738
15739 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15740
15741         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15742         literal strings.
15743
15744         * appdomain.c (set_domain_search_path): Recalculate search path when
15745         AppDomainSetup.PrivateBinPath changes.
15746
15747         * object.c (mono_class_compute_gc_descriptor): It turns out some
15748         parts of the class libs (like System.Thread) holds pointers to
15749         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15750         to treat native int a pointer type here.
15751         
15752 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15753
15754         * appdomain.h, domain.c: add hashtable for jump target resolution.
15755
15756 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15757
15758         * reflection.h reflection.c icall.c: Added new icalls 
15759         GetManifestResourceInfoInternal, GetModulesInternal and support
15760         infrastructure.
15761
15762 2003-05-16  Dick Porter  <dick@ximian.com>
15763
15764         * icall.c:
15765         * file-io.h:
15766         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15767
15768 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15769
15770         * object.c: mono_store_remote_field: little fix to previous patch.
15771
15772 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15773
15774         * class.c: add constructors to array classes.
15775         * icall.c: special case array construction for InternalInvoke (),
15776
15777 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15778
15779         * class.h class.c reflection.c object.c: Added support for field
15780         defaults in dynamically generated classes.
15781
15782 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15783
15784         * reflection.c: properly encode charset for ddlimport.
15785
15786 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15787
15788         * threads.c: allow compiling without GC.
15789
15790 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15791
15792         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15793         handling of thread static data.
15794
15795 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15796
15797         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15798
15799 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15800
15801         * class.c (mono_array_class_get): always set the serializable flags
15802         (mono_array_class_get): always set the SEALED attribute for array types
15803
15804 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15805
15806         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15807         attributes (fix for bug 42021).
15808
15809 2003-05-12  Dick Porter  <dick@ximian.com>
15810
15811         * gc.c: Don't run finalizers when the finalizer thread is
15812         finishing up, because the default domain has already been
15813         destroyed.
15814
15815 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15816
15817         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15818         value is null, we should throw an exception.   This is slightly
15819         different than the other conventions used for the constructor.
15820
15821 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15822
15823         * socket-io.c: fixed windows build.
15824
15825 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15826
15827         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15828
15829 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15830
15831         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15832         compilers.
15833
15834 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15835
15836         * class.c (mono_class_layout_fields): Add experimental GC aware
15837         auto layout facility. Requires class library changes to work correctly.
15838
15839         (mono_class_setup_vtable): Avoid overriding explicit interface
15840         method implementations. Fixes iface3.exe test.
15841
15842         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15843         object reference.
15844         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15845         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15846
15847         * metadata.h: Add new type classification macro which determines
15848         whenever the type holds an object reference.
15849
15850 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15851
15852         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15853
15854 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15855
15856         * gc.c (finalizer_thread): Work around a GC bug.
15857
15858 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15859
15860         * marshal.c (emit_struct_conv): allow unions
15861
15862         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15863
15864 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15865
15866         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15867
15868 2003-05-06  Martin Baulig  <martin@ximian.com>
15869
15870         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15871
15872 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15873
15874         * socket-io.c:
15875         (Select_internal): allow NULLs, don't create arrays if not needed.
15876         Coupled with Socket.cs changes.
15877
15878         * threadpool.c:
15879         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15880         register a finalizer for it that will close the semaphore handle. This
15881         fixes the leak and make Lupus' test run with > 4080 loops.
15882
15883 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15884
15885         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15886         Jerome Laban (bug #42287)
15887
15888 2003-05-02  Martin Baulig  <martin@ximian.com>
15889
15890         * debug-mono-symfile.h
15891         (MonoSymbolFile): Moved declaration into mono-debug.h.
15892         (MonoDebugMethodJitInfo): Likewise.
15893         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15894         argument.
15895         (_mono_debug_address_from_il_offset): Take a
15896         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15897
15898         * mono-debug.h
15899         (MonoDebugDomainData): New struct.
15900         (mono_debug_get_domain_data): New function.
15901         (mono_debug_add_method): Take an additional `MonoDomain *'
15902         argument.
15903         (mono_debug_source_location_from_address): Likewise.
15904         (mono_debug_il_offset_from_address): Likewise.
15905         (mono_debug_address_from_il_offset): Likewise.
15906
15907 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15908
15909         * reflection.c: one more check for null type in custom attrs.
15910
15911 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15912
15913         * reflection.c: avoid warning (comparison is always false due to limited
15914         range of data type).
15915
15916 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15917
15918         * icall.c: throw an exception in Type.GetField if the argument 'name'
15919         is NULL.
15920
15921 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15922
15923         * reflection.c: fixed handling of enums in named arguments to custom
15924         attributes (bug #42123).
15925
15926 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15927
15928         * reflection.c: use the right array element type and handle
15929         a null for a Type argument, too.
15930
15931 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15932
15933         * reflection.c: handle arrays as arguments to custom attributes.
15934
15935 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15936
15937         * reflection.c: handle a string value in a custom attr
15938         ctor that takes an object.
15939
15940 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15941
15942         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15943         (fix bug #42063)
15944
15945 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15946
15947         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15948
15949 2003-04-27  Martin Baulig  <martin@ximian.com>
15950
15951         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15952         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15953         MONO_DEBUGGER_EVENT_BREAKPOINT.
15954         (mono_breakpoint_trampoline_code): Removed.
15955         (mono_debugger_event_handler): The last argument is now a
15956         `guint32'.
15957         (mono_debugger_insert_breakpoint_full): Removed the
15958         `use_trampoline' argument.
15959         (mono_debugger_method_has_breakpoint): Likewise.
15960         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15961         mono_debugger_breakpoint_callback(); take the method and
15962         breakpoint number as arguments.
15963
15964 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15965
15966         * metadata.c: fix off by one when loading parameters attributes.
15967
15968 2003-04-24  Martin Baulig  <martin@ximian.com>
15969
15970         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15971
15972 2003-04-24  Martin Baulig  <martin@ximian.com>
15973
15974         * mono-debug-debugger.c: Moved all code which interacts with the
15975         Mono Debugger here.
15976
15977         * debug-mono-symfile.c: This code now just deals with the symbol
15978         file itself, the debugger code is now in mono-debug-debugger.c.
15979
15980 2003-04-23  Martin Baulig  <martin@ximian.com>
15981
15982         * mono-debug.c (mono_debug_source_location_from_il_offset):
15983         New method; like mono_debug_source_location_from_address(), but
15984         takes an IL offset instead of a machine address.
15985
15986 2003-04-23  Martin Baulig  <martin@ximian.com>
15987
15988         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15989         `line' field; this is now computed by the debugger.
15990
15991 2003-04-23  Martin Baulig  <martin@ximian.com>
15992
15993         * mono-debug.[ch]: New files.  This is the new debugging interface.
15994
15995         * mono-debug-debugger.[ch]: New files.  Moved all code which
15996         interacts with the Mono Debugger here.
15997
15998 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15999
16000         * domain.c (mono_init): initialize mono_defaults.monitor_class
16001
16002 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16003
16004         * reflection.c (method_encode_code): Add a spicy exception to help
16005         future compiler authors.
16006
16007 2003-04-21  Martin Baulig  <martin@ximian.com>
16008
16009         * icall.c
16010         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16011         Make this work with relative pathnames; g_filename_to_uri() needs
16012         an absolute filename.
16013
16014 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16015
16016         * icall.c: Track name changes in Object and ValueType.
16017
16018 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16019
16020         * metadata.c (mono_type_stack_size): size should be a multiple of
16021         sizeof (gpointer)
16022
16023 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16024
16025         * gc.c:
16026         (internal_domain_finalize): moved into mono_domain_finalize. No need
16027         to create another thread because the finalizers will be run in the
16028         finalizer thread.
16029         
16030         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16031         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16032         to be run (MS does this too).
16033
16034 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16035
16036         * object.c (mono_class_compute_gc_descriptor): Update comment.
16037
16038         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16039
16040         * image.h: Add synchronized wrapper cache.
16041
16042         * image.c (do_mono_image_open): Initialize cache.
16043
16044         * reflection.c (create_dynamic_mono_image): Initialize cache.
16045
16046 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16047
16048         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16049         ves_icall_System_Buffer_ByteLengthInternal.
16050
16051 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16052
16053         * reflection.c: setup klass->nested_in earlier. Allow
16054         a dash in the assembly name.
16055
16056 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16057
16058         * metadata.c (mono_type_to_unmanaged): dont access
16059         type->data.klass for MONO_TYPE_OBJECT
16060         (mono_type_to_unmanaged): consider System.Delegate class
16061
16062 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16063
16064         * class.c: just setup supertypes in the proper place instead of
16065         initializing the full element class for arrays.
16066
16067 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16068
16069         * class.c: ensure the element class of arrays is initialized.
16070         Setup the supertype info for array classes, too.
16071
16072 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16073
16074         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16075
16076 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16077
16078         * Makefile.am: re-added -m option when running cygpath. This way,
16079         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16080         separator.
16081         * mono-config.c: same codepath for locating mono config file for WIN32
16082         and the rest.
16083         * assembly.c: if mono_assembly_setrootdir is called, don't override
16084         the value set.
16085
16086 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16087
16088         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16089         MONO_ASSEMBLIES variable.
16090
16091 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16092
16093         * icall.c: added Assembly::GetNamespaces() icall.
16094
16095 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16096
16097         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16098
16099 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16100
16101         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16102         * object.c: fixed bug in the construction of vtable for proxies
16103
16104 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16105
16106         * object.c (mono_array_new): Mark mono_array_new as an icall.
16107
16108 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16109
16110         * class.c: fixed test for public method when overriding interfaces.
16111         Closes bug #40970.
16112
16113 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16114
16115         * appdomain.h, domain.c: added mono_domain_foreach() to
16116         be able to access the currently loaded appdomains.
16117         * object.c: make string interning work across sppdomains.
16118         Mark some functions for use as icalls.
16119
16120 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16121
16122         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16123
16124         * reflection.h reflection.c: Allocate long living data using 
16125         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16126
16127         * reflection.c: Double the allocation size in streams instead of
16128         increasing it, to prevent unneccesary copying on large assemblies.
16129         
16130         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16131         creation if the assembly does not have the Run flag set.
16132
16133 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16134
16135         * class.h: avoid the C++ keywords in header files (Jerome Laban
16136         spotted and fixed this).
16137
16138 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16139
16140         * object.c:
16141         (mono_unhandled_exception): fill in the arguments for the
16142         UnhandledException event. Only trigger that event for the default
16143         domain (as MS does).
16144
16145 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16146
16147         * object.c: Improve typed allocation stuff based on suggestions from
16148         Paolo. Also turn it on if the GC library supports it.
16149
16150 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16151
16152         * object.c object.h class.h: Added experimental typed allocation
16153         facility using the interfaces in gc_gcj.h.
16154
16155         * os/gc_wrapper.h: Added new include files.
16156         
16157 2003-04-03  Martin Baulig  <martin@ximian.com>
16158
16159         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16160         which is not yet enabled by default.
16161
16162         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16163         functions.
16164         (mono_gc_lock, mono_gc_unlock): New static functions.
16165
16166         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16167         functions; stop/start the world for the garbage collector.  This
16168         is using the windows API; we need to complete the SuspendThread()/
16169         ResumeThread() implementation in the io-layer to make this work on Unix.
16170         (mono_gc_push_all_stacks): New public function; tells the garbage
16171         collector about the stack pointers from all managed threads.
16172
16173 2003-04-03  Martin Baulig  <martin@ximian.com>
16174
16175         * object.h (MonoThread): Added `gpointer stack_ptr'.
16176
16177         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16178
16179 2003-04-03  Martin Baulig  <martin@ximian.com>
16180
16181         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16182
16183 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16184
16185         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16186         field.last.
16187
16188 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16189
16190         * loader.c (mono_lookup_internal_call): Report the corlib that is
16191         out of sync.
16192
16193 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16194
16195         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16196         System.DBNull (it's class not valuetype).
16197
16198 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16199
16200         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16201         if the array method was already assigned a token (fixes bug#40646).
16202
16203 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16204
16205         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16206         if no assembly is given.
16207
16208 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16209
16210         * metadata.h: Added the new tables.
16211
16212         * row-indexes.h: Added definitions for new tables.
16213
16214         * metadata.c: Add schemas for new tables, and add support for
16215         computing the sizes of them.
16216
16217         * class.c: Update for handling the new type cases.
16218
16219 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16220
16221         * metadata.h (MONO_TYPE_IS_VOID): new macro
16222
16223 2003-03-31  Martin Baulig  <martin@ximian.com>
16224
16225         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16226
16227         * threads.c (mono_thread_new_init): Call `thread_created' in the
16228         mono_thread_callbacks.
16229
16230 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16231
16232         * loader.h: added marshalbyrefobject_class to mono_defaults
16233         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16234         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16235           generation of output parameters.
16236           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16237         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16238           contextbound and the target object belongs to the context of the caller.
16239         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16240         * object.c: Implemented support for interfaces and abstract classes
16241           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16242           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16243
16244 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16245
16246         * class.h class.c (mono_class_is_subclass_of): New function.
16247         
16248         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16249         routines for most common case (calls from ArrayList::ToArray).
16250
16251         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16252         routine so programs which call Environment::Exit() can be profiled.
16253
16254         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16255         Added MONO_ARCH_SAVE_REGS.
16256
16257         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16258
16259 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16260
16261         * blob.h: Add a couple of new MonoType types definitions.
16262
16263         * tabledefs.h: Add a couple of new call convs.
16264
16265 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16266
16267         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16268         the layout of the class.
16269
16270         * reflection.c (alloc_table): double the size on overflow to avoid
16271         unnecessary copying.
16272
16273         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16274         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16275         null so it can be garbage collected.
16276         
16277 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16278
16279         * reflection.c (mono_reflection_get_type): Return the resolved type
16280         only if it is in the assembly we searched.
16281
16282         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16283
16284         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16285         method.
16286
16287 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16288
16289         * appdomain.c:
16290         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16291         the right one is 'file:///blah', but MS allows it.
16292         * assembly.c:
16293         (mono_assembly_open): allow 'file://blah'
16294
16295         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16296
16297 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16298
16299         * socket-io.c: fixes bug #40310.
16300
16301 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16302
16303         * reflection.c (mono_reflection_parse_type): handle deeply nested
16304         types correctly.
16305
16306         * reflection.c (mono_image_create_token): Use unique token values
16307         since they will be put into a hash table.
16308
16309         * class.c (mono_class_setup_vtable): If a method occurs in more than
16310         one place in the vtable, and it gets overriden, then change the
16311         other occurances too.
16312
16313         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16314         object as return type.
16315
16316 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16317
16318         * icall.c: Deleted "ToString" implementation for double and float
16319         because they are full implemented in managed code.
16320
16321 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16322
16323         * reflection.c, reflection.h: implemented and exported functions
16324         to retrieve info about custom attributes.
16325
16326 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16327
16328         * appdomain.c: moved Uri handling to assembly.c
16329         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16330         work when using a file Uri in *nix and windows.
16331
16332         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16333         GetReferencedAssemblies.
16334
16335 2003-03-18  Dick Porter  <dick@ximian.com>
16336
16337         * icall.c: Rename a couple of internal calls
16338
16339         * threads.c: Set the thread state to Stopped when a thread exits.
16340         Fixes bug 39377.
16341
16342 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16343
16344         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16345         New icall.
16346
16347         * object.c (mono_class_vtable): fix warning.
16348
16349 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16350
16351         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16352
16353         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16354         memory.
16355         (method_encode_clauses): Create exception info structures in the right
16356         order.
16357         (mono_reflection_setup_internal_class): Initialize supertypes field.
16358
16359         * class.c object.c: Handle interfaces which implement other interfaces 
16360         correctly.
16361
16362         * class.h class.c: Move the supertypes array initialization code into 
16363         a separate function so it can be used for dynamic types too. Also call
16364         it earlier, in mono_class_init(), since it can be used before the
16365         type is initialized.
16366
16367 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16368
16369         * Makefile.am:
16370         * assembly.c:
16371         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16372
16373         * appdomain.c:
16374         * appdomain.h:
16375         * marshal.c:
16376         * object.c: remove warnings.
16377
16378 2003-03-13  Martin Baulig  <martin@ximian.com>
16379
16380         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16381         (MonoDebugLexicalBlockEntry): New types.
16382
16383         * debug-mono-symfile.c
16384         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16385
16386 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16387
16388         * process.c: ret can be any non-zero value accroding to MS doc.
16389
16390 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16391
16392         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16393         fixing a warning for a miss-used prototype, would have cause
16394         random memory corruption.
16395
16396 2003-03-07  Martin Baulig  <martin@ximian.com>
16397
16398         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16399         getting really annoying ....
16400
16401 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16402
16403         * reflection.c (fixup_method): added support for array methods.
16404
16405 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16406
16407         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16408         (pointed out by Michael Adams).
16409
16410 2003-03-04  Dick Porter  <dick@ximian.com>
16411
16412         * icall.c: Temporarily reverted the Double and Single ToString()
16413         change, because it broke nunit.
16414
16415 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
16416
16417         * object.h, threads.h: make include files compatible with C++
16418         (patch by Jerome Laban <jlaban@wanadoo.fr>).
16419
16420 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16421
16422         * icall.c: Erased ToString helper functions for Double and Single.
16423         Now, that implementations ar all in managed code (Double and Single
16424         Formatters).
16425
16426 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
16427
16428         * appdomain.c: Added method for initializing the default context of
16429         a domain. Added internal call for getting the default context.
16430         * appdomain.h: Added context variable in MonoDomain struct.
16431         * domain.c: mono_domain_set also sets the default context of the domain
16432         * icall.c: Mapped internal method InternalGetDefaultContext.
16433         * object.c: mono_object_get_virtual_method returns always a remoting
16434         wrapper if the object is a transparent proxy.
16435         mono_runtime_invoke_array: when creating an object by calling the
16436         constructor, if the created object is a proxy, then the constructor should
16437         be called using the a remoting wrapper.
16438
16439 2003-03-03  Dick Porter  <dick@ximian.com>
16440
16441         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
16442         variable so it compiles on solaris.  Problem spotted by
16443         Christopher Taylor <ct@cs.clemson.edu>
16444
16445 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16446
16447         * appdomain.c:
16448         (get_info_from_assembly_name): don't leak value.
16449
16450         * icall.c:
16451         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
16452         result.
16453
16454 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
16455
16456         * assembly.c: export mono_image_load_references ().
16457         * class.c: handle function pointers. mono_class_from_name() now
16458         supports nested type names directly.
16459
16460 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
16461
16462         * reflection.h reflection.c: Encode already created dynamic methods 
16463         and fields correctly as a DEF instead of a REF.
16464
16465         * reflection.c: Get rid of the force_ref argument to 
16466         mono_image_typedef_or_ref since it was wrong in the first place.
16467
16468         * string-icalls.c: add error checking to string constructors according
16469         to the MSDN docs.
16470
16471         * reflection.c: Emit types in the order their TypeBuilders were 
16472         created. Previously, a new table index was assigned to each type before
16473         the tables were emitted. This was wrong because the signature blob
16474         might already refer to a type by its original table index.
16475
16476 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
16477
16478         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
16479         change.
16480         
16481 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16482
16483         * Makefile.am: make assemblies dir have \ instead of / on windows.
16484
16485 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
16486
16487         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
16488         iterate over the NESTEDCLASS table using a linear search since the
16489         table is not guaranteed to be sorted by the secondary key.
16490
16491         * class.c (mono_class_create_from_typedef): fixed up call to
16492         mono_metadata_nesting_typedef.
16493         
16494 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
16495
16496         * marshal.c (mono_string_to_byvalstr): clear the memory as
16497         suggested by Jerome Laban <jlaban@wanadoo.fr>
16498
16499 2003-02-26  Dick Porter  <dick@ximian.com>
16500
16501         * process.c: Cope with padding in .rsrc blocks
16502
16503 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16504
16505         * metadata.h: reverted the filter_len change, it breaks reflection
16506         
16507 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16508
16509         * metadata.h: added a new field to store the filter_len
16510         
16511
16512 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
16513
16514         * reflection.c: handle custom attributes for types and members
16515         created with Reflection.Emit (bug#38422).
16516
16517 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
16518
16519         * reflection.c: define RTSpecialName automatically for constructors for
16520         compatibility with MS.NET.
16521
16522         * reflection.c (mono_reflection_create_runtime_class): initialize
16523         nested_in field of dynamically created classes.
16524
16525 2003-02-22  Martin Baulig  <martin@ximian.com>
16526
16527         * debug-mono-symfile.h: Incremented version number.
16528
16529 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16530
16531         * object.h icall.c process.c: fix warnings.
16532
16533 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16534
16535         * appdomain.h appdomain.c:
16536         (mono_domain_try_type_resolve): split the 
16537         name_or_tb argument into a name and a tb argument.
16538         (mono_domain_has_type_resolve): new function to check whenever the
16539         application has registered a TypeResolve event handler.
16540         
16541         * icall.c reflection.h reflection.c: move the type resolve logic into
16542         mono_reflection_get_type () so it will be invoked when 
16543         Assembly::GetType () is called.
16544
16545         * reflection.c:
16546         (mono_reflection_get_type): renamed to get_type_internal.
16547         (mono_reflection_get_type): fixed type name generation so it works 
16548         for nested types too.
16549         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16550         costly type name generation if there is no resolve event handler.
16551
16552 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16553
16554         * class.c, image.c: load exported types from file references.
16555
16556 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16557
16558         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16559           used to cache the managed methods used to create proxies and make 
16560           remote invocation of methods.
16561         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16562           to be remotely created.
16563         * object.c: Modified the method mono_class_vtable(). It now initializes 
16564           the remote flag of the vtable. Modified mono_object_new_specific(), 
16565           so now it checks the remote flag.
16566         * icall.c: Added a couple of internal methods, one for enabling instance 
16567           creation interception for a type, and one for creating objects bypassing
16568           the remote check.
16569
16570 2003-02-18  Martin Baulig  <martin@ximian.com>
16571
16572         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16573         New interncall to get a method's metadata token.
16574
16575         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16576         New interncall for the debugger.
16577
16578 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16579
16580         * class.c (mono_class_setup_vtable): allocate supertype array
16581
16582 2003-02-18  Martin Baulig  <martin@ximian.com>
16583
16584         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16585
16586 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16587
16588         * reflection.c:
16589         (assembly_name_to_aname): jump over unknown properties (i've found
16590         something like: 'type, assembly, version=xxx, custom=null, public...',
16591         so now will ignore custom=null and still get the rest of the values).
16592
16593 2003-02-17  Dick Porter  <dick@ximian.com>
16594
16595         * threads.c: Have Thread.Start() wait for a semaphore to signal
16596         that the thread has set up all its local data.  This fixes bug
16597         34323, where Abort() raced the new thread's TLS data.
16598
16599         Also removes the handle_store() call from start_wrapper, because
16600         threads are now always created suspended and there is no longer a
16601         race between the parent and child threads to store the info.
16602
16603 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16604
16605         * image.c: explain the #- heap issue in a message, hopefully
16606         avoiding FAQs on mono-list.
16607
16608 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16609
16610         * icall.c:
16611         (GetEntryAssembly): if the domain has not invoked
16612         AppDomain.ExecuteAssembly yet, return the assembly of the default
16613         AppDomain.
16614
16615 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16616
16617         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16618
16619 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16620
16621         * metadata.c, reflection.c: simple speedup to type hash
16622         and equals code.
16623
16624 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16625
16626         * image.c, image.h, class.c, assembly.c: move module loading
16627         to MonoImage. When loading metadata, consider alignemnet from
16628         the start of metadata, not from the metadata address in memory.
16629
16630 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16631
16632         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16633         AssemblyBuilder objects. Factored out custom attribute creation into
16634         a separate function.
16635         (create_custom_attr): new function to create custom attributes.
16636
16637 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16638
16639         * Makefile.am: Got tired of typing the full pathname to pedump.
16640         Until there is another option, am installing this.
16641
16642 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16643
16644         * class.c (class_compute_field_layout): always set field->parent 
16645         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16646
16647 2003-02-11  Dick Porter  <dick@ximian.com>
16648
16649         * threads-types.h:
16650         * monitor.c: Rewrote Monitor, making lock much faster and
16651         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16652         creates them as needed.
16653
16654         * exception.c: Added SynchronizationLockException
16655
16656         * threads.c: Deleted old Monitor implementation.  The new one is
16657         in a new file.
16658
16659 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16660
16661         * class.c: handled TypedReference type code. Set the correct size for
16662         class data. Setup interface_offsets for interface classes, too.
16663
16664 2003-02-09  Martin Baulig  <martin@ximian.com>
16665
16666         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16667
16668 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16669
16670         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16671         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16672         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16673         * verify.c: check for code that runs after the end of the method.
16674
16675 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16676
16677         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16678         "System.Math::Round2".
16679         * sysmath.h: Added Floor, Round and Round2 definitions.
16680         * sysmath.c: Modified certain functions that were not 100% compliant
16681         with MS.NET (math precision) and added the implementation of Floor,
16682         Round and Round2.
16683
16684 2003-02-07  Martin Baulig  <martin@ximian.com>
16685
16686         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16687
16688 2003-02-07  Martin Baulig  <martin@ximian.com>
16689
16690         * debug-mono-symfile.c: Reflected latest symwriter changes.
16691         (mono_debug_create_mono_symbol_file): Removed.
16692         (mono_debug_open_mono_symbol_file): Take an argument which
16693         specifies whether to create a dynamic symbol file.
16694
16695 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16696
16697         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16698
16699 2003-02-05  Martin Baulig  <martin@ximian.com>
16700
16701         * reflection.c (mono_image_build_metadata): Make this public,
16702         protect it against being called multiple times, don't create
16703         resources and don't build the compressed metadata here.
16704         (mono_image_create_pefile): Do this here.
16705
16706         * icall.c
16707         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16708
16709 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16710
16711         * socket-io.c: fixed bug #36322.
16712
16713 2003-02-06  Piers Haken <piersh@friskit.com>
16714
16715         * appdomain.[ch]:
16716         * class.h:
16717         * debug-mono-symfile.c:
16718         * icall.c:
16719         * loader.c:
16720         * mono-config.c:
16721         * monosn.c:
16722         * reflection.c:
16723         * socket-io.c: warning cleanups
16724
16725 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16726
16727         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16728         function. works like remoting invoke, but does a check for the Proxy first.
16729
16730 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16731
16732         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16733
16734 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16735
16736         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16737         array of pointers.
16738         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16739         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16740
16741         * object.c (mono_store_remote_field_new): used by the new jit
16742         instead of mono_store_remote_field
16743         (mono_load_remote_field_new): used by the new jit
16744         instead of mono_load_remote_field
16745
16746 2003-02-05  Patrik Torstensson
16747
16748         * appdomain.c: changed unload to take the domain id instead
16749         of domain
16750         
16751         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16752
16753
16754 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16755
16756         * appdomain.c: don't look for assemblies in ApplicationBase if
16757         PrivateBinPathProbe is set.
16758
16759 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16760
16761         * object.c: make the first argument in main_args contain the absolute
16762         path to the assembly. Fixes bug #37511.
16763
16764 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16765
16766         * icall.c: get correct UTC offset for countries not using daylight
16767         time saving. Fixes bug #30030.
16768
16769 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16770
16771         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16772         and 1 are the family).
16773
16774 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16775
16776         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16777
16778         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16779
16780 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16781
16782         * reflection.c: added support for SignatureHelper tokens, which is
16783         needed by the Calli opcode.
16784
16785         * reflection.h: track changes to SignatureHelper class.
16786
16787         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16788
16789 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16790
16791         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16792
16793 2003-02-03  Patrik Torstensson
16794         * appdomain.[c|h], domain.c : 
16795          - Added support for getting a domain via domain id
16796          - Support for setting and getting domain from System.AppDomain 
16797            (used in cross appdomain channel)
16798          - Added support for get/set for a MonoAppContext on a thread 
16799            (Context class in System.Runtime.Remoting.Contexts),
16800          - Removed hack in Get/SetData and ExecuteAssembly.
16801         
16802         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16803         the managed world to get control when a proxy is created.
16804
16805         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16806         
16807 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16808
16809         * icall.c
16810         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16811         Populate the codebase field as well.
16812
16813 2003-02-02  Martin Baulig  <martin@ximian.com>
16814
16815         * debug-mono-symfile.c
16816         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16817         (mono_debug_symfile_add_method): Allow interncalls.
16818
16819 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16820
16821         * icall.c: throw parse exception if strtod fails or the string is empty.
16822
16823 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16824
16825         * marshal.c: handle object type separately from defined
16826         class types.
16827
16828 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16829
16830         * marshal.c: handle NATIVE_LPSTR for strings when it's
16831         explicitly specified.
16832
16833 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16834
16835         * reflection.c, reflection.h, icall.c: setup the reflection
16836         handle cache for ModuleBuilders and AssemblyBuilders.
16837
16838 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16839
16840         * reflection.c (reflection_methodbuilder_to_mono_method): set
16841         pinvoke flag
16842
16843 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16844
16845         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16846
16847 2003-01-29  Dick Porter  <dick@ximian.com>
16848
16849         * threads.c: No need for the fake_thread kludge now that Thread
16850         doesn't run a class constructor
16851         
16852 2003-01-29  Dick Porter  <dick@ximian.com>
16853
16854         * threads.c: Use g_direct_hash instead of the rather bogus
16855         g_int_hash
16856
16857 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16858
16859         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16860         (fix pinvoke12.exe)
16861         (mono_marshal_get_struct_to_ptr): generate valid IL code
16862         (mono_marshal_get_ptr_to_struct): generate valid IL code
16863         (*): correctly set sig->pinvoke, we need to memdup the signature
16864         to do that
16865
16866 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16867
16868         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16869         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16870
16871 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16872
16873         * profiler.c: provide more callers information.
16874
16875 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16876
16877         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16878
16879         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16880
16881         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16882
16883 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16884
16885         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16886         exception instead of going into an infinite loop on dates which it 
16887         can't yet handle.
16888
16889         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16890         out-of-range exception if needed.
16891
16892         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16893         an implementation for an interface method and to override an inherited
16894         method at the same time. 
16895         Imagine a scenario when a virtual method is used to override a
16896         virtual abstract method in a parent class, and this same method 
16897         provides an implementation for an method inherited from an interface. 
16898         In this case, the interface resolution code will set im->slot, which 
16899         means that the virtual method override pass will skip this method 
16900         which means a pointer to the abstract method inherited from the parent
16901         will remain in the vtable of this non-abstract class.
16902
16903         * class.c: (mono_class_setup_vtable): continue search for a real 
16904         method if only an abstract method is found.     
16905
16906 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16907
16908         * reflection.c: add size to encoding for ByValStr and ByValArray
16909         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16910
16911 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16912
16913         * class.c (mono_class_setup_vtable): pass the override info as an
16914         argument.
16915
16916         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16917         correctly.
16918         
16919         * reflection.c (ensure_runtime_vtable); add support for method 
16920         overrides.
16921         
16922 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16923
16924         * reflection.c (resolution_scope_from_image): Hack to work to work with
16925         dynamic assemblies.
16926
16927         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16928         added a 'force_ref' argument to force this function to allways return 
16929         a TypeRef. This is needed by mono_image_get_memberref_token ().
16930         
16931 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16932
16933         * reflection.c (mono_image_get_type_info): interfaces really don't have
16934         a parent.
16935
16936         * reflection.c (mono_image_basic_init): fill out missing fields of
16937         image structure.
16938
16939         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16940         dynamic assemblies. This is required so dynamic assemblies show up in
16941         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16942         Type::GetType() etc. This is consistent with MS behaviour.
16943
16944         * image.c image.h reflection.c: add newly created classes to the name 
16945         cache so mono_class_get () will find them.      
16946
16947 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16948
16949         First part of changes to get IKVM.NET running under mono.
16950         
16951         * appdomain.h, appdomain.c: added new function 
16952         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16953         This function will call AppDomain::DoTypeResolve to do the actual work.
16954
16955         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16956         moved existing code dealing with dynamic tokens to a new function 
16957         called mono_reflection_lookup_dynamic_token (). This function will 
16958         raise TypeResolve events when appropriate. Since reflection.c is not 
16959         part of libmetadata, a new hook function called 
16960         mono_lookup_dynamic_token() is added to class.c which will call this.
16961
16962         * assembly.h assembly.c: make the invoke_load_hook function public,
16963         so it can be called for dynamic assemblies.
16964
16965         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16966
16967         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16968         type isn't found.
16969
16970         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16971         MonoGHashTable, since it contains pointers to objects which the GC 
16972         needs to track.
16973
16974         * assembly.c (search_loaded): remove unused variable.
16975         
16976 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16977
16978         * object.c: fixed issue exposed by gcc-generated IL programs
16979         that use RVA data for pointers.
16980
16981 2003-01-25  Martin Baulig  <martin@ximian.com>
16982
16983         * threads.c (start_wrapper): Moved the initialization of
16984         `start_func' above the mono_new_thread_init() call to which we
16985         pass it as argument.
16986
16987 2003-01-24  Martin Baulig  <martin@ximian.com>
16988
16989         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16990         the MonoThread pointer.
16991
16992 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16993
16994         * icall.c: Rename `PowImpl' to Pow.
16995
16996 2003-01-23  Dick Porter  <dick@ximian.com>
16997
16998         * threads.c (start_wrapper): Create a Thread object if needed, so
16999         the Main() thread can do the class initialisation in a subthread
17000         that has been set up to allow managed code execution.
17001
17002         Pass the thread ID instead of the MonoThread pointer to the thread
17003         start and attach callbacks.  This change is required, because the
17004         jit thread start callback must be called _before_ the Thread
17005         object can be created.
17006         
17007         (mono_thread_init): Removed much object creation code that is no
17008         longer needed.  No managed code is called from here now.
17009
17010         * object.c (mono_runtime_exec_managed_code): Create a subthread
17011         for Main, and call back to the runtime to use it.
17012         Set the exit code when Main exits.
17013
17014         * gc.c: Make sure domain finalisation happens in a subthread.
17015         Re-enable threaded GC, fixing bug 31333 (again).
17016
17017         * environment.c: System.Environment internall calls (so far just
17018         ExitCode is here, the others are still in icall.c)
17019
17020         * appdomain.c (mono_runtime_cleanup): All threads running managed
17021         code should have finished before mono_runtime_cleanup() is
17022         reached, so no need to clean up threads.
17023
17024 2003-01-22  Martin Baulig  <martin@ximian.com>
17025
17026         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17027         `gpointer func' arguments.      
17028         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17029         but added `MonoThread *thread' argument.
17030         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17031
17032         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17033         and pass it to the mono_thread_start_cb callback.
17034         (mono_install_thread_callbacks): New public function to install a
17035         set of callbacks which are set by the debugger.
17036         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17037
17038 2003-01-22  Martin Baulig  <martin@ximian.com>
17039
17040         * Makefile.am: Install debug-mono-symfile.h.
17041
17042 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17043
17044         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17045
17046 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17047
17048         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17049         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17050         (mono_array_class_get): correctly set access levels of arrays
17051
17052 2003-01-20      Patrik Torstensson
17053         * image.h (MonoAssemblyName): changed major, minor, build, revision
17054         from signed to unsigned.
17055
17056 2003-01-20  sean kasun <skasun@azstarnet.com>
17057
17058         * reflection.c (load_cattr_value): Now this handles
17059         MONO_TYPE_SZARRAY.  Fixes bug #35629
17060
17061 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17062
17063         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17064         integer value
17065
17066 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17067
17068         * decimal.c: fixed bug #26056.
17069
17070 2003-01-17  Martin Baulig  <martin@ximian.com>
17071
17072         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17073
17074 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17075
17076         * exception.[ch]:
17077         (mono_get_exception_type_initialization): new function.
17078
17079         * object.c: throw a TypeInitializationException when an exception is
17080         thrown invoking the class constructor.
17081
17082 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17083
17084         * reflection.c: fixed attribute reading.
17085
17086 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17087
17088         * icall.c:
17089         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17090         provided, look for the type in the calling assembly and then in
17091         mscorlib; if the assembly name is provided, only try that one.
17092
17093 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17094
17095         * object.c: register the vtable before there is a chance it's
17096         queried again recursively.
17097
17098 2003-01-13  Duncan Mak  <duncan@ximian.com>
17099
17100         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17101         gc-internal.h. 
17102         
17103 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17104
17105         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17106
17107 2003-01-11  Martin Baulig  <martin@ximian.com>
17108
17109         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17110         this to 20 for the release.
17111
17112 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17113
17114         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17115
17116         * loader.c (mono_method_get_marshal_info): bug fix
17117
17118         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17119         structures with explicit layout
17120
17121 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17122
17123         * profiler.c: made the output more readable (and sorted). 
17124         Added caller information for the allocation profiler.
17125
17126 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17127
17128         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17129
17130 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17131
17132         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17133         to get value types.
17134         
17135 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17136
17137         * object.c, profiler.h, profiler.c, profiler-private.h:
17138         Added object allocation profiler.
17139
17140 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17141
17142         * reflection.h, reflection.c: handle global methods.
17143         Compress blob entries.
17144
17145 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17146
17147         * marshal.c: fix compilation.
17148
17149 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17150
17151         * loader.c (mono_method_get_marshal_info): impl.
17152
17153         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17154
17155 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17156
17157         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17158         for reference types.
17159
17160 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17161
17162         * loader.c: fixed off by one error in loaded parameter names.
17163
17164 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17165
17166         * marshal.c (mono_marshal_get_icall_wrapper): like
17167         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17168         instead of a MonoMethod.
17169
17170 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17171
17172         * decimal.c: fixed bug #36537.
17173
17174 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17175
17176         * marshal.c: throw a missing method exception if a
17177         P/Invoke method is not found.
17178
17179 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17180
17181         * icall.c: allow a null this for constructors.
17182
17183 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17184
17185         * icall.c: raise the proper exceptions if the arguments to the
17186         internal Invoke are incorrect.
17187
17188 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17189
17190         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17191
17192 2003-01-03  Martin Baulig  <martin@ximian.com>
17193
17194         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17195
17196 2002-12-31  Martin Baulig  <martin@ximian.com>
17197
17198         * debug-mono-symfile.c: Completely rewrote the type section.
17199         Instead of using individual malloc()ed fields, we use one big
17200         continuous memory area and offsets into this area.
17201         See the comments in the source code for details.
17202
17203 2002-12-30  Martin Baulig  <martin@ximian.com>
17204
17205         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17206
17207 2002-12-30  Martin Baulig  <martin@ximian.com>
17208
17209         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17210         line number table in this data blob instead of using an external
17211         pointer.
17212
17213 2002-12-28  Martin Baulig  <martin@ximian.com>
17214
17215         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17216
17217 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17218
17219         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17220         as a boxed return type.
17221
17222 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17223
17224         * appdomain.c
17225         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17226         g_build_filename to properly get separators on the filename created.
17227
17228         * object.h: Small change, introduce MonoMarshalByRefObject to
17229         track the layout of that structure in the C# universe as we make
17230         changes there.
17231
17232 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17233
17234         * object.c: removed assert to allow static fields on interfaces.
17235         * loader.c: a TypeSpec may be used for any type, not just arrays.
17236
17237 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17238
17239         * class.c, class.h: added mono_class_array_element_size ().
17240         Ignore static methods in interfaces.
17241
17242 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17243
17244         * threads.c: fixed the build under cygwin.
17245
17246 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17247
17248         * reflection.c: handle nullref constants. Allocate keys for
17249         reflection handles with the GC.
17250
17251 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17252
17253         * threads.c, threads.h: added mono_thread_get_abort_signal()
17254         to get a suitable signal for thread abort.
17255
17256 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17257
17258         * metadata.c: fix handling of ExportedType table.
17259
17260 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17261
17262         * icall.c: added WriteWindowsDebugString internal call.
17263
17264 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17265
17266         * reflection.h: added fields to match C# implementation.
17267
17268 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17269
17270         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17271
17272 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17273
17274         * gc.h, gc-internal.h: Rename header for GC internal calls to
17275         gc-internal.h from gc.h as to not clash with Boehm GC having its
17276         header installed as <gc.h> in outside include paths.
17277         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17278         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17279
17280 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17281
17282         * icall.c: assign minor, build and revision in FillName.
17283
17284 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17285
17286         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17287         Added support for running code generated by Reflection.Emit.
17288
17289 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17290
17291         * appdomain.c: check for NULL argument in LoadFrom.
17292
17293 2002-12-10  Dick Porter  <dick@ximian.com>
17294
17295         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17296
17297 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17298
17299         * appdomain.c: fix buglet when building exe file name.  Handle full
17300         assembly name (needed after latest changes to AssemblyName).
17301         * image.c:
17302         (mono_image_close): free some hashtables.
17303
17304 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17305
17306         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17307         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17308         on some systems (redhat 7.3) 
17309
17310 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17311
17312         * threads.c: delete the critical section of a sync block,
17313         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17314
17315 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17316
17317         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17318
17319 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17320
17321         * appdomain.[ch]: handle the assembly preload event to try loading the
17322         assemblies using the paths we have in the current domain.
17323
17324         * assembly.[ch]: created an assembly preload hook that is called to try
17325         loading the assembly by other means that the ones provided here.
17326
17327         * domain.c: initialize the domain search path.
17328
17329         From now on, assemblies (TODO: except corlib and System) are loaded
17330         according to these rules when using mono_assembly_load ():
17331
17332                 1. It tries to load the assembly from the ApplicationBase
17333                 of the current domain appending .dll and .exe (TODO: have to
17334                 try loading from name/name.dll and name/name.exe).
17335
17336                 2. It tries the search path specified in PrivateBinPath for the
17337                 current domain (if any).
17338
17339                 3. Previous behavior.
17340
17341 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17342
17343         * icall.c: implemented GetInterfaceMap() related icall.
17344         * domain.c, loader.h: load MethodInfo in mono_defaults.
17345
17346 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17347
17348         * gc.c: disable the finalizer thread for now, untill all the issues
17349         with it are resolved.
17350
17351 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17352
17353         * string-icalls.c: handle embedded nulls in string ctor when the
17354         length is specified.
17355
17356 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17357
17358         * class.c: look for explicit interface implementation in parent
17359         classes, too.
17360
17361 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17362
17363         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17364
17365 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17366
17367         * gc.c: protect handles with a critical section.
17368
17369 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17370
17371         * icall.c:
17372         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17373         parameters. If no assembly specified, try getting the type from all
17374         the assemblies in the current domain, else, load the assembly and get
17375         the type from it.
17376
17377 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17378
17379         * marshal.c: applied patch from Aleksey Demakov that fixes
17380         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17381
17382 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17383
17384         * icall.c: fixed get_location.
17385
17386 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17387
17388         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17389         declarations to make it work with older gcc. 
17390
17391         * loader.c (mono_get_method): set signature->pinvoke for native calls
17392
17393 2002-11-20  Dick Porter  <dick@ximian.com>
17394
17395         * threads.c (mono_thread_init): Set the main thread's handle
17396
17397 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17398
17399         * gc.c: allow compilation without GC support. Changed to match the
17400         mono coding style.
17401
17402 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17403
17404         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17405
17406 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17407
17408         * reflection.c: set a public key token on the core assemblies.
17409
17410 2002-11-18  Dick Porter  <dick@ximian.com>
17411
17412         * threads.c: Split out some thread initialisation so that other
17413         files can set the start callback function.
17414
17415         * gc.c: Run finalisers in a separate thread, to avoid stack
17416         overflow.  Fixes bug 31333.
17417
17418         * appdomain.c: Set up GC finalisation thread.
17419
17420         * reflection.c: 
17421         * object.c: 
17422         * domain.c: Use gc.h macros for GC_malloc
17423         
17424 2002-11-15  Dick Porter  <dick@ximian.com>
17425
17426         * threadpool.c: 
17427         * threads.c:
17428         * appdomain.c: Removed mono_runtime_init_with_attach(),
17429         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
17430         merging the extra parameter with the existing function.  Removed
17431         unneeded code in mono_thread_attach().
17432
17433 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
17434
17435         * image.c (mono_image_loaded_by_guid): a method to get loaded
17436         images by guid. 
17437         (load_metadata_ptrs): we store the guid as string.
17438
17439 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
17440
17441         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
17442
17443         * metadata.c (mono_guid_to_string): imported method form Zoltan
17444         Varga (slightly modified)
17445
17446         * assembly.c (mono_assembly_open): load precompiled code
17447
17448         * loader.h (MonoMethod): we store the method token for use in the
17449         aot compiler. 
17450
17451 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17452
17453         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
17454         the hook function called when an assembly is loaded.
17455         
17456         * domain.c: Modified file.
17457         (mono_domain_assembly_load): removed hash table insertion of assemblies.
17458
17459         Fixes bug #33196.
17460
17461 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
17462
17463         * reflection.c: Map PEFileKind to the value expected by the WinNT
17464         image loader. 
17465
17466 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17467
17468         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
17469         Read until the buffer is filled completely.
17470
17471 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17472
17473         * icall.c: implemented MonoType.InternalGetEvent ().
17474
17475 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17476
17477         * appdomain.c: implemented InitAppDomainSetup. Delayed
17478         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
17479         the entry_assembly.
17480
17481         * assembly.c: base_dir is now an absolute path ending with
17482         G_DIR_SEPARATOR.
17483
17484         * icall.c: modified get_location according to the above changes.
17485
17486         * object.c: init AppDomain.SetupInformation for the default domain after
17487         we have the entry assembly.
17488
17489         * domain.c: when unloading a domain, setup = NULL.
17490
17491 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
17492
17493         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
17494
17495 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
17496
17497         * object.h, object.c: introduced mono_object_get_virtual_method ()
17498         to lookup the method invoked on an object when a callvirt is done on
17499         a method.
17500         * icall.c: make MethodInfo::Invoke() always do a virtual call.
17501
17502 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17503
17504         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
17505         current domain when loaded an assembly and failed to load it.
17506
17507         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
17508
17509 2002-10-31  Dick Porter  <dick@ximian.com>
17510
17511         * icall.c: 
17512         * file-io.h: 
17513         * file-io.c: Return the error status in a parameter, as the
17514         GetLastError() value has long since been blown away if we try and
17515         look it up in a subsequent internal call invocation.  Delete the
17516         GetLastError() internal call, because it's useless.
17517
17518 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
17519
17520         * class.[ch]: added cast_class to fix bug 29517
17521
17522 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
17523
17524         * marshal.c: create valid IL code in the filter clause:
17525         the new JIT is less forgiving:-)
17526
17527 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17528
17529         * icall.c: removed get_property internal call.
17530
17531 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
17532
17533         * appdomain.h domain.c: Added an ID to appdomains.
17534         
17535         * threads.c threads.h icall.c: Implement icall
17536         Thread:GetDomainID(), and remove unused icall 
17537         CurrentThreadDomain_internal.
17538
17539 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17540
17541         * icall.c: Don't recurse through the base types in GetConstructor.
17542         Fixes bug #32063. 
17543
17544 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17545
17546         * mempool.h, mempool.c: added mono_mempool_empty() and
17547         mono_mempool_stats().
17548
17549 2002-10-23  Dick Porter  <dick@ximian.com>
17550
17551         * file-io.c: 
17552         * file-io.h: 
17553         * icall.c: Added MonoIO.GetFileType internal call
17554
17555 2002-10-17  Dick Porter  <dick@ximian.com>
17556
17557         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17558         delegate semaphore before waiting for all threads to finish,
17559         because new threads can also call async delegates.  Fixes bug
17560         32004.
17561
17562         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17563         of 3 seconds, in case another async job is queued.  (This part is
17564         needed because the bug fix reintroduced the 3s exit lag.)  This
17565         makes the mono_runtime_shutdown flag superfluous.
17566
17567 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17568
17569         * reflection.c: include ehader size in method section headers.
17570         Really check for suplicated modules entries.
17571
17572 2002-10-17  Martin Baulig  <martin@gnome.org>
17573
17574         * debug-mono-symfile.c: Added back support for locals.
17575
17576 2002-10-14  Martin Baulig  <martin@gnome.org>
17577
17578         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17579         MONO_TYPE_VOID.
17580
17581 2002-10-14  Martin Baulig  <martin@gnome.org>
17582
17583         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17584         mono_class_get() instead of looking in the class cache. 
17585
17586 2002-10-13  Martin Baulig  <martin@gnome.org>
17587
17588         * debug-mono-symfile.c: Set version number to 28, include the
17589         signature in method names.
17590
17591 2002-10-13  Martin Baulig  <martin@gnome.org>
17592
17593         * debug-mono-symfile.h: Set version number to 27.
17594
17595 2002-10-11  Martin Baulig  <martin@gnome.org>
17596
17597         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17598
17599 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17600
17601         * metadata.c, metadata.h: added helper function to allocate signatures.
17602
17603 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17604
17605         * icall.c: added internal call to get the location of machine.config.
17606
17607 2002-10-08  Martin Baulig  <martin@gnome.org>
17608
17609         * debug-mono-symfile.c: Ignore classes with a pending init for the
17610         moment.
17611
17612 2002-10-03  Dick Porter  <dick@ximian.com>
17613
17614         * threads.c: Freebsd pthread_t is a pointer
17615
17616 2002-10-03  Dick Porter  <dick@ximian.com>
17617
17618         * socket-io.c: Implemented GetHostName_internal
17619
17620 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17621
17622         * mono-config.c:
17623         (mono_config_parse_file): don't leak the text.
17624
17625 2002-10-02  Martin Baulig  <martin@gnome.org>
17626
17627         * debug-mono-symfile.c: Added support for methods.
17628
17629 2002-10-01  Martin Baulig  <martin@gnome.org>
17630
17631         * debug-mono-symfile.c: Don't emit methods and line numbers for
17632         the dynamic symbol file, just write the type table.  We can easily
17633         have an external helper program which creates a symbol file for an
17634         IL file.        
17635
17636 2002-10-01  Dick Porter  <dick@ximian.com>
17637
17638         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17639         Only add the handle to the cleanup array when we're about to
17640         launch the thread.  Bug 31425 deadlocked when the test was run on
17641         mono under w32.
17642
17643 2002-10-01  Martin Baulig  <martin@gnome.org>
17644
17645         * debug-mono-symfile.c: Added support for properties.
17646
17647 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17648
17649         * reflection.c: unaligned store fix from Mark Crichton
17650         <crichton@gimp.org>.
17651
17652 2002-09-27  Martin Baulig  <martin@gnome.org>
17653
17654         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17655         New interncall.
17656
17657 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17658
17659         * assembly.h, assembly.c: use a sane API to hook into the assembly
17660         loading process instead of a useless special-purpouse hack
17661         (ngen needs a hook, too, for example).
17662
17663 2002-09-27  Dick Porter  <dick@ximian.com>
17664
17665         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17666         io-layer can set up some process handle info.  Not needed on w32,
17667         but doesn't hurt either.
17668
17669         * process.c: Pass the program name in the second parameter to
17670         CreateProcess, so the path is searched.  Include the working
17671         directory. Implemented process name, process enumeration, and some
17672         process detail internal calls.
17673         
17674         * icall.c: Added internal calls for process lookup, and some
17675         process details
17676
17677 2002-09-26  Martin Baulig  <martin@gnome.org>
17678
17679         * assembly.c (mono_install_open_assembly_hook): New global
17680         function to install a function to be invoked each time a new
17681         assembly is loaded.
17682         (mono_assembly_open): Run this callback function if set.
17683
17684         * debug-mono-symfile.c: Put back line numbers for the dynamic
17685         symbol file and also record the .il file as source file.  This
17686         allows us to install the temporary symbol file as `file.dbg' just
17687         like a compiler-generated one.
17688
17689 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17690
17691         * Corrected typo in gc.c (BOHEM vs BOEHM).
17692
17693 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17694
17695         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17696         GetProperties. Also avoid calling g_slist_length in GetProperties and
17697         GetMethods.
17698
17699 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17700
17701         * reflection.c: avoid unaligned stores (bug spotted by
17702         Mark Crichton  <crichton@gimp.org>).
17703
17704 2002-09-25  Martin Baulig  <martin@gnome.org>
17705
17706         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17707         instead of guint64 for addresses and added prologue/epilogue info.
17708
17709 2002-09-25  Martin Baulig  <martin@gnome.org>
17710
17711         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17712         store line number info.  For the dynamic symbol file, we only need
17713         to provide the JIT generated dynamic line number info for the dynamic
17714         symbol file.
17715
17716 2002-09-25  Martin Baulig  <martin@gnome.org>
17717
17718         * debug-mono-symfile.h: Incremented version number.
17719
17720 2002-09-24  Martin Baulig  <martin@gnome.org>
17721
17722         * class.c (mono_debugger_class_init_func): New global function
17723         pointer variable.
17724         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17725         call it.
17726
17727         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17728         function.  This is called via the mono_debugger_class_init_func
17729         hook to add all types to the dynamic type table.
17730         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17731         from its metadata token.
17732
17733         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17734         New interncall for the debugger.
17735
17736 2002-09-24  Nick Drochak <ndrochak@gol.com>
17737
17738         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17739         before using it in case it is null.
17740         
17741 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17742
17743         * metadata.c: allow custom modifiers in local var signatures
17744         (bug spotted by Zoltan Varga).
17745
17746 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17747
17748         * class.c: deal with the <Module> class that may have a NULL vtable.
17749         Eliminate warnings.
17750
17751 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17752
17753         * image.c, image.h: more strong name helpers.
17754         * monosn.c: more work: convert pem keys to cryptoapi format.
17755
17756 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17757
17758         * string-icalls.c: speedup IndexOf.
17759
17760 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17761
17762         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17763
17764 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17765
17766         * icall.c: cleanup: use mono_object_domain ().
17767
17768 2002-09-23  Martin Baulig  <martin@gnome.org>
17769
17770         * debug-mono-symfile.c: Improved type support.
17771
17772 2002-09-22  Martin Baulig  <martin@gnome.org>
17773
17774         * debug-mono-symfile.c: Added support for reference types and strings.
17775
17776 2002-09-22  Martin Baulig  <martin@gnome.org>
17777
17778         * debug-mono-symfile.c: Started to work on the type table.
17779
17780 2002-09-21  Martin Baulig  <martin@gnome.org>
17781
17782         * debug-mono-symfile.c: Largely reworked the symbol table format.
17783         The symbol table is now incrementally updated each time a new
17784         method is added.  We're now also using our own magic and version
17785         so that you don't need to recompile all your classes if the
17786         dynamic table changes.
17787         (mono_debug_update_mono_symbol_file): Removed.
17788         (mono_debug_symfile_add_method): New function to add a method.
17789
17790 2002-09-21  Martin Baulig  <martin@gnome.org>
17791
17792         * icall.c
17793         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17794         New interncall.
17795
17796         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17797         New interncall to get a method from its metadata token.
17798
17799 2002-09-21  Martin Baulig  <martin@gnome.org>
17800
17801         * debug-mono-symfile.c: Create type table.
17802
17803 2002-09-20  Martin Baulig  <martin@gnome.org>
17804
17805         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17806
17807 2002-09-20  Martin Baulig  <martin@gnome.org>
17808
17809         * debug-mono-symfile.c: Provide information about params and locals.
17810
17811 2002-09-20  Martin Baulig  <martin@gnome.org>
17812
17813         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17814         New interncall.
17815
17816         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17817         interncall to get a method from its metadata token.
17818
17819 2002-09-20  Martin Baulig  <martin@gnome.org>
17820
17821         * debug-mono-symfile.c: Added a few checks for method->header
17822         being non-NULL.  This should never happen, but for the moment
17823         let's use a g_warning() rather than a g_assert().
17824
17825 2002-09-19  Mark Crichton  <crichton@gimp.org>
17826
17827         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17828         even if support for it isn't present.  Added an #ifdef to fix this.
17829
17830         * socket-io.c: Added checks back for Solaris support.
17831
17832 2002-09-19  Martin Baulig  <martin@gnome.org>
17833
17834         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17835         changes in the symbol file format.
17836
17837 2002-09-18  Martin Baulig  <martin@gnome.org>
17838
17839         * debug-mono-symfile.c: Set version number to 21.
17840
17841 2002-09-18  Dick Porter  <dick@ximian.com>
17842
17843         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17844         on netbsd.  Fixes bug 30051.
17845
17846 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17847
17848         * reflection.c:
17849         (set_version_from_string): little fix.
17850
17851 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17852
17853         * monosn.c, Makefile.am: added strong name utility.
17854         * reflection.h, reflection.c: implemented delayed signing,
17855         locale, version and hash id assembly attributes.
17856
17857 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17858
17859         * loader.c, metadata.c: load param attributes in signatures.
17860
17861 2002-09-16  Martin Baulig  <martin@gnome.org>
17862
17863         * debug-mono-symfile.c: Added string table with all method names.
17864
17865 2002-09-14  Martin Baulig  <martin@gnome.org>
17866
17867         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17868         fast method lookup.
17869
17870 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17871
17872         * reflection.c: record the public key token of referenced assemblies.
17873
17874 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17875
17876         * image.c, image.h: added functions to get the strong name and the
17877         public key of an assembly.
17878         * pedump.c: use them.
17879
17880 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17881
17882         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17883
17884 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17885
17886         * marshal.c (mono_marshal_get_managed_wrapper): Added
17887         MONO_TYPE_BOOLEAN 
17888
17889 2002-09-11  Martin Baulig  <martin@gnome.org>
17890
17891         * gc.c: Call GC_unregister_disappearing_link() on all links when
17892         finalizing them, this is necessary to aviod a crash in boehm's
17893         finalize handler.
17894
17895 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17896
17897         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17898         nick@chemlab.org.
17899
17900 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17901
17902         * icall.c: implemented MonoType::Module.
17903         * reflection.c, reflection.h: mono_module_get_object () from
17904         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17905
17906 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17907
17908         * icall.c: ignore overridden methods in GetMethods ().
17909         Fix for FieldInfo::SetValue().
17910         * object.c: handle float/double in runtime invoke.
17911
17912 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17913
17914         * object.c: allow a constructor to be called again on an object.
17915
17916 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17917
17918         * class.h, class.c: move field layout code to it's own function and
17919         export it. Get an interface id earlier. Move fields in MonoClass
17920         so they are more cache friendly and align the bitfields.
17921         * loader.c: temporary handle get_param_names() for a runtime method.
17922         * reflection.c, reflection.h: more code to handle runtime creation of
17923         types.
17924
17925 2002-09-09  Martin Baulig  <martin@gnome.org>
17926
17927         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17928         signature with the pinvoke field being set for the actual call.
17929
17930 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17931
17932         * icall.c: removed some unused icalls. Start of map of glib charsets
17933         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17934
17935 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17936
17937         * debug-helpers.c: break infinite loop (found and fixed by
17938         Holger Arnold <harnold@gmx.de>).
17939
17940 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17941
17942         * icall.c: target may be null in create_delegate.
17943
17944 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17945
17946         * marshal.c: handle a boolean return type.
17947
17948 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17949
17950         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17951
17952 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17953
17954         * gc.c: fix weakreferences.
17955
17956 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17957
17958         * icall.c: added icall to get default codepage.
17959
17960 2002-09-03  Dick Porter  <dick@ximian.com>
17961
17962         * threads.h: 
17963         * threads.c: Use MonoThread instead of MonoObject where
17964         apropriate.
17965
17966         Store running thread objects in a hash table, so that we have all
17967         the info to hand when waiting for them to finish
17968         (means we don't need OpenThread() any more, so mingw builds should
17969         be fully functional again.)
17970
17971         * verify.c:
17972         * object.h: Added thread ID to MonoThread
17973
17974 2002-09-03  Martin Baulig  <martin@gnome.org>
17975
17976         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17977
17978 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17979
17980         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17981
17982 2002-09-03  Martin Baulig  <martin@gnome.org>
17983
17984         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17985         argument to store the end address of the disassembled instruction.
17986
17987         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17988         here from debug-symfile.h.
17989         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17990         JIT into this struct.
17991         (MonoSymbolFile): Added `char *image_file' field.
17992         (MonoDebugGetMethodFunc): Removed.
17993         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17994         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17995         (mono_debug_find_method): New method.
17996
17997         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17998         create a full symbol file.
17999         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18000         and static symbol files.
18001         (mono_debug_find_method): The symbol file keeps an internal method hash,
18002         call this to get a MonoDebugMethodInfo from a MonoMethod.
18003
18004         * debug-symfile.[ch]: Removed.
18005
18006 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18007
18008         * image.c (do_mono_image_open): Remove linker version check.
18009
18010 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18011
18012         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18013         wrappers for instance methods.
18014         
18015 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18016
18017         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18018
18019 2002-08-28  Dick Porter  <dick@ximian.com>
18020
18021         * Makefile.am: Export HOST_CC for w32 builds
18022
18023 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18024
18025         * file-io.c process.c: MonoString are null terminated, no
18026         need for mono_string_to_utf16() anymore.
18027
18028 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18029
18030         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18031
18032 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18033
18034         * icall.c, reflection.h: speedup System.MonoType.
18035
18036 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18037
18038         * reflection.c: allow null as the value of a string argument in
18039         custom attributes constructors.
18040
18041 2002-08-27  Martin Baulig  <martin@gnome.org>
18042
18043         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18044         `trampoline_address' field.
18045
18046 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18047
18048         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18049         check (fixes bug #29486) 
18050
18051 2002-08-27  Martin Baulig  <martin@gnome.org>
18052
18053         * debug-mono-symfile.c: Changed the file format in a way that allows us
18054         open it read-only and to use a specially malloced area for all the
18055         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18056         debugging IL code and there is no MCS generated symbol file for it.
18057
18058 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18059
18060         * object.c: added a define for a good string and array
18061         creation speedup (not enabled by default because we need to deal with
18062         the synch stuff).
18063
18064 2002-08-26  Martin Baulig  <martin@gnome.org>
18065
18066         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18067         function to create a dynamic symbol file.  This is used by the
18068         debugger to create a symbol file for IL code on-the-fly.
18069
18070 2002-08-26  Martin Baulig  <martin@gnome.org>
18071
18072         * loader.c (mono_lookup_pinvoke_call): Include the error message
18073         from g_module_error() in the error message.
18074
18075 2002-08-24  Martin Baulig  <martin@gnome.org>
18076
18077         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18078         function to update the symbol file.  The symbol file is mmap()ed
18079         writable, but private.  This allows us to install the symbol file
18080         together with the assembly.
18081
18082 2002-08-24  Martin Baulig  <martin@gnome.org>
18083
18084         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18085         but they can read the new symbol file format which mcs is now creating.
18086
18087         * debug-symfile.c (mono_debug_find_source_location): Moved to
18088         debug-mono-symfile.c; this is now operating on the new symbol file.
18089
18090 2002-08-23  Martin Baulig  <martin@gnome.org>
18091
18092         * debug-helpers.c (mono_method_desc_from_method): New function to get
18093         a MonoMethodDesc from a MonoMethod.
18094
18095 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18096
18097         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18098         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18099
18100 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18101
18102         * string-icalls.[ch]: make helper methods static.
18103
18104 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18105
18106         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18107         types to it and to SetValueInternal.
18108
18109         * object.c: Moved handle_enum label to its proper place. This was the
18110         f... bug! ;-)
18111
18112         This time i compiled mcs and gtk-sharp and they both work.
18113
18114 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18115
18116         * icall.c: reverted partially my previous patch until 
18117         object.c:set_value handles enums correcly.
18118
18119 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18120
18121         * icall.c:
18122         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18123         (ves_icall_System_Environment_get_MachineName): removed warning when
18124         compiling under cygwin.
18125
18126 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18127
18128         * object.c: fixed field_get_value() for reference types.
18129
18130 2002-08-22  Dick Porter  <dick@ximian.com>
18131
18132         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18133         Don't free a buffer while it's still needed.  Patch from Jonathan
18134         Liger <Jonathan.liger@wanadoo.fr>
18135
18136 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18137
18138         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18139         internal call.
18140
18141 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18142
18143         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18144         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18145
18146         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18147         we call unmanaged code which throws exceptions.
18148
18149 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18150
18151         * appdomain.h: added per-domain entry_assembly.
18152         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18153         arguments.
18154         * icall.c: Assembly::GetEntryAssembly icall.
18155         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18156         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18157
18158 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18159
18160         * appdomain.h, gc.c: added mono_domain_finalize ().
18161
18162 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18163
18164         * object.c:
18165         (mono_print_unhandled_exception): changed g_warning by g_printerr
18166         because g_log has a 1024 characters limit (yeah, i got a big stack
18167         trace). Don't print exception name, that should be in ToString 
18168         returned string.
18169
18170 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18171
18172         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18173         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18174
18175 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18176
18177         * object.c:
18178         (mono_print_unhandled_exception): after previous commit, i realized
18179         that MS calls ToString on the exception. I changed this function to
18180         do that. This way we get stack_trace for free.
18181
18182 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18183
18184         * object.c:
18185         (mono_print_unhandled_exception): invoke Message property instead of
18186         getting 'message' field from Exception. Don't allocate memory for
18187         'trace' and 'message' if not needed.
18188
18189 2002-08-18  Dick Porter  <dick@ximian.com>
18190
18191         * unicode.c: Fix asserts to match Encoder.cs checks
18192
18193 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18194
18195         * marshal.c: fix unaligned store issue and a few wrong
18196         opcode argument types.
18197
18198 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18199
18200         * icall.c: added GetUninitializedObjectInternal internal call.
18201
18202 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18203
18204         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18205         to the right domain.
18206
18207 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18208
18209         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18210
18211         * class.c (class_compute_field_layout): set blittable to false for Strings
18212
18213         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18214
18215 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18216
18217         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18218         first chunk of code to create types at runtime. Code to
18219         handle ReflectedType/DeclaringType. Make reflection handles
18220         domain specific.
18221
18222 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18223
18224         * class.c: set correct name in arrays.
18225
18226 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18227
18228         * appdomain.c (mono_domain_transfer_object): make it work with
18229         valuetypes. bug fixes.
18230
18231 2002-08-12  Dick Porter  <dick@ximian.com>
18232
18233         * object.h: Rename some parameters to avoid c++ keywords (Patch
18234         from Joseph Wenninger <kde@jowenn.at>)
18235
18236 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18237
18238         * icall.c: added icall to implement Assembly.GetFile*.
18239
18240 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18241
18242         * reflection.h, reflection.c: code to embed managed resources.
18243
18244 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18245
18246         * class.c: move all the type size stuff into
18247         class_compute_field_layout().
18248
18249 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18250
18251         * class.c: ensure enums have always the correct instance size.
18252         * unicode.c: remove wrong assert.
18253
18254 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18255
18256         * assembly.c: fix mem corruption issue.
18257         * image.h, image.c: added mono_image_get_resource () to access
18258         managed resources.
18259         * icall.c: implemented Assembly.EntryPoint property and some
18260         Managed Resources related internalcalls.
18261
18262
18263 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18264
18265         * image.c, image.h: impemented mono_image_get_entry_point ().
18266         * appdomain.c: use mono_image_get_entry_point.
18267
18268 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18269
18270         * reflection.c: support the object type argument when loading
18271         custom attributes.
18272
18273 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18274
18275         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18276         String as return type.
18277
18278 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18279
18280         * reflection.c: fix encoding of named args for custom attrs to match
18281         the ms implementation. Read them back when instantiating custom
18282         attributes.
18283
18284 2002-08-02  Radek Doulik  <rodo@ximian.com>
18285
18286         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18287         by Dietmar as quick fix
18288         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18289         16 as stack size, used on more places as quick fix before Dietmar
18290         will fix it properly
18291
18292 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18293
18294         * object.h, object.c: added accessors for fields and properties.
18295
18296 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18297
18298         * class.c, class.h: made mono_class_get_field_from_name ()
18299         loop on parent types.
18300         Added mono_class_get_property_from_name ().
18301
18302 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18303
18304         * class.c, class.h: move the code to setup the type vtable in its own
18305         function so that it can be reused also for types created at runtime.
18306         Eliminate the "class" identifier from the header file.
18307         * reflection.c: setup the vtable for enums so that we can create
18308         objects for use in SetConstant ().
18309
18310 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18311
18312         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18313         instead of the delegate itself as this pointer (bug #28383)
18314
18315 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18316
18317         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18318         conversions.
18319
18320 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18321
18322         * loader.c: don't set the pinvoke bit on icalls.
18323
18324 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18325
18326         * debug-helpers.c (mono_method_full_name): only print a number to
18327         indicate wrapper type (so that the output is more readable in traces).
18328
18329 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18330
18331         * class.c (mono_class_init): include method override patch from Paolo
18332
18333 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18334
18335         * icall.c: fixed GetTypeCode().
18336
18337 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18338
18339         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18340         use real delegate invoke function to make it work with multicast
18341         delegates (fix bug# 28291).
18342
18343 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18344
18345         * object.c: load constant strings.
18346
18347 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18348
18349         * reflection.c: no magic numbers.
18350         * tabledefs.h: security action enum.
18351
18352 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18353
18354         * assembly.c: fix possible memory corruption.
18355
18356 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18357
18358         * reflection.h, reflection.c: added support for linking resources.
18359         * verify.c: check we have an updated corlib.
18360
18361 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18362
18363         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18364         string arrays.
18365         (mono_marshal_string_array): null terminate unmanaged string arrays.
18366         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18367
18368 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18369
18370         * icall.c: Type.GetType () can now return also types from the
18371         calling assembly.
18372
18373 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18374
18375         * loader.h, loader.c: stack walking support.
18376         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18377         GetCallingAssembly.
18378
18379 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18380
18381         * marshal.c: added optimisations for blittable types 
18382
18383         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18384         (mono_class_setup_mono_type): set blittable attribute for single
18385         and double.
18386
18387         * marshal.c (mono_string_utf8_to_builder): impl.
18388         (mono_string_builder_to_utf8): impl.
18389         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18390
18391 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18392
18393         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18394         (mono_marshal_get_managed_wrapper): impl. byref types
18395
18396 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18397
18398         * icall.c:
18399         (search_method): don't display debug message. 
18400
18401 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18402
18403         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18404
18405 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18406
18407         * appdomain.c: set the missing filename when throwing exception.
18408
18409 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18410
18411         * metadata.c (mono_type_size): code cleanup
18412         (mono_type_stack_size): removed some test code
18413
18414 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
18415
18416         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
18417         mono_get_exception_file_not_found now.
18418
18419         * exception.c (mono_exception_from_name_two_strings): New version
18420         that will call a constructor with two string arguments. 
18421         (mono_get_exception_file_not_found): New helper routine, used to
18422         report file-not-found errors.
18423
18424 2002-07-20  Dick Porter  <dick@ximian.com>
18425
18426         * process.h:
18427         * process.c: Pass file handles to CreateProcess
18428         
18429         * icall.c:
18430         * file-io.h:
18431         * file-io.c: Implemented CreatePipe
18432
18433 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18434
18435         * metadata.c (mono_get_param_info): set alignment for value types
18436
18437 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18438
18439         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
18440         Constify mono_domain_assembly_open().
18441         * loader.c: handle null namespace in icalls.
18442
18443 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18444
18445         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
18446         (emit_str_to_ptr_conv): marshal object as structs
18447
18448         * metadata.c (mono_type_to_unmanaged): marshal object as structs
18449
18450         * marshal.c (mono_marshal_get_runtime_invoke): support value types
18451
18452 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
18453
18454         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
18455         (mono_marshal_get_native_wrapper): we an now return value types
18456
18457 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18458
18459         * verify.c: more checks implemented.
18460
18461 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
18462
18463         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
18464         (fix bug #27695)
18465         (mono_marshal_get_native_wrapper): allow byref arguments
18466         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
18467         impl. PtrToStringXXX methods
18468         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
18469         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
18470         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
18471         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
18472         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
18473
18474 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18475
18476         * reflection.c: fix buglet in parsing an assembly name.
18477
18478 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18479
18480         * marshal.c (emit_ptr_to_str_conv): first impl.
18481
18482 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18483
18484         * object.c, class.h: cache the vtable in the class as suggested by
18485         vargaz@freemail.hu (Zoltan Varga).
18486
18487 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18488
18489         * class.h, loader.c: added mono_field_from_token().
18490         * verify.c: first cut of type checking code.
18491
18492 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18493
18494         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
18495
18496 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
18497
18498         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
18499         (fix bug #27782)
18500         (mono_marshal_get_remoting_invoke): impl.
18501         (mono_delegate_begin_invoke): impl.
18502         (mono_mb_emit_save_args): impl.
18503         (mono_delegate_end_invoke): impl.
18504         (mono_marshal_get_delegate_begin_invoke):
18505         (mono_marshal_get_delegate_end_invoke):
18506         (mono_marshal_get_delegate_invoke): generate a special name for
18507         those methods (including the signature) and associate them whith
18508         the delegate class. 
18509
18510 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
18511
18512         * reflection.[ch]: 
18513         (mono_reflection_type_from_name): now it has a MonoImage parameter
18514         which is used as the default image to search the type in. If the image
18515         is NULL or getting the type from it fails, it defaults to corlib.
18516
18517         * icall.c: changed 1 call to mono_reflection_type_from_name to match
18518         new parameter.
18519
18520 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18521
18522         * reflection.c: update the parameter table index.
18523
18524 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18525
18526         * domain.c: don't include the mark byte in the string hash.
18527
18528 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18529
18530         * icall.cs: icall for Type.GetTypeCode ().
18531         * verify: a couple of fixes and disabled local initialization checks.
18532
18533 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
18534
18535         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
18536
18537         * debug-helpers.c (mono_method_full_name): print the type of the
18538         runtime wrapper
18539
18540         * metadata.c (mono_signature_hash): a hash function for signatures
18541         (mono_signature_hash): better hash algorithm
18542
18543         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
18544
18545         * debug-helpers.c (mono_method_full_name): this can now generate
18546         method names with signatures
18547
18548         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18549         method dont have this pointers.
18550
18551 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18552
18553         * reflection.c: fixup typebuilder tokens.
18554         * image.c: fix buglet.
18555         * marshal.h: remove whitespace.
18556         * metadata.h, metadata.c: reinstate code that was removed.
18557         * verify.c: handle catch directives and fix another couple of bugs.
18558
18559 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18560
18561         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18562         (mono_marshal_get_native_wrapper): make it comp. with the old code
18563         (mono_marshal_get_native_wrapper): support boolean
18564         (mono_marshal_get_managed_wrapper): support more types
18565
18566 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18567
18568         * class.c (class_compute_field_layout): compute class->blittable attribute.
18569
18570 2002-07-09  Dick Porter  <dick@ximian.com>
18571
18572         * threads.c: Make the thread cleaning up cope with threads that
18573         call ExitThread()
18574
18575 2002-07-08  Radek Doulik  <rodo@ximian.com>
18576
18577         * reflection.c (method_encode_code): use non-translated values to
18578         compute finally_start, this fixes exception handling on ppc, yay!
18579
18580         * decimal.h (struct signscale): fix endianess
18581
18582 2002-07-07  Radek Doulik  <rodo@ximian.com>
18583
18584         * reflection.c: swap box_val and not val
18585
18586 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18587
18588         * reflection.c, reflection.h: handle full assembly info in type name.
18589         Handle Type arguments when loading custom attributes.
18590         * icall.c: updated to use new mono_reflection_type_from_name () method.
18591
18592 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18593
18594         * loader.c:
18595         (method_from_memberref): also print assembly name when method not found.
18596
18597 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18598
18599         * icall.c:
18600         (ves_icall_TypeGetProperties): fixed bug #27473. 
18601
18602 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18603
18604         * reflection.c: display image name and token when cannot find the
18605         .ctor for an attribute.
18606
18607 2002-07-05  Martin Baulig  <martin@gnome.org>
18608
18609         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18610
18611 2002-07-04  Dick Porter  <dick@ximian.com>
18612
18613         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18614         compile on mingw.  This will cause mingw builds to not wait for
18615         subthreads to terminate after the main thread does.  I've lodged a
18616         bug with the mingw developers for them to wrap OpenThread().
18617
18618 2002-07-03  Dick Porter  <dick@ximian.com>
18619
18620         * threads.c: Store thread IDs instead of handles, because
18621         GetCurrentThread() returns a pseudohandle and therefore stores
18622         useless values.  mono_thread_cleanup() continues checking the
18623         array of threads until it is empty, to cope with subthreads
18624         spawning new threads after the main thread has finished.
18625
18626         * profiler.h:
18627         * profiler.c:
18628         * profiler-private.h: Pass the thread ID to thread profiler
18629         functions, instead of a handle
18630
18631 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18632
18633         * verify.c: fixes to make it more usable.
18634         * pedump.c: added --verify code to verify IL code in an assembly.
18635
18636 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18637
18638         * reflection.c: turn errors into warnings to allow compiling corlib.
18639
18640 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18641
18642         * reflection.c: add special cases to compile corlib.
18643
18644 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18645
18646         * reflection.c: handle properties with only a set method.
18647
18648 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18649
18650         * opcodes.h: add enum with opcodes in opval order.
18651
18652 2002-07-01  Dick Porter  <dick@ximian.com>
18653         
18654         * object.h:
18655         * object.c (mono_runtime_run_main): Removed unneeded argument
18656
18657 2002-06-28  Martin Baulig  <martin@gnome.org>
18658
18659         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18660
18661 2002-06-27  Dick Porter  <dick@ximian.com>
18662
18663         * threads.c: Store the handle in both the parent thread and in the
18664         subthread, to minimise the time between starting a new thread and
18665         storing its ID.
18666
18667 2002-06-26  Dick Porter  <dick@ximian.com>
18668
18669         * appdomain.c (mono_runtime_cleanup): Close the socket library
18670         after all the threads have finished, not before
18671
18672 2002-06-26  Martin Baulig  <martin@gnome.org>
18673
18674         * debug-symfile.c (mono_debug_find_source_location): Added
18675         `guint32 *line_number' argument.  If it's not NULL, store the line number
18676         there and return the file name without the line number.
18677
18678 2002-06-25  Dick Porter  <dick@ximian.com>
18679
18680         * icall.c:
18681         * process.h:
18682         * process.c: Process forking and other support functions
18683
18684 2002-06-25  Dick Porter  <dick@ximian.com>
18685
18686         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18687         things dont happen when the image is closed.
18688         (mono_image_lookup_resource): Walk the resource section looking
18689         for a particular entry
18690
18691         * cil-coff.h: PE resource section decoding
18692
18693 2002-06-25  Dick Porter  <dick@ximian.com>
18694         
18695         * assembly.h:
18696         * assembly.c: 
18697         (mono_assembly_foreach): Accessor functions to walk the list of
18698         loaded assemblies
18699         (mono_assembly_set_main):
18700         (mono_assembly_get_main): Process methods need to know which
18701         assembly is the "main" one
18702
18703         * object.c (mono_runtime_run_main): Record the main assembly
18704
18705         * debug-helpers.c: Fix typo
18706
18707 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18708
18709         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18710         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18711
18712 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18713
18714         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18715
18716 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18717
18718         * image.c (do_mono_image_open): Initialize reference count,
18719         otherwise we leak the MonoImage.
18720
18721 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18722
18723         * reflection.c: small tweak to handle self-hosting.
18724
18725 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18726
18727         * reflection.c: fix type name parse code.
18728
18729 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18730
18731         * reflection.c: break out of the loop.
18732         * image.c: special case corlib.
18733
18734 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18735
18736         * reflection.c: add all the custom attrs at the end to ensure the
18737         ctors have been properly initialized when the attributes are defined
18738         in the current assembly.
18739
18740 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18741
18742         * reflection.c: handle correctly multiple-nested types.
18743
18744 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18745
18746         * row-indexes.h: fix typos.
18747         * reflection.c: adjust for typos and fix method_def_or_ref
18748         encoding in MethodImpl table.
18749
18750 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18751
18752         * reflection.c: fix entry point patching (thanks Serge!).
18753
18754 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18755
18756         * verify.c: add check for System.Exception
18757
18758 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18759
18760         * image.c, class.c: minifix for code just c&p'ed.
18761         * reflection.c: warning fix.
18762         * object.h, loader.h, domain.c: load also StringBuilder.
18763
18764 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18765
18766         * marshal.h, marshal.c: some support code to handle complex marshaling.
18767
18768 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18769
18770         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18771         Better signatures with vtable error dump.
18772
18773 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18774
18775         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18776
18777 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18778
18779         * icall.c (ves_icall_Type_GetField): impl.
18780
18781 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18782
18783         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18784         to retrieve a marshal description blob for a field or param.
18785
18786 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18787
18788         * reflection.h, reflection.c: change order of nested type emission
18789         to avoid table corruption. The NestedTypes table is sorted.
18790         * icall.c: change order of GetConstructor results to workaround mcs bug.
18791
18792 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18793
18794         * reflection.h, reflection.c: handle field and param marshal
18795         information.
18796
18797 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18798
18799         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18800
18801 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18802
18803         * reflection.c: fix call convention.
18804
18805 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18806
18807         * reflection.h, reflection.c: mono_image_get_memberref_token()
18808         takes a type instead of a class, now. Added
18809         mono_image_get_array_token() to create tokens for the special
18810         multi-dim array methods.
18811
18812 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18813
18814         * assembly.c: handle modules (no assembly table). Split
18815         loading references in its own function.
18816         * class.c: handle moduleref resolution scope.
18817         * image.c, image.h: cache module name in image.
18818
18819 2002-06-07  Martin Baulig  <martin@gnome.org>
18820
18821         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18822         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18823
18824 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18825
18826         * icall.c: more signature fixes that used uint instead of int.
18827
18828 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18829
18830         * reflection.c: fixed signature of field refs.
18831
18832 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18833
18834         * class.c, reflection.c: handle typerefs of nested types
18835         (both on read and when writing files).
18836
18837 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18838
18839         * icall.c: fix method signatures that tried to workaround the previous
18840         typo, d'oh!
18841
18842 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18843
18844         * debug-helpers.c: fix typo.
18845
18846 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18847
18848         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18849         rewrote the PE/COFF writing code (our programs are understood by the
18850         ms runtime, now).
18851
18852 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18853
18854         * gc.c, gc.h, icall.c: weakreference support.
18855
18856 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18857
18858         * Makefile.am, mono-config.c: use $(sysconfdir).
18859
18860 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18861
18862         * icall.c: changed default precision of Double.ToString() to 15.
18863         Fixed memory leak. Unified with Single.ToString.
18864
18865 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18866
18867         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18868
18869 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18870
18871         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18872         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18873         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18874         and myself.
18875
18876 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18877
18878         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18879
18880 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18881
18882         * reflection.c, socket-io.c: more compilation fixes.
18883
18884 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18885
18886         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18887         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18888         unicode.c: warning and compiler compatibility fixes.
18889
18890 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18891
18892         * class.h, metadata.c: fixed warnings/compilation errors.
18893
18894 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18895
18896         * Makefile.am, mono-config.c, mono-config.h: configuration file
18897         support routines.
18898         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18899         config file. Export methods to insert and lookup mappings.
18900
18901 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18902
18903         * reflection.c: handle types and boxed objects in custom attr
18904         constructors.
18905
18906 2002-05-30  Martin Baulig  <martin@gnome.org>
18907
18908         * debug-symfile.c
18909         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18910
18911 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18912
18913         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18914         to lookup the implmap row for a P/Invoke method.
18915         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18916         P/Invoke method from the runtime on an as needed basis.
18917
18918 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18919
18920         * metadata.c (mono_metadata_parse_signature): impl.
18921
18922 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18923
18924         * class.c: handle .pack directive.
18925
18926 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18927
18928         * object.c: initialize static fields with RVA data.
18929
18930 2002-05-25  Martin Baulig  <martin@gnome.org>
18931
18932         * debug-symfile.c
18933         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18934
18935 2002-05-24  Martin Baulig  <martin@gnome.org>
18936
18937         * debug-symfile.c
18938         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18939         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18940         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18941
18942 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18943
18944         * object.c: special case string ctros in invoke.
18945         * gc.c: silly whitespace changes.
18946
18947 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18948
18949         * threadpool.[ch]: impl. a threadpool that can
18950         be used by mint and mono.
18951
18952 2002-05-22  Martin Baulig  <martin@gnome.org>
18953
18954         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18955         The first argument is now a `MonoReflectionModuleBuilder *', the return
18956         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18957         `methods' field to get the method builder.  The `token' argument is the
18958         unfixed token.
18959
18960         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18961         invalid characters instead of g_assert_not_reached()ing.  This seems
18962         to be the behaviour of mscorlib.
18963
18964 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18965
18966         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18967         Hestilow to fix bug #25104
18968
18969 2002-05-21  Martin Baulig  <martin@gnome.org>
18970
18971         * debug-symfile.c (mono_debug_find_source_location): New function.
18972         Looks up an IL offset in the line number table and returns the source
18973         location as a string.
18974
18975 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18976
18977         * icall.c:
18978         (mono_double_ToStringImpl): changed %f by %g until we have something
18979         better.
18980
18981 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18982
18983         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18984         parameters first in C#.
18985
18986 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18987
18988         * icall.c, reflection.h: added icall to get info about an event.
18989
18990 2002-05-20  Radek Doulik  <rodo@ximian.com>
18991
18992         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18993         endian
18994         (mono_value_box): don't use memcpy for small sizes on
18995         architectures with unaligned access
18996
18997 2002-05-20  Martin Baulig  <martin@gnome.org>
18998
18999         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19000         if `tb->parent == NULL'.
19001         (mono_reflection_create_internal_class): New function.  This is
19002         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19003         for enum types.
19004
19005         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19006         New interncall.
19007
19008 2002-05-19  Martin Baulig  <martin@gnome.org>
19009
19010         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19011         argument to get the length, don't default to the array length.
19012
19013 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19014
19015         * assembly.c (mono_assembly_setrootdir): New function used to
19016         override the MONO_ASSEMBLIES directory.
19017
19018 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19019
19020         * icall.c: ValueType_GetHashCode() initialize local var.
19021
19022 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19023
19024         * reflection.c: sort custom attributes table.
19025
19026 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19027
19028         * reflection.c: support named args in custom attributes (write support).
19029
19030 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19031
19032         * reflection.c: fix finally position calculation.
19033
19034 2002-05-15  Radek Doulik  <rodo@ximian.com>
19035
19036         * reflection.c: fixed endianess at many places
19037
19038         * icall.c (ves_icall_InitializeArray): comment out debug msg
19039
19040 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19041
19042         * object.c (mono_unhandled_exception): new function to handle
19043         unhandled exceptions.
19044         (mono_unhandled_exception): call the UnhandledException event.
19045         (mono_runtime_delegate_invoke): impl.
19046
19047 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19048
19049         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19050         returns the RVA, not the direct pointer to the data. Handle the case
19051         when the class size is fixed.
19052
19053 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19054
19055         * reflection.c: fix some endianess issues.
19056
19057 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19058
19059         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19060
19061         * threads.c (mono_thread_init): added a callback which is invoked
19062         at thread start.
19063
19064 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19065         
19066         * icall.c: make GetHashCode return non-negative values.
19067
19068 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19069
19070         * object.c, icall.c, gc.c: revert to address-based hashcode.
19071
19072 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19073
19074         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19075
19076 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19077
19078         * icall.c, class.c: special case <Module>.
19079
19080 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19081
19082         * icall.c: fix bug in GetNow().
19083
19084 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19085
19086         * object.c (mono_runtime_class_init): make sure that we call all
19087         static class constructors.
19088
19089 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19090
19091         * reflection.c: sort methodsemantics table.
19092
19093 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19094
19095         * reflection.h, reflection.c: honour init locals setting.
19096
19097 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19098
19099         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19100
19101 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19102
19103         * reflection.c: support ContructorBuilders in attribute blob creation.
19104
19105 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19106
19107         * reflection.c: some changes to build a binary that can be run
19108         directly in windows.
19109
19110 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * loader.c: print a big message when an icall can't be found.
19113
19114 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19115
19116         * string-icalls.c: fix bug 24248.
19117
19118 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19119
19120         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19121         icall.c, reflection.h: separate assembly loading by pathname and by
19122         assembly name. Use the MONO_PATH env var to search for assemblies.
19123
19124 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19125
19126         * assembly.c, image.h: add some support for assemblies
19127         with multiple modules.
19128         * class.c, class.h: export mono_class_from_typeref().
19129         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19130         instead.
19131
19132 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19133
19134         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19135         documentation says (the ECMA one is correct).
19136
19137 2002-05-02  Dick Porter  <dick@ximian.com>
19138
19139         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19140         Don't name the synchronisation mutex.
19141
19142 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19143
19144         * rand.c
19145         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19146         Make the prototypes match.
19147         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19148         Same.
19149
19150         * icall.c
19151         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19152         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19153         all systems have tm.tm_zone, so use strftime() with %Z to print
19154         the timezone abreviation into a temp string.
19155
19156         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19157         rather than mono_array_addr() on a MonoString on Big Endian
19158         machines.
19159
19160 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19161
19162         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19163         fix bug 24041
19164
19165 2002-04-30  Dick Porter  <dick@ximian.com>
19166
19167         * socket-io.c: Cope with SOCKET being an integer rather than a
19168         pointer now.
19169
19170         * threads.c: Added Thread_free_internal, to deal with thread
19171         handle cleanup.  Moved calls to handle_store() and handle_remove()
19172         to start_wrapper(), so each can only be called once.  Allocate
19173         synchronisation blocks with GC_malloc(), and use GC finalisation
19174         to close the handles.
19175
19176         * icall.c: added System.Threading.Thread::Thread_free_internal
19177
19178 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19179
19180         * icall.c: support Environment.Exit, CommandLineArgs().
19181
19182 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19183
19184         * object.c, object.h: added mono_runtime_run_main () and
19185         mono_runtime_get_main_args () for use in System.Environment.
19186
19187 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19188
19189         * gc.c: fix thinko, enable actual finalization since the jit is now
19190         fixed.
19191
19192 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19193
19194         * gc.c, object.c: take into account that an object may be offset wrt the address
19195         returned by GC_malloc().
19196
19197 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19198
19199         * image.c: handle files without entries in the assembly table (modules).
19200
19201 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19202
19203         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19204         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19205         allowed to be null when it's System.Object class setup.
19206
19207 2002-04-27  Martin Baulig  <martin@gnome.org>
19208
19209         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19210         if `tb->parent == NULL' rather than crashing.
19211
19212 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19213
19214         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19215         calling acos() where asin() should have been called.
19216
19217 2002-04-26  Martin Baulig  <martin@gnome.org>
19218
19219         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19220         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19221         there's a subdirectory called `System', but we don't want to read that
19222         subdirectory as an assembly.
19223
19224 2002-04-25  Martin Baulig  <martin@gnome.org>
19225
19226         * debug-symfile.c: Reflect latest MonoString changes.
19227
19228 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19229
19230         * rand.c, rand.h: instance method icalls need to have an explicit
19231         this pointer as first argument in the C implementation.
19232
19233 2002-04-25  Nick Drochak <ndrochak@gol.com>
19234
19235         * icall.c: Fix typo in map for GetNonZeroBytes
19236
19237 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19238
19239         * string-icalls.c : String does now passes unit tests without any 
19240         errors, the following changes has been made:
19241         
19242         Implemented replace methods.
19243         Renaming of methods to (try) follow the standard.
19244         Fixed compare ordinal
19245         Made all memory allocated directly to function instead of via icall function.
19246         Small performance fix in is_in_array function
19247                         
19248  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19249
19250         c (mono_string_Internal_ctor_charp_int_int):
19251         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19252         sindex < 0, throw ArgumentOutOfRangeException instead of
19253         ArgumentNullException.
19254
19255         Added new check for length == 0, however
19256         I need to make it return String.Empty from the C code.
19257         
19258         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19259         that calculate the length for us here.
19260         
19261         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19262         mono_string_new_utf16 with mono_string_new, since value is utf8.
19263
19264 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19265
19266         * object.c: register the object for finalization if needed.
19267         Allocate one more char in the string for the terminating 0 char.
19268
19269 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19270
19271         * class.c, class.h, image.c: check if a type implemenst a destructor.
19272         Use the proper key for array class lookups.
19273         * icall.c: register the icalls in the System.GC class.
19274         * gc.c, gc.h: GC-related functions and icalls.
19275
19276 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19277
19278         * icall.c:
19279         * socket-io.c:
19280         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19281         changed a couple of free () by g_free ().
19282
19283         * decimal.c: one-liner in the comments for decimal2string ().
19284
19285 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19286
19287         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19288
19289 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19290
19291         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19292         * object.c (mono_runtime_invoke_array) : handle null in params
19293
19294 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19295
19296         * string-icalls.c: fixed bug in split (one off bug)
19297
19298 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19299
19300         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19301         * icalls.c: added String::Equals as internal method
19302
19303 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19304
19305         * threads.c: fixed bug in the double interlocked functions
19306
19307 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19308
19309         * threads.c: implemented all of the new interlocked icalls.
19310         * string-icalls.c: fix a bug in insert.
19311         * icalls.c: added the icalls for interlocked, removed old string functions.
19312         
19313 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19314
19315         * loader.c: fix off-by-one error when reading argument names.
19316
19317 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19318
19319         * profiler.c: win32 counter implementation (untested).
19320         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19321         (the latter needs testing and more complete impl. from win32 folks).
19322
19323 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19324
19325         * object.c: mono_array_new_full workaround mono_array_class_get
19326         problem.
19327
19328 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19329
19330         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19331         * object.h (mono_string_chars): Changed casting type.
19332
19333 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19334
19335         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19336                            method signatures to use gunichar2 instead of gint16.
19337
19338 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19339
19340         * object.h, object.c: domain-specific versions of mono_object_new and
19341         mono_array_new.
19342
19343 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19344
19345         * object.c: changed String layout
19346
19347         * string-icalls.c (mono_string_Internal_ctor_chara): added
19348         internal string constructors.
19349
19350 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19351
19352         * threads.c: pass 'this' to the thread start routine.
19353
19354 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19355
19356         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19357         InternalCompareStr don't call twice mono_string_cmp_char for the last
19358         character. Improved performance in mono_string_cmp_char.
19359
19360 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19361
19362         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19363         code into its own library: libmonoruntime.
19364
19365 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19366
19367         * object.h, object.c: changed array format so that szarrays do not
19368         require a bounds structure.
19369         * icall.c, appdomain.c: support for new szarray format.
19370
19371 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19372
19373         * metadata.c: compare also the retuns type when comparing signatures:
19374         we didn't do this as an optimization since really overloaded methods
19375         must differ also in the arguments, but this doesn't work with
19376         low-level IL code (or when using explicit conversion operators: see
19377         bug#23498 for an example).
19378
19379 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19380
19381         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19382
19383 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19384
19385         * icall.c: make MonoType::GetElementType its own icall.
19386
19387 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19388
19389         * icall.c: remove MonoMethod_get_Name().
19390         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19391         object.
19392
19393 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19394
19395         * string-icalls.c: optimized a few methods.
19396
19397 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19398
19399         * icall.c: added all new string internal calls
19400         * string-icalls.c: added, new string internal call implementation.
19401         * object.c: added mono_string_new_size for allocating a string a size
19402
19403 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19404
19405         * object.c (mono_object_isinst): use the same code as in the
19406         optimized x86 version.
19407
19408 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19409
19410         * profiler.c: TSC-based timer code (faster and more accurate).
19411         Not hooked up in configure, yet (set USE_X86TSC to 1).
19412
19413 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
19414
19415         * profiler.c, profiler.h: track time spent compiling methods.
19416         * threads.c: track thread creation/destruction.
19417
19418 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
19419
19420         * profiler.c, profiler.h, profiler-private.h: profiling interface
19421         and sample implementation. Moved here so that it can be used also by
19422         the jit.
19423
19424 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
19425
19426         * reflection.c, reflection.h: keep types and other handles separate in
19427         the hash tables for referred tokens. Add guid for modules.
19428
19429 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19430
19431         * assembly.c: fix bugs found with valgrind.
19432         * metadata.h, metadata.c: added mono_metadata_guid_heap().
19433
19434 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
19435
19436         * threads: added icall support for getting current domain for
19437                    the thread.
19438  
19439 2002-04-13  Martin Baulig  <martin@gnome.org>
19440
19441         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
19442         (MonoDebugVarInfo): Added `index' field for register based addresses.
19443         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
19444         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
19445         `MonoDebugVarInfo *params' and `guint32 this_offset' with
19446         `MonoDebugVarInfo *this_var'.
19447
19448         * debug-symfile.c (relocate_variable): New static function to write
19449         a location description for a local variable or method parameter.
19450
19451 2002-04-12  Martin Baulig  <martin@gnome.org>
19452
19453         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
19454         stack offset and begin/end scope address of a local variable.
19455         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
19456         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
19457         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
19458
19459         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
19460         Added new relocation types for start/end scope of a local variable.
19461
19462 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19463
19464         * object.h: add mono_object_domain() macro.
19465         * reflection.c: handle typespecs.
19466         * icall.c: MonoMethod::get_Name() implementation.
19467
19468 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19469
19470         * icall.c: String::GetHashCode() icall implementation.
19471
19472 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19473
19474         * icall.c: String::IndexOfAny icall.
19475         * object.c, object.h: make array->max_length more useful.
19476         Intrduced mono_object_class() and mono_string_length() macros.
19477
19478 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19479
19480         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
19481         instead of g_unichar_isdigit.
19482
19483 2002-04-11  Nick Drochak  <ndrochak@gol.com>
19484
19485         * icall.c: Implement a simple Double.ToString().
19486
19487 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19488
19489         * appdomain.h: only io-layer.h is supposed to be included.
19490         * icall.c: explicitly import environ. Fix warning.
19491
19492 2002-04-10  Nick Drochak  <ndrochak@gol.com>
19493
19494         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
19495                 return true even if it's not Daylight Savings time.
19496                 Only return false for the case where the function isn't
19497                 implemented for a plaform (read Windows).
19498
19499 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
19502         data with a mutex.
19503
19504 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
19505
19506         * mempool.c (mono_mempool_alloc): only use g_malloc when
19507         absolutely necessary.
19508
19509 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19510
19511         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
19512
19513         * class.c (mono_class_vtable): use domain mempool to allocate vtable
19514         (mono_class_proxy_vtable): use domain mempool
19515
19516 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19517
19518         * appdomain.h, appdomain.c: split initialization that requires the
19519         execution engine support into mono_runtime_init().
19520
19521 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19522
19523         * class.c (mono_class_init): don't include vtable inside MonoClass
19524         to save some memory, gather some statistics.
19525         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
19526
19527 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19528
19529         * icall.c: internalcall implementation for ValueType.Equals().
19530
19531 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
19532
19533         * object.c (mono_message_init): moved 
19534         (mono_runtime_exec_main): new arch. independent impl.
19535         (mono_runtime_invoke_array): new method - like
19536         mono_runtime_invoke, but you can pass an array of objects.
19537         (mono_remoting_invoke): new arch. independent impl.
19538         (mono_message_invoke): new arch. independent impl.
19539         (mono_runtime_class_init): new arch. independent impl.
19540         (mono_runtime_object_init): new arch. independent impl.
19541
19542 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19543
19544         * metadata.c, object.c, reflection.c: documented the exported
19545         functions.
19546
19547 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19548
19549         * icall.c: simpler code to pass the assembly builder data to corlib.
19550         Implement GetNestedTypes() internalcall.
19551
19552 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19553
19554         * class.c: warn if a type can't be loaded.
19555
19556 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19557
19558         * image.h: typedef MonoImageOpenStatus
19559         * types.h: removed unused file
19560         
19561 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19562
19563         * icall.c: Enum_ToObject accepts enum value arguments.
19564
19565 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19566
19567         * class.c: move initialization of properties, events and nested
19568         classes, so that they happen for interfaces, too.
19569
19570 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19571
19572         * icall.c: cleanup some ugly casts in Array_SetValue*.
19573
19574 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19575
19576         * icall.c: the values array fro enums is of the correct type, now.
19577         Implement (correctly) getFullName instead of assQualifiedName for
19578         MonoType.
19579         * reflection.h, reflection.c: added mono_type_get_name ().
19580
19581 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19582
19583         * assembly.c, image.h: for each MonoImage, record from wich assembly
19584         it was loaded.
19585         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19586         Make Type.Assembly work.
19587
19588 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19589
19590         * debug-symfile.h: use char* instead of gpointer to avoid
19591         unnecessary casts.
19592
19593         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19594
19595         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19596         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19597
19598 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19599
19600         * icall.c (mono_message_init): impl. (code cleanup)
19601         (ves_icall_InternalExecute): impl. FieldGetter
19602
19603         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19604         defined we call all (non-static)methods through the vtable. 
19605
19606 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19607
19608         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19609         finalizer even though the memory is still referenced (and the chunk of
19610         memory is not freed).
19611
19612 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19613
19614         * assembly.c: fix brokeness.
19615
19616 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19617
19618         * class.c: kill some warnings. Check explicit interface method
19619         implementation also without considering the namespace.
19620         Load also literal strings in static class data.
19621
19622 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19623
19624         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19625         (default_assembly_name_resolver): Make the resolver take the
19626         "base" directory where the assembly was originally defined, so we
19627         can load DLLs that are in the same directory as the assembly that
19628         is being referenced.
19629
19630 2002-03-28  Dick Porter  <dick@ximian.com>
19631
19632         * file-io.h: 
19633         * file-io.c:
19634         * socket-io.c: 
19635         * unicode.h: 
19636         * unicode.c: Warning cleanups
19637
19638 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19639
19640         * object.h, reflection.h: use the correct type instead of MonoObject.
19641
19642 2002-03-28  Martin Baulig  <martin@gnome.org>
19643
19644         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19645         (mono_debug_update_symbol_file): Initialize classes if necessary.
19646
19647 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19648
19649         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19650         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19651
19652 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19653
19654         * assembly.h: fix function prototype.
19655         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19656         * mono-endian.h: use const cast.
19657
19658 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19659
19660         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19661
19662 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19663
19664         * loader.c: don't assert when a typeref can't be loaded, give
19665         a chance to the runtime to trow an exception instead.
19666         * loader.h: fix warning.
19667
19668 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19669
19670         * class.c (mono_class_proxy_vtable): added proxy support
19671
19672 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19673
19674         * icall.c: removed last of PAL calls, added System.Environment
19675         * file-io.h, file-io.c: MonoIO implementation
19676         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19677
19678 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19679
19680         * appdomain.c: do not use the byte marker in ldstr table lookup.
19681         * debug-helpers.c: allow two ':' to separate class and method name.
19682         * object.c: allocate arrays bounds with the GC, too.
19683         * verify: add a few more checks.
19684
19685 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19686
19687         * reflection.c: output also literal strings. Allocate parameter data
19688         with GC_malloc() (thanks, Martin, for catching this!).
19689
19690 2002-03-26  Martin Baulig  <martin@gnome.org>
19691
19692         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19693         include the `this' offset in the `param_offsets'.
19694
19695 2002-03-25  Martin Baulig  <martin@gnome.org>
19696
19697         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19698         mono_debug_get_class() function to get the classes. Added new
19699         relocation types for arrays and strings.
19700         (mono_debug_get_class): New static function to search in all
19701         referenced assemblies for a metadata token.
19702
19703         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19704
19705 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19706
19707         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19708         hold gc-allocated objects. Make the string heap a stream like the
19709         others. Removed duplicated code when writing stream info.
19710         Added asserts to catch possible buffer overflows. Set the sorted map
19711         for tables that need sorting. Added some documentation.
19712
19713 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19714
19715         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19716         for interned strings and vtables.
19717
19718 2002-03-24  Martin Baulig  <martin@gnome.org>
19719
19720         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19721         it in the array since it was created with g_slist_prepend().
19722
19723 2002-03-24  Martin Baulig  <martin@gnome.org>
19724
19725         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19726         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19727         (mono_debug_method_from_token): Renamed to
19728         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19729         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19730
19731         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19732         relocation types.
19733
19734         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19735
19736 2002-03-24  Martin Baulig  <martin@gnome.org>
19737
19738         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19739         (mono_debug_method_from_token): New func.
19740
19741         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19742         New interncall, calls mono_debug_local_type_from_signature().
19743         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19744         calls mono_debug_method_from_token().
19745
19746 2002-03-23  Martin Baulig  <martin@gnome.org>
19747
19748         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19749         specifies the number of bytes to be converted, not the array size.
19750         Return the number of chars, not the number of bytes.
19751         (ves_icall_iconv_get_chars): The `byteCount' argument
19752         specifies the number of bytes to be converted, not the array size.
19753
19754 2002-03-23  Martin Baulig  <martin@gnome.org>
19755
19756         * reflection.h (MonoReflectionSigHelper): New type.
19757
19758         * reflection.c (mono_reflection_sighelper_get_signature_local),
19759         (mono_reflection_sighelper_get_signature_local): New functions.
19760
19761         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19762         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19763         interncalls.
19764
19765 2002-03-23  Martin Baulig  <martin@gnome.org>
19766
19767         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19768         is_writeable is set.
19769         (mono_raw_buffer_update): New function to write the modified map
19770         back to disk.
19771
19772         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19773
19774         * debug-symfile.c (mono_debug_update_symbol_file): Call
19775         mono_raw_buffer_update() when done writing.
19776
19777 2002-03-23  Martin Baulig  <martin@gnome.org>
19778
19779         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19780
19781         * debug-symfile.c: Added support for arguments and local variables.
19782
19783 2002-03-23  Dick Porter  <dick@ximian.com>
19784
19785         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19786         protected by ifdefs, hence breaking the w32 build.
19787
19788 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19789
19790         * object.c: implement is_interned() the right way.
19791
19792 2002-03-21  Martin Baulig  <martin@gnome.org>
19793
19794         * debug-symfile.[ch]: New files to handle debugging information
19795         files. There's also support to dynamically update these symbol
19796         files to include machine dependent information.
19797
19798 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19799
19800         * threads.c (mono_thread_create): new function to create thread
19801         from C
19802
19803 2002-03-20  Martin Baulig  <martin@gnome.org>
19804
19805         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19806         method is a constructor.
19807         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19808         points to ves_icall_InternalInvoke().
19809
19810 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19811
19812         * file-io.c: Flush shouldn't throw exceptions.
19813
19814 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19815
19816         * file-io.c: FileStream flush support; FileSetLength now
19817         restores file pointer.
19818
19819 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19820
19821         * class.c: set image for pointer classes.
19822
19823 2002/03/19  Nick Drochak <ndrochak@gol.com>
19824
19825         * sysmath.c: Forgot one.
19826
19827 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19828
19829         * sysmath.c: Avoid redefining existing names.
19830
19831 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19832
19833         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19834         handled by runtime as icall rather than dllimport from libm.so
19835         * file-io.c, file-io.h: fixed handle argument type.
19836
19837 2002-03-18  Dick Porter  <dick@ximian.com>
19838
19839         * reflection.c (mono_image_get_type_info): rename interface to
19840         iface, because of "#define interface struct" on windows.
19841
19842 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19843
19844         * class.c, class.h: rename and export mono_ptr_class_get().
19845         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19846         * reflection.c, reflection.h, icall.c: better/saner type name
19847         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19848         method signatures.
19849
19850 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19851
19852         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19853
19854         * icall.c (ves_icall_InternalInvoke): impl.
19855
19856 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19857
19858         * reflection.c: output the interface map table, too.
19859
19860 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19861
19862         * class.c (class_compute_field_layout): separate computation of 
19863         static field layout
19864
19865 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19866
19867         * icall.c: added System.Buffer support.
19868         * file-io.c: moved file icalls from PAL to FileStream.
19869
19870 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19871
19872         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19873
19874 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19875
19876         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19877
19878 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19879
19880         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19881
19882 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19883
19884         * debug-helpers.{c,h}: moved here from monograph some useful functions
19885         to locate a method by name/signature in a class or image. Included
19886         also a small and flexible IL disassembler.
19887
19888 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19889
19890         * reflection.c: fixup tokens in methods with small header size, too.
19891
19892 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19893
19894         * object.c (mono_string_to_utf8): remove assert(!error), instead
19895         print a warning. 
19896
19897 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19898
19899         * icall.c: update to the new mono_Array_class_get interface.
19900
19901 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19902
19903         * appdomain.c, object.c: Boehm-GC enable.
19904         * icall.c: make get_data_chunk() support split data requests.
19905         Ensure a class is initialized in more cases. Return only the first
19906         property found in GetProperties() or the compiler gets confused. 
19907         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19908         * reflection.h, reflection.c: add fixup mechanism for field and method
19909         tokens. Initialize assembly->typeref in a single place. Output
19910         properties after events. Support custom attributes for events, too.
19911         Typo fix for paramter custom attrs.
19912
19913 2002-03-07  Martin Baulig  <martin@gnome.org>
19914
19915         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19916
19917 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19918
19919         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19920
19921 2002-03-06  Martin Baulig  <martin@gnome.org>
19922
19923         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19924         non-zero lower bounds. See testcases #F10-#F13.
19925
19926 2002-03-05  Martin Baulig  <martin@gnome.org>
19927
19928         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19929
19930         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19931         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19932         here.
19933         (ves_icall_System_Array_SetValue): Likewise.
19934         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19935         as argument and does the actual work. This function is used when copying a
19936         multi-dimensional array.
19937         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19938         now do all the widening conversions of value types.
19939         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19940
19941 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19942
19943         * class.c: remove some magic numbers and use the smbolic names,
19944         instead. Added init_events() to load event info at class init time.
19945         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19946         and mono_metadata_methods_from_event().
19947         * reflection.h, reflection.c: added support for writing out the evnets
19948         related information.
19949
19950 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19951
19952         * reflection.h, icall.c: use a different method (GetInterfaces)
19953         to gather interface info and add isbyref, isprimitive and
19954         ispointer to the ves_icall_get_type_info() return value.
19955
19956 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19957
19958         * class.h: stared adding support for events.
19959         * icall.c: split find_members implementation. Added debug icall to get
19960         the address of an object.
19961         * reflection.c: handle TypeBuilders in mono_type_get_object().
19962
19963 2002-03-01  Martin Baulig  <martin@gnome.org>
19964
19965         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19966         ArgumentOutOfRangeException(), not an ArgumentException().
19967         (ves_icall_System_Array_GetLowerBound): Likewise.
19968         (ves_icall_System_Array_GetValue): Improved argument checking.
19969         (ves_icall_System_Array_SetValue): Improved argument checking.
19970
19971 2002-03-01  Martin Baulig  <martin@gnome.org>
19972
19973         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19974         called with invalid arguments rather than just dying with g_assert().
19975         (ves_icall_System_Array_SetValue): Likewise.
19976         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19977         raise a NotImplementedException instead.
19978         (ves_icall_System_Array_GetLength): Added argument checking.
19979         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19980
19981 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19982
19983         * object.h (mono_assert): new macros mono_assert and
19984         mono_assert_not_reached
19985
19986 2002-02-28  Martin Baulig  <martin@gnome.org>
19987
19988         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19989         and "System::String::IsInterned" to "System::String::_IsInterned".
19990
19991 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19992
19993         * icall.c: remove hacks for typebuilder. Added icall to create a
19994         modified type from a tybebuilder.
19995         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19996         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19997         to create a backing MonoClass for a TypeBuilder.
19998
19999 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20000
20001         * class.c, class.h: more refactoring of class init.
20002         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20003
20004 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20005
20006         * marshal.c, marshal.h: start of marshaling interface.
20007
20008 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20009
20010         * icall.c: fix order in assembly qualified name icall.
20011
20012 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20013
20014         * class.c: do not free str, since we store it in the hash table.
20015         * reflection.h: add label field to MonoILExceptionInfo.
20016         * reflection.c: handle references to more than one assembly. Handle
20017         case when there isn't a module created in the assembly.
20018
20019 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20020
20021         * class.c: Fix typo. Start refactoring of class init code.
20022
20023 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20024
20025         * appdomain.c: exit with 1 on error.
20026         * class.c: we already have the name in MonoClassField.
20027         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20028         MonoStreamHeader instead of an offset of image->raw_metadata.
20029
20030 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20031
20032         * appdomain.c (mono_init): Be even more descriptive about the error.
20033
20034 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20035
20036         * appdomain.c: give the user an informative message when corlib can't
20037         be loaded.
20038
20039 2002-02-26  Martin Baulig  <martin@gnome.org>
20040
20041         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20042         New icall to get the time zone data.
20043
20044 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20045
20046         * reflection.c: set virtual and raw size of section correctly.
20047         * threads.c: transfer domain information to newly created threads.
20048
20049 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20050
20051         * class.c: when instancing a class in a domain, load the default
20052         vaules for static fields from the constant table. Fix System.Enum to
20053         not be an enum.
20054         * icall.c: implement Object::GetType() internalcall. Implemented
20055         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20056         Fixed checking of binding flags in find_members().
20057         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20058         * reflection.c: handle enumerations when writing to the constant
20059         table. Use a different object cache for types.
20060
20061
20062 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20063
20064         * object.c (mono_object_isinst): fix for arrays
20065
20066         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20067
20068 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20069
20070         * object.c: don't use mprotect ()  and fix intern pool hash table
20071         lookup for big endian systems.
20072
20073 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20074
20075         * icall.c: change type_is_subtype_of () signature.
20076
20077 2002-02-21  Mark Crichton  <crichton@gimp.org>
20078
20079         * rand.c, rand.h: Added random number generator for
20080         System.Security.Cryptography classes.
20081
20082         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20083
20084         * icall.c: Added System.Security.Cryptography calls.
20085
20086 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20087
20088         * class.c, icall.c, metadata.c: better support for pointer types.
20089         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20090         * reflection.c: Add support for getting custom attrs for properties
20091         and simplify some code.
20092
20093 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20094
20095         * icall.c: change getToken () and add custom attribute GetBlob()helper
20096         method.
20097         * reflection.h: add custom attrs array to the reflection builder structures.
20098         * reflection.c: encode and emit custom attributes for all the relevant
20099         reflection objects. Cache fieldref and methodref tokens. Change
20100         mono_image_create_token() interface to take a MonoDynamicAssembly.
20101         More complete custom attributes decoder. Load custom attributes for
20102         Assembly, Field, Method and Constructor objects, too. Make the
20103         returned array an Attribute[] one, not object[]. Added
20104         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20105         custom attribute constructor.
20106
20107 2002-02-20  Dick Porter  <dick@ximian.com>
20108
20109         * icall.c:
20110         * rawbuffer.c:
20111         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20112         problem code out for now).
20113
20114 2002-02-19  Radek Doulik  <rodo@ximian.com>
20115
20116         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20117
20118 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20119
20120         * icall.c: register the GetCustomAttributes method.
20121         * object.c, object.h: add mono_string_new_len ().
20122         * reflection.h, reflection.c: added mono_runtime_invoke(),
20123         mono_install_runtime_invoke(). Added
20124         mono_reflection_get_custom_attrs () to load custom attributes and
20125         create the attribute objects.
20126
20127 2002-02-19  Dick Porter  <dick@ximian.com>
20128         * threads-dummy-types.c:
20129         * threads-dummy-types.h:
20130         * threads-dummy.c:
20131         * threads-dummy.h:
20132         * threads-pthread-types.c:
20133         * threads-pthread-types.h:
20134         * threads-pthread.c:
20135         * threads-pthread.h:  Deleted obsolete files
20136
20137 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20138
20139         * class.c (mono_class_vtable): runtime init the class when we
20140         allocate static class data.
20141
20142         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20143
20144         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20145         and String - but we will need generic marshalling support in the
20146         future. 
20147         (mono_init): set the domain name in a ms compatible way
20148
20149         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20150         String[].
20151
20152 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20153
20154         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20155         for sizes
20156
20157         * appdomain.c (mono_domain_unload): impl.
20158
20159 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20160
20161         * appdomain.c, object.c: fix intern pool implementation.
20162         * class.c: fix alignment code.
20163
20164 2002-02-16  Radek Doulik  <rodo@ximian.com>
20165
20166         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20167         and s2 > s1, just copy lower bytes to be compatible with little
20168         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20169         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20170
20171         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20172         force big_endian to be 1 for big endian machines 
20173         (ves_icall_iconv_new_decoder): ditto
20174
20175 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20176
20177         * socket-io.c (convert_sockopt_level_and_name): If the system
20178         doesn't define SOL_IP or SOL_TCP, get them by hand using
20179         getprotobyname() and caching the values (because this could be a
20180         slow operation).
20181         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20182         Use the appropriate struct when the system does support it. Ie,
20183         not all systems have struct ip_mreqn so use struct ip_mreq when
20184         appropriate.
20185
20186 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20187
20188         * reflection.c: handle finally clauses.
20189
20190 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20191
20192         * socket-io.c: use g_snprintf() instead of snprintf.
20193
20194 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20195
20196         * reflection.c (mono_param_get_objects): Cast second argument to
20197         mono_method_get_param_names to a const char** to silence the
20198         compiler warning.
20199
20200         * appdomain.c (mono_domain_assembly_open): Put parens around the
20201         truth statement in the for-loop.
20202
20203         * unicode.c (iconv_convert): Got rid of a compiler warning about
20204         int i being unused when the system has a new iconv.
20205         (iconv_get_length): Same.
20206
20207         * image.c (load_class_names): Cast the second argument to
20208         g_hash_table_insert() to char* to hush compiler warnings about the
20209         arg being a const.
20210         (mono_image_open): Same here.
20211
20212         * socket-io.c: Don't conditionally include sys/filio.h or
20213         sys/sockio.h here anymore since we now get them from
20214         io-layer/io-layer.h
20215         (inet_pton): If the system doesn't support inet_aton, implement
20216         using inet_addr and also #define INADDR_NONE if it isn't defined
20217         by the system.
20218
20219 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20220
20221         * metadata.c, metadata.h: added function to get packing and size info
20222         of a typedef.
20223         * reflection.h, reflection.c: handle field RVA data. Save info about
20224         the table layout if needed. Assign typedef indexes to all the types
20225         before dumping the info about them to avoid forward reference problems.
20226
20227 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20228
20229         * socket-io.c (convert_sockopt_level_and_name): ifdef
20230         SO_ACCEPTCONN because it is not defined on my system (old debian)
20231
20232 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20233
20234         * opcode.c: use stddef.h to get NULL.
20235
20236 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20237
20238         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20239         for FIONBIO, FIONREAD and SIOCATMARK.
20240         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20241         define INADDR_NONE and besides, inet_addr() is deprecated and
20242         should not be used. Use inet_pton() instead - it also has the
20243         added bonus that it can easily handle IPv6 addresses as well.
20244         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20245
20246 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20247
20248         * decimal.c: remove _MSC_VER conditional.
20249
20250 2002-02-13  Dick Porter  <dick@ximian.com>
20251
20252         * socket-io.c: 
20253         * icall.c: Internal calls for Blocking, Select, Shutdown,
20254         GetSocketOption and SetSocketOption
20255
20256 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20257
20258         * assembly.cs: better resolver: use it instead of some kludgy
20259         code.
20260
20261 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20262
20263         * reflection.c: the best way to speed-up the compiler is to avoid
20264         infinite loops.
20265
20266 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20267
20268         * class.c (mono_class_vtable): changed the object layout
20269         (obj->vtable->class). 
20270         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20271
20272 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20273
20274         * assembly.c: look for assemblies in the assembly dir, too.
20275
20276 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20277
20278         * class.c: fix thinko in mono_class_from_type().
20279
20280 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20281
20282         * exception.h, exception.c: added TypeLoadException.
20283         * object.h, object.c: added mono_array_clone ().
20284         * icall.c: handle throwOnError in AssemblyGetType().
20285         Added Array.Clone().
20286         * opcode.h, opcode.c: use a single value for the opcode val.
20287         Compile fix for non-gcc compilers.
20288
20289 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20290
20291         * opcodes.c, opcodes.h: export interesting info about opcodes.
20292
20293 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20294
20295         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20296         icalls. 
20297
20298         * class.c (class_compute_field_layout): set element_class for enums
20299         (mono_class_create_from_typedef): set element_class for normal classes
20300
20301         * icall.c (ves_icall_System_Enum_get_value): impl.
20302
20303         * class.c (mono_class_create_from_typedef): do not set valuetype
20304         flag for System.ValueType and System.Enum
20305
20306 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20307
20308         * unicode.c (iconv_convert): fix big endian problem.
20309
20310 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20311
20312         * class.c: add asserts if we are ever going to scribble over memory.
20313         * socket-io.c: not all systems have AF_IRDA defined.
20314
20315 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20316
20317         * class.c (class_compute_field_layout): do not consider static
20318         fields to compute alignment
20319
20320 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20321
20322         * appdomain.c (mono_appdomain_get): impl.
20323         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20324
20325 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20326
20327         * icall.c: ignore "file://" prefix when loading an assembly.
20328
20329 2002-01-23  Dick Porter  <dick@ximian.com>
20330
20331         * socket-io.c:
20332         * icall.c:
20333         * Makefile.am: Added socket support
20334
20335 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20336
20337         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20338         code back.  This should return the assemblies that are loaded by
20339         the runtime on behalf of an application domain. 
20340
20341         The current implementation is still broken, it just returns every
20342         assembly loaded, but until we get real applications domain this
20343         will do.
20344
20345 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20346
20347         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20348         AppDomain object.
20349
20350 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20351
20352         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20353         the mono_class_from_name lookup.
20354         (ves_icall_get_parameter_info): ditto.
20355         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20356         method.
20357         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20358
20359 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20360
20361         * class.c: load also nested classes on class init.
20362         System.ValueType instance methods gets passed boxed
20363         values, unless methods in derived classed that get a pointer to the
20364         data.
20365         * icall.c: use better name parsing code in GetType().
20366         * image.c, image.h: add mono_image_loaded ().
20367         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20368         * reflection.c, reflection.h: added mono_reflection_parse_type().
20369
20370 2002-01-22  Veronica De Santis <veron78@interfree.it>
20371
20372         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20373         * threads.c : Added the implementation of internal calls for events
20374         * threads.h : Added prototypes of internal calls for events
20375         
20376 2002-01-21  Radek Doulik  <rodo@ximian.com>
20377
20378         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20379
20380 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20381
20382         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20383         (mono_class_value_size): use min_align
20384
20385 2002-01-20  Dick Porter  <dick@ximian.com>
20386
20387         * threads.h:
20388         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20389         so it compiles on w32.
20390
20391 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20392
20393         * metadata.c (mono_type_stack_size): impl.
20394
20395         * class.c (mono_class_get_field): impl. memberref token
20396
20397 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20398
20399         * icall.h : Added the internal calls mapping for CreateMutex_internal
20400                     and ReleaseMutex_internal.
20401         * threads.h : Added the prototype of mutexes internal calls.
20402         * threads.c : Added the implementations of mutexes internal calls.
20403
20404 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20405
20406         * metaparse.h: removed unused file.
20407         * reflection.c, reflection.h: added stream_data_align () function 
20408         to align data in streams and keep stream aligned. Add support for
20409         exception support in method headers.
20410
20411 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
20412
20413         * unicode.c: make iconv_convert () return the number of bytess written
20414         in the output buffer.
20415
20416 2002-01-15  Dick Porter  <dick@ximian.com>
20417         * threads.c: Make the runtime's idea of infinite timeouts coincide
20418         with the class library's
20419
20420         Fix a particularly egregious bug in mono_thread_cleanup(). That
20421         code was so utterly bogus it must have been written on a Monday.
20422
20423 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20424
20425         * reflection.h: add subtypes field to TypeBuilder.
20426         * reflection.c: encode constants for literal fields.
20427         Handle subtypes. Fix user string token (and add a zero byte)
20428         at the end.
20429         
20430 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
20431
20432         * class.c (mono_class_init): bug fix: assign slot numbers for
20433         abstract methods.
20434
20435 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20436
20437         * reflection.c: don't try to output a code RVA for abstract methods.
20438         Small fixes for method header format. Output parameter info to the
20439         ParamDef table. Save method overriding info to MethodImpl table.
20440         Fix property support. Allow typedef.extends to be a type in the
20441         building assembly.
20442         * verify.c: fix off-by-one error.
20443
20444 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
20445
20446         * class.c: fix mono_class_from_mono_type () for szarray types.
20447         Remove unused cache check in mono_class_from_type_spec().
20448         * icall.c: *type_from_name () functions handle simple arrays and byref.
20449         * reflection.c: handle byref and szarray types. Handle methods without
20450         body (gets P/Invoke compilation working). Handle types and fields in
20451         get_token ().
20452         * reflection.h: add rank to MonoTypeInfo.
20453
20454 2002-01-10  Dick Porter  <dick@ximian.com>
20455
20456         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
20457         internal calls
20458
20459 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20460
20461         * icall.c: initialize class in type_from_handle ().
20462         Loop also in parent classes for get_method ().
20463         * reflection.c: properly encode class and valuetype types.
20464         Start on encoding TypeBuilder types. Handle fieldrefs.
20465         Use correct length when registering a user string.
20466         Handle ConstructorBuilder and MonoMethod in get_token ().
20467         Make mono_type_get_object () aware of cached types.
20468         * object.c: back out change to mono_string_new ().
20469
20470 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
20471         * object.c: mono_string_new should return a NULL when the string 
20472         passed in is NULL -- not try to deference it.
20473         
20474 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20475
20476         * icall.c: hack to make IsSubType work for TypeBuilders.
20477         * reflection.c: emit constructors before methods.
20478         Retrieve param names in mono_param_get_objects().
20479
20480 2002/01/05  Nick Drochak  <ndrochak@gol.com>
20481
20482         * Makefile.am: fix list of headers and sources so automake 1.5
20483         doesn't complain. Removed \# at end of list.
20484
20485 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20486
20487         * reflection.c: get token for a method ref. Set return type of
20488         constructor to void.
20489         * loader.c: debug message.
20490         * class.c: typo fix.
20491
20492 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
20493
20494         * icall.c: fix array init with rank > 1. FindMembers
20495         loops in parent class as well.
20496         * image.c: do not insert nested types in name cache.
20497         * reflection.c: warning fix.
20498         * reflection.h: add override method (for interface impl).
20499
20500 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
20501
20502         * metadata.c: fix customattr decoding.
20503
20504 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
20505
20506         * rawbuffer.cs: Added native Win32 implementation, avoids using
20507         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
20508
20509 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
20510
20511         * class.c: make the low-level routines handle the cache.
20512
20513 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
20514
20515         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
20516
20517 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
20518
20519         * class.c: fix mono_array_element_size() for objects.
20520         * class.h, class.c: add properties to MonoClass and load them
20521         at init time.
20522         * icall.c: check with isinst() when assigning a value to an array
20523         instead of requiring the classes to match exactly.
20524         Implemented icall for System.Type::GetType().
20525         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
20526         enums. Handle bindingflags when looking for methods and fields.
20527         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
20528         and mono_metadata_methods_from_property().
20529         * reflection.h, reflection.c: added structures for propreties,
20530         parameters and enums. Implemented mono_property_get_object() and
20531         mono_param_get_objects().
20532
20533 2001-12-18  Dick Porter  <dick@ximian.com>
20534
20535         * file-io.c: Use mono_string_to_utf16() instead of
20536         mono_string_chars()
20537
20538         * object.c: Added mono_string_to_utf16(), which copies the non
20539         NULL-terminated MonoString into a new double-null-terminated
20540         buffer.
20541
20542 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
20543
20544         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20545
20546 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20547
20548         * file-io.c: raise exceptions if handle is invalid.
20549
20550 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20551
20552         * assembly.c: yet another check for mscorlib.
20553         * class.c, class.h: load nesting info for classes.
20554         * icall.c: many new functions to support the Reflection classes.
20555         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20556         * reflection.h, reflection.c: mono_image_create_token(),
20557         mono_assembly_get_object(), mono_type_get_object(),
20558         mono_method_get_object(), mono_field_get_object(): methods to return
20559         objects that parallel the C representation of assemblies, types,
20560         methods, fields.
20561
20562 2001-12-11  Dick Porter  <dick@ximian.com>
20563
20564         * icall.c:
20565         * file-io.c: Internal calls for file IO.
20566
20567 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20568
20569         * tabledefs.h: missing FileAttributes.
20570         * verify.h, verify.c: use is_valid_string () to simplify and check for
20571         valid strings more correctly. Fix warnings and speeling.
20572         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20573         Check code: branches, maxstack, method calls.
20574
20575 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20576
20577         * object.c (mono_object_allocate): removed static, so that the jit
20578         can allocate value types.
20579
20580         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20581
20582 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20583
20584         * class.c: init enum types right away and register the
20585         token->MonoClass map in mono_class_create_from_typedef ().
20586         * verify.h, verify.c: first cut of the verifier.
20587         * pedump.c: add --verify switch to verify metadata tables.
20588         * tabledefs.h: add some missing enums.
20589
20590 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20591
20592         * class.c (mono_install_runtime_class_init): impl.
20593         (mono_class_init): renamed mono_class_metadata_init to
20594         mono_class_init, also removed the metadata_inited flag
20595
20596         * object.c (mono_object_isinst): use faster algorithm
20597
20598 2001-11-30  Radek Doulik  <rodo@ximian.com>
20599
20600         * mono-endian.h: reverted last change
20601         added function prototypes
20602
20603         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20604         add mono-endian.c back
20605
20606         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20607         for unaligned access, I've mistaked it with endianess. I am
20608         sorry.
20609         (mono_read16): fix reverted endianess
20610         (mono_read64): ditto
20611         (mono_read32): ditto
20612
20613 2001-11-30  Dick Porter  <dick@ximian.com>
20614
20615         * exception.c: Implement mono_exception_from_name()
20616
20617 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20618
20619         * metadata.h, metadata.c: remove params_size and locals_size and their
20620         calculation from the metadata code: they are only usefult to the
20621         interp.
20622
20623 2001-11-29  Radek Doulik  <rodo@ximian.com>
20624
20625         * object.c (mono_ldstr): swap bytes here, it's probably not the
20626         best place, but works for me now, I'll redo it once I know mono
20627         better, also note that I add PROT_WRITE and don't reset back, also
20628         note that it's only affects big endians, so x86 should be OK
20629
20630         * mono-endian.h (read16): use just glib macros for both endians
20631
20632         * mono-endian.c: removed as glib macros are used in in
20633         mono-endian.h so we don't need to care about endianess for read
20634         macros as glib does that for us already
20635
20636 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20637
20638         * class.h, class.h: take minimum alignment into consideration so
20639         that the fields of a class remain aligned also when in an array.
20640
20641 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20642
20643         * loader.h, loader.c: add mono_method_get_param_names().
20644         * class.c: 0-init class fields.
20645
20646 2001-11-26  Dick Porter  <dick@ximian.com>
20647
20648         * icall.c:
20649         * threads-types.h:
20650         * threads.c: New file that handles System.Threading on all platforms
20651
20652         * object.c: 
20653         * object.h: Remove the synchronisation struct from MonoObject,
20654         replace it with a pointer that gets initialised on demand
20655
20656         * Makefile.am: Replace all the system-specific threading code with
20657         a single file that uses the new wrapper library
20658
20659 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20660
20661         * class.c, class.h: add mono_install_trampoline() so that the runtime
20662         can register a function to create a trampoline: removes the ugly
20663         requirement that a runtime needed to export arch_create_jit_trampoline.
20664         * object.h, object.c: added mono_install_handler() so that the runtime
20665         can install an handler for exceptions generated in C code (with
20666         mono_raise_exception()). Added C struct for System.Delegate.
20667         * pedump.c: removed arch_create_jit_trampoline.
20668         * reflection.c: some cleanups to allow registering user strings and
20669         later getting a token for methodrefs and fieldrefs before the assembly
20670         is built.
20671         * row-indexes.h: updates and fixes from the new ECMA specs.
20672
20673 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20674
20675         * class.h, class.c: add enum_basetype field to MonoClass.
20676         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20677         to get index in the constant table reated to a field, param or
20678         property.
20679         * reflection.h, reflection.c: handle constructors. Set public-key and
20680         version number of the built assembly to 0.
20681         * row-indexes.h: update from new ECMA spec.
20682
20683 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20684
20685         * class.h, class.c: add a max_interface_id to MonoClass.
20686         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20687         since it's used to do that. Added mono_type_type_from_obj().
20688         Make GetType() return NULL instead of segfaulting if the type was not
20689         found. Handle simple arrays in assQualifiedName.
20690         * object.h: add a struct to represent an Exception.
20691         * reflection.c: output call convention in method signature.
20692         Add code to support P/Invoke methods and fixed offsets for fields.
20693
20694 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20695
20696         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20697         the value.
20698         * icall.c: use mono_array_addr instead of array->vector: fixes the
20699         reflection image writing.
20700         * reflection.c: init call convention byte to 0 in method signature.
20701         Encode the property signature. Don't output property-related methods
20702         twice. Really process the properties for a type (don't cast a field to
20703         a property, my mom always told me that).
20704         Fix 64 bit issues in pointer alignment in a different and more
20705         readable way.
20706
20707 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20708
20709         * loader.h: Removed type class from MonoDefaults, added monotype
20710
20711         * loader.c: Loaded MonoType, removed loading of Type
20712
20713         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20714         and fills in System.Type._impl with a RuntimeTypeHandle rather
20715         than the actual MonoClass *
20716
20717         (ves_icall_type_from_handle): change from type_class to
20718         monotype_class
20719
20720         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20721         implemented
20722
20723         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20724         implemented
20725
20726         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20727
20728         (ves_icall_System_Reflection_Assembly_GetType): implemented
20729
20730         (ves_icall_System_MonoType_assQualifiedName): implemented
20731
20732         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20733
20734 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20735
20736         * assembly.c (mono_assembly_open): Implement a cache for the
20737         assemblies. 
20738
20739         (mono_assembly_close): only destroy the assembly when the last
20740         reference is gone.
20741         
20742 2001-11-09  Dick Porter  <dick@ximian.com>
20743
20744         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20745
20746 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20747
20748         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20749
20750 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20751
20752         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20753         from Martin Weindel.
20754         * object.h: add mono_string_chars ().
20755
20756 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20757
20758         * reflection.c (build_compressed_metadata): Eliminates warnings
20759         and uses 64-bit clean code.
20760
20761         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20762         (mono_type_equal): Change signature to eliminate warnings.
20763
20764 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20765
20766         * icall.c, loader.c: remove the internalcall array constructors.
20767         Changes to match the new MonoArray structure.
20768         * object.h, object.c: an array object doesn't allocate an extra
20769         vector. Add mono_array_new_full () to create jagged arrays easily.
20770
20771 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20772
20773         * metadata.h, metadata.c: add mono_metadata_field_info () to
20774         retreive all the info about a field from vairous tables.
20775         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20776         * class.h, class.c: augment MonoClassField with more info.
20777         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20778         policy and load a field's RVA if needed.
20779
20780 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20781
20782         * class.c (mono_class_metadata_init): create a trampoline for all
20783         virtual functions instead of actually compiling them.
20784
20785 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20786
20787         * class.h, class.c: include name in MonoClassField.
20788         * class.c: fix fundamental type of System.Object and System.String.
20789         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20790         tokens in ldtoken.
20791         * icall.c: remove internalcalls for the Reflection stuff that is now
20792         done in C# code.
20793         * loader.c: mono_field_from_memberref () implementation.
20794         * mono-endian.c: thinko (s/struct/union/g).
20795         * object.c, object.h: make the mono_string_* prototypes actually use
20796         MonoString instead of MonoObject.
20797         * reflection.c, reflection.h: updates for changes in the reflection
20798         code in corlib: we use C structures that map to the actual C# classes.
20799         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20800         fat method header if needed and use the info from the ILGenerator for
20801         methods. Handle fields in types. Misc fixes.
20802
20803 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20804
20805         * class.c (mono_class_metadata_init): bug fix: always allocate
20806         space for static class data
20807
20808 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20809
20810         * class.c (mono_compute_relative_numbering): use relative
20811         numbering to support fast runtime type checks.
20812
20813 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20814
20815         * class.c (mono_class_create_from_typeref): added debugging output
20816         to print class name when MonoDummy is returned instead of real class
20817
20818 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20819
20820         * class.c (mono_class_metadata_init): interface offset table now
20821         contains pointers into the vtable - this is more efficient for the jit
20822
20823 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20824
20825         * class.c (mono_class_metadata_init): use a temporary vtable (the
20826         old algorithm only worked for the interpreter, but not for the jit)
20827
20828 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20829
20830         * loader.c (method_from_memberref): use mono_class_get to get the
20831         class of an array instead of using System.Array directly.
20832         (mono_get_method): also add MEMBERREF methods to the method cache
20833         which usefull for arrays.
20834
20835 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20836
20837         * pedump.c (arch_compile_method): added to compute vtable entry
20838
20839         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20840         number of interfaces.
20841         
20842         * class.h: merged MonoArrayClass into MonoClass
20843
20844         * class.c (mono_class_create_from_typedef): compute the vtable size and
20845         allocate space to include the vtable inside MonoClass
20846         (mono_class_metadata_init): initialize the vtable
20847
20848 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20849
20850         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20851         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20852         * image.c: endian fixes by Laurent Rioux.
20853         * object.h, object.c: rename MonoStringObject to MonoString and
20854         MonoArrayObject to MonoArray. Change some function names to conform to
20855         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20856         guint16* as first argument, so don't use char*.
20857         Provide macros to do the interesting things on arrays in a portable way.
20858         * threads-pthread.c: updates for the API changes and #include <sched.h>
20859         (required for sched_yield()).
20860         * icall.c: updates for the API changes above.
20861         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20862         platforms that need them.
20863
20864 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20865
20866         * class.c: set the correct type for all the fundamental
20867         type when loading the class.
20868
20869 2001-10-05  Dick Porter  <dick@ximian.com>
20870
20871         * threads-pthread.c (pthread_mutex_timedlock): Simple
20872         compatibility version for C libraries that lack this call.
20873
20874 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20875
20876         * class.c: MonoTypes stored in MonoClass are stored as
20877         fundamental MonoTypes when the class represents a
20878         fundamental type (System.Int32, ...).
20879         The TypeHandle return by ldtoken is a MonoType*.
20880         * icall.c: ves_icall_get_data_chunk () write out all the
20881         PE/COFF stuff. Implement ves_icall_define_method (),
20882         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20883         * image.c: properly skip unknown streams.
20884         * loader.h, loader.c: add type_class to mono_defaults.
20885         * metadata.c, metadata.h: export compute_size () as
20886         mono_metadata_compute_size () with a better interface.
20887         Typo and C&P fixes.
20888         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20889         * reflection.c, reflection.h: many cleanups, fixes, output method
20890         signatures and headers, typedef and typeref info, compress the metadata
20891         tables, output all the heap streams, cli header etc.
20892         * row-indexes.h: typo fixes.
20893
20894 2001-10-04  Dick Porter  <dick@ximian.com>
20895
20896         * object.h: Add a synchronisation mutex struct to MonoObject
20897
20898         * object.c (mono_new_object): Initialise the object
20899         synchronisation mutexes
20900
20901         * icall.c: System.Threading.Monitor internal calls
20902         
20903         * threads-pthread.h:
20904         * threads-pthread.c: System.Threading.Monitor internal calls
20905
20906         * threads-types.h: New file, includes the system-specific thread
20907         structures
20908         
20909         * threads-pthread-types.h:
20910         * threads-pthread-types.c: New files, handle pthread-specific
20911         synchronisation types
20912
20913         * threads-dummy-types.h: 
20914         * threads-dummy-types.c: New files of dummy support for
20915         thread-specific types
20916
20917         * metadata.c:
20918         * image.c:
20919         * pedump.c: include mono-endian.h not endian.h
20920         
20921         * Makefile.am: More threads files.
20922         Name mono-endian.h not endian.h
20923
20924 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20925
20926         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20927         stuff and implement a few more bits.
20928         * icall.c: a field needs to be dereferenced twice. Do not use the same
20929         name for two variables in the same scope.
20930         * image.c, image.h: cleanups.
20931
20932 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20933
20934         * class.c (mono_class_metadata_init): bug fix: compute the right size
20935
20936 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20937
20938         * icall.c: implemented some of the Reflection internalcalls.
20939         * image.c, image.h: start writing out the PE/COFF image.
20940         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20941         that does the reverse than decode_blob_size ().
20942         * object.c: use mono_metadata_encode_value (). Move here
20943         temporary implementation of mono_string_to_utf8 ().
20944         * rawbuffer.c: make malloc_map static.
20945
20946 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20947
20948         * metadata.c: fix type comparison for arrays.
20949         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20950         Added a couple of new classes to monodefaults.
20951         * icall.c: added a couple of Reflection-related internalcalls.
20952         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20953         Added a byval_arg MonoType to MonoClass.
20954
20955 2001-09-28  Dick Porter  <dick@ximian.com>
20956
20957         * icall.c:
20958         * threads-pthread.h: 
20959         * threads-pthread.c: Implemented internal calls for
20960         LocalDataStoreSlot operations.  Applied mutexes around all shared
20961         data.  Reworked the thread creation and Start() operations to
20962         avoid a race condition.
20963         
20964         * threads-dummy.h:
20965         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20966
20967 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20968
20969         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20970
20971 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20972
20973         * class.c, loader.c: warn and return NULL instead of erroring out.
20974         * icall.c: added System.AppDomain::getCurDomain().
20975         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20976
20977 2001-09-25  Dick Porter  <dick@ximian.com>
20978
20979         * threads-pthread.h:
20980         * threads-pthread.c: Implemented timed thread joining and added
20981         System.Threading.Thread::Join_internal internal call
20982
20983         * icall.c: Added System.Threading.Thread::Join_internal internal call
20984
20985         * threads-dummy.h:
20986         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20987
20988 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20989
20990         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20991         mono_string_intern () to implement the semantics of the ldstr opcode
20992         and the interning of System.Strings.
20993         * icall.c: provide hooks to make String::IsIntern and String::Intern
20994         internalcalls.
20995
20996 2001-09-23  Dick Porter  <dick@ximian.com>
20997
20998         * threads-dummy.c: 
20999         * threads-dummy.h: New files of dummy threading routines
21000
21001         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21002         support code based on system specifics
21003
21004         Rename PTHREAD_LIBS to THREAD_LIBS
21005         
21006 2001-09-23  Dick Porter  <dick@ximian.com>
21007
21008         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21009         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21010         internal calls.
21011         (mono_thread_init): Set up a Thread object instance to return when
21012         the main thread calls Thread.CurrentThread
21013         (mono_thread_cleanup): Wait for all subthreads to exit
21014
21015         * icall.c: New internal calls for System.Threading.Thread::Sleep
21016         (including Schedule) and CurrentThread
21017
21018         * threads.h: New file, to insulate thread-specific stuff from the
21019         rest of the code
21020
21021 2001-09-21  Dick Porter  <dick@ximian.com>
21022
21023         * threads-pthread.h: 
21024         * threads-pthread.c: New file, for handling pthreads-style
21025         threading support.  Start() now starts a new thread and executes
21026         the ThreadStart delegate instance.
21027
21028         * icall.c: Added the internalcall for
21029         System.Threading.Thread::Start_internal
21030
21031         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21032
21033 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21034
21035         * loader.c: work around the different signatures for delegates
21036         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21037
21038 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21039
21040         * class.h, class.c: add mono_class_get_field_from_name ().
21041         * *: Fix C comments and other ANSI C issues.
21042
21043 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21044
21045         * endian.h, assembly.c: fix some endianness issues.
21046
21047 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21048
21049         * loader.h, load.c: add delegate_class to mono_defaults.
21050         Handle runtime provided methods in mono_get_method ().
21051
21052 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21053
21054         * loader.c (mono_get_method): use pinvoke for internal call
21055
21056         * icall.c: use pinvoke for internal call
21057
21058         * loader.c (method_from_memberref): set the method name
21059
21060 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21061
21062         * metadata.c: help the compiler generate better code for
21063         mono_class_from_mono_type ().
21064
21065 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21066
21067         * class.c (mono_class_metadata_init): delayed computing of the
21068         class size to mono_class_metadata_init ()
21069
21070 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21071
21072         * class.c, class.h: add an interfaces member to MonoClass.
21073         * image.c, image.h: add assembly_name field to MonoImage
21074         from the assembly table.
21075         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21076
21077 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21078
21079         * class.c: Handle Array in mono_class_from_mono_type ().
21080         * metadata.c, pedump.c: some endian fixes.
21081
21082 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21083
21084         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21085         * metadata.c: fix small problem introduced with the latest commit.
21086
21087 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21088
21089         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21090         We don't need a MonoMetadata pointer anymore to compare signatures in
21091         mono_metadata_signature_equal (), update callers.
21092         Reduced memory usage an number of allocations for MonoMethodHeader and
21093         MonoMethodSignature.
21094
21095 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21096
21097         * metadata.c: added compare for szarray.
21098
21099 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21100
21101         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21102         and add a couple more types to it and mono_defaults. Give an hint on
21103         classes that need implementing in our corlib and are referenced
21104         in mscorlib.
21105
21106 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21107
21108         * class.h, class.c: keep track if a class is also an Enum.
21109         * loader.c: Implement a couple more types for use in libffi
21110         marshalling. Gives better diagnostics when failing to dlopen
21111         a library. Set method->klass for P/Invoke methods, too.
21112
21113 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21114
21115         * class.c, class.h: add a MonoType this_arg to MonoClass that
21116         represents a pointer to an object of the class' type that
21117         can be used by the interpreter and later the type cache.
21118         Add best guess alignment info for valuetype objects.
21119
21120 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21121
21122         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21123         into MonoType: one less level of indirection and allocation and
21124         simplifies quite a bit of code. Added cache for MonoTypes that are
21125         used frequently, so that we don't need to allocate them all the time.
21126
21127 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21128
21129         * class.c (mono_class_create_from_typedef): System.Enum is also a
21130         value type, although it does not derive from System.ValueType
21131         (maybe a bug in the ms compiler?)
21132
21133         * metadata.c (mono_type_size): return the right size for value types
21134
21135         * loader.c (mono_get_method): only initialize method header if not abstract
21136
21137         * class.c (mono_class_from_mono_type): use mono_default values. 
21138
21139 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21140
21141         * *: use MonoClass pointers instead of <type_tokens>
21142         
21143         * class.h: new flag: metadata_inited.
21144
21145         * class.c (mono_class_metadata_init): impl.
21146         (mono_class_instance_size): impl.
21147         (mono_class_data_size): impl.
21148
21149 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21150
21151         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21152         MonoClass now has the name and name_space fields. 
21153         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21154         mono_get_method () takes and optional MonoClass as argument.
21155         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21156         instead that takes advantage of a map from class names to typedef
21157         tokens in MonoImage.
21158
21159 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21160
21161         * metadata.c: zero is not a valid alignment boundary.
21162         Merge MONO_TYPE_VOID in default decoding code.
21163
21164 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21165
21166         * image.h: merged MonoMetadata into MonoImage
21167
21168         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21169         identify the type of elements.
21170
21171 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21172
21173         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21174         * cil-coff.h: split MonoMSDOSHeader and add size info.
21175         * image.c: add some consistency checks.
21176         * metadata.c: fix row size computation: one programmer
21177         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21178         add explanation for the locator routine.
21179         Fix decoding of size in method header.
21180         
21181 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21182
21183         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21184         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21185         function from gnome-libs.  This uses the right path separator
21186         based on the OS, and also works around a bug in some systems where
21187         a double slash is not allowed. 
21188         (default_assembly_name_resolver): Use g_concat_dir_and_file
21189         (mono_assembly_open): ditto.
21190
21191 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21192
21193         * metadata.c (mono_metadata_signature_equal): impl.
21194
21195         * *: void is now a realy MonoType (instead of using NULL)
21196         
21197         * metadata.c (do_mono_metadata_parse_type): use
21198         mono_metadata_parse_type to parse void value.
21199
21200 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21201
21202         * metadata.c, metadata.h: in the signature and method header store
21203         only the space required for holding the loca vars and incoming arguments.
21204
21205 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21206
21207         * metadata.c (do_mono_metadata_parse_type): treat void like any
21208         other type (instead of assigning NULL);
21209
21210 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21211
21212         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21213
21214 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21215
21216         * image.c (do_mono_image_open): added a cache for arrays.
21217
21218 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21219
21220         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21221         decode a single column from a row in a metadata table and changes
21222         to take advantage of it in the typedef locator (gives a nice speed up).
21223         Store offset info for function params.
21224
21225 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21226
21227         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21228
21229 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21230
21231         * assembly.c: how could mono_assembly_close () had ever worked?
21232         * metadata.c, metadata.h: provide offset info for local vars.
21233         Implement mono_type_size () to take care of alignment as well
21234         as size (it was mono_field_type_size in cli/class.c before).
21235
21236 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21237
21238         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21239
21240         * assembly.h (CORLIB_NAME): set to corlib.dll
21241
21242         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21243
21244 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21245
21246         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21247         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21248         tokentype.h: massive namespace cleanup.
21249
21250 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21251
21252         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21253
21254 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21255
21256         * metadata.c (mono_metadata_free_type): added check for type !=
21257         NULL (void) before calling mono_metadata_free_type()
21258
21259 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21260
21261         * metadata.h, row_indexes.h: added header with enumerations to use
21262         to index in the columns from tables in metadata and to decode coded
21263         tokens: we should start using this instead of embedding magic numbers
21264         all over the code.
21265
21266 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21267
21268         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21269         Move metadata_t info from cli_image_info_t to MonoImage, where
21270         it's easily accessible. Changed all the uses accordingly.
21271         Added the method and class caches to MonoImage.
21272         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21273         and mono_metadata_decode_value () signature to be more consistent
21274         with the other parse functions (and simplify code). Taken advantage
21275         of zero-length array allocation with GCC. Removed reduntant (and
21276         wrong) MonoFieldType struct and use MonoParam instead. Changed
21277         mono_metadata_parse_field_type () to use common code for parsing.
21278         Added mono_metadata_typedef_from_field () and
21279         mono_metadata_typedef_from_method () to lookup a typedef index from a
21280         field or method token.
21281         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21282
21283 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21284
21285         * metadata.c (mono_metadata_parse_field_type): Implement. 
21286         (do_mono_metadata_parse_type): Split engine from
21287         mono_metadata_parse_type, so that we can create smaller structures
21288         for things that just have one pointer to the MonoType (look at
21289         the MonoFieldType)
21290
21291 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21292
21293         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21294         as Jan Gray found out, it is incorrect. 
21295
21296 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21297
21298         * assembly.c: Implement asssembly loading.  This loads an image
21299         and loads all the referenced assemblies.  Come to think of it, we
21300         could always do lazy loading of the assemblies. 
21301
21302         * image.c (mono_image_open): Keep loaded images in a hashtable.
21303
21304         * image.h (MonoImage): Add reference count.
21305
21306 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21307
21308         * assembly.c (mono_assembly_open): Keep track of the file name in
21309         case the assembly has no ASSEMBLY table.
21310
21311         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21312         from get.c here.
21313
21314 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21315
21316         * metadata.c, metadata.h: decode local vars in method header
21317         parse function. Change callers accordingly.
21318
21319 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21320
21321         * metadata.h, cil-coff.h: protect against multiple inclusion.
21322         Added some new structures to hold information decoded from metadata:
21323         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21324         and relevant decoding/free functions.
21325         * metadata.c: implement decoding functions. Add warning for out of bounds
21326         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21327         all the info about a method signature and invocation. Remove check on
21328         uninitialized local var in parse_mh() and fix memory leak.
21329
21330 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21331
21332         * metadata.h: More macros.
21333
21334         * tokentype.h: New file.
21335
21336 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21337
21338         * assembly.c: added a consistency check and initialize
21339         some structures with g_new0().
21340         * metadata.c: fixed a couple more bugs in table size computation
21341         and add other checks for out-of bound access to metadata.
21342
21343 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21344
21345         * metatada.c: fix bugs computing table sizes. Spew a
21346         warning when index in string heap is out of bounds.
21347
21348 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21349
21350         * metadata.h: Add a couple of macros to manipulate tokens. 
21351
21352 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21353
21354         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21355         cli_section_tables).
21356
21357 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21358
21359         * metadata.c (mono_metadata_user_string): New function, provides
21360         access to the UserString heap. 
21361
21362 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21363
21364         * metadata.c: Add inline documentation.
21365
21366 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21367
21368         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21369         files. 
21370
21371 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21372
21373         * typeattr.h: New file, TypeAttribute flags. 
21374
21375 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21376
21377         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21378         mono_assembly_ensure_section): Section loading code.
21379         (load_section_tables): Load the sections.
21380
21381         * mono/metadata/metadata.c (mono_metadata_locate_token,
21382         mono_metadata_locate): Functions to locate the information
21383         definition given a token or a table and an index.
21384         (mono_metadata_compute_table_bases): New.
21385         (compute_size): New function to compute the sizes of the various
21386         tables.
21387
21388         * mono/metadata/metadata.h: Finish listing the different index
21389         types. 
21390
21391         * mono/metadata/pedump.c: Improve to dump new information.
21392
21393 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21394
21395         * mono/metadata/metadata.c: Entered all the tables matching
21396         Beta2. 
21397
21398         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21399
21400
21401