* reflection.c (mono_class_bind_generic_parameters): Take and
[mono.git] / mono / metadata / ChangeLog
1 2007-06-10  Raja R Harinath  <harinath@gmail.com>
2
3         * reflection.c (mono_class_bind_generic_parameters): Take and
4         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
5         (mono_reflection_bind_generic_parameters): Use
6         'mono_class_bind_generic_parameters' rather than duplicate the code.
7         * class.c (mono_bounded_array_class_get): Update to changes.
8         * object-internals.h: Likewise.
9
10         * reflection.c (mono_class_bind_generic_parameters): Only support
11         parameterizing generic type definitions.  Remove support for other
12         open types.
13
14 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15
16         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
17
18         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
19         in the dynamic case.
20
21 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
22
23         * threads.c: When cleaning up thread, reset the Background bit.
24         Fixes bug #81720.
25
26 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
27
28        * metadata.c: Move variable declarations to top of scope.
29        * verify.c: Move variable declarations to top of scope.
30
31        Code is contributed under MIT/X11 license.
32
33 2007-06-08  Raja R Harinath  <rharinath@novell.com>
34
35         * reflection.c (mono_class_bind_generic_parameters): Replace
36         open-coded loop with mono_metadata_inflate_generic_inst.
37
38         * class.c (get_shared_generic_class): Don't call
39         mono_get_shared_generic_inst.  Use the container's own
40         'class_inst'.
41
42         * metadata.c (mono_metadata_load_generic_params): Move
43         initialization of 'context' field here from ...
44         * class.c (mono_class_create_from_typedef): ... here, and ...
45         * loader.c (mono_get_method_from_token): ... here.
46
47         * class.c (get_shared_generic_class): Rename from
48         mono_get_shared_generic_class and make static.
49         (mono_get_shared_generic_inst): Move to metadata.c.
50         * loader.c (mono_get_shared_generic_method): Likewise.
51         * class-internals.h, metadata-internals.h: Update to changes.
52
53         Fix #81830
54         * class.c (mono_class_from_generic_parameter): Don't assume a
55         generic container owner exists.  Generic containers from monodis
56         don't have any.
57
58 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
59
60         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
61         * verify.h: new typedefs to returns the non-verifiable status
62         * verify.c: initial implementation of generics, stack merging and object compatibility check
63
64 2007-06-06  Mark Probst  <mark.probst@gmail.com>
65
66         * class.c, image.c, class-internals.h (MonoImage): class_cache is
67         a MonoInternalHashTable again (fixed bug in internal hash table
68         code).
69
70 2007-06-06  Mark Probst  <mark.probst@gmail.com>
71
72         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
73         MonoInternalHashTable again (fixed bug in internal hash table
74         code).
75
76 2007-06-06  Mark Probst  <mark.probst@gmail.com>
77
78         * class.c, image.c, class-internals.h, domain.c,
79         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
80         changes.  Have to figure out what makes them break the SWF
81         regression.
82
83 2007-06-04  Mark Probst  <mark.probst@gmail.com>
84
85         * class.c, image.c, class-internals.h (MonoImage): class_cache is
86         a MonoInternalHashTable now.
87
88 2007-06-04  Mark Probst  <mark.probst@gmail.com>
89
90         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
91         MonoInternalHashTable now.
92
93 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
94
95         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
96         invoke_impl code.
97
98         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
99
100         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
101         dependent trampoline.
102
103         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
104
105         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
106
107 2007-05-29  Robert Jordan  <robertj@gmx.net>
108
109         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
110
111 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
112
113         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
114
115 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
116
117        * marshal.c: Fix interface lookup loops for
118        cominterop_get_com_slot_for_method and 
119        cominterop_get_method_interface. Only need to lookup
120        if type is a class, else use interface type method is on.
121
122        Code is contributed under MIT/X11 license.
123
124 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
125
126         * reflection.c: HasSecurity can be present even if no specially 
127         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
128         SecurityAttribute). Fix CAS regression tests on buildbot.
129
130 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
131
132        * appdomain.c: Add configure checks for header files.
133        * image.c: Add configure checks for header files.
134        * file-io.c: Add configure checks for header files.
135        * debug-mono-symfile.c: Add configure checks for header files.
136        * threadpool.c: Add configure checks for header files.
137        * console-io.c: Add configure checks for header files.
138        * profiler.c: Add configure checks for header files.
139        * rawbuffer.c: Add configure checks for header files.
140        * icall.c: Add configure checks for header files.
141        * rand.c: Add configure checks for header files.
142        * socket-io.c: Add configure checks for header files.
143
144        Code is contributed under MIT/X11 license.
145
146 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
147
148         * reflection.c (mono_custom_attrs_from_builders): Remove the 
149         assertion as it breaks the build.
150         
151         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
152
153         * reflection.c (lookup_custom_attr): Make a copy here too.
154
155         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
156         dynamic images.
157
158         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
159         images.
160
161         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
162         info.
163
164 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
165
166         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
167         (load_cattr_value): Ditto.
168
169 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
170
171         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
172
173 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
174
175         * threads.c: In "start_wrapper", set apartment_state to MTA if
176         apartment_state is Unknown and we're running on 2.0 profile or
177         higher.
178         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
179         to main method, then set apartment_state to Unknown on 1.0 profile,
180         and MTA on 2.0 profile.
181
182 2007-05-16  Jb Evain  <jb@nurv.fr>
183
184         * class-internals.h (MonoDefaults): Add an attribute_class and
185           customattribute_data_class.
186         * domain.c (mono_init_internal): Populate them.
187         * reflection.c: Use them to remove duplicates. Make a vew
188         MonoClass variables `static'.
189
190 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
191
192         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
193         step in implementing IMT, so that all isinst checks now can go
194         through the bitmap.
195         This was needed because vtables for TransparentProxy need to look
196         like the vtable of the "target" class, so they need to point to
197         its interface bitmap directly.
198
199         * object.c: inside "mono_class_create_runtime_vtable" and
200         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
201
202 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
203
204         * object-internals.h
205           culture-info.h : added territory field in MonoCulture and
206           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
207         * locales.c : fill territory field above too.
208         * culture-info-table.h : regenerated.
209
210 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
211
212         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
213         Fixes #81599.
214
215 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
216
217         * object.c: Always initialize apartment, even if 
218         there is no custom attributes on entry point.
219         
220         Code is contributed under MIT/X11 license.
221
222 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
223
224         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
225         * metadata.c: If no encoding is set, check for unicode
226         on class.
227         
228         Code is contributed under MIT/X11 license.
229
230 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
231
232         * threads.c: Handle if mono_thread_current returns NULL 
233         
234         Code is contributed under MIT/X11 license.
235
236 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
237
238         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
239         in start_wrapper. Added mono_thread_init_apartment_state and
240         mono_thread_cleanup_apartment_state.
241         * object.c: Initialize thread apartment state on main thread
242         by checking for STAThreadAttribute on entry point.
243         * object-internals.h: Add apartment_state field to MonoThread.
244         * threads-types.h: Add unmanaged definition of 
245         System.Threading.ApartmentState, MonoThreadApartmentState.
246         
247         Code is contributed under MIT/X11 license.
248         
249 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
250
251         * class.c: Fix windows build.
252         * class-internals.h: Fix windows build.
253         
254         Code is contributed under MIT/X11 license.
255
256 2007-05-08  Robert Jordan  <robertj@gmx.net>
257
258         * process.c (CreateProcess_internal):
259         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
260         .CreateNoWindow was specified. Fixes #81496.
261
262 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
263
264         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
265         step in implementing IMT, replaced it with two compact arrays
266         (interfaces_packed and interface_offsets_packed) and a bitmap that
267         is used for isinst checks (interface_bitmap).
268
269         * class.c: (compare_interface_ids): compare function to pass to
270         bsearch when looking for an interface with a given id.
271         (mono_class_interface_offset): reimplemented using bsearch on
272         interfaces_packed, getting the offset from interface_offsets_packed.
273         (print_implemented_interfaces): utility debugging function.
274         (setup_interface_offsets): reworked to initialize interfaces_packed,
275         interface_offsets_packed and interface_bitmap.
276
277         * object.c: replaced all accesses to "MonoClass.interface_offsets"
278         with uses of interfaces_packed and interface_offsets_packed.
279
280 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
281
282         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
283         mono_class_interface_offset prototype to wrap all accesses to
284         "MonoClass.interface_offsets".
285
286         * class.c: Implemented mono_class_interface_offset, and wrapped all
287         accesses to "MonoClass.interface_offsets".
288
289         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
290         "MonoClass.interface_offsets".
291
292 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
293
294         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
295         GetMethodFromHandle overloads (bug #78637).
296
297 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
298
299         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
300         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
301
302 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
303
304         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
305         #81498.
306
307         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
308         gracefully.
309         (mono_custom_attrs_from_index): Ditto.
310
311         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
312         Fixes #81501.
313
314 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
315
316         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
317         is now allocated from a mempool.
318
319 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
320
321         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
322         caller holds threads_lock, leading to deadlocks. Fixes #81476.
323
324 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
325
326         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
327         mono_loader_clear_error () too late. Fixes #81463.
328
329 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
330
331         * culture-info-table.h : regenerated.
332
333 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
334
335         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
336         is missing.
337
338 2007-04-25  Dick Porter  <dick@ximian.com>
339
340         * Makefile.am: Put the mingw enforced-optimisation back into the
341         PLATFORM_WIN32 section.
342
343 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
344
345         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
346         patch.
347
348         * image.c (mono_image_load_module): New API function to load a module reference.
349
350         * image.c (load_modules): Load modules lazily. Fixes #80812.
351
352         * class.c (mono_class_from_typeref): Use mono_image_load_module.
353         
354         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
355
356         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
357         to mono_image_load_module_dynamic.
358
359 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
360
361         * marshal.c: Fix calling convention for CCW on non-windows
362         platforms. STDCALL on windows, CDECL everywhere else to work 
363         with XPCOM and MainWin COM.
364         
365         Code is contributed under MIT/X11 license.
366
367 2007-04-23  Martin Baulig  <martin@ximian.com>
368
369         Fix #80969.
370
371         * loader.c
372         (method_from_memberref): Added `gboolean *used_context' argument.
373         (mono_get_method_from_token): Likewise.
374         (mono_get_method_full): Don't insert the method in the cache when
375         `used_context' is true.
376
377 2007-04-23  Raja R Harinath  <rharinath@novell.com>
378
379         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
380
381         * reflection.c (mono_reflection_bind_generic_parameters): Don't
382         create new MonoTypes for returned types.
383         * class.c (mono_generic_class_get_class): Export mono-internal.
384         * class-internals.h: Update to changes.
385
386 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
387
388         * threadpool.c, threadpool.h, icall-def.h: patch from
389         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
390
391 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
392
393         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
394         
395         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
396
397         * threads.c (mono_thread_get_stack_bounds): New helper function.
398
399         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
400         Correctly compute stack bounds when attaching. Fixes #81394.
401
402 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
403
404         * reflection.c: fix handling of doubles in custom attributes
405         for the arm-fpa format (bug #81368).
406
407 2007-04-18  Raja R Harinath  <rharinath@novell.com>
408
409         * reflection.c (assembly_add_win32_resources): Mildly relax an
410         bounds check to let the end pointer point just past the end of the
411         allocated buffer.  (may fix #81384)
412
413 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
414
415         * culture-info-table.h : regenerated.
416
417 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
418
419         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
420         the thread is aborted early.
421
422 2007-04-05  Dick Porter  <dick@ximian.com>
423
424         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
425         FindFirstFile()/FindNextFile() to find entries.  This lets the
426         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
427         81038.
428
429         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
430         the parameters of
431         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
432
433 2007-04-04  Martin Baulig  <martin@ximian.com>
434
435         * debug-helpers.c
436         (mono_method_desc_full_match): Add support for nested classes.
437
438 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
439
440         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
441
442 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
443
444         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
445         waiting for too many threads.
446
447 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
448
449         * environment.c: Fix return value check on uname so we can get the 
450         executing version on Solaris operating systems.
451
452 2007-03-28  Jb Evain  <jbevain@gmail.com>
453
454         * class.c (mono_type_get_name_recurse): Complete the
455         fix for the creation of assembly qualified names for
456         pointer types. Fixes #81208.
457
458 2007-03-27  Dick Porter  <dick@ximian.com>
459
460         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
461         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
462         changed.
463
464         * threads.c
465         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
466         the value of ReleaseMutex().
467
468 2007-03-27  Dick Porter  <dick@ximian.com>
469
470         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
471         in little-endian order, not network endian, so must be converted
472         to host endian here.  Fixes bug 80593.
473
474 2007-03-22  Jb Evain  <jbevain@gmail.com>
475
476         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
477         qualified names for pointer types. Fixes #81208.
478
479 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
480
481         * marshal.c: Add support for PreserveSigAttribute. 
482         
483         Code is contributed under MIT/X11 license.
484
485 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
486
487         * process.c: Fix endianness issues. Fixes #81126.
488
489         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
490         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
491
492         * image.c (mono_image_lookup_resource): Make this work on big-endian
493         machines.Change API contract so the caller needs to free the return value.
494         
495         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
496         API change.
497         
498 2007-03-14  Martin Baulig  <martin@ximian.com>
499
500         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
501         mono_type_get_desc() as well.
502
503 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
504
505         * icall.c:  Fix environ access in VS.  
506         
507 2007-03-13  Alp Toker  <alp@atoker.com>
508
509         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
510         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
511         #63841.
512
513 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
514
515         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
516         circular references among dynamic methods. Fixes #81091.
517
518         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
519
520 2007-03-09  Martin Baulig  <martin@ximian.com>
521
522         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
523
524 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
525
526         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
527         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
528         
529         Code is contributed under MIT/X11 license.
530         
531 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
532
533         * loader.c: Reapply patch for bug #79424.
534
535 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
536
537         * metadata.c (mono_type_to_unmanaged): Only convert object to
538         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
539
540 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
541
542         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
543         (and incorrectly set) is_reference field from MonoGenericInst.
544
545 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
546
547         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
548         a little earlier.
549
550         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
551
552         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
553
554 2007-03-05  Miguel de Icaza  <miguel@novell.com>
555
556         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
557         FileOptions.1 value to mean "temporary", map that to
558         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
559
560         Fixes 80688
561
562 2007-03-03  Marek Habersack  <mhabersack@novell.com>
563
564         * appdomain.c: implement MS .Net style shadow copying. Copies of
565         the assemblies are made in a subdirectory of the dynamic base
566         directory, the assembly names are preserved.
567         Copy .mdb and .config files along with the assemblies being shadowed.
568
569 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
570
571         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
572         (emit_marshal_handleref): Ditto.
573
574         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
575         on Visual C++. Fixes #80671.
576
577 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
578
579         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
580         for clone operations.
581
582 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
583
584         * marshal.c: Fix warnings.
585
586 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
587
588         * loader.c: allow case-insensitive matching of the dll name
589         in dllmap handling when prefixed with "i:".
590
591 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
592
593         * threads.c: Fix #ifdef for dummy_apc function for VS.
594
595 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
596
597         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
598
599 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
600         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
601         giving precedence to the methods with a fully qualified name
602         (InterfaceName.MethodName) when building the interface sections
603         of the vtable.
604
605 2007-02-16  Dick Porter  <dick@ximian.com>
606
607         * threadpool.c (append_job): Fix fast-path array handling, so it's
608         less likely the array will grow exponentially when the load is
609         heavy.
610
611 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
612
613         * metadata-internals.h, loader.c: fix dllmap lookup order
614         for non-function maps, too, and prepare for fallback code.
615
616 2007-02-12  Robert Jordan  <robertj@gmx.net>
617
618         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
619         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
620         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
621         GlobalFree. Fixes a part of bug #77075.
622
623 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
624
625         * loader.c: implemented typedef parent in field memberref.
626
627 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
628
629         * marshal.c: Fix warnings and remember to call Release on
630         IUnknown of RCW.
631         
632         Code is contributed under MIT/X11 license.
633
634 2007-02-10  Miguel de Icaza  <miguel@novell.com>
635
636         * class-internals.h: Add MonoHandleRef definition, and
637         handleref_class to mono_defaults. 
638
639         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
640         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
641
642         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
643         (do nothing on this stage)
644         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
645         (emit_marshal_handleref): New method, used for argument handling
646         of HandleRefs. 
647
648 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
649
650         * class.c (mono_class_setup_parent): Lazily init com types.
651         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
652         init com types.
653         * object.c (mono_remote_class_vtable): Lazily init com types.
654         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
655         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
656         * domain-internals.h: Expose mono_init_com_types.
657         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
658         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
659         Add support for COM Callable Wrapper marshalling.
660         * marshal.h: Add icall definitions.
661         * gc.c: Handle freeing of CCWs in finalizer code.
662         
663         Code is contributed under MIT/X11 license.
664
665 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
666
667         * reflection.c: changed all the signature encoding code to use
668         a variable-sized buffer.
669
670 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
671
672         * marshal.c: locking fixes: never take the loader lock
673         or other runtime locks when holding the marshal lock
674         (fixes bug#80664).
675
676 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
677
678         * marshal.c: make the delegate function pointer mapping
679         work for the moving GC.
680
681 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
682
683         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
684         for bug #80618.
685
686 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
687
688         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
689         gmodule.
690
691 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
692
693         * threadpool.c: made the code moving-GC safe.
694
695 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
696
697         * assembly.c, boehm-gc.c, class-internals.h, class.c,
698         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
699         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
700         warning cleanup.
701         * reflection.c: warning cleanup, some threading and moving GC fixes.
702
703 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
704
705         * class.c, loader.c: create the needed Set/Get/Address array methods
706         as well as the .ctors in mono_class_init (), fixes bug #80567.
707
708 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
709
710         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
711         we doesn't decrease its alignment. Should fix the sparc build.
712
713 2007-01-24  Dick Porter  <dick@ximian.com>
714
715         * socket-io.c
716         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
717         Create the returned object if we need to ignore an unsupported
718         socket option.  Fixes a segfault reported by Atsushi.
719
720 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
721
722         * class.c, object.c: restrict GC-tracked fields to
723         UIntPtr fields used inside corlib, so we provide better
724         type info to the GC and also allow broken packing as in
725         bug #80580.
726
727 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
728
729         * sgen-gc.c: removed duplicated function.
730
731 2007-01-19  Miguel de Icaza  <miguel@novell.com>
732
733         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
734         value that means that the value is not supported, but that we
735         should not return a failure, but instead report this as a
736         successful operation.
737
738 2007-01-19  Raja R Harinath  <rharinath@novell.com>
739
740         Fix tests/bug79956.2.il
741         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
742         (mono_generic_class_get_class): If the generic definition in an
743         enum, copy over other fields related to it.
744
745 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
746
747         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
748         genericinst enums (bug #79215).
749
750 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
751         * class.c: Fix bug 80307.
752
753 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
754
755         * image.c: if the file table is not present, try to load
756         all the modules, since we don't have info about them
757         having or not metadata (bug #80517).
758         * assembly.c: allow mono_assembly_load_references () to
759         work for netmodules.
760
761 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
762
763         * image.c, metadata-internals.h, object.c: execute module
764         cctors when running on the 2 runtime if present (bug #80487).
765
766 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
767
768         * icall.c: optimized InitializeArray() on bigendian.
769
770 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
771
772         * icall.c: fix for the broken ARM FPA double format.
773
774 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
775
776         * icall.c: handle endian issues for r4 and r8 types, too, in
777         the InitializeArray() icall.
778
779 2007-01-15  Miguel de Icaza  <miguel@novell.com>
780
781         * loader.c (mono_loader_error_prepare_exception): Clear the error
782         once we have extracted the information from it, do this before we
783         call into the JIT's class loading mechanisms.
784
785         * object.c (mono_class_create_runtime_vtable): Do not clear the
786         loader error before calling mono_class_get_exception_for_failure
787         as the loader error is needed inside
788         mono_class_get_exception_for_failure to throw the error (thinko).
789
790         Fixes #80521
791         
792 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
793
794         * reflection.c: align fields rva data so it's faster to load at
795         runtime.
796
797 2007-01-12  Raja R Harinath  <rharinath@novell.com>
798
799         Prepare to simplify GenericMethod handling.
800         * class-internals.h (mono_method_get_context): New accessor function.
801         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
802         rather than directly accessing '->context' field.
803
804         * class-internals.h (_MonoGenericParam.method): Move ...
805         (_MonoGenericContainer): ... here.  Add into union with klass field.
806         * class.c, icall.c, loader.c, metadata.c, reflection.c:
807         Update to changes.
808
809 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
810
811         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
812         the wrapper type enum and reduce relocations.
813
814 2007-01-12  Raja R Harinath  <rharinath@novell.com>
815
816         * reflection.c (inflate_mono_method): Reuse method instantiation
817         from the generic method, if available.
818
819 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
820
821         * marshal.c (emit_marshal_variant): Fix conv_arg
822         type in last commit, based on whether parameter is byref.
823         
824 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
825
826         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
827         marshalling.
828         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
829         MONO_TYPE_OBJECT back for VARIANT support.
830
831 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
832
833         * marshal.c, marshal.h, icall-def.h: Implement 
834         Marshal.ReAllocCoTaskMem.
835
836 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
837
838         * marshal.c: memory retention fixes: use the proper
839         image cache for runtime_invoke method lookups.
840
841 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
842
843         * mempool.c: added code to help debug mempool allocations.
844
845 2007-01-11  Dick Porter  <dick@ximian.com>
846
847         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
848         support (experimenting with faking it with IP_MTU_DISCOVER for
849         systems that don't have IP_DONTFRAGMENT.)
850         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
851         icall.
852
853         * icall-def.h: new System.Net.Sockets.Disconnect icall.
854
855         * socket-io.h: Add new fields to MonoSocketAsyncResult
856         corresponding to the new ones in Socket.cs.
857
858 2007-01-11  Raja R Harinath  <rharinath@novell.com>
859
860         Fix IronPython regression mentioned in #80249
861         * metadata.c (do_mono_metadata_parse_generic_class): Clear
862         'cached_context' field, since it may have been initialized as a
863         side-effect of metadata parsing.
864
865         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
866         (_MonoGenericClass.cached_class): Move here and rename from lone
867         remaining field of ...
868         (_MonoInflatedGenericClass): ... this.  Remove.
869         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
870         to changes.
871
872         Fix mcs/tests/test-128.cs regression.
873         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
874         2007-01-10 change below.
875         [MONO_TYPE_OBJECT]: Recurse into array case.
876
877 2007-01-11  Raja R Harinath  <harinath@gmail.com>
878
879         * class-internals.h (mono_get_inflated_generic_class): Remove.
880         * class.c (mono_get_inflated_generic_class): Remove.
881         (mono_generic_class_get_class): Rename from
882         mono_class_create_generic.
883         (mono_class_from_mono_type) [GENERICINST]: Use it.
884         * reflection.c, metadata.c: Update to changes.  Use
885         'mono_class_from_mono_type'.
886
887 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
888
889         * reflection.c: use passed type when encoding an array element
890         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
891
892 2007-01-09  Robert Jordan  <robertj@gmx.net>
893
894         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
895         result arguments (someDelegate.EndInvoke (unrelatedAres)).
896         Fixes bug #80392.
897
898 2007-01-09  Raja R Harinath  <rharinath@novell.com>
899
900         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
901
902         * object.c (set_value): Avoid aliasing between type->data.klass
903         and type->data.generic_class.
904
905         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
906
907 2007-01-08  Raja R Harinath  <rharinath@novell.com>
908
909         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
910         between type->data.klass and type->data.generic_class.
911
912 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
913
914         * marshal.c: In MS.NET, StringBuilder objects are not copied by
915         value in out parameters.
916
917 2007-01-08  Raja R Harinath  <rharinath@novell.com>
918
919         Simplify invariant for MonoGenericClass::klass field.
920         * class.c (mono_class_create_generic): Verify 'klass' is null.
921         * metadata.c (do_mono_metadata_parse_generic_class): Don't
922         initialize 'klass' field.
923
924 2007-01-05  Raja R Harinath  <rharinath@novell.com>
925
926         Ongoing work to avoid redundant data and simplify invariants.
927         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
928         'generic_class', and change type to a GenericInst.
929         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
930         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
931
932 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
933
934         * class.c : skip io-layer under PLATFORM_WIN32.
935
936 2007-01-03  Tor Lillqvist  <tml@novell.com>
937
938         Fix #80305: In a bundled executable, look in the bundled exe
939         assembly to determine the runtime version. Add the possibility to
940         bundle also the machine.config file.
941         
942         * assembly.c (mono_assembly_open_from_bundle): Make
943         non-static. Allow being called even if we have no bundled
944         assemblies, and return NULL right away in that case.
945
946         * domain-internals.h: Declare mono_assembly_open_from_bundle()
947         here.
948
949         * domain.c (app_config_parse): Take an assembly exe file name as
950         parameter instead of a config file name. Check for a bundled
951         config file for that assembly by calling
952         mono_config_string_for_assembly_file() (see below) before looking
953         for one in the file system.
954         (get_runtimes_from_exe): Corrsponding change to call of
955         app_config_parse().
956         (get_runtimes_from_exe): Check for bundled assembly exe file first
957         by calling mono_assembly_open_from_bundle(). If no bundled
958         assembly exe file is found, call mono_image_open() as before to
959         look it up in the file system.
960
961         * mono-config.c: Add variable bundled_machinec_onfig.
962         (mono_config_string_for_assembly_file): New function.
963         (mono_config_for_assembly): Move code snippet that looks for a
964         bundled assembly .config file into the above new function. Call
965         it.
966         (mono_register_machine_config, mono_get_machine_config): New
967         functions to set and retrieve
968
969         * assembly.h: Declare mono_register_machine_config().
970
971         * mono-config.h: Declare mono_get_machine_config() and
972         mono_config_string_for_assembly_file().
973
974         * icall.c: No declaration of environ necessary on Win32. It is
975         declared (as a macro expanding to a function call) in stdlib.h.
976         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
977         New internal mono function. Returns the value of
978         mono_get_machine_config() as a Mono string.
979
980         * icall-def.h: Add get_bundled_machine_config().
981
982 2007-01-04  Raja R Harinath  <rharinath@novell.com>
983
984         Remove redundant field
985         * class-internals.h (_MonoGenericContext.container): Remove field.
986         * loader.c (mono_method_get_signature_full): Don't parse a
987         "container" for a signature parse when the signature is inflated
988         immediately.
989         (method_from_methodspec): Likewise, for a generic_inst.
990         * class.c, metadata.c, reflection.c: Update to changes.
991
992 2006-01-04  Raja R Harinath  <rharinath@novell.com>
993
994         * class-internals.h (_MonoGenericClass): Rename 'context' field to
995         'cached_context', and change semantics -- it starts off NULL, and
996         is initialized on demand.
997         * class.c (mono_generic_class_get_context): New accessor to
998         replace 'context' field accesses.
999         (mono_class_get_context): New helper.
1000         (*): Update to changes.
1001         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1002
1003 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1004
1005         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1006         before the memcpy.   Fixes Marshal2 regression.
1007
1008 2007-01-02  Jb Evain  <jbevain@gmail.com>
1009
1010         * blob.h: add a MONO_TYPE_ENUM definition
1011         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1012         fix the encoding of arrays of enums in custom attributes.
1013
1014         Fixes #79666.
1015
1016 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1017
1018         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1019         string is null terminated, but only cut the string short if it
1020         overflows the buffer.   
1021         
1022         (mono_string_to_byvalstr): Also fix this routine.   The code here
1023         was not properly terminating a string (it was only terminated
1024         because of the previous catch-all memset). 
1025
1026         I left the memset, because I do not know if applications expect
1027         the runtime to clear this region. 
1028
1029         Fixes #79944.
1030
1031         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1032         Clear the error before returning to unmanaged code to prevent the
1033         runtime from being confused later on (fixes  80420).
1034         (ves_icall_type_from_name): Always call mono_loader_clear_error
1035         after parsing a type that could have failed.
1036         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1037
1038         * loader.c (mono_loader_clear_error): Fix indentation.
1039
1040 2006-12-28  Martin Baulig  <martin@ximian.com>
1041
1042         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1043
1044 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1045
1046         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1047         getting a token for an EnumBuilder.
1048
1049 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1050
1051         * reflection.c: be more careful in case resource generation
1052         fails to create the data array.
1053
1054 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1055
1056         * sgen-gc.c: write barrier for clone and fix unregister handles.
1057
1058 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1059
1060         * reflection.c: some fixes needed in the generics code for the moving GC.
1061
1062 2006-12-22  Robert Jordan  <robertj@gmx.net>
1063
1064         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1065         account. Fixes bug #80299.
1066
1067 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1068
1069         Fix WaitHandle usage in delegates.
1070         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1071         * object.c (mono_wait_handle_new): Use the property set method to
1072         initialize the handle.
1073         (mono_wait_handle_get_handle): New.
1074         * threadpool.c (mono_async_invoke): Use it.
1075         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1076         Likewise.
1077         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1078
1079 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1080
1081         * marshal.c (emit_marshal): Call emit_marshal_variant and
1082         emit_marshal_com_interface when applicable.
1083         (emit_marshal_variant, emit_marshal_com_interface): Add
1084         methods for this case and remove if's from emit_marshal_object.
1085         
1086 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1087
1088         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1089
1090 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1091
1092         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1093         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1094         and GlobalFree on Windows. Remove FIXME.
1095
1096 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1097
1098         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1099         implementation for managed objects.
1100
1101 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1102
1103         * object.c: implemented code to be used for checking
1104         that no reference field overlaps with non-references.
1105
1106 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1107
1108         * threadpool.c: fix queue code to be compatible with the
1109         moving GC.
1110
1111 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1112
1113         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1114         in structures by throwing ArgumentNullException.
1115
1116         (emit_marshal_safehandle): Also when they are null parameters.
1117
1118         (emit_marshal_safehandle): Add support for ref
1119         SafeHandles parameters
1120
1121 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1122
1123         * profiler.c: updated to use the mono-dl API instead of
1124         gmodule.
1125
1126 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1127
1128         * profiler.c: updated to use the mono-dl dynamic loading
1129         API instead of gmodule.
1130
1131 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1132
1133         * profiler.c: use readlink, older versions of glib don't have
1134         g_file_read_link ().
1135
1136 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1137
1138         * profiler.c: try to detect the path to mono if libc fails to provide
1139         a useful name (bug #80286).
1140
1141 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1142
1143         Fix #80242
1144         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1145         instance, use the generic type definition instead.
1146         (ves_icall_Type_GetNestedTypes): Likewise.
1147         * class.c (mono_class_create_generic): Always set the
1148         nested_classes of a generic instance to NULL, even if the generic
1149         type definition has nested types.
1150
1151 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1152
1153         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1154         and fix on Linux.
1155         
1156 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1157
1158         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1159         my arguments were in the wrong order.   I also fixed the Windows
1160         version which seems to have had the same issue.
1161
1162         (mono_free_bstr): On Unix, this is g_free.
1163         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1164         conversions (for the tests in corlib to pass).
1165
1166 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1167
1168         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1169         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1170         exception if a ref SafeHandle in a struct has changed).
1171         
1172         (emit_struct_conv): Do not perform layout checks for classes
1173         derived from SafeHandle, as those are specially handled. 
1174
1175         (emit_object_to_ptr_conv): Add support for
1176         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1177
1178         (emit_marshal_safehandle): Implement conversion of return values
1179         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1180         
1181         * threads.c: WaitHandle now is compiled with two different handles
1182         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1183         for 2.0.
1184         
1185         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1186         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1187         these routines to cope with both kinds of fields.
1188
1189 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1190
1191         * metadata.c (mono_type_to_unmanaged): Handle the case where
1192         type->data.klass is a SafeHandle, and in that case, return the
1193         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1194         MONO_MARSHAL_CONV_SAFEHANDLE. 
1195
1196 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1197
1198         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1199         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1200         calling emit_marshal_object.
1201
1202         (emit_marshal_safehandle): Implement marshalling of
1203         SafeHandle parameters (no ref support yet).
1204
1205         (MarshalAction): Document the defines as I implement
1206         them for SafeHandle.
1207
1208         (emit_marshal_object): indentation police.
1209
1210         * class-internals.h: Define MonoSafeHandle.
1211         Add safehandle_class to MonoDefaults type.
1212
1213         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1214         list of classes to check for fields. 
1215
1216         * domain.c (mono_init_internal): Add SafeHandle to the list of
1217         mono_defaults loaded.
1218
1219 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1220
1221         Fix #80253
1222         * reflection.c (mono_reflection_bind_generic_parameters): If the
1223         generic type definition is a type builder, ensure that it is fully
1224         initialized before instantiating it.  Kill some dead code.
1225
1226 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1227
1228         * object.c: clear the loader_error () before loading
1229         more metadata stuff (bug #80258).
1230
1231 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1232
1233         * icall.c, icall-defs.h: type modifiers icalls for
1234         parameters and properties.
1235
1236 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1237
1238         * object.c, icall.c: fixed warnings.
1239
1240 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1241
1242         * marshal.c: fixed a couple of leaks and coding style in a few places.
1243
1244 2006-12-08  Dick Porter  <dick@ximian.com>
1245
1246         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1247         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1248         80173.
1249
1250 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1251
1252         * process.c: ProcessStartInfo may have only filename set and
1253         arguments can be NULL.
1254
1255 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1256
1257         * icall.c: fix leak found by Robert Jordan.
1258
1259 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1260
1261         * marshal.c, marshal.h: generate managed method to access an element
1262         of a multi-dimensional array.
1263
1264 2006-11-30  Paolo Molaro (lupus@ximian.com)
1265
1266         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1267
1268 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1269
1270         * icall.c: back out GetFields () fix until the serialization code is
1271         fixed to not depend on the incorrect behaviour.
1272
1273 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1274
1275         * profiler.c: provide defaults if none are set.
1276
1277 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1278
1279         * Makefile.am, attrdefs.h: new public header file with
1280         constants for attributes for use by embedders.
1281
1282 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1283
1284         * icall.c: GetFields () fix for bug #80064.
1285
1286 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1287
1288         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1289         removed long unused icalls.
1290
1291 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1292   
1293         * marshal.c: 
1294                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1295                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1296                 can be generated without a delegate class.
1297                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1298         
1299         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1300
1301 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1302
1303         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1304         #80069.
1305
1306 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1307
1308         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1309         icall-def.h: added icalls needed by System.GC.
1310
1311 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1312
1313         * loader.c: ensure the class in catch clauses is handled
1314         correctly for generics methods (fixes bug#79980).
1315
1316 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1317
1318         * monitor.h, monitor.c: added mono_locks_dump () function
1319         to help debug deadlocks involving managed locks.
1320
1321 2006-11-13  Dick Porter  <dick@ximian.com>
1322
1323         * file-io.c (get_file_attributes): If the file is a symlink try
1324         and get the stat data for the target, but also add the
1325         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1326         the specs for the windows symlink support, but will probably have
1327         to be reworked when I have test data from a vista machine.  Fixes
1328         bug 79887.
1329
1330 2006-11-13  Dick Porter  <dick@ximian.com>
1331
1332         * gc.c (mono_domain_finalize): 
1333         * marshal.c (mono_delegate_begin_invoke): 
1334         * threadpool.c (socket_io_init, mono_thread_pool_init)
1335         (mono_thread_pool_finish): 
1336         * monitor.c (mono_monitor_try_enter_internal): 
1337         * threads.c (mono_thread_resume, mono_thread_init)
1338         (mono_thread_suspend_all_other_threads)
1339         (mono_thread_execute_interruption): 
1340         * appdomain.c (mono_domain_unload): Check for NULL error returns
1341         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1342         75733.
1343
1344 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1345
1346         * process.c
1347         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1348         Only close the handle if the value of the handle is not
1349         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1350         robust.
1351
1352         Improvement for #75733, so that we do not run into this problem. 
1353
1354         
1355         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1356         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1357         internal variables.  Fixes #79462 
1358         
1359
1360 2006-11-09  Dick Porter  <dick@ximian.com>
1361
1362         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1363         Use poll() not select().  Fixes bug 79397.
1364
1365 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1366
1367         Fix #79872
1368         * assembly.c (mono_assembly_load_from_full): Check that the given
1369         image has an assembly manifest.
1370
1371 2006-11-09  Ankit Jain  <jankit@novell.com>
1372
1373         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1374         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1375         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1376
1377 2006-11-07  Dick Porter  <dick@ximian.com>
1378
1379         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1380         Put the old resolver behaviour back for pre-2.0 profiles.
1381
1382 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1383
1384         * threadpool.c: precise GC and locking fixes.
1385
1386 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
1387
1388         * class.c: don't load types that have an explicit unaligned
1389         managed reference. Provide better info in the TypeLoad exception.
1390         Part of the fix for bug #79744.
1391         * object.c: use the correct check for class type load issues.
1392
1393 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1394
1395         * class.c: enforce alignment of fields with managed references
1396         even when Pack=1 is forced by the user (bug #77788).
1397
1398 2006-11-03  Dick Porter  <dick@ximian.com>
1399
1400         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1401         If the address reverse lookup fails, return it as the hostname
1402         anyway.  Fixes bug 79721.
1403
1404 2006-11-03  Dick Porter  <dick@ximian.com>
1405
1406         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
1407         Fix build on Windows.
1408
1409 2006-11-02  Dick Porter  <dick@ximian.com>
1410
1411         * icall-def.h: 
1412         * object-internals.h: 
1413         * exception.c (mono_get_exception_thread_interrupted): 
1414         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
1415         Fixes bug 74525.
1416
1417         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
1418         Check for pending Thread.Interrupt.
1419
1420 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
1421         * loader.c: Fixed bug 79684.
1422
1423 2006-10-27  Dick Porter  <dick@ximian.com>
1424
1425         * file-io.c (get_file_attributes): Force symlinks to directories
1426         to be returned as a regular file.  Fixes bug 79733.
1427 2006-10-26  Dick Porter  <dick@ximian.com>
1428
1429         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
1430         CreateFile to open a directory then we need to set the
1431         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
1432
1433 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
1434
1435         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
1436         friends.
1437
1438 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1439
1440         * sgengc.c: small cleanup of timer code.
1441
1442 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1443
1444         * sgen-gc.c: fix some warnings and start adding support for
1445         complete object removal on domain unload.
1446
1447 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
1448
1449         * assembly.c: build_assembly_name should not consider a version
1450         number without build or revision number invalid. Fixes bug #79715.
1451
1452 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
1453
1454         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
1455         call kernel32 function OutputDebugString directly.
1456         
1457         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1458         
1459 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
1460
1461         * reflection.c: small cleanup, using a function to insert a MonoString
1462         in the string heap.
1463
1464 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
1465
1466         * reflection.c: moving GC fixes.
1467
1468 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
1469
1470         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
1471         all the objects with finalizers belonging to an unloading appdomain.
1472
1473 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
1474
1475         * sgen-gc.c: added ability to allocate even when the nursery is fully
1476         pinned and fixed a couple of bugs.
1477
1478 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * threads.h: Revert the last change for now.
1481
1482         * threads.h (mono_thread_get_pending_exception): Rename this to
1483         mono_thread_get_undeniable_exception ().
1484
1485 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1486
1487         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
1488         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
1489         when fname does not refer to valid assembly. This result in a more
1490         meaningful error message.
1491         * exception.c: added mono_get_exception_bad_image_format2 which 
1492         constructs a BadImageFormatException using the ctor taking a custom
1493         message and the file name. Passing in a NULL msg results in a default
1494         message.
1495         * exception.h: define mono_get_exception_bad_image_format2 function.
1496         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
1497         when file name pointed to an invalid IL image. Use 
1498         mono_get_exception_file_not_found2 to construct FileNotFoundException,
1499         as this results in a more meaningful error message.
1500
1501 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1502
1503         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
1504         #79465.
1505
1506 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * metadata.c (mono_type_size): Change the align parameter to guint32 for
1509         consistency with the other _size functions.
1510         (mono_type_stack_size): Ditto.
1511
1512         * class.c object.c icall.c: Fix warnings caused by the above change.
1513
1514         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
1515
1516         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
1517
1518         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
1519
1520 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1521
1522         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1523         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1524         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1525         threadpool.h, threads-types.h: mark more internal functions.
1526
1527 2006-10-11  Dick Porter  <dick@ximian.com>
1528
1529         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1530         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1531         reproduce the bug even before applying the fix.)
1532
1533 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1534
1535         * reflection.c: allow retrieving attributes for arguments in generic
1536         methods (bug #79241).
1537
1538 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1539
1540         * debug-mono-symfile.c: properly check fopen () result (found by
1541         coverity).
1542
1543 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1544
1545         * reflection.c: make error message clearer and fixed two
1546         issuelets found by Coverity.
1547
1548 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1549
1550         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1551
1552 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1553
1554         * object-internals.h, gc-internal.h, profiler-private.h:
1555         mark internal functions.
1556
1557 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1558
1559         * reflection.c: put data in the text section.
1560         * icall.c: recognize more types in type_from_typename ().
1561         * process.c, marshal.c: added some GC FIXMEs.
1562
1563 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1564
1565         * loader.c: check for NULL before initializing.
1566
1567 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1568
1569         * gc.c (finalizer_thread): Use a non-alertable wait here.
1570
1571         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1572         until the correct solution is found.
1573
1574 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1575
1576         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1577         modules with no metadata. Fixes #79596.
1578
1579         * image.c (load_metadata_ptrs): Put back the error message when
1580         the #- heap is encountered since the support is not complete yet.
1581
1582 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1583
1584         * gc.c: do not allow the user to SuppressFinalize () a
1585         delegate because it would leak the trampoline if present.
1586
1587 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1588
1589         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1590         PropertyPtr table.
1591
1592 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1593
1594         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1595
1596         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1597
1598         * row-indexes.h: Add definitions for *Ptr tables.
1599
1600         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1601
1602         * metadata.c (mono_metadata_translate_token_index): New helper function to
1603         translate table indexes used in uncompressed metadata.
1604         (mono_metadata_decode_table_row): Ditto.
1605         (mono_metadata_decode_table_row_col): Ditto.
1606
1607         * metadata.c: Add table schema for *Ptr tables.
1608
1609         * class.c loader.c: Use the new helper function to access the affected metadata
1610         tables.
1611         
1612         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1613         #38532.
1614         
1615 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1618         sequences which can be unbounded in size. Fixes #79583.
1619
1620 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1621
1622         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1623         static initialization.
1624
1625         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1626
1627         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1628
1629         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1630
1631         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1632         ctor fails, i.e. throw the same exception on subsequent accesses.
1633         
1634 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1635
1636         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1637         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1638         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1639         Handle marshalling of interfaces and VARIANTs contained in structs.
1640         
1641         Code is contributed under MIT/X11 license.
1642         
1643 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1646         
1647         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1648         mempool.
1649
1650 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1651
1652         * console-io.c: ignore previous SIGINT handler.
1653
1654 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1655
1656         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1657         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1658         #79460, #79461, #79485.
1659
1660         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1661
1662         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1663         #79217.
1664
1665 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1668         could be generated from it.
1669
1670 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1671
1672         * rand.c: fix read loop to correctly handle EINTR.
1673
1674 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1675
1676         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1677         internal calls are defined to keep methods closer to the declaring
1678         type and allow a significant reduction in runtime relocations and
1679         memory usage.
1680
1681 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1682
1683         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1684         exception message to have FileNotFoundException use the default
1685         assembly load error message. Fixes bug #79426.
1686         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1687
1688 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1689
1690         * threadpool.c: (start_thread_or_queue) use the root domain when
1691         creating the thread instead of the async object one.
1692
1693 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1694
1695         * class.c, object.c, class-internals.h, reflection.c:
1696         for arrays, store element_size inside MonoClass (speedup
1697         for array object creation).
1698
1699 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1700
1701         * icall.c: fixed CodeBase to use the file name and not the module
1702         name (bug #79365).
1703
1704 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1705
1706         * mono-debug.c, mono-debug.h: export find_method as
1707         mono_debug_find_method ().
1708
1709 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1710
1711         * debug-helpers.c, class-internals.h: added a few functions useful
1712         when debugging under gdb.
1713
1714 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1715
1716         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1717         characters that need special handling.
1718
1719 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1720
1721         * mono-config.c: make the os/cpu specification more flexible,
1722         allowing lists and negation.
1723
1724 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1725
1726         * marshal.c: COM Interop fixes. Handle case where method->klass.
1727         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1728         calling convention on non-windows platforms. This is for
1729         compatibility with XPCOM and MainWin COM.
1730         
1731         Code is contributed under MIT/X11 license.
1732         
1733
1734 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1735
1736         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1737         correctly. Fixes #79217.
1738
1739         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1740
1741 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1742
1743         * mono-config.c: allow both an os and cpu attribute for dllmap
1744         and dllentry elemnets to enable a single config file to be used
1745         for multiple architectures.
1746
1747 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1748
1749         * loader.c: MonoLoaderError was cleared too soon on load failure.
1750         Fixes bug #79424.
1751
1752 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1753
1754         * icall.c: use the defining class vtable when accessing a
1755         static field, not a pobblibly derived class.
1756
1757 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1758
1759         * icall.c string-icalls.c: Remove references to unicode.h.
1760
1761         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1762
1763         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1764
1765         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1766         indicating the image where custom marshaller types should be looked up.
1767         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1768         custom marshallers, instead of corlib. Fixes #79425.
1769
1770 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1771
1772         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1773
1774 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1775
1776         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1777         Implement Environment.ProcessorCount.
1778         
1779         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1780         Implement Environment.ProcessorCount.
1781         
1782         * icall.c: 
1783         Add Environment.ProcessorCount icall.
1784         
1785         Patch by Jason McFall.
1786
1787 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1788
1789         * assembly.c: don't append .exe/.dll when the filename already contains
1790         one of those extensions.
1791
1792 2006-09-12  Martin Baulig  <martin@ximian.com>
1793
1794         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1795         to array interfaces.
1796
1797 2006-09-11  Martin Baulig  <martin@ximian.com>
1798
1799         * reflection.c (mono_image_build_metadata): Create the
1800         MethodImpl's after emitting all types and methods, so we don't
1801         need another fixup pass for them.
1802
1803 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1804
1805         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1806         change.
1807
1808 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1809
1810         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
1811         unload.
1812
1813 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
1814
1815         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
1816         args is not set. Fixes #78926.
1817
1818 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
1819
1820         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
1821
1822         * image.c (load_class_names): Move this to class.c, and rename it to 
1823         'mono_image_init_name_cache'.
1824         (load_modules): Fix a warning.
1825
1826         * class.c icall.c image.c: Initialize image->name_cache lazily.
1827
1828         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
1829         on its name using information in the AOT file.
1830
1831         * class.c (mono_class_from_name): Use the new hook function.
1832
1833 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
1834
1835         * reflection.c (mono_param_get_objects): Handle enum default parameter values
1836         correctly.
1837
1838         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
1839         Fixes #79289.
1840         
1841 2006-09-06  Martin Baulig  <martin@ximian.com>
1842
1843         * icall.c (mono_lookup_internal_call): Small fix.
1844
1845 2006-09-05  Raja R Harinath  <rharinath@novell.com>
1846
1847         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
1848         double g_free.
1849
1850 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
1851
1852         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
1853         when --debug is specified.
1854
1855 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
1856
1857         * class.c (setup_generic_array_ifaces): Fix a warning.
1858
1859 2006-09-04  Miguel de Icaza  <miguel@novell.com>
1860
1861         * Temporarily remove the patch to assemly.c that checks the
1862         assembly versions as it breaks our gacutil.
1863
1864 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
1865
1866         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
1867
1868         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
1869         a net 1.0 runtime.
1870
1871         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
1872         created using the default ctor. Fixes #79152.
1873         (mono_string_builder_to_utf16): Ditto.
1874
1875 2006-09-01  Martin Baulig  <martin@ximian.com>
1876
1877         Fix handling of the generic array interfaces.
1878
1879         * class-internals.h
1880         (MonoDefaults): Removed `generic_array_class' and added
1881         `generic_ilist' class.
1882
1883         * class.c
1884         (mono_bounded_array_class_get): Add the new generic array interfaces.
1885         (setup_generic_array_ifaces): New static method; create vtable
1886         entries for each method in the generic array interfaces.
1887
1888         * metadata.c
1889         (select_container): Allow "parent-less" generic methods.
1890
1891         * marshal.c
1892         (mono_marshal_get_generic_array_helper): New public method.
1893
1894         * icall.c
1895         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
1896         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
1897         moved the interncall into System.Array.
1898
1899 2006-09-01  Raja R Harinath  <rharinath@novell.com>
1900
1901         A few more cases of avoiding work on types with ->byref set.
1902         Has the real fix for #79238
1903         * icall.c (is_generic_parameter): New helper.
1904         (ves_icall_Type_GetGenericParameterPosition): Use it.
1905         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
1906         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1907         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1908         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
1909         reference types.
1910         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
1911         reference types.
1912         (ves_icall_Type_get_IsGenericInstance): Likewise.
1913         (ves_icall_Type_get_IsGenericType): Likewise.
1914
1915 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
1916
1917         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
1918         class if possible.
1919
1920         * mempool.h (mono_mempool_get_allocated): New helper function.
1921
1922         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
1923         change.
1924
1925         * mempool.c: Fix warnings and the calculation of stats.
1926
1927         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
1928
1929         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
1930
1931         * loader.c (mono_get_method_from_token): Update method_count stat.
1932
1933         * class-internals.h (MonoStats): Add some stats.
1934
1935 2006-08-31 Robert Jordan  <robertj@gmx.net>
1936
1937         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
1938         with managed variants.
1939         All code is contributed under the MIT/X11 license.
1940         
1941 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
1942
1943         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
1944         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
1945
1946         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
1947
1948         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
1949         with cycles in classes.
1950
1951         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
1952
1953         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
1954         missing a [MarshalAs] directive. Fixes #79203.
1955
1956         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
1957         klass->marshal_info. Fixes #79217.
1958
1959 2006-08-30  Martin Baulig  <martin@ximian.com>
1960
1961         Committing a patch from Joachim Ante <joe@otee.dk>:
1962         Add support for binary data symbol stores.
1963
1964         * debug-mono-symfile.c
1965         (mono_debug_open_mono_symbol_file): Renamed into
1966         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
1967         arguments.
1968
1969         * mono-debug.c
1970         (mono_debug_open_image): Added `raw_contents' and `size' args.
1971         (mono_debug_init_2_memory): New public function.
1972
1973 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
1974
1975         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
1976
1977 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1978
1979         * appdomain.c: implement support for ShadowCopyFiles.
1980
1981 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
1982
1983         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
1984         when value is NULL (and should remove CID #51).
1985
1986 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1987
1988         * image.c: moved 2 functions to ../utils.
1989
1990 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
1991
1992         * gc.c: cope with the target object of a GC handle being NULL
1993         (bug #78877).
1994
1995 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
1996
1997         * class.c: recursively check parent's explicit implementations
1998         of interface methods (fixes bug #79125).
1999
2000 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2001
2002         * filewatcher.c: Avoid warnings when building, do not redefine
2003         constants that are defined.
2004
2005         Remove warnings.
2006
2007 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2008
2009         * image.c: don't fail when the link points to an absolute path.
2010
2011 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2012
2013         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2014         Fix CID #3.
2015
2016 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2017
2018         * image.c (full_path): A new method used to obtain the actual path
2019         of an assembly even in the presence of symbolic links.  
2020
2021         This is necessary for the case where we are running a binary that
2022         has been GACed, but we are using the "published" path name
2023         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2024         file in the GAC.
2025
2026         This was the source of the failure for the `xsp' command with the
2027         recent AppDomain changes, as far as the runtime was concerned,
2028         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2029         $prefix/mono/gac/blah/version/blah.exe.
2030
2031         (do_mono_image_open): use full path
2032
2033 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2034
2035         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2036
2037 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2038
2039         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2040         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2041
2042 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2043
2044         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2045         small structures. Fixes #78990.
2046
2047 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2048
2049         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2050
2051         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2052
2053 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2054
2055         * appdomain.c:
2056         * marshal.c: don't load all the assemblies from a domain into newly
2057         created ones. The new domains might have different rules and load
2058         assemblies from different locations. Fixes bug #76757.
2059
2060         Patch by Lluis. Conflicts resolved by Brian Crowell.
2061
2062 2006-08-16  Alp Toker  <alp@atoker.com>
2063
2064         * socket-io.c: First half of the fix for #79084.
2065         Set sa_size to the length of the content, not that of the struct.
2066         Don't add NULL suffix to the content, this should be done in
2067         managed code if needed.
2068
2069 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2070
2071         Fix part of #79012
2072         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2073         mono_metadata_parse_type returns NULL.
2074
2075 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2076
2077         * normalization-tables.h : new file for string normalization data.
2078         * locales.c, locales.h, icall.c :
2079           added load_normalization_resource() for string normalization,
2080           and icall as well.
2081         * Makefile.am : added normalization-tables.h to the sources.
2082
2083 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2084
2085         * marshal.c: Add more helper functions to reduce code duplication and use them
2086         everywhere.
2087
2088 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2089
2090         * marshal.c: Fix non-x86 stdcall warnings.
2091         
2092         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2093         them everywhere.
2094
2095 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2096
2097         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2098         type check on multi-dimensional arrays. Fixes #79000.
2099
2100 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2101
2102         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2103         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2104         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2105         * class-internals.h: add is_com_object to class structure.
2106         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2107         null checks to COM object marshalling. Fix .ctor call on RCW.
2108         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2109         
2110         All code is contributed under the MIT/X11 license.
2111
2112 2006-08-09  Dick Porter  <dick@ximian.com>
2113
2114         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2115         racing mono_monitor_allocator_lock() somewhere, so don't delete
2116         the critical section for now.  Found by running and exiting
2117         monodevelop.
2118
2119 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2120
2121         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2122         (ves_icall_System_ComObject_FindInterface): Ditto.
2123         (ves_icall_System_ComObject_CacheInterface): Ditto.
2124
2125         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2126         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2127
2128 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2129
2130         * threadpool.c: treat pipes from process asynchronous reads as sockets
2131         when reading from them, so we get select/poll or epoll to wait for
2132         data.
2133
2134 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2135
2136         * loader.c: Fix a typo (CID #233) in the null check.
2137
2138 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2139
2140         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2141         Hopefully fixes #78949.
2142         
2143         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2144         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2145         bytes. Fixes #78972.
2146
2147 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2148
2149         * filewatcher.c: we need to set errno here.
2150
2151 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2152
2153         * filewatcher.c: let Win32Exception get the error value.
2154
2155 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2156
2157         * filewatcher.c: translate errno into win32 errors for Win32Exception
2158         to know what happened.
2159
2160 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2161
2162         * threadpool.c: Fix more warnings.
2163
2164         * assembly.c (search_loaded): Fix warnings.
2165
2166         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2167         (mono_async_invoke): Ditto.
2168
2169 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2170
2171         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2172         entries for __ComObject type in addition to ComImport types.
2173         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2174         about hash table.
2175         
2176         All code is contributed under the MIT/X11 license.
2177
2178 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2179
2180         * image.c: avoid tentative loading of modulerefs that contain
2181         no metadata (P/Invoke library names).
2182
2183 2006-07-28  Dick Porter  <dick@ximian.com>
2184
2185         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2186         mono_loader_lock() somewhere, so don't delete the critical section
2187         for now.  Found by running and exiting monodevelop.
2188
2189 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2190
2191         * filewatcher.c: define the inotify syscalls when we're building on
2192         linux and have sys/syscall.h. The build system might not have support
2193         for inotify but the target system might have it.
2194
2195 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2196
2197         * domain.c: Documentation updates.
2198
2199         * loader.c (mono_free_method): Do not release the method
2200         information if we are being profiled, as profilers will use this
2201         information at shut down to present some data to the user.
2202
2203         This is needed so that the profiler does not crash, as the
2204         profiler tends to keep MonoMethods around, and they might become
2205         invalid if we free these.
2206
2207         (mono_get_method_constrained): Return the original CIL stream
2208         method as well, so verification can be performed against it.
2209
2210 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2211
2212         * filewatcher.[ch]: support for inotify file system watcher.
2213         * icall.c: add new internal calls for the inotify file system watcher.
2214
2215 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2216
2217         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2218         #78888.
2219
2220 2006-07-20  Dick Porter  <dick@ximian.com>
2221
2222         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2223         warning.
2224
2225 2006-07-20  Dick Porter  <dick@ximian.com>
2226
2227         * threads.c (start_wrapper): Do the thread cleanup while we still
2228         hold a reference to its object.  Fixes bug 78123.
2229
2230 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2231
2232         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2233         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2234           "managed-to-managed".
2235         * icall.c: Redirect string constructors that take sbyte* to
2236           ves_icall_System_String_ctor_RedirectToCreateString.
2237         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2238           to CreateString () methods with matching signature.
2239         * reflection.c: Use original security informations for
2240           MONO_WRAPPER_MANAGED_TO_MANAGED.
2241         * security-manager.c: Use original security informations for
2242           MONO_WRAPPER_MANAGED_TO_MANAGED.
2243         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2244           that is a placeholder and only its address should be used.
2245         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2246           that is a placeholder and only its address should be used.
2247
2248 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2249
2250         Begin implementing COM Interop.
2251         * appdomain.c: Increment corlib version.
2252         * class.c: Set ComImport classes' parent to __ComObject.
2253         * loader.c: Mark cominterop methods as such.
2254         * domain.c: Add __ComObject class to MonoDefaults structure.
2255         * image.c: Add 2 hashtables to the image for COM Interop related methods
2256         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2257         using the mempool allocator
2258         
2259         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2260         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2261         declaration for mono_metadata_type_dup_mp.
2262         
2263         * debug-helpers.c: Added strings for two additional wrapper types
2264         * object.c: Create proxy objects for ComImport classes
2265         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2266         and added __ComObject class to MonoDefaults structure.
2267         
2268         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2269         MonoComInteropProxy and MonoComObject.
2270         
2271         * marshal.c: Added support for COM Interop
2272         (signature_cominterop): Converts managed signature to corresponding
2273         unmanaged COM signature.
2274         (cominterop_get_function_pointer): gets unmanaged function pointer via
2275         COM object vtable
2276         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2277         (cominterop_get_method_interface): returns interface type that method is defined on
2278         (mono_mb_emit_cominterop_call): emits native call to function pointer
2279         gotten from vtable
2280         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2281         that matches signature of unmanaged function.
2282         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2283         (cominterop_get_invoke): forwards call from proxy to __ComObject
2284         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2285         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2286         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2287         
2288         * marshal.h: Added Marshal icall declarations.
2289         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2290         so we can access them in finalizer
2291         
2292 2006-07-14  Dick Porter  <dick@ximian.com>
2293
2294         * object.c (mono_type_initialization_cleanup): Fix a race
2295         condition by temporarily commenting out the critical section
2296         deletion.
2297
2298 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2299
2300         * reflection.c (create_custom_attr): Fix some warnings.
2301         (create_custom_attr_data): Ditto.
2302         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2303         types. Fixes #78855.
2304
2305 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2306
2307         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2308
2309         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2310
2311 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2312
2313         * reflection.c (resolve_object): Add support for DynamicMethod.
2314
2315         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2316         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2317
2318 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2319
2320         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2321         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2322
2323 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2324
2325         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2326         Fixes #77888.
2327
2328 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2329
2330         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2331         slightly: remove a shadow local variable.
2332
2333 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2334
2335         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2336         definition that introduces the virtual function slot.
2337         Also fix Coverity #105.
2338
2339 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2340
2341         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2342         for dynamic assemblies. Fixes #78724.
2343
2344 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2345
2346         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2347         Fixes #78722.
2348
2349 2006-06-21  Martin Baulig  <martin@ximian.com>
2350
2351         * reflection.c
2352         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2353         fixes #76484.
2354
2355 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2356
2357         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2358
2359 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2360
2361         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2362         nor TYPEREFs.
2363         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2364         Inflate result if necessary.
2365         (mono_class_get_full): Remove old version.  Rename from
2366         'mono_class_get' and add 'context' argument.  Pass it to
2367         ..._create_from_typespec.
2368         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2369         (mono_ldtoken): Revert change below.
2370
2371 2006-06-20  Martin Baulig  <martin@ximian.com>
2372
2373         * class.c (mono_ldtoken): Don't pass the generic context to
2374         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2375
2376 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2377
2378         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2379         and later freeing it. Fixes #78638.
2380
2381 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2382
2383         * icall.c (mono_class_get_throw): Revert over-zealous error
2384         throwing, the caller for mono_class_get_throw will cope with
2385         errors when classes are not properly initialized already.
2386
2387         The code still copes with loader exceptions though.
2388
2389         Fixes the regression in reftype1 and reftype3 from the CAS tests.
2390         
2391 2006-06-14  Miguel de Icaza  <miguel@novell.com>
2392
2393         Fixes the `make run1' version of RuntimeAbort (to be commited,
2394         source is in Bugzilla).
2395         
2396         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
2397         FALSE on class loading failure instead of returning true.
2398
2399         * class.c (mono_class_create_from_typedef): It is possible for
2400         mono_metadata_interfaces_from_typedef_full to fail if a class is
2401         not found, cope with this.
2402         
2403
2404 2006-06-14  Dick Porter  <dick@ximian.com>
2405
2406         * socket-io.c: 
2407         * process.c: Fix a bunch of signed/unsigned warnings from gcc
2408         4.1.1
2409
2410 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
2411
2412         * culture-info-table.h : oops, forgot to make it nsync with r61548.
2413
2414 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2415
2416         * icall.c: Another fix for building mono in Visual Studio.
2417
2418 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2419
2420         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
2421         
2422 2006-06-09  Martin Baulig  <martin@ximian.com>
2423
2424         * debug-mono-symfile.c: Put this back and really fix it this
2425         time. Sorry for all the trouble.
2426
2427 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
2428
2429         * icall.c (mono_class_get_throw): Fix a warning.
2430         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
2431         ReflectionTypeLoadException if needed. Fixes #78606.
2432
2433         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
2434         (mono_class_init): Ditto.
2435
2436         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
2437         ref_only exceptions.
2438         (mono_loader_clear_error): Make this work even if there is no error.
2439
2440 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
2441
2442         * object-internals.h marshal.c marshal.h icall.c: Implement method 
2443         Marshal.GetComSlotForMethodInfo using internal call.
2444
2445 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
2446
2447         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
2448         a function for signalling it.
2449
2450         * class.c (mono_class_from_typeref): Use the new kind of loader error when
2451         a referenced assembly is not found.
2452
2453         * loader.c (mono_loader_error_prepare_exception): Add support for 
2454         LOADER_ERROR_ASSEMBLY. Fix formatting.
2455
2456 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2457
2458         * domain.c appdomain.c class-internals.h marshal.c: Add support 
2459         for VARIANT marshalling on windows and increment corlib version
2460         since Variant struct was added.
2461
2462 2006-06-03  Miguel de Icaza  <miguel@novell.com>
2463
2464         * debug-mono-symfile.c: Revert Martin's previous patch which broke
2465         stack trace line information:
2466
2467         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
2468         (Martin) when looking up B which is between A and C, return A not C.
2469
2470         Bug is #78573.
2471
2472         Thanks to Alexander Olk for tracking this down.
2473
2474 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
2475
2476         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
2477         
2478         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
2479         avoid clobbering its value.
2480         (mono_string_to_lpstr): Fix a warning on windows.
2481
2482 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2483
2484         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
2485
2486         * reflection.c loader.c: Removed references to 'dummy' flag.
2487
2488         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
2489
2490         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
2491         it gets GC tracking.
2492
2493         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
2494         GC tracking.
2495         
2496         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
2497
2498         * marshal.c threadpool.c: Update callers of mono_async_result_new.
2499
2500         * appdomain.c: Bump corlib version.
2501
2502 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2503
2504         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2505         CEE_STIND_REF when working with object references.
2506
2507 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2508
2509         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
2510         Fixes #78539.
2511
2512 2006-05-30  Miguel de Icaza  <miguel@novell.com>
2513
2514         * loader.c (method_from_memberref): Fix argument value for
2515         mono_loader_set_error_method_load (I was passing the MonoClass
2516         instead of the class name char *).
2517
2518 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2519
2520         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2521         CEE_STIND_REF when working with object references.
2522
2523 2006-05-30  Martin Baulig  <martin@ximian.com>
2524
2525         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2526         mono_method_full_name() change and replace the ':' with a '.'
2527         here.
2528
2529 2006-05-30  Martin Baulig  <martin@ximian.com>
2530
2531         * debug-mono-symfile.c
2532         (mono_debug_symfile_lookup_location): Fix the algorithm:
2533         when looking up B which is between A and C, return A not C.
2534
2535 2006-05-29  Martin Baulig  <martin@ximian.com>
2536
2537         * mono-debug.h
2538         (MonoDebugMethodInfo): Make the typedef public.
2539         (MonoDebugSourceLocation): New public struct.
2540
2541         * mono-debug.c
2542         (mono_debug_source_location_from_address): Removed.
2543         (mono_debug_source_location_from_il_offset): Removed.
2544         (mono_debug_il_offset_from_address): Removed.
2545         (mono_debug_address_from_il_offset): Removed.
2546         (mono_debug_lookup_method): New public function.
2547         (mono_debug_lookup_source_location): New public function; replaces
2548         the old mono_debug_source_location_from_*() functions; see the
2549         inline documentation.
2550         (mono_debug_free_source_location): New public function.
2551         (mono_debug_print_stack_frame): New public function; see the
2552         inline documentation.
2553
2554         * debug-mono-symfile.c
2555         (mono_debug_find_source_location): Renamed into
2556         mono_debug_symfile_lookup_location(); only take a
2557         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2558         documentation.
2559         (mono_debug_find_method): Renamed into
2560         mono_debug_symfile_lookup_method().
2561
2562 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2563
2564         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2565         returned by mono_image_open_full ().
2566
2567         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2568         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2569         #78517.
2570
2571         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2572         #78518.
2573
2574 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2575
2576         * class.c (mono_class_from_typeref): handle missing images
2577         earlier, deals with bug #78418.   Refactor code; 
2578
2579         Fix a warning introduced in my previous commit (some stale code
2580         from before I revisited my patch).
2581
2582         * class.c (mono_class_create_from_typedef): On failure, remove the
2583         class from the MonoImage->class_cache as the class is not
2584         initialized;   Fixes the leak pointed out by Paolo.
2585
2586 2006-05-25  Dick Porter  <dick@ximian.com>
2587
2588         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2589         DeleteCriticalSections until I figure out which one may still be
2590         sometimes locked when mono_thread_cleanup is called.
2591
2592 2006-05-24  Dick Porter  <dick@ximian.com>
2593
2594         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2595         of mono_thread_manage and back into its own function, so it can be
2596         called after the finalizer thread has finished.
2597
2598         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2599
2600 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2601
2602         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2603         Fixes #78495.
2604
2605         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2606         with non-blittable elements.
2607         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2608
2609 2006-05-24  Martin Baulig  <martin@ximian.com>
2610
2611         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2612         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2613
2614         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2615         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2616         `mono_debugger_event_handler' to NULL.
2617
2618 2006-05-24  Martin Baulig  <martin@ximian.com>
2619
2620         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2621
2622 2006-05-24  Martin Baulig  <martin@ximian.com>
2623
2624         * mono-debug-debugger.h
2625         (mono_debugger_create_notification_function): Added
2626         `MonoCodeManager *' argument.
2627
2628 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2629
2630         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2631
2632 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2633
2634         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2635         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2636         implementation.
2637
2638 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2639
2640         * icall.c: precise GC support: objects can't be stored in unmanaged
2641         memory anymore, even if they are kept alive by other references: since
2642         they can move the GC needs to be able to always find them.
2643
2644 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2645
2646         * object.c: precise GC support for static fields. Support
2647         for moving GCs: write barriers and pinned allocation for interned
2648         strings.
2649
2650 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2651
2652         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2653         structure.
2654
2655 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2656
2657         * class.c, gc.c: sgen and precise GC updates.
2658
2659 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2660
2661         * marshal.h, marshal.c: added write barrier wrapper and precise type
2662         fixes.
2663
2664 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2665
2666         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2667         support.
2668
2669 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2670
2671         * reflection.c: precise and sgen GC updates.
2672
2673 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2674
2675         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2676
2677 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2678
2679         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2680
2681 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2682
2683         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2684         MONO_TYPE_OBJECT. Fixes #78462.
2685
2686 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2687
2688         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2689         and blittable types.
2690
2691 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2692
2693         * class.c (mono_class_get_exception_for_failure): Implement parts
2694         of a TODO: if the loader error is set (instead of the class
2695         error), we return a Loader exception that can be properly thrown
2696         elsewhere.
2697
2698         This was exposed by some Winforms 2.0 code that I tried to run
2699         (Atsushi pointed me to it).
2700
2701 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2702
2703         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2704         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2705         
2706         * marshal.c (emit_marshal_vtype): Add limited support for 
2707         UnmanagedType.LPStruct. Fixes #78427.
2708
2709         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2710         Applied a patch from kangaroo to fix #77523.
2711
2712 2006-05-17  Martin Baulig  <martin@ximian.com>
2713
2714         * threads.c
2715         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2716         (debugger_thread_created): Removed.
2717         (debugger_thread_exited): Removed.
2718
2719 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2720
2721         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2722
2723         * object-internals.h (MonoReflectionResource): Sync with managed version.
2724
2725 2006-05-12  Wade Berrier <wberrier@novell.com>
2726
2727         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2728
2729 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2730
2731         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2732         functions try to allocate from the image mempool.
2733
2734 2006-05-12  Dick Porter  <dick@ximian.com>
2735
2736         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2737
2738 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2739
2740         * object.c: The FieldGetter and FieldSetter methods require the full
2741         name of the class, not only the name. Fixes bug #78277.
2742
2743 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2744
2745         * loader.c (method_from_memberref): Do not pass the NULL klass to
2746         mono_loader_set_error_() methods.  Pass the non-NULL value
2747         (class). 
2748
2749 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2750
2751         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2752         (mono_assembly_close): Null out assembly->image->references after freeing it.
2753
2754         * image.c (mono_image_close): Free image->references.
2755         
2756         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2757
2758 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2759
2760         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2761         before checking if it's NULL (g_assert).
2762
2763 2006-05-10  Martin Baulig  <martin@ximian.com>
2764
2765         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2766         I thought I already killed that two months ago, but now it somehow reappeared.
2767
2768 2006-05-10  Martin Baulig  <martin@ximian.com>
2769
2770         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2771
2772 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2773
2774         * reflection.c: Allocate memory for dynamically created methods in the image
2775         mempools.
2776
2777 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2778
2779         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2780         don't use the ad pointer before checking if it's NULL (g_assert).
2781
2782 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2783
2784         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2785         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2786
2787         * marshal.c: Allocate all signatures from mempools.
2788
2789         * marshal.c: Allocate some more signatures from mempools.
2790
2791 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2792
2793         * object.c (mono_load_remote_field): The code used to provide a
2794         temporary variable for returning results if the user did not
2795         provide a result pointer.  But our temporary variable was allocted
2796         on the satck.
2797
2798         Fix calling code to always pass a result area.   Coverity ID 103.
2799
2800 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2801
2802         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2803         value, not the old. Fixes #78312.
2804         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2805
2806         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2807         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2808         per-image cache.
2809
2810         * assembly.c (mono_assembly_close): Free image->references.
2811
2812         * assembly.c (mono_assembly_names_equal): Fix a warning.
2813         (mono_assemblies_cleanup): Cleanup more global data.
2814
2815         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
2816
2817         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
2818         ptr_cache and image->modules.
2819
2820         * image.c (mono_image_init): Allocate array_cache lazily.
2821         
2822 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2823
2824         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
2825         behavior was changed recently and has bad side effects.
2826
2827 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
2828
2829         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
2830         
2831         * assembly.c (mono_assembly_close): Remove a debug printf.
2832
2833         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
2834
2835         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
2836         to also allow for temporary references between mono_image_open ()/close ().
2837
2838         * domain.c (get_runtimes_from_exe): Add a FIXME.        
2839
2840 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
2841
2842         * marshal.c: Fix support for dynamic methods.
2843
2844         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
2845
2846         * marshal.c (mono_marshal_cleanup): New cleanup function.
2847
2848         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
2849         image mempools.
2850
2851         * class.c (mono_class_init): Fix leaking class->nested_classes.
2852
2853         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
2854
2855         * image.c (mono_image_init): Initialize the new cashes.
2856
2857         * image.c (mono_image_close): Destroy the new cashes.
2858
2859         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
2860
2861         * mempool.c (mono_mempool_strdup): New helper function.
2862
2863         * class-internals.h: Add prototype for mono_loader_unlock ().
2864
2865         * domain.c (mono_jit_info_table_find): Fix a warning.
2866         (mono_debugger_check_runtime_version): Ditto.
2867
2868         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
2869         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
2870         functions to these modules.
2871
2872         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
2873         metadata modules.
2874         
2875         * marshal.c (mono_free_bstr): Fix a warning.
2876
2877         * assembly.c (mono_assembly_open_full): Fix another small leak.
2878
2879         * object.c: Fix some unload leaks in the remoting code.
2880
2881         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
2882         function.
2883
2884         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
2885
2886         * reflection.c: Fix some unload leaks in dynamic assemblies.
2887
2888 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
2889
2890         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
2891         * marshal.h: Add BSTR support on Win32
2892         * icall.c: Add BSTR icalls
2893         * metadata.h: Add BSTR enums
2894
2895 2006-04-28  Miguel de Icaza  <miguel@novell.com>
2896
2897         Work to catch the crash from #76795 and turn it into an
2898         exception.   As I stubbed out pieces of the VisualBasic support,
2899         I found a number of places where the code was failing and I added
2900         checks to those places. 
2901         
2902         * metadata.c (do_mono_metadata_parse_generic_class): Make this
2903         function return a status code.  If we fail to parse the signature
2904         from mono_metadata_parse_generic_inst, return FALSE.
2905
2906         * loader.c (mono_get_method_from_token): If we fail to load the
2907         method (mono_class_get) return NULL.   
2908
2909         * (method_from_memberref): Return NULL if we are unable to parse
2910         the method signature
2911
2912         (mono_loader_error_prepare_exception): Since we now use the
2913         loader_error flag internally to stop processing, and obtaining
2914         exceptions that might be thrown will walk this code path the
2915         proper way of going from a MonoLoaderError into a
2916         MonoException was convoluted.   This new routine encapsulates the
2917         process of turning the error into an exception and *clearing* the
2918         error afterwards.
2919         
2920 2006-04-27  Miguel de Icaza  <miguel@novell.com>
2921
2922         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
2923         with missing assemblies), and to cope with:
2924
2925                 * Missing fieldref from a non-existing assembly.
2926                 * Missing methodref from a non-existing assembly.
2927
2928         The first batch of work to address *some* of the issues from 76661.
2929         
2930         * object.c (mono_class_create_runtime_vtable): If we fail to
2931         initialize the class raise the exception here. 
2932
2933         * metadata.c (mono_class_get_overrides_full): If any methods fail
2934         to load return the failure to the caller.
2935
2936         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
2937         flagging assemblies that failed to load.   
2938
2939         Do not crash if we are unable to load the assembly.
2940
2941         (mono_assembly_close): Do nothing with REFERENCE_MISSING
2942         assemblies. 
2943
2944         * loader.c (mono_loader_set_error_type_load): Change the
2945         convention to always pass unallocated strings, so we make our own
2946         copies (I know our own code had duplicated strings before, but
2947         this keeps the normal conventions).
2948         (method_from_memberref): Call mono_loader_set_error_method_load
2949         for all possible failures of loading the class. 
2950         Remove assert, turn into a loader error.
2951
2952         (mono_loader_error_to_exception): Move this routine from mini
2953         (mini_loader_error_to_exception) there was no need to have that in
2954         mini. 
2955
2956         * class.c (mono_class_from_typeref): If we were not able to load
2957         the assembly with mono_assembly_load_reference, call the
2958         mono_loader_set_error_type_load to register the problem.
2959
2960         (mono_class_setup_fields): If we fail to load the type from
2961         mono_metadata_parse_type_full, call mono_class_set_failure and
2962         break from the loop.
2963
2964         If class->exception_type is set, we do not layout the fields as
2965         that might crash the runtime, and instead return (from breaking
2966         from the previous loop).
2967
2968         (mono_class_setup_vtable): This now returns a boolean indicating
2969         whether the table was properly setup.   The decision is driven by
2970         mono_class_get_overrides_full which might run into non-existing
2971         methods. 
2972         
2973         (mono_class_init): Returns TRUE on success or FALSE if there was a
2974         problem in loading the type (incorrect assemblies, missing
2975         assemblies, methods, etc).
2976
2977         When we call mono_class_setup_fields we also check for a potential
2978         error inside this call (either a class exception or a general
2979         loader exception).
2980
2981         (mono_class_create_from_typedef): If the parent fails to load
2982         (calling mono_class_get_full) return NULL.
2983         
2984         ** Important **
2985
2986         calls to mono_metadata_parse_type_full should be checked
2987         everywhere and set the mono_class_set_failure
2988         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
2989
2990         The current patch checks the places where my manually constructed
2991         tests show the errors are showing up, but we should do it
2992         everywhere. 
2993
2994         ** Important2 **
2995
2996         mono_class_init return values should be tested everywhere, like
2997         the previous case this is something that we should audit
2998         everywhere and not only on the cases exposed by the tests I
2999         created. 
3000
3001 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3002
3003         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3004         boolean parameter and instead pass the information on `options'
3005         parameter (FileOptions).
3006
3007         * icall.c: Register the new signature for MonoIO.Open.
3008
3009         * debug-helpers.c (dis_one): Trying to understand how coverity
3010         works.  Fix Run 5, item 78.
3011
3012 2006-04-26  Dick Porter  <dick@ximian.com>
3013
3014         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3015         dereference.
3016
3017 2006-04-25  Martin Baulig  <martin@ximian.com>
3018
3019         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3020
3021         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3022         debugger_thread_created().
3023         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3024         special way.
3025         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3026         (mono_debugger_finalize_threads): New function; undo the effects
3027         of mono_debugger_init_threads().
3028         (mono_debugger_create_all_threads): Removed.
3029
3030 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3031
3032         * image.c (mono_image_close): Tidy up trace messages.
3033
3034         * assembly.c (mono_assembly_close): Ditto.
3035
3036         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3037         no longer references an already freed assembly. Fixes #78168.
3038
3039 2006-04-21  Dick Porter  <dick@ximian.com>
3040
3041         * threads.c (mono_thread_detach): Fix reference counting when
3042         detaching threads.
3043
3044 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3047         #78155.
3048
3049 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3050
3051         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3052         (mono_type_to_stind): Ditto.
3053
3054         * marshal.c: Use the new helper functions to simplify code.
3055
3056         * image.c (mono_image_close): Add some code for help debug assembly unloading
3057         problems.
3058
3059         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3060         image mempool.
3061
3062         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3063         assembly was already loaded in another appdomain. Fixes #78083.
3064
3065 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3066
3067         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3068         referenced assemblies.
3069         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3070
3071         * domain.c (mono_domain_free): Add a trace message.
3072
3073         * appdomain.c (add_assemblies_to_domain): Ditto.        
3074
3075         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3076         field.  
3077
3078 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3079
3080         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3081
3082 2006-04-12  Martin Baulig  <martin@ximian.com>
3083
3084         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3085         `USE_INCLUDED_LIBGC'.   
3086
3087 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3090         the patch contains ../ and a small directory name later. Hopefully fixes
3091         #78035.
3092
3093 2006-04-10  Martin Baulig  <martin@ximian.com>
3094
3095         Clean up the debugger's thread-handling code.
3096
3097         The debugger's thread-handling code has been moved from
3098         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3099         over the `threads' hash, keep track of exiting threads and also
3100         use proper locking.
3101
3102         We can now debug XSP and XSP based applications with the debugger.
3103
3104         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3105
3106         * threads.h
3107         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3108         (mono_install_thread_callbacks): Likewise.      
3109
3110         * threads.c (mono_thread_callbacks): Removed.
3111         (debugger_thread_created, debugger_thread_exited): New static functions.
3112         (start_wrapper): Call debugger_thread_created().
3113         (thread_cleanup): Call debugger_thread_exited().
3114         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3115         (mono_debugger_init_threads): New public function.
3116         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3117         iterate directly over the `threads' hash and also use proper locking.
3118
3119         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3120
3121         * mono-debug-debugger.h
3122         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3123
3124 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3125
3126         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3127         argument type=array. Fixes #78057.
3128
3129 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3130
3131         * culture-info-table.h : regenerated. Fixed bug #69652.
3132
3133 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3134
3135         * loader.c metadata.c: Reapply a variant r59116.
3136         
3137         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3138
3139         * class.c (mono_class_setup_interface_offsets): New internal function.
3140
3141         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3142         interfaces too. Fixes #77398.
3143
3144         * reflection.c (encode_cattr_value): Add support for 
3145         parameter type=object, argument type=array.
3146         (load_cattr_value): Ditto. Fixes #77916.
3147
3148         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3149         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3150
3151         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3152         a byval char array and CharSet is Ansi.
3153
3154         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3155
3156 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3157
3158         * metadata.c: Add some locking comments.
3159         
3160         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3161         mempool.
3162         (mono_metadata_free_method_signature): Don't free the signature itself.
3163
3164         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3165
3166         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3167         reference the same MonoImage.
3168         (mono_assembly_load_from_full): Add an assert.
3169
3170 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3171
3172         * image.c (mono_image_close): Don't put the image we are about to free into the
3173         loaded_images_guid_hash.
3174
3175         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3176         to reduce code duplication.
3177
3178         * marshal.c: Register the native functions called by this module as icalls, to
3179         somewhat centralize the creation of MonoMethodSignature's.
3180
3181         * loader.c (mono_method_signature): Add a cache for method signatures.
3182
3183         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3184         the parameter attributes of a method.
3185         (mono_metadata_parse_method_signature_full): Refactored the computation of
3186         parameter attributes into a separate function. Also avoid one allocation in
3187         most cases.
3188
3189         * assembly.c (mono_assembly_close): Ditto.
3190
3191         * image.c (mono_image_close): Log trace messages with INFO level.
3192
3193         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3194
3195         * image.c reflection.c: Correct reference counting of image modules.
3196         
3197         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3198         of this function from the image mempool.
3199         
3200         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3201         to allow more cached types to be used.
3202
3203         * mono-debug.c (mono_debug_add_method): Appled patch from
3204         David S. Miller  <davem@sunset.davemloft.net>: Access 
3205         minfo->lexical_blocks[] entry elements using read32().
3206
3207 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3208
3209         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3210         methods as it is allocated from the mempool.
3211
3212         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3213         image mempool.
3214
3215         * metadata-internals.h: Add comments describing the reference counting scheme
3216         used for MonoImage and MonoAssembly.
3217
3218         * image.c assembly.c reflection.c: Rework reference counting of images and 
3219         assemblies so they are freed when the runtime is shut down. Free some 
3220         additional memory structures when an image is unloaded.
3221         
3222 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3223
3224         * class.c loader.c reflection.c: Allocate more data structures in
3225         the image mempool.
3226
3227 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3228
3229         * icall.c
3230         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3231         build on pre glib 2.4 systems.
3232
3233 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3234
3235         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3236
3237         * icall.c: Fix some warnings.
3238
3239 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3240
3241         * culture-info-table.h : regenerated.
3242
3243 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3244
3245         * threads.c, object-internals.h, verify.c: changed the culture caching
3246         code to use a normal MonoArray for storage so the GC can keep track of
3247         them easily. Fixed bits of the cache logic, too and simplified the
3248         code.
3249
3250 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3251
3252         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3253         thread for non-Boehm GCs.
3254
3255 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3256
3257         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3258         needed to keep track of the data for static fields.
3259
3260 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3261
3262         Fix #75172
3263         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3264         for interface classes.  Use 'num_methods' instead.
3265         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3266         before using '->vtable_size' field.
3267
3268 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3269
3270         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3271         doesn't contain managed pointers, so use a normal hashtable.
3272
3273 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3274
3275         * reflection.c, class-internals.h, domain.c: fixed handling of types
3276         used as values for objects in custom attributes (bug #77915):
3277
3278 2006-03-24  Martin Baulig  <martin@ximian.com>
3279
3280         * class.c (mono_class_setup_fields): Added support for generic
3281         instances; fixes #77580.
3282
3283 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3284
3285         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3286
3287 2006-03-24  Dick Porter  <dick@ximian.com>
3288
3289         * file-io.c (get_file_attributes): More stat macro breakage.
3290         Fixes bug 77759.
3291
3292 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3293
3294         * profiler.c: added the file=filename option in the default profiler
3295         to output the profile data to filename.
3296
3297 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3298
3299         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3300         bug #77877.
3301
3302 2006-03-22  Martin Baulig  <martin@ximian.com>
3303
3304         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3305         allocated `MonoClassField *' in `fb->handle'.
3306
3307 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3308
3309         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3310         allocate interface ID to save memory and allow better ID reuse on
3311         appdomain unload. setup_generic_vtable () removal from Martin.
3312
3313 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3314
3315         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3316         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3317         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3318         write barriers for reference stores with managed objects accessed with
3319         C structures in the runtime and in embedding programs.
3320
3321 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3322
3323         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3324         'interface_id' and 'max_interface_id' fields of MonoClasses
3325         representing open generic types.
3326
3327 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3328
3329         * object.h, object.c, icall.c: added functions to deal with
3330         storing valuetypes that contain references in managed objects.
3331         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3332         fixes and comments around uses of mono_array_addr ().
3333
3334 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3335
3336         * object.h, icall.c, monitor.c: object.GetHashCode ()
3337         implementation that supports the moving garbage collector.
3338
3339 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3340
3341         * icall.c, threads-types.h, threads.c: implemented finalizer for
3342         LocalDataStoreSlot.
3343
3344 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3345
3346         * metadata.c (mono_type_size): Add a fixme.
3347         (mono_type_stack_size): Ditto.
3348
3349         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3350         'type_forwarders' field.
3351
3352         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3353         attribute from net 2.0.
3354
3355         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3356         from class.c.
3357
3358         * class.c (mono_class_setup_fields): Fix a warning.
3359         
3360         * class.c (mono_class_from_name): Add support for assemblyref entries
3361         in the EXPORTEDTYPE table.
3362
3363         * reflection.c: Add support for handling type forwarders under net 2.0.
3364
3365         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3366         
3367 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3368
3369         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3370         overwriting entries in ModuleBuild->types, also clean up the code
3371         a little. Fixes #77774.
3372
3373 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3374
3375         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3376         load friend assembly info when present.
3377
3378 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3379
3380         Fix crasher on gtest-158.cs.
3381         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3382         the return value if the MonoClass we want is yet in an
3383         inconsistent state.
3384         * class.c (mono_class_create_from_typedef): Add an comment
3385         explaining an order dependency between mono_class_setup_parent and
3386         mono_class_setup_mono_type.
3387
3388 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
3389
3390         * class.c: documentation updates and events bug fix.
3391
3392 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3393
3394         * class.c: some cleanup, locking fixes.
3395
3396 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3397
3398         * class.c: fix the generics code to setup nested
3399         type info to the instantiated type (bug #77770).
3400
3401 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3402
3403         * marshal.c: fixed a few type correctness issues.
3404
3405 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3406
3407         * loader.c: the Set/Get/Addrtess array methods should be public.
3408
3409 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3410
3411         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
3412         
3413         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
3414         info->wrapper.
3415
3416 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3417
3418         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
3419
3420         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
3421
3422         * mempool.c (mono_mempool_alloc): Speed this up a bit.
3423         (mono_mempool_alloc0): Ditto.
3424
3425 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3426
3427         * socket-io.c:
3428         (create_object_from_sockaddr): it was allocating 4 extra bytes
3429         for the AF_UNIX data. Fixes bug #77747.
3430
3431 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3432
3433         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
3434
3435 2006-03-09  Dick Porter  <dick@ximian.com>
3436
3437         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
3438         Fixes bug 76966 again.
3439
3440 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3441
3442         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
3443         names from r57532
3444         * appdomain.c: Bumped corlib version to 48 (due to r57532)
3445
3446 2006-03-07  Martin Baulig  <martin@ximian.com>
3447
3448         * object.c
3449         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
3450
3451 2006-03-07  Martin Baulig  <martin@ximian.com>
3452
3453         * class.c
3454         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
3455         regression introduced in r56970; see gtest-252.cs.
3456
3457         * loader.c (mono_get_method_constrained): Correctly handle generic
3458         methods; see gtest-253.cs.
3459
3460 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3461
3462         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
3463
3464 2006-03-04  Martin Baulig  <martin@ximian.com>
3465
3466         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
3467         compute the parent type at runtime, just like we're already doing
3468         it for interfaces.
3469
3470         * reflection.c
3471         (mono_reflection_bind_generic_parameters): Don't compute the
3472         parent type anymore.
3473
3474         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
3475
3476 2006-03-04  Martin Baulig  <martin@ximian.com>
3477
3478         * mono-debug-debugger.h
3479         (mono_debugger_create_notification_function): Allocate memory at
3480         runtime and return a pointer to it.
3481
3482 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * assembly.c: Fix windows build.
3485         
3486         * assembly.c: Fix build.
3487
3488         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
3489
3490         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
3491         
3492 2006-03-03  Dick Porter  <dick@ximian.com>
3493
3494         * process.c
3495         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3496         Check parameters before dereferencing them.  Fixes Aaron's part of
3497         bug 77393.
3498
3499 2006-03-03  Raja R Harinath  <rharinath@novell.com>
3500
3501         Fix performance regression.
3502         * loader.c (find_method_in_class): Add 'from_class' argument.
3503         Rename 'klass' argument to 'in_class'.  The signature is compared
3504         against the method in 'in_class', and the corresponding method is
3505         returned from 'from_class'.
3506         (find_method): Walk both 'in_class' and 'from_class' in parallel.
3507         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
3508         type definition and generic instantiation in parallel.
3509         (mono_get_method_constrained): Update to changes.
3510
3511 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3512
3513         * threads.c: make sure the domain is correct, too when doing
3514         mono_thread_attach ().
3515
3516 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
3517
3518         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
3519         windows. Fixes #77683.
3520
3521 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3522
3523         * object.h, *: introduced specific way to set elements of an array
3524         of references to be used as write barrier. Still need to audit the
3525         uses of mono_array_addr.
3526
3527 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3528
3529         * object-internals.h: New field to cache the assmebly name, patch
3530         from Tambet Ingo (tambet@ximian.com)
3531
3532 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3533
3534         * decimal.h, class-internals.h, metadata-internals.h,
3535         file-io.h: mark a few function declarations as internal, to
3536         reduce the number of PLT entries.
3537
3538 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3539
3540         * file-io.c: fix typo in warning message.
3541
3542 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3543
3544         * loader.c: on unix, lookup the "*A" version of a function
3545         if charset is auto as a second option before failing.
3546
3547 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3548
3549         * class.h (mono_class_inflate_generic_method): Revert to two
3550         argument version.
3551         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3552         (mono_class_inflate_generic_method_full): Add.
3553         * class.c (mono_class_inflate_generic_method_full): Rename from
3554         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3555         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3556         * loader.c, reflection.c: Update to changes.
3557
3558 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3559
3560         * icall.c: const fixes and small improvements.
3561
3562 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3563
3564         * threadpool.c: for asynchronous connect(), enable the same workaround
3565         for BSD 6 as for the Mac. Fixes bug #77637.
3566
3567 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3568
3569         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3570         formatted classes. Fixes #77524.
3571
3572 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3573
3574         * class.c (inflate_generic_type): Add a couple more
3575         micro-optimizations.
3576         (inflate_generic_context): Don't use the 'gmethod' from
3577         'inflate_with'.
3578         (mono_class_inflate_generic_method): If the method has generic
3579         parameters, but the passed-in context doesn't have a 'gmethod',
3580         create one.  Use the possibly simplified generic instantiation
3581         from the declaring class instead of the one passed in.
3582
3583 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3584
3585         Make generic method signature and method header handling lazy.
3586         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3587         (inflate_generic_header): Likewise.
3588         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3589         parameter to avoid inflating types.
3590         (mono_get_inflated_method): Empty out.
3591         * class.h (mono_class_inflate_generic_method): Update to changes.
3592         * loader.c (mono_get_method_from_token): Don't parse signature for
3593         generic methods, nor methods of generic classes.
3594         (mono_method_signature): Rename from 'mono_method_signature'.
3595         Inflate signature on demand.
3596         (mono_method_get_header): Inflate method header on demand.
3597         * reflection.c: Update to changes.
3598
3599 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3600
3601         * metadata.c (mono_metadata_inflate_generic_inst): If the
3602         instantiation is closed, don't bother expanding it in the new
3603         context.
3604         * class.c (inflate_generic_class): If the generic instantiation
3605         doesn't change after inflation, return the argument itself.
3606         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3607         Add bounds checks.
3608         (inflate_generic_context): If neither the generic class nor the
3609         generic method instantiations change, return the original context.
3610         * reflection.c (mono_method_get_object): Do
3611         'mono_get_inflated_method' before accessing the ->klass field.
3612         (inflate_mono_method): Don't create a MonoGenericMethod unless
3613         necessary.
3614         (inflate_method): Don't pass a constructed type as the declaring
3615         type of a methodbuilder.
3616
3617 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3618
3619         * object.c: fix memory overwrite.
3620
3621 2006-02-22  Dick Porter  <dick@ximian.com>
3622
3623         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3624         it doesn't work any more.
3625         (mono_threads_request_thread_dump): Fix unused variable warnings.
3626
3627 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3628
3629         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3630         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3631         the public header file.
3632
3633 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3634
3635         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3636
3637 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3638
3639         * class-internals.h, object.c: reduce the size of MonoVTable
3640         and store the interface_offsets array at negative offsets.
3641
3642 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3643
3644         * metadata.c: tweak table descriptors data structures to reduce
3645         size and runtime relocations.
3646
3647 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3648
3649         * marshal.c: fix some types and opcodes to be type-safe
3650         in marshaling wrappers.
3651
3652 2006-02-21  Ankit Jain  <jankit@novell.com>
3653
3654         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3655
3656 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3657
3658         * metadata.c (get_constraints): Relax debugging checks for monodis.
3659
3660 2006-02-21  Ankit Jain  <jankit@novell.com>
3661
3662         * metadata.c (mono_metadata_load_generic_params): Move the code
3663         checking for ambiguous generic params from here to mono/dis/get.c
3664         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3665
3666 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3667
3668         Fix assertion triggered when compiling nemerle.
3669         * class.c (mono_get_shared_generic_inst): Rename from
3670         get_shared_inst and make non-static.
3671         * loader.c (mono_get_shared_generic_method): New.  Used to create
3672         the MonoGenericContext-equivalent of a MonoGenericContainer.
3673         (mono_get_method_from_token): Initialize the 'context' field of
3674         the created MonoGenericContainer.
3675         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3676         * metadata.c (get_constraints): Add sanity check.
3677         * class-internals.h: Add new internal methods.
3678
3679         * reflection.c (verify_safe_for_managed_space): New sanity check.
3680         Currently checks that owner-less generic parameters aren't allowed
3681         in managed space.
3682         (mono_type_get_object): Use it.
3683         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3684         that are now in mono_type_get_object.
3685         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3686
3687 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3688
3689         * metadata.c (mono_type_create_from_typespec): Rename from
3690         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3691         argument and caching of types in the generic container.
3692         (unwrap_arrays, find_generic_param): Remove.
3693         * metadata-internals.h: Update.
3694         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3695
3696 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3697
3698         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3699
3700         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3701         return values. Fixes #77581.
3702
3703         * class.c (mono_fnptr_class_get): Switch name and name_space.
3704
3705         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3706         classes and add support for [In, Out] attributes.
3707         (mono_marshal_free_asany): Ditto. Fixes #77524.
3708
3709 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3710
3711         * class.c (mono_class_from_generic_parameter): Make more robust to
3712         incomplete MonoGenericContainers from monodis.
3713
3714 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3715
3716         * class-internals.h: added some more exception types.
3717         * class.c, metadata.c: added a few checks to handle missing
3718         types.
3719
3720 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3721
3722         Use owner-less generic-params some more.
3723         * class.c (my_mono_class_from_generic_parameter): Remove.
3724         (mono_class_from_generic_parameter): Handle null image,
3725         param->name and param->owner.
3726         (mono_class_from_mono_type): Update.
3727         (mono_class_create_from_typespec): Remove 'container' parameter.
3728         If that parameter is non-null, the result is always inflated by
3729         'mono_class_get_full' anyway.
3730         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3731         parameter.
3732         (mono_class_get_full): Update.
3733
3734         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3735         instance is not open, don't bother inflating.
3736         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3737         parse metadata for inflated classes.
3738         (_mono_class_get): Change GenericContext* parameter to
3739         GenericContainer*.
3740         (mono_class_create_from_typespec): Likewise.  Simplify, and
3741         implement trivially.  All the cases are handled in
3742         mono_class_from_mono_type.  Don't inflate returned class.
3743         (mono_class_get_full): Delegate GENERICINST optimization to
3744         inflate_generic_type.
3745         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3746
3747 2006-02-16  Dick Porter  <dick@ximian.com>
3748
3749         * socket-io.c (create_object_from_sockaddr): Fix typo.
3750         (create_sockaddr_from_object): Check array lengths before
3751         potentially accessing items off the end.
3752         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3753         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3754         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3755         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3756         length checks to avoid wraparound overflows.
3757         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3758         contents of the array of sockets
3759         (hostent_to_IPHostEntry2)
3760         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3761         Check return value of inet_ntop ().
3762         (addrinfo_to_IPHostEntry): Fix typo
3763
3764 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3765
3766         Type metadata parsing doesn't use generic-instantiation information.
3767         * metadata.c (mono_metadata_parse_array_full): Change
3768         MonoGenericContext* parameter to MonoGenericContainer*.
3769         (mono_metadata_parse_type_full): Likewise.
3770         (mono_type_create_from_typespec_full): Likewise.
3771         (mono_metadata_parse_mh_full): Likewise.
3772         (mono_metadata_parse_generic_inst): Likewise.
3773         (do_mono_metadata_parse_generic_class): Likewise.
3774         (do_mono_metadata_parse_type): Likewise.
3775         * metadata-internals.h: Update to changes.
3776         * class.c (mono_class_find_enum_basetype): Likewise.
3777         (mono_class_setup_fields): Likewise.
3778         (mono_class_create_from_typespec): Likewise.
3779         * loader.c (method_from_methodspec): Likewise.
3780         (mono_get_method_from_token): Likewise.
3781         (mono_method_get_header): Likewise.
3782
3783 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3784
3785         * marshal.c: handle additional GENERICINST case (patch from
3786         Thong Nguyen <tum@veridicus.com>).
3787         Fix a few cases where LDIND_I/STIND_I was used for references.
3788
3789 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3790
3791         * reflection.c (mono_reflection_get_token): Remove unused variable.
3792
3793 2006-02-16  Martin Baulig  <martin@ximian.com>
3794
3795         * reflection.c (mono_reflection_get_token): Add support for fields
3796         in instantiated generic types.
3797
3798         * icall.c
3799         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3800
3801 2006-02-15  Martin Baulig  <martin@ximian.com>
3802
3803         * icall.c
3804         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3805         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3806         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3807         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3808
3809 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3810
3811         * class.c, metadata.c, metadata.h, object.c, icall.c,
3812         marshal.c: changed mono_type_get_underlying_type () to do
3813         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
3814         Fixed handling of instantiated generic valuetypes (bug #75479).
3815
3816 2006-02-15  Raja R Harinath  <rharinath@novell.com>
3817
3818         * metadata.c (mono_metadata_decode_signed_value): Simplify.
3819         Delegate to mono_metadata_decode_value, and work on the returned value.
3820
3821         * icall.c (ves_icall_MonoType_GetGenericArguments):
3822         Add consistency check here too.
3823         
3824 2006-02-15  Ankit Jain  <jankit@novell.com>
3825
3826         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
3827         char/short etc.
3828
3829 2006-02-15  Ankit Jain  <jankit@novell.com>
3830
3831         * metadata.c (mono_metadata_decode_signed_value): New function to decode
3832         signed values, used only for representing lower bounds of arrays.
3833         (mono_metadata_parse_array_full): Use new
3834         mono_metadata_decode_signed_value to decode lower bounds.
3835
3836 2006-02-14  Martin Baulig  <martin@ximian.com>
3837
3838         * reflection.c
3839         (mono_reflection_get_token): Support "MonoGenericMethod" and
3840         "MonoGenericCMethod" and allow generic instances / methods.
3841
3842 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
3843
3844         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
3845         to obtain the terminal size using an ioctl.
3846
3847         * object.c (mono_nullable_init): Revert this as nullable reference
3848         types are not valid.
3849         (mono_nullable_box): Ditto.
3850
3851 2006-02-09  Dick Porter  <dick@ximian.com>
3852
3853         * threads.c (mono_thread_detach): Drop a reference to the thread
3854         we're detaching.
3855
3856 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
3857
3858         * object.c (mono_nullable_init): Handle nullable reference types.
3859         (mono_nullable_box): Ditto. Fixes #77446.
3860
3861 2006-02-07  Martin Baulig  <martin@ximian.com>
3862
3863         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
3864
3865 2006-02-07  Ankit Jain  <jankit@novell.com>
3866
3867         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
3868         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
3869         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
3870         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
3871         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
3872         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
3873
3874 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
3875
3876         * class.c (mono_class_create_generic): Set type_token as well.
3877
3878         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
3879         compatible with MS.
3880
3881 2006-02-02  Martin Baulig  <martin@ximian.com>
3882
3883         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
3884         has never been used so far.
3885
3886 2006-02-02  Martin Baulig  <martin@ximian.com>
3887
3888         * mono-debug-debugger.h: Changed comment at the top of this file;
3889         the header is not installed, but it's safe to #include it from
3890         within the JIT.
3891
3892         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
3893         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
3894
3895 2006-02-02  Martin Baulig  <martin@ximian.com>
3896
3897         * mono-debug.h
3898         (MonoSymbolTable): Removed the `metadata_info' field.
3899
3900         * mono-debug.c
3901         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
3902
3903         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
3904         (mono_debugger_add_builtin_types): Removed.
3905         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
3906         (mono_debugger_create_notification_function): We now operate on a
3907         pre-allocated area; take a `gpointer' and return `void'.
3908
3909         * mono-debug-debugger.c
3910         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
3911         (mono_debugger_add_builtin_types): Removed.
3912
3913 2006-02-02  Martin Baulig  <martin@ximian.com>
3914
3915         * threads.c (mono_debugger_create_all_threads): New public method.
3916
3917 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3918
3919         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
3920         breaks on several platforms.
3921
3922 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
3923
3924         * assembly.c: the VS.NET build doesn't supply default values for
3925         MONO_ASSEMBLIES and MONO_CFG_DIR.
3926
3927 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
3928
3929         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
3930         helper function.
3931
3932         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
3933
3934         * loader.c (method_from_memberref): Fix a warning.
3935
3936         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
3937
3938         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
3939         with explicit layout. Fixes #77433.
3940
3941 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
3942
3943         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
3944         max_interface_id is initialized before using it. Fixes #77398.
3945         (ves_icall_Type_GetInterfaces): Ditto.
3946
3947 2006-01-30  Raja R Harinath  <rharinath@novell.com>
3948
3949         * metadata.c (mono_metadata_parse_method_signature_full): Don't
3950         allocate memory for parameter attributes when parsing memberref
3951         signatures.
3952         * loader.c (mono_loader_set_error_method_load): Don't warn.
3953         (method_from_memberref): Ensure MissingMethodException gets thrown
3954         if method is not found.  Make warning more informative.
3955
3956 2006-01-29  Raja R Harinath  <harinath@gmail.com>
3957
3958         Fix #77397
3959         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
3960         return true if is byref.
3961         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3962         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
3963         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3964
3965 2006-01-27  Raja R Harinath  <rharinath@novell.com>
3966
3967         Fix tests/find-method.2.il
3968         * loader.c (find_method, find_method_in_class): Remove is_inflated
3969         argument.  Revert 2006-01-18 change.
3970         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
3971         is generic, search for method in its generic definition.
3972         * class.c (mono_class_setup_vtable_general): Print generic
3973         arguments of generic types in debugging printf.
3974
3975 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
3976
3977         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
3978
3979         * threads.c (mono_threads_request_thread_dump): New helper function.
3980
3981 2006-01-25  Raja R Harinath  <rharinath@novell.com>
3982
3983         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
3984
3985 2006-01-25  Ankit Jain  <jankit@novell.com>
3986
3987         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
3988         move definition to ..
3989         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
3990         
3991 2006-01-25  Ankit Jain  <jankit@novell.com>
3992             Raja R Harinath  <rharinath@novell.com>
3993
3994         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
3995         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
3996         as necessary.
3997
3998 2006-01-25  Martin Baulig  <martin@ximian.com>
3999
4000         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4001         `MonoDebuggerThread' into debug-debugger.c.
4002
4003 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4004
4005         * profiler.c: fix printing of data.
4006
4007 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4008
4009         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4010           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4011
4012 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4013
4014         * object.c: fix deadlock related to string interning.
4015
4016 2006-01-23  Martin Baulig  <martin@ximian.com>
4017
4018         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4019
4020         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4021
4022 2006-01-23  Martin Baulig  <martin@ximian.com>
4023
4024         * mono-debug.h: Moved the prototypes of some functions which are
4025         used by the JIT here from mono-debug-debugger.h.
4026
4027 2006-01-21  Martin Baulig  <martin@ximian.com>
4028
4029         * Makefile.am: Don't install mono-debug-debugger.h.
4030
4031 2006-01-21  Martin Baulig  <martin@ximian.com>
4032
4033         * mono-debug-debugger.h: Enforce the private status of this header
4034         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4035         Moved some stuff from mono-debugger-jit-wrapper.h here.
4036
4037 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4038
4039         * class.c (mono_class_from_typeref): Add a sanity test to help
4040         catch lack of assembly load/search hooks.
4041
4042 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4043
4044         * marshal.c (emit_struct_conv): Relax the fields with same offset
4045         check even more. Fixes #77230.
4046
4047 2006-01-18  Martin Baulig  <martin@ximian.com>
4048
4049         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4050         argument; if false, we compare the uninstantiated signatures.
4051         (method_from_memberref): Compare the uninstantiated signatures;
4052         fixes #76417.
4053
4054 2006-01-18  Robert Jordan  <robertj@gmx.net>
4055
4056         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4057         Clear the weak link. Fixes bug #77170.
4058
4059         * gc.c (mono_gchandle_free):
4060         Reflect *-gc.c changes (tiny optimization).
4061
4062 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4063
4064         * metadata.c (mono_metadata_signature_dup): Applied patch from
4065         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4066         Fixes #77288.
4067
4068 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4069
4070         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4071         marshalling from native to managed code. Fixes #77230.
4072
4073 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4074
4075         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4076         connect. Fixes bug #77020.
4077
4078 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4079
4080         * class.c: fixed id assignement for nested interfaces (bug #77275).
4081         Added also better info for --print-vtable debugging.
4082
4083 2006-01-12  Martin Baulig  <martin@ximian.com>
4084
4085         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4086         interfaces on-the-fly; fixes #76625.
4087
4088         * class-internals.h
4089         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4090         don't need that anymore.
4091
4092 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4093
4094         * socket-io.c
4095         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4096         To avoid initing the nested_classes when not needed I turned the
4097         PeerCredData as a toplevel internal class, as it has to be shared
4098         anyways. 
4099
4100         Fixes the CASA issue.
4101
4102 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4103
4104         * domain.c: Accessors for MonoJitInfo
4105
4106         * profiler-private.h: Add jitinfo to the end jit hook
4107
4108         * profiler.[ch]: Define new hooks, called after jitting which give
4109         the MonoJitInfo that was compiled
4110
4111 2006-01-10  Martin Baulig  <martin@ximian.com>
4112
4113         * class.c (mono_class_setup_events): Add support for generic
4114         classes; fixes #76440.
4115
4116 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4117
4118         Fix #77160.
4119         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4120         on passed-in method.
4121
4122 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4123
4124         * object.c (mono_runtime_invoke_array): Add Nullable support.
4125
4126         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4127
4128 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4129
4130         * file-io.c: Don't consider sockets as directory and avoid an endless
4131         loop. Fix bug #76966.
4132
4133 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4134
4135         * object.c (mono_nullable_init): New helper function.
4136         (mono_nullable_box): Ditto.
4137
4138         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4139
4140         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4141
4142         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4143         
4144 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4145
4146         * class.c (mono_class_is_assignable_from): Make T assignable to 
4147         Nullable<T>.
4148
4149 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4150
4151         * appdomain.c: Bump corlib version to 46.
4152         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4153         serialization purpose) and changed ves_icall_System_Reflection_
4154         Assembly_get_code_base signature to accept a boolean (to escape, or 
4155         not, the assembly code base).
4156
4157 2005-12-23  Dick Porter  <dick@ximian.com>
4158
4159         * icall.c: 
4160         * threads-types.h: 
4161         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4162         CreateEvent icall now returns "created" boolean parameter.
4163
4164 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4165
4166         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4167         #76967.
4168
4169         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4170         when attr_klass is an interface. Fixes #77045.
4171
4172 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4173
4174         * marshal.c (emit_struct_conv): Fix previous patch.
4175         
4176         * marshal.c (emit_struct_conv): Add a check for fields with the same
4177         offset.
4178
4179 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4180
4181         Fix regression in Mono.C5.
4182         * class.c (mono_class_create_generic): If 'klass' is an interface
4183         set up the interface offsets.
4184         (mono_class_is_assignable_from): Don't throw away generic arguments.
4185
4186 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4187
4188         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4189         type parameters.
4190
4191 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4192
4193         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4194         dead store.
4195         (do_mono_metadata_parse_generic_class): Don't pass the current
4196         generic context when parsing the type being instantiated: it
4197         cannot use it, anyway.
4198
4199         * loader.c (method_from_memberref): Don't inflate a signature if
4200         it doesn't contain any type parameters.
4201
4202 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4203
4204         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4205
4206 2005-12-14  Martin Baulig  <martin@ximian.com>
4207
4208         * class.c
4209         (mono_type_get_name_recurse): Don't return null for type
4210         parameters and open generic classes.
4211         (mono_class_setup_methods): Don't exclude generic instances.
4212         (mono_get_unique_iid): Use different IDs for different
4213         instantiations of the same generic type.
4214         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4215         open generic instances; create a normal vtable for closed generic
4216         instances.
4217         (mono_class_setup_vtable_general): We're now also called for
4218         closed generic instances.
4219
4220         * reflection.c
4221         (mono_reflection_bind_generic_parameters): Correctly use
4222         mono_metadata_lookup_generic_inst() everywhere.
4223
4224 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * object.c (mono_class_create_runtime_vtable): Call 
4227         mono_class_setup_vtable ().
4228
4229         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4230         function.
4231         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4232         #76959.
4233
4234         * loader.c (mono_loader_set_error_type_load): Print the type load
4235         warnings to the console so they are more visible to the user.
4236         (mono_loader_set_error_method_load): Ditto.
4237
4238         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4239         is still broken.
4240         
4241         * reflection.c (ensure_runtime_vtable): Fix build.
4242
4243         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4244         doesn't work in all cases.
4245
4246 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4247
4248         * object.c (mono_array_new_full): Treat a single dimensional array
4249         with 0 lower bounds as an szarray. Fixes #76973.
4250
4251         * reflection.c (custom_attr_visible): Really fix this.
4252
4253 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4254
4255         * reflection.c (custom_attr_visible): Allow nested public attributes
4256         as well.
4257
4258         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4259         interface check.
4260
4261 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4262
4263         * class.c (set_generic_param_owner): Delete.
4264         (mono_class_create_from_typedef): Don't set ->owner field of
4265         generic parameters to "param containers" of enclosing classes.
4266         * reflection.c (mono_reflection_initialize_generic_parameter):
4267         Likewise.
4268
4269 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4270
4271         * reflection.c (custom_attr_visible): Fix build.
4272
4273 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4274
4275         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4276         private attributes.
4277         
4278         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4279         handling of null parameter defaults.
4280
4281 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4282
4283         * class.c (mono_class_from_generic_parameter): Don't set
4284         klass->generic_container.
4285         (my_mono_class_from_generic_parameter): Likewise.
4286
4287 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4288
4289         * reflection.c (load_public_key): Fix a warning.
4290         (method_encode_code): Fix unaligned accesses.
4291
4292 2005-12-07  Martin Baulig  <martin@ximian.com>
4293
4294         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4295
4296         * reflection.c
4297         (write_generic_param_entry): Encode our custom attrs.
4298
4299         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4300
4301 2005-12-07  Martin Baulig  <martin@ximian.com>
4302
4303         * reflection.c (encode_new_constraint): Removed; we don't use the
4304         `NewConstraintAttribute' anymore.
4305
4306 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4307
4308         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4309         not fire a TypeResolve event when Assembly.GetType () is called.
4310
4311 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4312
4313         Beginning of support for nullable types in the runtime. Parts of
4314         this patch are from Martin.
4315
4316         * appdomain.c (MONO_CORLIB_VERSION): Bump
4317
4318         * domain.c (mono_init_internal): get the nullable type
4319
4320         * class.c (mono_class_is_nullable): New method
4321         (mono_class_get_nullable_param): New mehod
4322         (mono_class_create_generic): In types T? set cast_class to T
4323
4324         * class-internals.h (MonoDefaults): new nullable default class
4325         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4326         new methods.
4327
4328 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4329
4330         * metadata.c (select_container): New.  Refactor code to select the
4331         appropriate GenericContainer given the type of generic parameter
4332         we are looking for.
4333         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4334         not a MonoGenericContext.  Use select_container.  Update parameters.
4335         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4336         and MONO_TYPE_MVAR.
4337         (unwrap_arrays): Remove duplicate tests.
4338         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4339         generic instantiated class to find any arguments that are generic
4340         parameters.
4341         (mono_type_create_from_typespec_full): Use find_generic_param to
4342         avoid evicting some generic instantiations from the typespec
4343         cache.
4344
4345 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4346
4347         * reflection.c: fixed writing of doubles on ARM FPA.
4348
4349 2005-12-02  Robert Jordan  <robertj@gmx.net>
4350
4351         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4352
4353 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4354
4355         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4356         least on SUSE 10 they are not the same (on debian, they are just the
4357         same thing).
4358
4359 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4360
4361         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4362         DeclaringType for VARs and MVARs.
4363         * class.c (set_generic_param_owner): Fix initialization of owner
4364         fields.
4365
4366 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4367
4368         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4369
4370 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4371
4372         * threadpool.c: workaround for a bug that shows up on the Mac:
4373         select()+connect() on a blocking socket is not like it should
4374         be, so we proceed to connect() in that case, wasting the I/O
4375         threadpool thread until connect succeedes. Fixes bug #75436.
4376
4377 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4378
4379         * threadpool.c: fix typo when setting file descriptor states.
4380
4381 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4382
4383         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4384         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4385         create a temporary signature container.
4386         (mono_metadata_parse_generic_param): Update to changes.
4387         (mono_type_create_from_typespec_full): Update to changes.
4388         * loader.c (method_from_memberref): Don't use a
4389         MonoGenericContainer while parsing a memberref signature.
4390         (method_from_methodspec): Remove dead-store of the 'container'
4391         variable.  It's overwritten before use.
4392
4393         * metadata.c (mono_type_create_from_typespec_full): Make debugging
4394         checks tighter.
4395         (mono_metadata_parse_generic_param): Likewise.
4396         * loader.c (find_method_in_class): Does not need a
4397         MonoGenericContainer.  Use 'mono_method_signature' rather than
4398         'mono_method_signature_full'.
4399         (find_method, mono_get_method_constrained, method_from_memberref):
4400         Update to changes.
4401
4402         * metadata.c (mono_type_create_from_typespec_full): Ensure that
4403         owner-less generic-parameters are never evicted from the typespec
4404         cache.
4405
4406         * loader.c (method_from_memberref): Don't use the current context
4407         when parsing signatures.
4408         (method_from_methodspec, mono_get_method_from_token): Update to changes.
4409
4410         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
4411         side-effects in g_assert.
4412         * loader.c (mono_get_method_from_token): Resolve klass earlier so
4413         that we don't potentially lose information.
4414
4415 2005-11-26  Dick Porter  <dick@ximian.com>
4416
4417         * icall.c:
4418         * threads.c: icalls to implement basic (ie, not named)
4419         System.Threading.Semaphore.
4420
4421 2005-11-24  Dick Porter  <dick@ximian.com>
4422
4423         * process.c
4424         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4425         Use GetProcessId() if it's available.
4426
4427 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
4430
4431 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4432             Ankit Jain  <jankit@novell.com>
4433
4434         * loader.c (mono_get_method_from_token): Initialize 'method' field
4435         of all generic parameters before parsing the signature.  Remove
4436         code that "fixed"-up MVAR references.
4437
4438 2005-11-23  Ankit Jain  <jankit@novell.com>
4439
4440         * metadata.c (mono_metadata_has_generic_params):
4441         (mono_metadata_load_generic_param_constraints):
4442         (mono_metadata_load_generic_params): Move duplicate code ...
4443         (mono_metadata_get_generic_param_row): ... here. Returns the
4444         first row-id in GenericParam table for a given owner (token).
4445         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
4446         prototype.
4447
4448 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4449             Ankit Jain  <jankit@novell.com>
4450
4451         * metadata.c (mono_metadata_class_equal): Pass signature_only when
4452         comparing VARs too.
4453         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
4454         type->data.generic_param only if the type is an MVAR.
4455         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
4456         leak owner-less VARs and MVARs into managed space.
4457
4458 2005-11-21  Martin Baulig  <martin@ximian.com>
4459
4460         * class-internals.h
4461         (MonoMethod): Moved the `generic_container' here from
4462         `MonoMethodNormal' since we now also need it for
4463         `MonoMethodPInvoke';
4464         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
4465         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
4466         an union containing both `MonoMethodNormal' and
4467         `MonoMethodPInvoke'.
4468
4469         * loader.c
4470         (mono_get_method_from_token): Allow implementing generic methods
4471         as interncalls.
4472
4473         * threads.c
4474         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
4475         icall.
4476
4477 2005-11-17  Dick Porter  <dick@ximian.com>
4478
4479         * icall.c: 
4480         * process.h: 
4481         * process.c: Split the Process Start_internal icall into
4482         ShellExecuteEx_internal and CreateProcess_internal, which are
4483         called depending on whether UseShellExecute is true.  Fixes bug
4484         76670.
4485
4486         * appdomain.c (MONO_CORLIB_VERSION): Incremented
4487
4488 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4489
4490         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
4491         'msize' parameters, use the information in 'mspec' instead.
4492         (emit_object_to_ptr_conv): Ditto.
4493
4494         * marshal.c (emit_struct_conv): Handle explicit layout structs with
4495         fields out of order. Fixes #76733.
4496
4497 2005-11-17  Ankit Jain  <jankit@novell.com>
4498
4499         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
4500
4501 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
4502
4503         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
4504           bug #76575.
4505
4506 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4507
4508         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
4509         for types with non-auto layout. Fixes #76717.
4510
4511 2005-11-16  Ankit Jain  <jankit@novell.com>
4512
4513         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
4514         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
4515         if generic_context is null.
4516           (mono_metadata_generic_param_equal): param->owner can be null.
4517           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
4518         null.
4519
4520 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4521
4522         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4523         the correct value.
4524
4525 2005-11-15  Martin Baulig  <martin@ximian.com>
4526
4527         * object.c (set_value): Use mono_class_from_mono_type() instead of
4528         the hack for generic instances; fixes #76136.
4529
4530 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4531
4532         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4533         fields.
4534
4535         * image.c (load_metadata_ptrs): Initialize the new fields.
4536
4537         * reflection.c (create_dynamic_mono_image): Ditto.
4538
4539         * reflection.c (build_compressed_metadata): Use the new fields.
4540
4541         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4542         icall.
4543
4544         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4545         icall.
4546         
4547 2005-11-15  Ankit Jain  <jankit@novell.com>
4548             Raja R Harinath  <harinath@gmail.com>
4549
4550         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4551         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4552         new per-generic_container cache if the cached MonoType's context matches
4553         the current context.
4554           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4555         to the expected context.
4556           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4557
4558 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4559
4560         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4561         we changed the signature of an icall.
4562         * icall.c: Modify to mono_double_ParseImpl return true/false 
4563         depending on the success, instead of throwing the exception. This will
4564         help us in Double.TryParse methods.
4565         
4566 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4567
4568         * marshal.c (emit_marshal_object): Throw an exception when
4569         marshalling 'object' instead of crashing. Fixes #76696.
4570
4571 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4572
4573         * class-internals.h: Add prototype for mono_type_get_full_name ().
4574
4575 2005-11-11  Dick Porter  <dick@ximian.com>
4576
4577         * threads.c (mono_thread_manage): Make sure the main thread has
4578         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4579
4580 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4581
4582         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4583         console about the missing type.
4584         (mono_loader_set_error_method_load): Ditto.
4585
4586 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4587
4588         * mono-config.c (mono_get_config_dir): Set the system defaults if
4589         none is specified.
4590
4591         * assembly.c (mono_set_dirs): New API entry point to set the
4592         assembly and the config directory in one call
4593
4594 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4595
4596         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4597         the ftnptr was created from a delegate in a domain other than the
4598         current domain. Fixes #75377.
4599
4600         * exception.h exception.c: Add mono_get_exception_not_supported ().
4601
4602 2005-11-08  Martin Baulig  <martin@ximian.com>
4603
4604         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4605
4606 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4607
4608         * security-manager.h: Added definitions to deal with strongname key 
4609         pairs bigger (and smaller) than 1024 bits.
4610         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4611         adjust wrt the public key length being used.
4612
4613 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4614
4615         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4616           Windows build (r51396-51397).
4617
4618 2005-11-03  Martin Baulig  <martin@ximian.com>
4619
4620         * class.c (mono_class_setup_vtable_general): Also add generic
4621         methods to the vtable; fixes #76581.
4622
4623 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4624
4625         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4626         sure that we lookup GetString method from the System.Text.Encoding
4627         class, not the derived class or we get an empty method.
4628
4629         Fixed class #76612.
4630
4631 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4632
4633         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4634         if it has been previously set (embedders). 
4635
4636         Make mono_set_rootdir available also on Unix.
4637
4638 005-10-24  Robert Jordan  <robertj@gmx.net>
4639
4640         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4641
4642 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4643
4644         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4645         only calls which are made to native code use this flag.
4646
4647         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4648
4649 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4650
4651         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4652         Add support for FieldBuilders.
4653
4654 2005-10-29  Martin Baulig  <martin@ximian.com>
4655
4656         * mono-debug.c
4657         (mono_debug_using_mono_debugger): New public method; returns
4658         whether we're running inside the debugger.
4659
4660 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4661
4662         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4663         for Method/Constructor/FieldBuilders.
4664
4665 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4666
4667         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4668         and fields as well.
4669
4670 2005-10-26  Martin Baulig  <martin@ximian.com>
4671
4672         * mono-debug-debugger.c
4673         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4674
4675 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4676
4677         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4678         integer to isspace.
4679
4680 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4681
4682         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4683         when passing valuetypes byref. Fixes #76502.
4684
4685 2005-10-19  Jackson Harper  <jackson@ximian.com>
4686
4687         * profiler.c: Don't put a . in front of types that are not in a
4688         namespace.
4689
4690 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4693
4694 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4695
4696         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4697         #76436.
4698         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4699
4700 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4701
4702         * assembly.c metadata-internals.h icall.c: Define an additional
4703         parameter for mono_assembly_name_parse_full, so we can avoid creating
4704         S.R.AssemblyName.Version when no version info wasn't passed.
4705         
4706 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4707
4708         * class.c (mono_type_get_full_name): Reimplement method that was
4709         removed. 
4710
4711         * image.c: Some docs
4712
4713 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4714
4715         * profiler.c (output_newobj_profile): Fix printing of Total memory
4716         on x86.
4717
4718 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4719
4720         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4721
4722 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4723
4724         * threads.c: remove debug output.
4725
4726 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4727
4728         * threads.c (mono_thread_manage): Fix crashes if more than 64
4729         threads need to be aborted. Hopefully fixes #75899.
4730
4731         * assembly.c (mono_stringify_assembly_name): New helper function.
4732
4733         * class.c: Use mono_stringify_assembly_name instead of the similar
4734         static function.
4735
4736         * assembly.h assembly.c: Add support for calling a postload search 
4737         hook if an assembly cannot be loaded.
4738
4739         * appdomain.c: Register new search hooks which call the AssemblyResolve
4740         events in AppDomain. Fixes #75231
4741
4742 2005-10-07  Martin Baulig  <martin@ximian.com>
4743
4744         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4745         methods without debug info.
4746
4747 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4748
4749         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4750         wrappers.
4751
4752 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4753
4754         * file-io.c: now that we return symlinks, use lstat and, when the file
4755         is a symbolic link, stat, to get the file attributes. Also avoid the
4756         conversion to/from utf16/external.
4757
4758 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4759
4760         * class.c (mono_class_layout_fields): Compute klass->has_references
4761         correctly if an embedded valuetype is not yet initialized. Fixes
4762         #76331.
4763
4764 2005-10-04  Martin Baulig  <martin@ximian.com>
4765
4766         * metadata.c
4767         (mono_metadata_load_generic_param_constraints): New public
4768         function; splitted the constraints loading out from
4769         mono_metadata_load_generic_params().
4770
4771         * class.c (mono_class_create_from_typedef): Call
4772         mono_metadata_load_generic_param_constraints() after setting up
4773         the type and creating our parent; fixes #75329.
4774
4775 2005-10-04  Martin Baulig  <martin@ximian.com>
4776
4777         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4778         non-dynamic parent classes.
4779
4780 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4781
4782         * file-io.c : win32 build fix (ETXTBSY seems not found).
4783
4784 2005-10-04  Martin Baulig  <martin@ximian.com>
4785
4786         * reflection.c
4787         (mono_image_get_methodspec_token): Make the cache actually work;
4788         fixes #75974.
4789
4790 2005-10-04  Martin Baulig  <martin@ximian.com>
4791
4792         * class.c (mono_class_name_from_token): Removed the unneccessary
4793         `MonoGenericContext *' argument.
4794
4795 2005-10-04  Martin Baulig  <martin@ximian.com>
4796
4797         * loader.c
4798         (method_from_methodspec): Make the caching work again; fixes the
4799         performance regression from #76262.
4800
4801 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4802
4803         * file-io.c:
4804         * file-io.h:
4805         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4806         GetFileSystemEntries that performs the same work but without going
4807         into io-layer, locking, etc.
4808
4809 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
4810
4811         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
4812         ThreadState_Stopped as well. Fixes #76047.
4813
4814 2005-09-29  Martin Baulig  <martin@ximian.com>
4815
4816         * class.c
4817         (inflate_generic_context): If the new context has a `gmethod', set
4818         its `container' that that gmethod's `container'.
4819
4820         * metadata.c
4821         (mono_metadata_parse_generic_param): Simplify things;
4822         `generic_container = generic_context->container;' is just fine.
4823
4824         * loader.c (method_from_methodspec): Code cleanups.
4825
4826 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
4827
4828         * decimal.c: fix warning (and let gcc generate correct
4829         code on ARM with optimizations).
4830
4831 2005-09-28  Martin Baulig  <martin@ximian.com>
4832
4833         * loader.c
4834         (method_from_memberref): Added `MonoGenericContext *class_context'
4835         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
4836         (method_from_methodspec): If we're a memberref, use the enclosing
4837         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
4838
4839 2005-09-28  Martin Baulig  <martin@ximian.com>
4840
4841         * object.c (mono_runtime_invoke_array): Added support for
4842         MONO_TYPE_GENERICINST; fixes #75917.
4843
4844 2005-09-27  Martin Baulig  <martin@ximian.com>
4845
4846         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
4847         `k->byval_arg.type' to determine the actual type.
4848
4849         * loader.c (method_from_methodspec): Removed some hacks.
4850
4851 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
4852
4853         * class-internals.h (mono_field_is_deleted): Do the test for
4854         rtspecialname before we check the actual name of the field. This
4855         prevents us from dereferencing a pointer into the string table,
4856         saving us from accessing a few pages
4857
4858         * *.c: Replace the use of {Enter,Leave}CriticalSection with
4859         macros. This will allow a deadlock debugger to easily be plugged
4860         in.
4861
4862 2005-09-27  Martin Baulig  <martin@ximian.com>
4863
4864         * loader.c (method_from_methodspec): Create a "signature"
4865         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
4866
4867 2005-09-27  Martin Baulig  <martin@ximian.com>
4868
4869         * class.c
4870         (inflate_generic_class): Correctly set the new context's
4871         container.
4872
4873         * loader.c
4874         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
4875         instead of a `MonoGenericContext *'.
4876         (mono_method_signature_full): Take a `MonoGenericContainer *'
4877         instead of a `MonoGenericContext *'.
4878
4879         * metadata.c
4880         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
4881         instead of a `MonoGenericContext *'.
4882         (mono_metadata_parse_method_signature_full): Likewise.
4883
4884 2005-09-26  Martin Baulig  <martin@ximian.com>
4885
4886         * class.c
4887         (mono_class_from_generic_parameter): Set `klass->generic_container'
4888         (mono_class_from_generic_parameter): Likewise.
4889         (mono_bounded_array_class_get): We inherit the generic container
4890         from the element class.
4891
4892         * loader.c
4893         (find_method, find_method_in_class): Take a `MonoGenericContext *'
4894         argument rather than computing it here.
4895         (method_from_memberref): Correctly set the generic context before
4896         parsing the signature.  Fixes #75681.
4897
4898 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
4899
4900         * object.c (mono_class_has_special_static_fields): Fix warnings.
4901
4902 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4903
4904         * assembly.c: Add parse_public_key function, to
4905         par the public keys. Also added mono_assembly_name_parse_full,
4906         to define it the parsed key should be freed or not.
4907         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
4908         to parse a long format assembly name.
4909         * metadata-internals.h: Keep mono_assembly_name_parse_full as
4910         private, since calling it to preserve the key requires
4911         freeing it manually.
4912         
4913 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
4914
4915         * locales.c : removed HAVE_ICU part.
4916
4917 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
4918
4919         * object.c (mono_class_create_runtime_vtable): Avoid calling 
4920         field_is_special_static if the klass has no special static fields.
4921
4922         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
4923         (MonoCachedClassInfo): Likewise.
4924
4925         * object.c (mono_class_has_special_static_fields): New helper function.
4926
4927 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4928
4929         * class.c (mono_class_create_from_typedef): Don't call 
4930         interfaces_from_typedef_full for enums.
4931         (mono_class_create_from_typedef): Compute the base types of enums directly
4932         without calling mono_class_setup_fields ().
4933         (mono_class_find_enum_basetype): New helper function.
4934
4935         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
4936         one place inside the string heap.
4937         
4938 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
4939
4940         * class.c: locking fixes, code cleanups, some docs added.
4941         Allocate some data structures in the image mempool.
4942
4943 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4944
4945         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4946         the example code.
4947         
4948 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
4949
4950         * class-internals.h, class.c, reflection.c: reduce memory taken by
4951         MonoClass.
4952
4953 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
4954
4955         * metadata.c, metadata.h, loader.h: documentation updates, code and
4956         API cleanups.
4957
4958 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
4959
4960         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
4961         the example code.
4962
4963         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
4964         page faults caused by the runtime while reading metadata.
4965
4966 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4967
4968         * socket-io.c: the field names were changed 3 months ago and no one
4969         realized until bug #76077 got filed!
4970
4971 2005-09-20  Martin Baulig  <martin@ximian.com>
4972
4973         * icall.c (assembly_icalls): Removed some unused debugger icalls.
4974
4975 2005-09-20  Martin Baulig  <martin@ximian.com>
4976
4977         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4978         write the rank into the class entry.
4979
4980 2005-09-20  Martin Baulig  <martin@ximian.com>
4981
4982         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
4983
4984 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
4985
4986         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4987
4988         * icall.c (custom_attrs_defined_internal): New icall.
4989
4990         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
4991         function.
4992         (mono_custom_attrs_construct_by_type): New helper function.
4993
4994 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
4995
4996         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
4997         terminate the resulting string. Fixes #76123.
4998
4999 2005-09-16  Martin Baulig  <martin@ximian.com>
5000
5001         * mono-debug.c
5002         (mono_debug_add_method): Ignore inflated methods for the moment.
5003
5004 2005-09-14  Martin Baulig  <martin@ximian.com>
5005
5006         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5007
5008 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5009
5010         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5011         return a success/failure indication.
5012         (mono_metadata_interfaces_from_typedef_full): Ditto.
5013         (get_constraints): Ditto.
5014
5015 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5016
5017         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5018         
5019         * marshal.c (emit_marshal_array): Add support for returning string
5020         arrays from delegates. Fixes #76063.
5021
5022         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5023
5024 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5025
5026         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5027         icall.
5028
5029 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5030
5031         * reflection.c icall.c: Fix after mono_get_exception_type_load
5032         signature change.
5033
5034         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5035         (mono_assembly_load_reference): Use the new helper.
5036
5037         * class-internals.h (MonoLoaderError): New structure containing 
5038         information about type loading errors.
5039
5040         * class-internals.h loader.c: Add APIs to store per-thread loader
5041         error information.
5042
5043         * loader.c class.c: Set the loader error if needed.
5044
5045         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5046
5047 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5048
5049         * decimal.c: fixed to handle the broken ARM fp format.
5050
5051 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5052
5053         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5054         broken.
5055
5056 2005-09-06  Martin Baulig  <martin@ximian.com>
5057
5058         * domain.c (supported_runtimes): Added v2.0.50727.
5059
5060 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5061
5062         * culture-info.h: reduce the size of some structures.
5063
5064 2005-09-05  Martin Baulig  <martin@ximian.com>
5065
5066         Reflect latest API changes in the August CTP.
5067
5068         * icall.c
5069         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5070         ("MonoType.HasGenericArguments"): Removed.
5071         ("MonoMethod.BindGenericParameters"): Renamed to
5072         "MakeGenericMethod".
5073         ("MethodBuilder.BindGenericParameters"): Renamed to
5074         "MakeGenericMethod".    
5075
5076 2005-09-05  Martin Baulig  <martin@ximian.com>
5077
5078         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5079
5080 2005-09-05  Martin Baulig  <martin@ximian.com>
5081
5082         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5083
5084         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5085         generic_container is non-NULL.
5086
5087 2005-09-05  Martin Baulig  <martin@ximian.com>
5088
5089         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5090
5091         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5092
5093 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5094
5095         * reflection.c (encode_locals,
5096         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5097         for large generic types.
5098
5099 2005-09-05  Martin Baulig  <martin@ximian.com>
5100
5101         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5102
5103         * class.c (mono_dup_array_type): New public method.
5104         (mono_metadata_signature_deep_dup): New public method.
5105         (dup_type): Correctly duplicate array and function types.
5106
5107 2005-09-05  Martin Baulig  <martin@ximian.com>
5108
5109         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5110
5111         * reflection.c (get_default_param_value_blobs): Handle generic types
5112         and generic methods.
5113
5114 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5115
5116         * class.c: Fixed error reporting (method/class were inversed) for 
5117         inheritance demands.
5118         * security-manager.c|h: Added the AppDomain when calling the managed
5119         System.Security.SecurityManager.InheritanceDemand method.
5120
5121 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5122
5123         * reflection.c (encode_marshal_blob): 'marshaltype' and
5124         'marshaltyperef' are alternate sources for the custom marshaler
5125         name.
5126
5127 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5128
5129         * class.c: fix creation of array classes with rank == 1
5130         (patch by Ankit Jain <jankit@novell.com>).
5131
5132 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5133
5134         * object.c: fix check for creating the bound data for arrays vs
5135         szarrays.
5136
5137 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5138
5139         * object.c: configuration file name is now based on the executable name,
5140         not the image name. Fixes bug #75931.
5141
5142 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5143
5144         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5145         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5146
5147 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5148
5149         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5150
5151 2005-08-24  Ankit Jain  <jankit@novell.com>
5152             Raja R Harinath  <rharinath@novell.com>
5153
5154         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5155           called by it recursively.
5156           (mono_class_init): Remove special case in pending_init handling, since it's
5157           superseded by the fix to mono_class_from_typeref.
5158
5159 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5160
5161         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5162         BROKEN_THREAD_START stuff.
5163
5164 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5165
5166         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5167         trampoline.
5168
5169         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5170         
5171         * object.c (mono_delegate_ctor): Replace the original function address with
5172         a delegate trampoline.
5173
5174 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5175
5176         * icall.c: add boolean argument to base64_to_byte_array and 
5177         InternalFromBase64String to control whether a whitespace-only string
5178         is allowed (or should casue a FormatException to be thrown). We need
5179         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5180         to match the MS behaviour in both profiles.
5181         * appdomain.c: Bump corlib version.
5182
5183 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5184
5185         This patch implements a big portion of publisher policy
5186         support, used to bind assembly versions and redirect
5187         one assembly from version A to version B.
5188
5189         * assembly.c:
5190         New GSList loaded_assembly_bindings, for storing the cached
5191         assembly bindings.
5192         (assembly_binding_maps_name): New static function for checking if a 
5193         assembly binding information maps an assembly name.
5194         (mono_assembly_binding_info_free): New function for freeing
5195         assembly binding information resources.
5196         (get_publisher_policy_info): New static function for retrieving 
5197         assembly binding information from a MonoImage.
5198         (compare_versions): New static function for comparing an assembly
5199         binding information data and the version of an assembly name.
5200         (check_policy_versions): New static function for checking if an
5201         assembly binding info mapping an assembly name is valid for it.
5202         (mono_assembly_load_publisher_policy): New static function for
5203         loading the 'policy.major.minor.MyAssembly' image for an assembly
5204         with an assembly name 'aname'.
5205         (mono_assembly_bind_version): New static function for updating
5206         assembly redirection.
5207         (mono_assembly_apply_binding): New static function for applying
5208         assembly binding.
5209         (search_binding_loaded): New static function for searching 
5210         loaded assembly binding infos in the cache domain.
5211         (mono_assembly_load_full): Don't apply assembly binding for
5212         reflection only assemblies.
5213
5214         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5215         which contains information about assembly binding. Also
5216         declare signature for mono_config_parse_publisher_policy ()
5217         function, used to retrieve pub policy info.
5218         
5219         * mono-config.c:
5220         (publisher_policy_start): New static function used to parse publisher 
5221         policy config files.
5222         (publisher_policy_parser): New static MonoParseHandler containing 
5223         the functions used when parsing config files.
5224         (mono_config_parse_publisher_policy): New function for parsing
5225         publisher policy files.
5226         
5227 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5228
5229         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5230
5231         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5232
5233         * object.c (mono_get_addr_from_ftnptr): New helper function.
5234
5235         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5236
5237         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5238
5239 2005-08-19  Dick Porter  <dick@ximian.com>
5240
5241         * threads.c, threads.h, appdomain.c, appdomain.h,
5242         profiler-private.h, monitor.c, object.c, object-internals.h,
5243         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5244         store the thread ID, so it can hold a 64 bit value if needed.
5245
5246 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5247
5248         * reflection.c (mono_reflection_create_dynamic_method): Store the
5249         handle class into the method references as well so ldtoken works in
5250         dynamic methods.
5251
5252         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5253         types.
5254
5255 2005-08-19  Ankit Jain <jankit@novell.com>
5256
5257         Fix #75847.
5258         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5259           here rather than using the method signature of a arbitrary function
5260           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5261           two arguments.
5262           Hack done with Harinath.
5263
5264 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5265
5266         * threadpool.c: disable printing stack traces when we get a exception
5267         in a threadpool thread. I need to do more testing to figure out which
5268         cases actually print this. Fixes bug #75828.
5269
5270 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5271
5272         * icall.c: there might be ignored whitespace after the last '='. This
5273         fixes length computation and bug #75840.
5274
5275 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5276
5277         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5278         well. Fixes #75809.
5279
5280         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5281         #75784.
5282         
5283         * reflection.c (create_custom_attr_data): Ditto.
5284
5285 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5286
5287         * locales.c, culture-info.h : removed RegionLCIDMap.
5288         * culture-info-tables.h : regenerated.
5289
5290 2005-08-16  Martin Baulig  <martin@ximian.com>
5291
5292         * class.c (mono_type_get_name_recurse): Small fix.
5293
5294 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5295
5296         * locales.c : indentation fixie.
5297
5298 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5299
5300         * object-internals.h,
5301           locales.h,
5302           locales.c,
5303           culture-info.h,
5304           icall.c : added RegionInfo table support.
5305         * culture-info-table.h : regenerated for region support.
5306
5307 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5308
5309         * reflection.c (resolve_object): handle all kinds of MonoMethod
5310         including generic ones
5311
5312 2005-08-12  Ankit Jain <jankit@novell.com>
5313
5314         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5315           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5316
5317 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5318
5319         * process.c: Don't close a thread handle when it's NULL. This is a
5320         workaround for bug #75733.
5321
5322 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5323
5324         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5325
5326 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5327
5328         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5329
5330 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5331
5332         * threadpool.c: if a work item in the thread pool has a callback that
5333         catches a exception, don't propagate it after invoking the callback.
5334         Fixes bug #75336.
5335
5336 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5337
5338         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5339
5340         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5341
5342         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5343
5344         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5345
5346 2005-08-03  Ankit Jain  <jankit@novell.com>
5347
5348         Fix #75683.
5349         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5350           PInvoke calling convention is 0.
5351
5352 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5353
5354         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5355         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5356
5357 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5358
5359         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5360         to handle threads not started by the GC (patch by Michael Meeks
5361         <michael.meeks@novell.com>).
5362
5363 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5364
5365         * reflection.c: Make buffer used in emitting types larger for some
5366         big generic types (patch by Michal Moskal).
5367
5368 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5369
5370         * mono-debug.c: Fix some (not all) alignment problems.
5371
5372 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5373
5374         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5375         Invoke mono_image_load_from_data_full passing the refonly
5376         parameter.
5377
5378         * assembly.c
5379         (mono_assembly_open_from_bundle): Add the refonly argument, 
5380         in order to pass it to other methods it calls to.
5381         (do_mono_assembly_open): Add the refonly argument, in order 
5382         to pass it to other methods it calls to.
5383         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5384         the refonly parameter to it.
5385
5386         * image.c: Add loaded_images_refonly_hash and
5387         loaded_images_refonly_guid_hash to cache the reflection
5388         only loaded images.
5389         (mono_images_init): Initialize the hash tables used for
5390         caching the reflection only images.
5391         (load_modules): Invoke mono_image_open_full passing the refonly
5392         parameter to load the modules the correct way.
5393         (build_guid_table): Add the refonly argument, to re-build the 
5394         correct hash table.
5395         (do_mono_image_open): Added the refonly argument, in order to
5396         define it for the loaded image.
5397         (mono_image_loaded_full): New function, which receives an
5398         additional parameter to look for the image in the refonly or
5399         non-refonly section.
5400         (mono_image_loaded): Updated, using mono_image_loaded_full.
5401         (mono_image_loaded_by_guid_full): The same case that happens
5402         with mono_image_loaded_full.
5403         (mono_image_loaded_by_guid): Likewise.
5404         (register_image): Use the ref_only variable inside MonoImage
5405         to decide in which hash table store the current image.
5406         (mono_image_open_from_data_full): Rename
5407         mono_image_open_from_data to mono_image_open_from_data_full,
5408         adding the refonly argument, to define the ref_only variable 
5409         inside MonoImage.
5410         (mono_image_open_from_data): Return 
5411         mono_image_open_from_data_full.
5412         (mono_image_open_full): Rename mono_image_open to
5413         mono_image_open_full, receiving the new refonly argument,
5414         to pass it to inner methods.
5415         (mono_pe_file_open): Update this function, to open
5416         a MonoImage as a non-refonly image.
5417         (mono_image_close): Use the refonly variable inside
5418         MonoImage to remove the image from the correct caches.
5419
5420         * image.h: Add the signatures of mono_image_open_full,
5421         mono_image_open_from_data_full, mono_image_loaded_full,
5422         mono_image_loaded_by_guid_full.
5423
5424         * metadata-internals.h: Add the ref_only field to 
5425         MonoImage.
5426         
5427 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5428
5429         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
5430         Fix the last behavior, which used to load the assemblies and
5431         extract MonoReflectionAssemblyName information, instead of
5432         extract it from the metadata tables. Needed for Reflection
5433         Only assemblies.
5434         
5435 2005-07-29  Martin Baulig  <martin@ximian.com>
5436
5437         * mono-debug-debugger.c
5438         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
5439         not initialized.
5440
5441         * mono-debug.c
5442         (mono_debug_address_from_il_offset): Check whether we have
5443         debugging support before attempting to take the lock.
5444         (mono_debug_source_location_from_address): Likewise.
5445         (mono_debug_source_location_from_il_offset): Likewise.
5446         (mono_debug_il_offset_from_address): Likewise.
5447         (mono_debug_address_from_il_offset): Likewise.
5448
5449 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
5450
5451         * class.c (mono_class_from_name_case): Add support for dynamic images.
5452         Fixes #75650.
5453
5454         * object.c (mono_class_compute_gc_descriptor): Add a workaround
5455         for #75479.
5456
5457 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5458         
5459         * reflection.c (mono_method_get_object): Fix warning.
5460
5461 2005-07-28  Martin Baulig  <martin@ximian.com>
5462
5463         * mono-debug.c
5464         (mono_debug_add_wrapper): Also write the wrapper type.
5465
5466 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5467
5468         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
5469         
5470         * class.c (mono_class_init): Avoid reading nested classes if the AOT
5471         data indicates the class has none.
5472
5473 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
5474
5475         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
5476         loader lock with the debugger lock. Prevents deadlocks for beagle.
5477
5478         Beagle can now run on an smp box for a weekend without any
5479         issues. Woohoo!
5480
5481 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
5482
5483         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
5484         in a module. Fixes #75629.
5485
5486 2005-07-26  Martin Baulig  <martin@ximian.com>
5487
5488         * mono-debug.c (mono_debug_add_wrapper): New static method.
5489         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
5490         interncall or a wrapper.
5491
5492         * mono-debug.h (MonoDebugWrapperData): New public typedef.
5493         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
5494         (MONO_DEBUGGER_VERSION): Bump to 51.
5495
5496         * mono-debug-debugger.c
5497         (mono_debugger_add_type): Removed this empty function.
5498         (mono_debugger_add_method): Likewise.
5499
5500 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5501
5502         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
5503         before accessing method->slot.
5504
5505 2005-07-21  Jb Evain  <jbevain@gmail.com>
5506
5507         * reflection.c (method_encode_clauses/class): Handle filters clauses.
5508         Fixes #75010.
5509
5510 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5511
5512         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
5513         #75587.
5514
5515 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5516
5517         * image.h image.c: Add mono_image_get_guid () API function.
5518
5519 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
5520
5521         There were issues when multiple threads tried to load
5522         assemblies. A deadlock was created between assemblies_mutex and
5523         mono_domain_assemblies_lock. This fixes the issue by making the
5524         assembly ref counting be lock free. See bug 75586.
5525         
5526         * image.c (mono_image_close): The add ref function here was using
5527         Interlocked operations while the unref was using a mutex and a
5528         --. I don't think this was ever a bug that would be exposed in a
5529         non-pendantic way (ie, by an embedder doing a ref on one thread
5530         and an unref on another), but for the sake of correctness, this is
5531         now Interlocked.
5532
5533         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5534         (mono_assembly_load_reference): Call mono_assembly_addref rather
5535         than touching the refcount ourselves.
5536         (mono_assembly_close): Use InterlockedDecrement to unref the
5537         assembly. Don't acquire the lock unless it is actually needed.
5538
5539 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5540
5541         * class.c (mono_class_layout_fields): Fix calculation of has_references
5542         for generic types.
5543
5544 2005-07-12  Martin Baulig  <martin@ximian.com>
5545
5546         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5547
5548         * metadata.c
5549         (mono_type_hash): Provide better hashing for generic instances.
5550         (mono_generic_inst_hash): Improve hashing.
5551         (mono_generic_class_hash): Likewise.
5552
5553         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5554         generic instances.
5555
5556 2005-07-12  Martin Baulig  <martin@ximian.com>
5557
5558         * reflection.c (mono_reflection_create_runtime_class): Remove the
5559         hack for generic type definitions and non-`Run' assemblies.
5560         (mono_reflection_bind_generic_parameters): Also use
5561         `klass->wastypebuilder' to check for TypeBuilders.
5562
5563 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5564
5565         * class.c (mono_class_layout_fields): Fix calculation of has_references
5566         for generic types.
5567
5568         * class.c (inflate_generic_class): Fix a leak.
5569         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5570         for generic types.
5571
5572 2005-07-11  Martin Baulig  <martin@ximian.com>
5573
5574         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5575         on error.
5576
5577 2005-07-11  Martin Baulig  <martin@ximian.com>
5578
5579         * loader.c (find_method): Also lookup in
5580         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5581
5582 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5583
5584         * appdomain.c (mono_domain_unload): Don't free the error message
5585         before passing it to mono_get_exception_...
5586
5587         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5588         
5589 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5590
5591         * threads.c: try to better guess an available RT signal (bug #75387).
5592
5593 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5594
5595         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5596         and CACHE_OBJECT.
5597
5598 2005-07-07  Martin Baulig  <martin@ximian.com>
5599
5600         * class.c (mono_type_get_name_full): Return NULL for
5601         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5602         fixes #75408.
5603
5604 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5605
5606         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5607         exit the appdomain as well being aborted.
5608
5609         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5610         change back to the root domain after calling managed code. This enables
5611         appdomains using threadpools to be unloaded.
5612
5613 2005-07-07  Martin Baulig  <martin@ximian.com>
5614
5615         * class-internals.h
5616         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5617         into `MonoDynamicGenericClass' since we only need it for dynamic
5618         types.
5619
5620         * reflection.c (mono_class_bind_generic_parameters): We don't need
5621         to compute the `parent' here.
5622
5623 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5624
5625         * culture-info-table.h : regenerated.
5626
5627 2005-07-06  Martin Baulig  <martin@ximian.com>
5628
5629         * icall.c
5630         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5631
5632         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5633
5634 2005-07-06  Martin Baulig  <martin@ximian.com>
5635
5636         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5637         we're doing a signature-only comparision; fixes #74945.
5638
5639 2005-07-06  Martin Baulig  <martin@ximian.com>
5640
5641         * class-internals.h (MonoGenericClass): Moved some things out into
5642         a new `MonoInflatedGenericClass' type.  
5643         (MonoInflatedGenericClass): New type; the `klass' of a
5644         `MonoGenericClass' is now computed lazyly in
5645         mono_get_inflated_generic_class().      
5646
5647         * class.c (mono_get_inflated_generic_class): New public function.
5648         (mono_class_inflate_generic_method): Removed the unused
5649         `MonoClass *' argument.
5650         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5651         all the methods.
5652         (mono_class_create_generic): Make this static and merge it with
5653         mono_class_create_generic_2(); we're now called automatically from
5654         mono_get_inflated_generic_class().
5655
5656         * loader.c (mono_method_signature): Call
5657         mono_get_inflated_method() here.
5658
5659 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5660
5661         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5662         type of fields with RVA.
5663
5664         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5665         for this pseudo class.
5666         (my_mono_class_from_generic_parameter): Likewise.
5667         (mono_class_init): Allow interfaces to have cctors.
5668
5669 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5670
5671         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5672         lazily for AOT methods.
5673
5674 2005-07-05  Martin Baulig  <martin@ximian.com>
5675
5676         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5677         returns FALSE for a successful match, not TRUE.
5678
5679 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5680
5681         * loader.c (mono_method_get_index): Optimize this a bit.
5682
5683 2005-07-04  Martin Baulig  <martin@ximian.com>
5684
5685         * class.c
5686         (class_compute_field_layout): Move the check for generic type
5687         definitions into mono_class_layout_fields().  Fixes #74684.
5688         (mono_class_from_generic_parameter): Correctly compute
5689         `klass->parent'; fixes #75457.
5690
5691         * reflection.c (register_assembly, register_module): Make sure
5692         `domain->rejobject_hash' is already created.
5693
5694 2005-07-02  Martin Baulig  <martin@ximian.com>
5695
5696         * class-internals.h
5697         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5698         `MonoDynamicGenericClass'.      
5699
5700 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5701
5702         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5703         returned by a field getter is null, since null is a valid value.
5704
5705 2005-07-01  Martin Baulig  <martin@ximian.com>
5706
5707         * reflection.c (mono_reflection_generic_class_initialize): Update
5708         the `dgclass->fields [i].parent' to the correct class.
5709         (mono_image_get_fieldref_token): Use the declaring type, not the
5710         reflected type.
5711
5712 2005-07-01  Martin Baulig  <martin@ximian.com>
5713
5714         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5715
5716 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5717
5718         * threads.c (thread_cleanup): assert that thread != NULL
5719         (wait_for_tids_or_state_change): We were using the wrong variable
5720         when accessing wait->threads. `i' was always out of the bounds of
5721         the array.
5722
5723 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5724
5725         * loader.c: map user32 and kernel32 to libMonoSupportW
5726
5727 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5728
5729         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5730
5731 2005-06-28  Martin Baulig  <martin@ximian.com>
5732
5733         * loader.c (method_from_methodspec): Fix #75334.
5734
5735 2005-06-28  Martin Baulig  <martin@ximian.com>
5736
5737         Fix #74953 - Arrays now implement the generic IList<T> interface
5738         on the 2.0 platform.
5739
5740         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5741
5742         * reflection.c (mono_class_bind_generic_parameters): New public
5743         function; similar to mono_reflection_bind_generic_parameters(),
5744         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5745
5746         * domain.c (mono_init_internal): Try to initialize.
5747         `mono_defaults.generic_array_class' here; this'll only succeed if
5748         we're using the 2.0 corlib.
5749
5750         * icall.c
5751         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5752         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5753         (mono_lookup_internal_call): Added support for nested classes.
5754
5755         * loader.c
5756         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5757         we're an interncall and have generic arguments.
5758
5759         * class.c
5760         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5761         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5762         instance of System.Array.InternalArray<T> for arrays, so they
5763         implement the generic IList<T> interface.
5764
5765 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5766
5767         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5768         (chastamar@yahoo.com). Fixes #75374.    
5769
5770 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5771
5772         * culture-info-table.h: regenerated.
5773
5774 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5775
5776         * icall.c: handle spaces correctly for base64 strings.
5777
5778 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5779
5780         * *.c: Kill some warnings.
5781
5782 2005-06-23  Duncan Mak  <duncan@novell.com>
5783
5784         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5785         that this builds on Solaris 10 (x86).
5786
5787 2005-06-23  Martin Baulig  <martin@ximian.com>
5788
5789         * class.c
5790         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5791         generic type definitions.
5792
5793 2005-06-23  Martin Baulig  <martin@ximian.com>
5794
5795         Fix #75331.
5796
5797         * metadata.c (mono_class_get_overrides): Renamed to
5798         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5799         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5800         pass it to mono_get_method_full().
5801
5802 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5803
5804         * reflection.c (mono_reflection_create_runtime_class): take the
5805         mono_domain_lock in this method. Prevents deadlocks
5806
5807 2005-06-22  Martin Baulig  <martin@ximian.com>
5808
5809         * loader.c (method_from_methodspec): Fix #75330.
5810
5811 2005-06-22  Martin Baulig  <martin@ximian.com>
5812
5813         * reflection.c (type_get_qualified_name): Use
5814         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
5815         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
5816         argument; use it if we don't have an assembly name.
5817
5818 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
5819
5820         * object.c: In mono_message_init, set "copy out" flag for in
5821         parameters with the [Out] flag.
5822
5823 2005-06-21  Martin Baulig  <martin@ximian.com>
5824
5825         * class.c
5826         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
5827         and MONO_TYPE_PTR.
5828
5829 2005-06-21  Martin Baulig  <martin@ximian.com>
5830
5831         * class.c (mono_class_init): Don't initialize `class->fields' for
5832         generic instances since they're initialized again in
5833         compute_field_layout(). 
5834         (compute_field_layout): Set the field's `generic_info' here; fix
5835         #75320. 
5836
5837 2005-06-21  Martin Baulig  <martin@ximian.com>
5838
5839         * class-internals.h
5840         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
5841
5842         * metadata.c (mono_metadata_generic_method_equal): Also
5843         distinguish the `generic_class'; fixes #75334.
5844
5845 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5846
5847         * domain.c:
5848         * appdomain.c:
5849         * domain-internals.h:
5850         * reflection.c: 'domain_assemblies' field is now protected by its own
5851         lock. Don't call into managed code to run the AssemblyLoad event if we
5852         now there are no registered delegates for it.
5853
5854 2005-06-20  Martin Baulig  <martin@ximian.com>
5855
5856         * class.c (mono_class_is_assignable_from): Use a custom version of
5857         mono_class_has_parent() to make things work for generic instances;
5858         fix #75300.
5859
5860 2005-06-20  Martin Baulig  <martin@ximian.com>
5861
5862         * loader.c (method_from_methodspec): Apply a patch from
5863         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
5864
5865 2005-06-20  Martin Baulig  <martin@ximian.com>
5866
5867         * class.c (mono_class_init): Reverted Zoltan's last change; it
5868         breaks generics.
5869
5870 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
5871
5872         * threads.c (wait_for_tids_or_state_change): Add missing locking.
5873
5874 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5875
5876         * socket-io.c: fix the index in the socket array for writable/error
5877         sockets. Fixes bug #75306.
5878
5879 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * class.c (mono_class_init): Allow interfaces to have static ctors.
5882
5883 2005-06-17  Martin Baulig  <martin@ximian.com>
5884
5885         * loader.c (method_from_methodspec): Use `context->container' when
5886         parsing the `gmethod->inst'.
5887
5888 2005-06-17  Martin Baulig  <martin@ximian.com>
5889
5890         * class.c (mono_type_get_name_recurse): Don't add the assembly
5891         name for type arguments.
5892
5893 2005-06-15  Martin Baulig  <martin@ximian.com>
5894
5895         * reflection.c (mono_image_get_inflated_method_token): Encode
5896         correct klass; fixes #75260.
5897
5898 2005-06-13 Michal Moskal <malekith@nemerle.org>
5899
5900         * icall.c: Make GetCorrespondingMethod/Constructor take
5901         MonoReflectionMethod method not MonoMethod. Removed
5902         MonoType.GetCorrespondingField, and make
5903         MonoGenericType.GetCorrespondingField take name not
5904         MonoClassField.
5905
5906 2005-06-13  Michal Moskal <malekith@nemerle.org>
5907
5908         * reflection.c (field_encode_signature, encode_locals):
5909          Make sizes of buffers for types larger (for big generic types).
5910          (create_generic_typespec,
5911          mono_reflection_sighelper_get_signature_local,
5912          mono_reflection_sighelper_get_signature_field):
5913          Add asserts for too small buffers.
5914
5915 2005-06-15  Martin Baulig  <martin@ximian.com>
5916
5917         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
5918         if our parent is not a dynamic type.
5919
5920 2005-06-15  Martin Baulig  <martin@ximian.com>
5921
5922         * class-internals.h (MonoTypeNameFormat): New enum.
5923
5924         * class.c
5925         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
5926         (mono_type_get_full_name): Removed.
5927         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
5928         argument instead of the boolean's.
5929
5930         * icall.c (ves_icall_System_MonoType_getFullName):
5931         Added `gboolean assembly_qualified'.    
5932
5933         * reflection.h
5934         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
5935
5936         * reflection.c (mono_reflection_parse_type): Parse the new type
5937         name format.
5938
5939 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5940
5941         * icall.c: no need to convert from utf16 to utf8 and then back again
5942         after the call to GetLogicalDrives.
5943
5944 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5945
5946         * icall.c: frombase64. Fix problems exposed by new tests.
5947
5948 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5949
5950         * icall.c: added internal calls for converting char [] and strings in
5951         base64 into byte [].
5952
5953 2005-06-10  Martin Baulig  <martin@ximian.com>
5954
5955         * class.c (mono_class_create_generic_2): Read the nested classes
5956         from the metadata rather than from `gklass->nested_classes' since
5957         `gklass' might not be initialized yet.
5958
5959 2005-06-09  Duncan Mak  <duncan@novell.com>
5960
5961         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
5962         all public headers. Fixes #74919.
5963
5964 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
5965
5966         * domain.c: The key for proxy_vtable_hash is now a pointer
5967         array. Added new GHashFunc and GCompareFunc functions for this.
5968
5969         * class.h: The list of interfaces in MonoRemoteClass is known in
5970         advance and can't grow (we create a new MonoRemoteClass if needed),
5971         so now the interface array can be allocated together with
5972         MonoRemoteClass.
5973         
5974         * object.c: Added a new method create_remote_class_key.
5975         Fixed mono_remote_class so it does not depend on
5976         mono_upgrade_remote_class.
5977         Removed extend_interface_array.
5978         Added new method clone_remote_class(), which makes a copy of a remote
5979         class and adds a new interface or class to it.
5980         mono_upgrade_remote_class() now creates a new remote class (or gets
5981         it from the cache) if an vtable upgrade is needed. In this way
5982         we make sure that other objects sharing the same remote class
5983         don't get the new vtable with unwanted interfaces.
5984         
5985         * object-internals.h:
5986         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
5987         
5988         * marshal.c: Track changes in mono_upgrade_remote_class().
5989
5990 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
5991         * icall.c: Add runtime methods for obtaining members of inflated
5992         class, which were created from supplied non-inflated members. It
5993         is used in internal Get{Method,Constructor,Field} methods in
5994         System.Type
5995
5996 2005-06-09  Martin Baulig  <martin@ximian.com>
5997
5998         * reflection.c
5999         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6000
6001 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6002         * reflection.c (mono_image_basic_init): Define
6003         Version in MonoDynamicAssembly. 
6004         
6005 2005-06-08  Martin Baulig  <martin@ximian.com>
6006
6007         Fix #75136.
6008
6009         * loader.c
6010         (mono_method_signature_full): New public method; takes a
6011         `MonoGenericContext *'.
6012         (find_method): Use mono_method_signature_full() and pass the
6013         klass'es context to it.
6014
6015         * class.c (mono_class_is_inflated_method): Use
6016         mono_method_signature_full() and pass the context to it.
6017
6018 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6019
6020         * object.c: add proper locking in mono_remote_class_vtable(),
6021         fixes possible memory corruption.
6022
6023 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6024
6025         * marshal.c (mono_remoting_marshal_init): set
6026         initialized after initialization.
6027
6028 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6029
6030         * locales.c : hush.
6031
6032 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6033
6034         * object.c (extend_interface_array): fix really silly
6035         memory corrupting / comparison bug.
6036
6037 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6038
6039         * reflection.c: Functions added to support the creation
6040         of CustomAttributeData, which includes Attribute data
6041         used by ReflectionOnly methods.
6042
6043         * reflection.h:  mono_reflection_get_custom_attrs_data and
6044          mono_custom_attrs_data_construct added (functions exposed).
6045
6046          * icall.c: Added mono_reflection_get_custom_attrs_data
6047          as icall.
6048         
6049 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6050
6051         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6052         lupus's request.
6053
6054 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6055
6056         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6057
6058         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6059         dynamic DllImportAttribute.
6060
6061         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6062         dynamic DllImportAttribute.
6063
6064         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6065         Fixes #75162.
6066
6067 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6068
6069         * threads.c: avoid segfault when an unstarted thread is aborted.
6070
6071 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6072
6073         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6074         Returns the name and version of the runtime for reporting.
6075
6076 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6077
6078         * appdomain.c: bump corlib version.
6079         * object-internals.h: new field in MonoReflectionAssembly.
6080
6081 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6082
6083         * object-internals.h: Carlos forgot to add this field.
6084
6085 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6086
6087         * icall.c: Added create_version to create instances
6088         of Version of MonoReflectionAssemblyName. This change helps
6089         the AssemblyName tests to keep running fine.
6090         
6091 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6092   
6093         * object.c (mono_method_return_message_restore): A somehow less
6094         intrusive fix for #75138.
6095
6096 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6097
6098         * object.c (mono_method_return_message_restore): Fix computation
6099         of expected number of out args.
6100
6101 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6102
6103         * reflection.c (mono_image_get_method_info): Fix the case when the
6104         charset is empty.
6105
6106 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6107
6108         * object.c: Added missing null check in
6109           mono_method_return_message_restore.
6110
6111 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6112
6113         * reflection.c (mono_image_get_method_info): Handle the case when
6114         dllentry is empty.
6115
6116 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6117
6118         * object.c: When creating the vtable for a proxy, take into account
6119         all inherited interfaces, not only the ones registered in
6120         iclass->interfaces. This fixs bug #74996.
6121         Also, in mono_method_return_message_restore, verify that the array
6122         of out args has the expected lengh.
6123
6124 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6125
6126         * socket-io.c: update the timeout in Poll when the call is interrupte.
6127
6128 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6129
6130         * socket-io.c: support abort/suspend in Select_internal after last
6131         change.
6132
6133 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6134
6135         * threadpool.c: remove warning.
6136
6137 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6138
6139         * icall.c:
6140         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6141         removing the 1024 limit from select(). Runtime part of the fix for
6142         bug #71203.
6143
6144 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6145
6146         * socket-io.c: when resolving the addresses for the same
6147         host returned by gethostname(), get the local IPs from the interface
6148         list. Loopback addresses are discarded if the are interfaces up with
6149         non-loopback ones. Fixes bug #63265.
6150
6151 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6152
6153         * appdomain.c, verify.c, object-internals.h, reflection.c:
6154         bumped corlib number to 36, and added new extra_flags field
6155         to ReflectionMethodBuilder and friends.  Fixes #75060.
6156
6157 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6158
6159         * gc.c: register a new weak link only if the object is non-null
6160         (fixes bug#75047).
6161
6162 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6163
6164         * culture-info.h : short time pattern too.
6165
6166 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6167
6168         * culture-info.h : expand long time pattern string length.
6169
6170 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6171
6172         * culture-info-table.h : update (more French date format; #72788).
6173
6174 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6175
6176         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6177         the method is static. Fixes #75029.
6178
6179 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6180
6181         * reflection.c: Update the table_idx field of method builders after
6182         saving the module, since it can change. This is a workaround for
6183         bug #74914. 
6184
6185 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6186
6187         * culture-info-table.h : update (additional French date format).
6188
6189 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6190
6191         * icall.c (ves_icall_type_Equals): Revert last change.
6192         
6193         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6194
6195         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6196
6197 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6198
6199         * class-internals.h: Added executioncontext_class field to 
6200         MonoDefaults structure.
6201         * domain.c: Cache System.Threading.ExecutionContext class in 
6202         mono_defaults.
6203         * object.c: Capture the ExecutionContext for asynchroneous calls in
6204          mono_async_result_new.
6205         * object-internals.h: Added execution_context and original_context 
6206         fields to MonoAsyncResult. Added execution_context to MonoThread.
6207         * security-manager.c|.h: Added mono_get_context_capture_method to 
6208         return the capture method (if required by the security manager or by
6209         the framework version used).
6210         * threadpool.c: Apply capture (if present) ExecutionContext in 
6211         mono_async_invoke and revert to original context after it completes.
6212
6213 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6214
6215         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6216
6217 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6218
6219         * culture-info-table.h : zh-CHT related workaround.
6220
6221 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6222
6223         * marshal.c (emit_marshal_custom): Add some error checking and call the
6224         methods in the ICustomMarshaler interface. Fixes #74875.
6225         
6226         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6227         native->managed wrappers.
6228
6229 2005-05-12  Martin Baulig  <martin@ximian.com>
6230
6231         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6232         here and use the loader lock.
6233
6234         * mono-debug.c: Properly lock when the debugger is not attached.
6235         (mono_debug_init): Release the initial lock if we're not running
6236         in the debugger.
6237
6238 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6239
6240         * marshal.c (emit_marshal_custom): Pass through NULL values without
6241         calling the custom marshalling routines.
6242
6243         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6244         conversion in structures. Fixes #74882.
6245
6246 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6247
6248         * culture-info-table.h : zh-* cultures were missing.
6249
6250 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6251
6252         * threads.c: Added a new event background_change_event which is signaled
6253         when a thread changes its background mode.
6254         Moved here several checks previously done in managed code. The checks
6255         require the thread lock, and using the thread lock in managed code
6256         can result in deadlocks.
6257         Merged Start_internal and Thread_internal into a single method. Now 
6258         Thread_internal does all work of creating and starting a thread.
6259         Added icalls for setting and getting the state of the object. Moved from
6260         managed code to avoid locking there.
6261         Added wait_for_tids_or_state_change() which is called instad of
6262         wait_for_tids when waiting for non-backround threads to end. This method
6263         will return if one of the threads ends or the background_change_event
6264         is signaled.
6265         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6266         the background mode. This method signals the background_change_event
6267         event.
6268         * icall.c:
6269         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6270         removed Start_internal.
6271         
6272 2005-05-11  Martin Baulig  <martin@ximian.com>
6273
6274         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6275         to order of some fields to get proper alignment on 64-bit machines.
6276
6277 2005-05-11  Martin Baulig  <martin@ximian.com>
6278
6279         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6280         changes as they're broken and completely fuck up the debugger.
6281
6282         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6283
6284 2005-05-10  Martin Baulig  <martin@ximian.com>
6285
6286         * reflection.c (mono_reflection_generic_class_initialize): Don't
6287         call mono_class_setup_parent() here.
6288
6289 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6290
6291         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6292         send/receive timeout use an integer in milliseconds. We were using a
6293         struct timeval.
6294
6295 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6296
6297         * locales.c:
6298         (internal_get_cultures): reserve the first slot of the array for the
6299         InvariantCulture, which will be filled in managed code.
6300
6301 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6302
6303         * reflection.c (mono_image_fill_module_table): Initialize the
6304         GENERATION field as well.
6305
6306 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6307
6308         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6309         Monitor.Enter on the object.
6310
6311 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6312
6313         * threads.c: Enable the wait for running threads when exiting.
6314         * icall.c: Suspend all threads before exiting.
6315
6316 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6317
6318         * assembly.c (mono_assembly_load_reference): Fix warning.
6319
6320 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6321
6322         * threadpool.c: changed the default number of threads per cpu. From now
6323         on, the default will be 20 + (5 * number of cpus) instead of 50.
6324
6325 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6326
6327         * loader.c (mono_method_get_signature_full): Add locking here.
6328
6329 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6330
6331         * appdomain.c: Moved methods for parsing and freeing assembly
6332         names to assembly.c.
6333         * assembly.c, domain-internals.h: Created public methods for parsing
6334         assembly names. Fixed mono_assembly_load_with_partial_name:
6335         it now finds the best match, taking into account the version,
6336         token and culture specified in the partial name. Also return
6337         the latest version if no version information is specified.
6338
6339 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6340
6341         * threadpool.c: replace check for SocketAsyncCall class.
6342
6343 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6344
6345         * threadpool-internals.h:
6346         * Makefile.am: added threadpool-internals.h
6347
6348         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6349         that happen in threadpool threads (tested on MS).
6350         (mono_thread_pool_remove_socket): new function that dispatch any pending
6351         AIO call on a socket that is closing. By now only epoll really needs it,
6352         as select/poll wake up when the socket closes.
6353
6354
6355         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6356
6357 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6358
6359         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6360
6361 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6362
6363         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6364
6365 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6366
6367         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6368         has an abort request, convert it into a suspend request.
6369
6370 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6371
6372         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6373         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6374         is not supported yet.
6375
6376 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6377
6378         * image.c: register assemblies loaded from data (bundles) in the loaded
6379         assemblies hash. Fixes bug #74772.
6380
6381 2005-04-29  Martin Baulig  <martin@ximian.com>
6382
6383         * class.c (mono_type_get_name_recurse): Update to the new naming
6384         schema from the latest .NET 2.x beta2.
6385         (mono_class_setup_vtable_general): If we're a generic instance,
6386         copy the vtable from our generic type definition and inflate all
6387         the methods in it.
6388
6389         * loader.c (find_method): Update to the new naming schema from the
6390         latest .NET 2.x beta2.
6391
6392 2005-04-29  Raja R Harinath  <harinath@gmail.com>
6393
6394         * class.c (mono_class_init): Add a mono_loader_unlock to the
6395         #74734 fix.
6396
6397 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
6398
6399         * icall.c (ves_icall_System_Environment_Exit): Remove the 
6400         suspend_all_other_threads () call for the time being, since it can hang.
6401
6402         * threads.c (mono_thread_manage): Similarly, disable the waiting for
6403         the background threads to exit, since it can also hang.
6404
6405         * class.c (mono_class_init): Applied patch from Ankit Jain 
6406         (radical@gmail.com). Avoid pending init errors when a field refers
6407         to a nested class using a typeref. Fixes #74734.
6408
6409         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
6410         this for dynamic modules.
6411
6412 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6413
6414         * threads.c: don't wait for threads that are in the process of aborting
6415         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
6416         and waiting for background threads to finish. This makes xsp and
6417         mod-mono-server exit without random length delays and/or hangs.
6418
6419 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6420
6421         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
6422
6423 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
6424
6425         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
6426         dynamic types to prevent infinite loops. Fixes #74727.
6427
6428         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
6429         ..._is_assignable_to.
6430
6431 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
6432
6433         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
6434
6435 2005-04-25  Martin Baulig  <martin@ximian.com>
6436
6437         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
6438
6439         * domain.c
6440         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
6441
6442         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
6443
6444         * reflection.c (build_compressed_metadata): Set metadata header
6445         version to 2.0.
6446
6447 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
6448
6449         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
6450         number into an integral and a decimal part. Fixes #70473.
6451
6452         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
6453
6454 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
6455
6456         * culture-info-table.h : reflected the latest locale-builder output.
6457
6458 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6459
6460         * threadpool.c: check for SuspendRequested too when deciding if
6461         mono_thread_interruption_checkpoint should be called.
6462
6463 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6464
6465         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
6466         * threads.c: remove interruption_mutex and use Interlocked instead. When
6467         suspending all the threads, wait for all the suspended events at once.
6468         If we're shutting down and get an APC that is going to be queued,
6469         call mono_thread_execute_interruption immediately, as the thread might
6470         be sleeping on a pthread condition or mutex.
6471
6472         * icall.c: call mono_runtime_set_shutting_down before suspending the
6473         threads.
6474
6475         Fixes bug #74693. And now xsp is happier when exiting.
6476
6477 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
6478
6479         * loader.c (mono_stack_walk): Fix #74690.
6480
6481 2005-04-22  Martin Baulig  <martin@ximian.com>
6482
6483         * mono-debug.h (MonoDebugMethodJitInfo): Added
6484         `MonoDebugMethodJitInfo *jit'.
6485
6486         * mono-debug.c (mono_debug_read_method): Cache the
6487         MonoDebugMethodJitInfo in `address->jit'.
6488         (mono_debug_free_method_jit_info): New public method.
6489
6490 2005-04-22  Martin Baulig  <martin@ximian.com>
6491
6492         * class.c (mono_class_is_assignable_from): Disallow
6493         type parameter -> interface.
6494
6495 2005-04-21  Dick Porter  <dick@ximian.com>
6496
6497         * threads.c (mono_thread_create): Turn an assertion into an error.
6498
6499 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
6500
6501         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
6502         
6503         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
6504         Fix some gcc 4.0 warnings.
6505
6506 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
6507
6508         * file-io.c: fix alt dir separator char on unix systems
6509         and cleanup (fixes bug #71214).
6510
6511 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
6512
6513         * marshal.c: Use CALLVIRT instead of CALL when dispatching
6514         a call to a remote domain, since the method may be an
6515         interface method in the client domain. This fixes bug #74192.
6516
6517 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6518
6519         * threadpool.c: recv/send are now performed before going back to managed
6520         code to save one transition.
6521
6522 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6523
6524         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6525
6526         * metadata/threadpool.c: removed hack to workaround the bug above.
6527
6528         Fixes bug #74618.
6529
6530 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6531
6532         * reflection.c reflection.h: Fix handling of parameter defaults in
6533         dynamic methods. Also fixes handling of parameter attributes.
6534         Fixes #74609.
6535
6536         * mono-debug.c (mono_debug_close_image): Fix warning.
6537
6538 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6539
6540         * socket-io.h: replaced old unused field with new 'blocking'.
6541         * threadpool.c: restore socket blocking state on windows(tm).
6542
6543 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6544
6545         * icall.c: don't return the codebase in the AssemblyName[] returned by
6546         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6547         * object-internals.h: Removed FIXME (fields were presents) and fixed
6548         versioncompat declaration.
6549
6550 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6551
6552         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6553         not closed, so don't cleanup when it happens.
6554
6555 2005-04-13  Chris Toshok  <toshok@ximian.com>
6556
6557         * mono-debug-debugger.h: change prototype for
6558         mono_debugger_lookup_type.
6559
6560         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6561         this function, although it should probably be named
6562         mono_debugger_init_type.
6563
6564 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6565
6566         * threadpool.c: fix non-AIO case.
6567
6568 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6569
6570         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6571         the built-in profiler to measure just JIT compilation times.
6572
6573 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6574
6575         * threadpool.c: the epollfd might be closed by another thread at
6576         any time, so ignore EBADF at treat it as a "we're closing" sign.
6577
6578 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6579
6580         * threadpool.c: release the semaphores with a count equals to the number
6581         of working threads in both IO and regular pools. Fixed typo that messed
6582         up the count of IO pool threads. Don't initialize the pipe handles if
6583         we're using epoll.
6584
6585 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6586
6587         * threadpool.c: some systems don't like a NULL when deleting the socket
6588         from epoll.
6589
6590 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6591
6592         * threadpool.c: fix semaphore allocation.
6593
6594 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6595
6596         * threadpool.c: added epoll() based implementation for asynchronous IO
6597         that is used instead of the default poll() when available.
6598         It can be disabled by setting MONO_DISABLE_AIO.
6599
6600 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6601
6602         * threadpool.c: windows needs 'closesocket' and instead of returning
6603         0 when the stream is closed while in select, it returns -1. Fixes bug
6604         #74573.
6605
6606 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6607
6608         * class.c (class_compute_field_layout): Fix the regression caused by
6609         the previous try.
6610
6611 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6612
6613         * threadpool.c: separate pool for socket async. IO.
6614         * threadpool.h: mono_max_worker_threads is not a global any more.
6615
6616 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6617
6618         * class.c (class_compute_field_layout): Fix #74549.
6619
6620 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6621
6622         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6623         use 2 connected sockets instead.
6624
6625 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6626
6627         * mono-config.c: Add new entry point for mkbundle
6628         mono_config_parse_memory. 
6629
6630 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6631
6632         * threadpool.c: removed another unused function.
6633
6634 2005-04-08  Ankit Jain  <radical@corewars.org>
6635
6636         * reflection.c (get_default_param_value_blobs): Add 'types'
6637         parameter to get the types encoded in the constant table.
6638         (mono_param_get_objects): Use the type from the constant table,
6639         not the type of the parameter, when creating default values.
6640         Handle null default values correctly.
6641
6642 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6643
6644         * file-io.c:
6645         * file-io.h:
6646         * threadpool.c:
6647         * threadpool.h:
6648         * icall.c:
6649         * socket-io.c: removed dead code for async IO.
6650
6651 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6652
6653         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6654
6655         * threadpool.c: intercept socket async. calls and pass them to a thread
6656         that is polling and dispatching the job items to the threadpool as
6657         socket become ready. Fixes bugs #71217, #71933.
6658
6659         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6660         between char and short/ushort arrays.
6661
6662         * socket-io.c: remove dead code.
6663
6664 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6665
6666         * locales.c,
6667           icall.c : removed InternalToUpper_Comp() and
6668           InternalToLower_Comp().
6669
6670 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6671
6672         * char-conversions.h : The tables were incorrectly generated. Should
6673           be generated against invariant culture.
6674
6675 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6676
6677         * object.c (mono_runtime_invoke_array): Fix return value when 
6678         passing pre-created valuetype objects to ctors.
6679
6680         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6681         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6682         Fixes #74338.
6683
6684 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6685
6686         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6687         only used with --security and hides the wrong corlib version error.
6688
6689 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6690
6691         * class.c: Changed mono_class_name_from_token so that types
6692         outside of a namespace don't have an initial period.  Improved
6693         the g_warning message used in _mono_class_get when loading
6694         fails.
6695         * assembly.c: In mono_assembly_load_reference, when an assembly
6696         can't be found, "No such file or directory" is misleading and
6697         unhelpful because a few paths were checked for the presence of
6698         the assembly.  When that happens (ENOENT), display a nicer
6699         message indicating the directories that were searched.  In all
6700         cases, the warning is made easier to read for non-hackers.
6701
6702 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6703
6704         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6705         project/solution.
6706         * appdomain.h|domain.c: Removed inline from functions.
6707         * appdomain.c: Reduced warnings when compiling on windows.
6708         * icall.c: Fixed output_debug declaration to gunichar2*.
6709         * mono-config.c: Reduced warnings when compiling on windows.
6710         * rand.c: Added missing "windows.h". Added missing return value.
6711         * rawbuffer.c: Added missing winsock2.h for windows.
6712         * sysmath.h: Added mono-compiler.h header to allow/ease 
6713         compilation with non-GCC compilers.
6714         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6715         Removed cast warnings.
6716
6717         Adapted from the work of J Lothian (for VC6).
6718
6719 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6720
6721         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6722         from default_path.
6723
6724 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6725
6726         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6727         the 2.0 profile.
6728
6729 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6730
6731         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6732         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6733         stuff, and it would probably use $(prefix)/share rather than
6734         $(prefix)/lib.
6735
6736 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6737
6738         * console-io.c: added 2 includes that might be missing.
6739
6740 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6741
6742         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6743         profile.
6744
6745         * reflection.c (create_custom_attr): Allocate the params array using
6746         alloca so it gets GC tracking.
6747
6748 2005-03-23  Chris Toshok  <toshok@ximian.com>
6749
6750         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6751         out some spew.
6752
6753 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6754
6755         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6756         changes to pick up any changes in prefix, etc.
6757
6758 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6759
6760         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6761         
6762         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6763         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6764
6765 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6766
6767         * class-internals.h object-internals.h class.c reflection.c: Extend the
6768         mono_lookup_dynamic_token () function to return the class of the
6769         token as well. 
6770
6771         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6772         well. Fixes #73848.
6773
6774 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6775
6776         * security-manager.c: Skip inheritance checks for intra-corlib
6777         class inheritance and method overrides. This skips a lot of checks
6778         and (anyway) permissions cannot work until corlib is loaded.
6779
6780 2005-03-23  Martin Baulig  <martin@ximian.com>
6781
6782         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6783         MONO_TYPE_GENERICINST.  
6784
6785 2005-03-23  Martin Baulig  <martin@ximian.com>
6786
6787         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6788
6789 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6790
6791         * class.c: added locking comments to some functions.
6792         Cache the interface offsets arrays (saves about 20 KB
6793         of runtime memory in a typical app).
6794         Reduce the time overhead in mono_class_setup_supertypes ().
6795
6796 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6797
6798         * icall.c: speedup and fix leaks in GetMethodsByName and
6799         GetPropertiesByName.
6800
6801 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6802
6803         * reflection.c: some locking fixes.
6804
6805 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6806
6807         * metadata.c: added missing break in case statement.
6808
6809 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
6810
6811         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6812         typedbyref return values. Fixes #73941.
6813
6814 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6815
6816         * security-manager.c|h: Added demandunmanaged method and 
6817         suppressunmanagedcodesecurity class to MonoSecurityManager.
6818         Renamed aptc class to allowpartiallytrustedcallers.
6819
6820 2005-03-17  Martin Baulig  <martin@ximian.com>
6821
6822         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
6823
6824 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6825
6826         * file-io.c: disabled file async. IO using aio_*. It uses the
6827         threadpool now. Workaround for bug #73718.
6828
6829 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6830
6831         * assembly.h, mono-config.c: added code to deal with bundled configs
6832         for bundled assemblies.
6833
6834 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
6835
6836         * *.c, private.h: cleanup, removing old private.h header file.
6837
6838 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
6841         and throw_on_unmappable_char attributes.
6842
6843 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
6844
6845         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
6846         _ProcessName_internal.
6847
6848 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
6849
6850         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
6851         #73631.
6852
6853         * icall.c threads.c threads-types.h: Remove slothash icalls as they
6854         are no longer used.
6855
6856 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
6857
6858         * object.c (compute_class_bitmap): Add support for generics. Fixes
6859         #73527.
6860
6861 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6862
6863         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
6864
6865 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6866
6867         * filewatcher.c: commented out the code for windows watcher, as we don't
6868         use it (we use the managed implementation instead).
6869
6870 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
6871
6872         * object-internals.h (MonoThread): Remove 'unused1' field.
6873
6874         * appdomain.c: Bump corlib version.
6875
6876         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
6877
6878         * reflection.c (mono_reflection_create_runtime_class): Remove the
6879         AssemblyBuilder.Save optimization since it causes too many problems.
6880
6881 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
6882
6883         * exception.c|h: Added mono_get_exception_reflection_type_load to
6884         create a ReflectionTypeLoadException object.
6885         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
6886         to return NULL is a InheritanceDemand fails during reflection. Updated
6887         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
6888         ReflectionTypeLoadException if an InheritanceDemand fails during 
6889         reflection. Added icall mapping for GetLinkDemandSecurity.
6890         * security-manager.c|h: Added ves_icall_System_Security_
6891         SecurityManager_GetLinkDemandSecurity internal call to return the
6892         class and methods permissions set for a LinkDemand. Removed unused
6893         fields in MonoSecurityManager.
6894
6895 2005-03-10  Martin Baulig  <martin@ximian.com>
6896
6897         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
6898         it's a generic instance.
6899
6900 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
6901
6902         * reflection.c (mono_get_object_from_blob): Applied patch from
6903         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
6904
6905         * class.c (mono_class_is_assignable_from): Another try at fixing 
6906         #73469 without breaking anything.
6907
6908 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
6909
6910         * class.c: (mono_class_is_assignable_from): Revert the last changes
6911         since they don't work with generics.
6912         
6913         * class.c (mono_class_is_assignable_from): Fix build bustage.
6914
6915         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
6916         the managed IsAssignableFrom method. Fixes #73469.
6917
6918         * reflection.c (mono_reflection_call_is_assignable_from): New helper
6919         function.
6920
6921 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
6922
6923         * object.c (mono_load_remote_field_new): Fix returning uninitialized
6924         memory when the remoting callback does not sets the out arguments.
6925         Fixes #73007.
6926
6927         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
6928         by mistake.
6929
6930         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
6931
6932         * object-internals.h (MonoStackFrame): Sync with managed object layout.
6933
6934         * appdomain.c: Bump corlib version.
6935
6936 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
6937
6938         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
6939         function.
6940
6941         * threads.c (mono_thread_attach): Detect threads which are not started
6942         by the GC pthread wrappers.
6943
6944 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
6945
6946         * icall.c: Added new icall for RNG.
6947         * rand.c|h: Added new icall to open the RNG. This allows to share a 
6948         single handle on Linux to access /dev/urandom and fix #73183.
6949
6950 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
6951
6952         * object.c: setting the new vtable in a transparent proxy object must
6953         not change the GC descriptor.
6954
6955 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6956
6957         * object.c: fixed compilation without GCJ support.
6958         * reflection.c: for runtime-created types ensure klass->has_references
6959         is correct (bug #73215).
6960
6961 2005-03-02  Martin Baulig  <martin@ximian.com>
6962
6963         * class.c (mono_class_is_assignable_from): Make this work if
6964         `oklass' is a generic instance; fixes #72831.
6965
6966 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6967
6968         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
6969         with hasthis set.
6970         
6971         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
6972
6973         * marshal.c: Reorganize native->managed marshalling code to also use
6974         the emit_marshal_... functions.
6975
6976 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
6977
6978         * object.c: typed allocs have issues with bitmap sizes > 30,
6979         so check for max_set >= 30.
6980
6981 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
6982
6983         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
6984         managed code. Fixes #73012.
6985
6986         * metadata.h (MonoMarshalSpec): Add elem_mult field.
6987
6988         * metadata.c reflection.c: Load/Emit elem_mult as well.
6989         
6990         * metadata.h (MonoMarshalSpec): Add comment.
6991
6992         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
6993
6994         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
6995         num_elem to -1 if not given.
6996
6997         * object-internals.h (MonoReflectionMarshal): Add has_size field.
6998
6999         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7000         given values.
7001
7002 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7003
7004         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7005
7006 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7007
7008         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7009
7010         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7011
7012 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7013
7014         * object.c: generalized the reference bitmap creation
7015         and added hooks for the new GC.
7016         * class-internals.c: removed the gc_bitmap field from MonoClass.
7017
7018 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7019
7020         * domain.c: help the compiler to produce better code
7021         in mono_jit_info_table_find ().
7022
7023 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7024
7025         * object.c: make all allocations look typed.
7026
7027 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7028
7029         * socket-io.c: load Mono.Posix if it's not loaded already
7030         (fixes bug#73033).
7031
7032 2005-02-24  Martin Baulig  <martin@ximian.com>
7033
7034         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7035         * reflection.c (dup_type): Likewise.
7036
7037 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7038
7039         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7040         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7041
7042 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7043
7044         * domain.c, threads.c, object-internals.h: make the critical thread
7045         local vars use the fast access mode (even when we're compiled in
7046         a lib). Provide accessors to be used by the jit during codegen.
7047
7048 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7049
7050         * appdomain.c: Changed hook functios behavior to include
7051         support for the reflection only assemblies. Some icalls were changed
7052         to support the mentioned assemblies too. Signatures of static methods
7053         try_assembly_resolve and real_load now have an additional parameter:
7054         refonly.
7055
7056         * assembly.c: General changes to mono_assembly_ methods to support
7057         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7058         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7059         suffix, to support an additional gbool parameter to specify whether
7060         the assembli is reflection only or not. Created some new hook functions 
7061         to add support for reflection only assemblies. Signatures of static 
7062         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7063         have now an additional parameter: refonly.
7064
7065         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7066         indicating whether the assembly is reflection only or not.
7067
7068         * exception.c: Add mono_get_exception_invalid_operation.
7069
7070         * icall.c: Throw an InvalidOperationException when trying to invoke
7071         a property/method/event, or trying to set/get the value of a field.
7072         Also add an icall to retrieve the ref_only flag to the
7073         MonoReflectionAssembly.
7074
7075 2005-02-23  Chris Toshok  <toshok@ximian.com>
7076
7077         Part of fix for #72827.
7078         * mono-debug.c (mono_debug_add_method): add lexical block data to
7079         the info we write.  Kind of a hack at the moment - we copy the
7080         lexical block info from the MonoDebugMethodInfo to the
7081         MonoDebugMethodJitInfo here, before writing it.
7082         (mono_debug_read_method): read the lexical block info.
7083
7084         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7085
7086         * debug-mono-symfile.h: add lexical block support.
7087
7088         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7089         support.
7090
7091 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7094
7095         * object.c (mono_runtime_free_method): Call mono_free_method () and
7096         put the TODOs there.
7097
7098         * loader.c (mono_free_method): Free up most memory allocated for 
7099         dynamic methods.
7100
7101 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7102
7103         * reflection.c: properly flag a Type argument to a
7104         named custom attr value (bug #72248).
7105
7106 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7107
7108         * reflection.c: reduce code duplication in named custom
7109         attribute encoding.
7110
7111 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7112
7113         * reflection.c: properly encode custom attrs of type object
7114         (bug #72649).
7115
7116 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7117
7118         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7119
7120 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7121
7122         * socket-io.c: load System.dll if it's not loaded already
7123         (bug #72850 and #70477).
7124
7125 2005-02-21  Martin Baulig  <martin@ximian.com>
7126
7127         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7128         generic instances.
7129
7130 2005-02-21  Martin Baulig  <martin@ximian.com>
7131
7132         * reflection.c (mono_image_build_metadata): We also need to
7133         "fixup" the MethodImpl table after we computed the final method
7134         indices.  Call fixup_methodimpl() to do that.
7135         (fixup_methodimpl): New private method.
7136
7137 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7138
7139         * assembly.c: special case mscorlib.dll (bug#72536),
7140         patch from Carlos Alberto Cortez.
7141
7142 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7143
7144         * threads-types.h threads.c: Fix build bustage.
7145
7146         * threads.c: Use a union for long<->double conversions.
7147
7148         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7149         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7150
7151         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7152         containing the checkpoint call with NOT_TAKEN.
7153         
7154         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7155         checkpoint before pushing the arguments, so they won't have to be
7156         spilled to stack.
7157
7158 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7159
7160         * domain.c, assembly.c, domain-internals.h: make some data
7161         const and relocation-free.
7162
7163 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7164
7165         * object.c, appdomain.c, class-internals.h: introduce the
7166         MonoClassRuntimeInfo structure to hold the info needed to
7167         use a class at runtime. Made mono_class_vtable() lock-free
7168         for all the appdomains.
7169
7170 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7171
7172         * metadata-internals.h, image.c: introduce a per-image mempool to
7173         be used for memory that has the same lifetime as the image.
7174
7175 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7176
7177         * domain.c: In mono_init_internal(), instead of selecting the first
7178         runtime version supported by an executable, get a list of all
7179         supported versions and select the one for which an mscorlib exists
7180         (since even if the runtime supports a given version, it doesn't mean
7181         that the framework for that version is installed).
7182         Modified get_runtimes_from_exe to support this behavior.
7183         In supported_runtimes, added information about additional system
7184         assembly versions.
7185         
7186         * assembly.c: Added support for more than one system assembly version
7187         per runtime version. Updated the assembly list.
7188         In mono_assembly_remap_version, removed the initial version check,
7189         since we don't know to which version we need to compare until we
7190         get the version set on which the assembly is based.
7191         Moved the code for loading corlib into the new method
7192         mono_assembly_load_corlib(), so it can be used by the initialization
7193         code.
7194         
7195         * domain-internals.h: Updated data structures and added declaration
7196         for mono_assembly_load_corlib.
7197
7198 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7199
7200         * reflection.c (resolve_object): Fix the creation of the signature in 
7201         the SignatureHelper case.
7202
7203         * assembly.c (mono_assembly_remap_version): Fix binary search.
7204         
7205 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7206  
7207         * class.c: Added inheritance check when a method is overloaded (from a
7208         virtual method or when implementing an interface) and when a class is
7209         inherited. Added functions to set a failure for a class and to 
7210         retreive the exception from a failure.
7211         * class-internals.h: Added fields to MonoClass to keep the exception
7212         information status for inheritance (or other exceptions) to be thrown
7213         later (i.e. not at load time).
7214         * object.c: Throw the inheritance SecurityException when a type is to 
7215         be created with either class or method inheritance violations.
7216         * reflection.c|h: Fix when getting declsec from a class. Removed 
7217         unrequired code for class. Improved sanity in parameter naming.
7218         * security-manager.c|h: Added functions to check for class and method
7219         inheritance.
7220
7221 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7222
7223         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7224         and has_finalize in dynamic types as well.
7225
7226 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7227
7228         * culture-info-table.h : fixed currency format for en-GB (and so on).
7229
7230 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7231
7232         * gc.c: ensure the GC handles never have 0 as a value.
7233
7234 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7235
7236         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7237         a pointer to a struct to unmanaged code. Fixes #72625.
7238
7239 2005-02-16  Martin Baulig  <martin@ximian.com>
7240
7241         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7242
7243 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7244
7245         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7246
7247 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7248
7249         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7250
7251         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7252         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7253         etc. Fixes #71471.
7254
7255         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7256
7257         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7258
7259 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7260
7261         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7262         changes to make the current context a field in MonoThread.
7263
7264 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7265
7266         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7267         the last change.
7268         
7269         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7270         extracted from mono_marshal_get_native_wrapper.
7271
7272         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7273         to create wrappers around native functions.
7274
7275         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7276         delegates for arbitrary function pointers. Fixes #71472.
7277
7278 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7279
7280         * threads.c: cleaned up the code a little.
7281
7282 2005-02-15  Martin Baulig  <martin@ximian.com>
7283
7284         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7285         the data table.
7286
7287         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7288         allocate larger chunks if needed.
7289
7290 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7291
7292         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7293         in by mistake.
7294
7295 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7296
7297         * domain.c: keep the domains in an array and ensure the domain ids
7298         are kept small, so they can be used as indexes to domain-specific data
7299         with a small memory overhead.
7300
7301 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7302
7303         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7304
7305 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7306
7307         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7308
7309 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7310
7311         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7312
7313         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7314         values.
7315
7316         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7317         
7318 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7319
7320         * domain-internals.h: add the hashtable here.
7321
7322         * class-internals.h: Remove `info' from MonoMethod
7323
7324         * domain.c: Add a new hashtable, jit_trampoline_hash
7325
7326 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7327
7328         * object.c: don't set the value of static fields
7329         (fixes bug#72494).
7330
7331 2005-02-11  Martin Baulig  <martin@ximian.com>
7332
7333         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7334         (mono_debug_add_method): Silently ignore the method if it's too big.
7335         (mono_debug_add_type): Likewise.
7336
7337 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7338
7339         * threads.c, appdomain.c: remove #ifdefs from the code.
7340
7341 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7342
7343         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7344         common security informations. This allows us to stay in unmanaged code
7345         when doing LinkDemand and it's special cases (except for the first 
7346         time for initialization). The flags a very much used with --security.
7347         * reflection.c|h: Added code to get declarative security attributes 
7348         for LinkDemand and InheritanceDemand. This required to refactor the
7349         existing code for Demand.
7350         * security-manager.c|h: Added new method fields for the special cases
7351         of LinkDemand.
7352
7353 2005-02-10  Martin Baulig  <martin@ximian.com>
7354
7355         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7356         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7357
7358 2005-02-10  Martin Baulig  <martin@ximian.com>
7359
7360         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7361         debugging code; this is almost a complete rewrite.
7362
7363         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7364
7365 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7366
7367         * domain.c, object.h: expose mono_string_equal () and 
7368         mono_string_hash ().
7369         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7370         it's implemented in managed code.
7371
7372 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7373
7374         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7375         lo leak objects between appdomains.
7376
7377 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7378
7379         * assembly.c: old compilers compilation fix from 
7380         robertj@gmx.net (Robert Jordan).
7381
7382 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7383
7384         * class-internals.h: Little reminder for the future.
7385
7386         * debug-helpers.c: Fix up wrapper_type_names
7387
7388 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7389
7390         * image.c, metadata-internals.h: when loading an image from a file,
7391         mmap all of it and use the same codepaths as when using a
7392         in-memory image: the code is simpler and we use less memory
7393         (both writable and readonly).
7394
7395 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7396
7397         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
7398         API to alloc runtime data structures that need to be tracked by the
7399         GC and contain pointers.
7400         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
7401         make the code more readable and eventually use a different GC.
7402
7403 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
7404
7405         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
7406         for out arguments.
7407         
7408 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
7409
7410         * object.c: In release_type_locks(), don't release the cctor lock
7411         if it has already been released. This fixes a crash in the
7412         thread5 test.
7413
7414 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7415
7416         * gc.c, marshal.c, icall.c: register a delegate for finalization
7417         only when the native function pointer has been allocated for it.
7418
7419 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7420
7421         * object.c: cleaned up some code, allocate objects that are
7422         pointer free with the atomic malloc variant. Allocate memory
7423         for static data from the mempool if it's pointer-free.
7424         Allocate the bounds array at the end of the array data, when needed.
7425         * object-internals.h, object.h: move a private function in a private
7426         header.
7427         * class.c: handle missing case in tracking references in fields.
7428
7429 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7430
7431         * class.c, class-internals.h: keep track if a type has
7432         reference fields in either the instance or static fields.
7433
7434 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
7435
7436         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
7437         and renamed to MonoRuntimeInfo. Added fields to store the expected
7438         framework assembly version. Changed mono_get_framework_version and
7439         mono_get_runtime_version for a single mono_get_runtime_info method.
7440         
7441         * assembly.c: Added method to remap system assembly versions to the
7442         current executing runtime version. Removed old mapping code.
7443         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
7444         
7445         * icall.c, reflection.c: Track api changes.
7446
7447 2005-02-06  Miguel de Icaza  <miguel@novell.com>
7448
7449         * loader.c (method_from_memberref): Improve error reporting,
7450         produce the class name instead of the typeref/typedef index. 
7451
7452 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
7453
7454         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
7455
7456 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7457
7458         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
7459         stdcall and charset name mangling.  Reorganize the code and add
7460         some tracing stuff.
7461
7462 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7463
7464         * monodiet.c: More iters!
7465
7466         * marshal.c: Iter usage.
7467
7468         * icall.c: Iter usage.
7469
7470         * object.c: Use iters.
7471
7472         * debug-helpers.c: More iters
7473
7474 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
7477         under win32.
7478
7479 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7480
7481         * mono-debug-debugger.c: use iters
7482
7483         * class.c, class-internals.h: mono_class_setup_events is static
7484         now
7485
7486         * All callers: use iters
7487
7488 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7489
7490         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
7491         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
7492
7493 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7494
7495         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
7496
7497         * marshal.h: Add prototypes for ldfld/stfld_remote.
7498
7499         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
7500         this is called during startup.
7501         
7502 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
7503
7504         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
7505         MonoThreadsSync struct private in monitor.c. Changed the way
7506         MonoThreadsSync is allocated so it's faster and there is no
7507         need to keep track of it with a finalizer and it uses less memory.
7508         This also finally allows us to allocate mono objects as ptrfree when
7509         there are no reference fields.
7510
7511 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
7512
7513         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
7514         disappearing link to the GC interface and use them to simplify
7515         the gchandles code.
7516
7517 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7518
7519         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
7520         stfld_remote which call mono_load/store_field_new. This allows methods
7521         calling ldfld/stfld wrappers to be AOTed.
7522
7523         * console-io.c: Include sys/filio.h under solaris.
7524         
7525         * console-io.c: Include curses.h if needed correctly.
7526
7527 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7528         
7529         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7530         method->klass as well.
7531
7532         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7533
7534         * class.c (mono_class_init): Switch on lazy initialization of 
7535         methods.
7536
7537         * class.c (mono_class_get_finalizer): Handle the case when the 
7538         finalizer is inherited.
7539
7540 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7541
7542         * console-io.c: <curses.h> is needed by term.h on solaris.
7543
7544 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7545
7546         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7547         mono_class_setup_properties where possible. Remove this ftn from
7548         the header file, and make it static.
7549
7550 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7551
7552         * loader.c: Add missing setup_... call.
7553
7554         * class.c: Add missing setup_... calls.
7555
7556         * class.c (mono_class_init): Switch on lazy initialization of 
7557         the generic vtable.
7558         
7559         * class.c (mono_class_init): Fix generics broken by the recent changes.
7560
7561         * monodiet.c (handle_type): Add missing setup_... calls.
7562
7563         * class.c: Back out garbage in previous patch.
7564         
7565         * class.c: Add missing setup_... calls.
7566
7567         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7568         mono_class_setup_methods () if possible.
7569
7570         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7571
7572         * class-internals.h (MonoCachedClassInfo): New structure.
7573
7574         * class.c: Initialize properties and events fields of MonoClass lazily.
7575
7576         * class.c: Add infrastructure for lazily initializing the methods and
7577         vtable fields of MonoClass. Not yet used.
7578
7579         * class.c (mono_class_get_finalizer): New helper function.
7580
7581         * class.c: Add infrastructure for loading some class related data from
7582         an AOT file.
7583
7584         * object.c: Add infrastructure for initializing the vtable from data
7585         in the AOT file.
7586
7587         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7588
7589         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7590         appropriate initialization function before accessing parts of the
7591         MonoClass structure.
7592
7593         * marshal.c: Fix warnings.
7594         
7595         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7596
7597         * mono-debug-debugger.c (get_exception_message): Use 
7598         mono_class_get_method_from_name_flags ().
7599
7600 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7601
7602         * reflection.c, appdomain.c: Replace a few manual searches that
7603         Zoltan missed. (Paolo approved this part of my initial patch).
7604
7605 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7606
7607         * profiler.c: disable recording statistical events at report time.
7608
7609 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7610
7611         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7612         to byteswap arrays of enum values, too (bug #72080).
7613
7614 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7615
7616         * appdomain.c (set_domain_search_path): Allow this to be called if
7617         domain->setup is not yet set.
7618
7619         * loader.c (mono_method_get_index): New helper function.
7620
7621         * loader.c reflection.c: Use mono_method_get_index ().
7622
7623         * class.c (mono_class_get_method_from_name_flags): New helper method.
7624
7625         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7626         this.
7627
7628         * class.c (mono_class_get_cctor): New helper method.
7629
7630         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7631         mono_class_get_method () to look up methods.
7632
7633 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7634
7635         * console-io.c: Fix the build, this should work on Windows.
7636
7637 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7638
7639         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7640         be set to null to keep things valid
7641
7642 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7643
7644         * icall.c: added Console 2.0 icalls.
7645         * Makefile.am: added console-io.[ch]
7646         * console-io.[ch]: internal calls for Console 2.0 API.
7647
7648 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7649
7650         * class.c: make sure we consider all the interfaces
7651         when calculating max_interface_id (bug found by
7652         Jeroen Frijters running ikvm).
7653
7654 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7655
7656         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7657         valuetype fields to null.
7658
7659         * object.c (set_value): Ditto. Fixes #71669.    
7660
7661 2005-01-31  Martin Baulig  <martin@ximian.com>
7662
7663         * metadata.c (mono_metadata_has_generic_params): New public
7664         function; checks whether something is a generic method.
7665
7666 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7667
7668         * appdomain.c: fix infinite recursion when adding assemblies.
7669
7670 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7671
7672         * object.c: Fix small typo to return all items for Environment.
7673         GetCommandLineArgs.
7674
7675 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7676
7677         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7678         reflection.c: more domain and assembly-unload related fixes
7679         and memory leaks plugs.
7680
7681 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7682
7683         * 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.
7684
7685 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7686
7687         * loader.c (mono_method_signature): Make this method lazy
7688         (mono_get_method_from_token): Don't computate the signature here.
7689
7690         Doing this saves quite a bit of memory. I got 90 kb on starting up
7691         monodoc. It should also save some disk reads on startup.
7692
7693         * *: MonoMethod->signature might be NULL now. You *MUST* use
7694         mono_method_signature.
7695
7696 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7697
7698         * object.c (mono_runtime_get_main_args): Return an array from the
7699         current domain here. Fixes #71938.
7700
7701 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7702
7703         * monitor.c: formatting changes to comply with the
7704         mono coding style and remove #ifdefs from the code.
7705
7706 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7707
7708         * metadata.c, private.h: remove some unneeded data
7709         and use a more compact representation for table schemas.
7710
7711 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7712
7713         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7714         to get a better distribution in hash tables.
7715         * *.c: use mono_aligned_addr_hash() where appropriate.
7716         * assembly.c: make var static.
7717
7718 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7719
7720         * domain-internals.h: Put MonoJitInfo on a diet.
7721
7722         * domain.c: Fix a warning.
7723
7724 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7725
7726         * gc.c: rework the gc handles code to reuse handles
7727         when freed.
7728
7729 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7730
7731         * domain.c: fixed long standing bug in mono_string_equal() which
7732         was brought to light with the ldstr changes.
7733
7734 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7735
7736         * reflection.c: Remove warning by adding missing include for marshal.h
7737
7738 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7739
7740         * domain.c, object.c: change the ldstr_table to hold
7741         MonoString* as keys: makes the runtime isinterned lookup
7742         faster and simplifies memory management.
7743
7744 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7745  
7746         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7747         possible to add imperative security checks before calling the icall.
7748         * reflection.c: Return security attributes on the original MonoMethod
7749         (and not the wrapped one). This fix permissions on icalls.
7750
7751 2005-01-25  Dick Porter  <dick@ximian.com>
7752
7753         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7754         the check for mktime() support actually test the mktime() return
7755         value.  "Fixes" bug 71682, though the output is still different to
7756         MS.
7757
7758 2005-01-25  Martin Baulig  <martin@ximian.com>
7759
7760         * class.c (mono_class_is_assignable_from): Make this work for
7761         generic instances.
7762
7763 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7764
7765         * marshal.c (mono_string_utf8_to_builder)
7766         (mono_string_builder_to_utf16): We might not have ownership of the
7767         string. In thise case, we need to create a new buffer.
7768
7769         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7770         be null, in which case, use the default capacity.
7771
7772 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7773
7774         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7775         GC events to the profiler.
7776
7777 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7778
7779         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7780         if you don't want the GC to run.
7781
7782 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7783
7784         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7785         start providing a GC API and keeping different implementations in
7786         their own file.
7787         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7788
7789 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7790
7791         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7792         mmap rather than allocating a huge buffer.
7793         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7794         above.
7795
7796 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7797
7798         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7799         and CheckExecutionRights.
7800         * reflection.c|h: Keep the index of the declarative security to be 
7801         used, instead of the pointer, when AOT compiler is used. Also add 
7802         class initialization when requesting demands.
7803         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7804         CheckExecutionRights. Both properties are now FALSE by default, and
7805         unmodifiable, unless the --security option is used.
7806
7807 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7808
7809         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
7810         reflection.c: properly refcount images and assemblies, many leaks fixed.
7811
7812 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7813
7814         * threadpool.c: increase the timeout for threads in the thread pool to
7815         10s.  Fixes bug #67159.
7816
7817 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7818
7819         * class-internals.h: Sun's compiler insists on explicit
7820         signed on bit fields to handle then correctly.
7821
7822 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
7823
7824         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
7825         Make the size of the array fit only the number of invalid path
7826         chars that we have.
7827
7828         * class.c (_mono_class_get): Improve the error reporting when a
7829         class referenced is not found, to assist debugging. 
7830
7831 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
7832
7833         * threads.c: fix off-by-one error.
7834         * domain.c: free data allocated in the domain.
7835
7836 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7837
7838         * reflection.c (mono_method_body_get_object): Fill out exception info
7839         as well.
7840
7841         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
7842         structure.
7843         
7844 2005-01-19  Martin Baulig  <martin@ximian.com>
7845
7846         * loader.c (mono_get_method_constrained): Make this work again.
7847
7848 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
7849
7850         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
7851         guint16 to match the managed side.
7852
7853         * reflection.c (mono_reflection_body_get_object): Fill out local
7854         variables array.
7855
7856         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
7857         as well.
7858
7859         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
7860         'local_var_sig_token'.
7861
7862 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
7863
7864         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
7865         System.Drawing.
7866
7867         * reflection.c (mono_method_body_get_object): Handle abstract and
7868         runtime methods.
7869
7870 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
7871
7872         * marshal.c, loader.c, class-internals.h, reflection.c:
7873         store the emthod data for a wrapper in an array instead of a list.
7874
7875 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
7876
7877         * marshal.c: change the code to allocate memory more
7878         conservatively for method wrappers.
7879
7880 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
7881
7882         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
7883         fields from MonoClass to the marshal info structure where they belong.
7884
7885 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7886
7887         * class.c, object.c, class-internals.h, marshal.c: rearrange
7888         some fields and tweak some types to lower memory usage.
7889
7890 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
7891
7892         * threads.c (signal_thread_state_change): Handle the case when the
7893         target thread is the current thread.
7894
7895         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
7896
7897         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
7898         emit_ptr_to_object_conv. 
7899
7900         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
7901         marshalling. Fixes #71352.
7902
7903 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7904
7905         * metadata.h, blob.h: move table enum to blob.h so it can be included
7906         in any header.
7907         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
7908         cut the size of MonoImage/MonoDynamicImage.
7909
7910 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
7911
7912         * profiler.c (mono_profiler_install_simple): Fix default arguments.
7913
7914 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
7915
7916         * reflection.c, reflection.h, icall.c: add a function to check
7917         if an attribute type is defined for a metadata object.
7918
7919 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
7920
7921         * object-internals.h: Added some needed fields from StringBuilder class.
7922         * marshal.c: Set the maxCapacity when creating a StringBuilder.
7923
7924 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
7925
7926         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
7927         threads before shutting down the runtime.
7928
7929         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
7930
7931 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7932
7933         * object-internal.h, threads.c: implement stacksize and 
7934         parameterized thread start functionality (requires
7935         matching corlib). Marked broken code for later removal.
7936
7937 2005-01-12  Martin Baulig  <martin@ximian.com>
7938
7939         * class-internals.h (MonoGenericClass): Moved the `initialized'
7940         flag to MonoDynamicGenericClass, removed `init_pending'.
7941         (MonoGenericInst): Added `is_reference' flag.
7942
7943 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
7944
7945         * reflection.c (mono_image_create_pefile): Only set the pe_offset
7946         inside the MSDOS header. Fixes #71201.
7947
7948         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
7949         gc thread.
7950         (mono_domain_finalize): Ditto.
7951
7952 2005-01-12  Martin Baulig  <martin@ximian.com>
7953
7954         * class.c (mono_get_shared_generic_class): Use the cache for
7955         non-dynamic generic classes.
7956
7957         * class-internals.h (mono_class_create_generic_2): Removed
7958         function prototype, this function is now static inside class.c.
7959
7960         * class.c (mono_class_create_generic_2): Made this static, only
7961         call it from mono_class_init() and mono_class_setup_parent().
7962         (collect_implemented_interfaces_aux): Call mono_class_init() on
7963         the interfaces we collect.
7964         (mono_class_setup_vtable): Call mono_class_init (class->parent).
7965
7966 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7967
7968         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
7969         it a real thread handle.
7970
7971         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
7972         MonoJitExceptionInfo, since each catch clause needs its own variable.
7973         
7974 2005-01-11  Dick Porter  <dick@ximian.com>
7975
7976         * image.c (mono_pe_file_open): New variant on mono_image_open()
7977         that does not set up the CLI metadata; used for FileVersionInfo so
7978         it can get the data for windows binaries too.
7979         
7980         * process.c (process_read_string_block): Don't read off the end of
7981         the StringTable block.
7982
7983         These both fix bug 70766.
7984
7985 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
7986
7987         * gc.c: set some fields to NULL at GC cleanup time.
7988         * threads.c: if we quit the main thread, call exit ().
7989
7990 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
7991
7992         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
7993
7994 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
7995
7996         * threads.h, threads.c, object.c: added accessor and settor for
7997         main_thread. Handle it specially when exiting from it: wait
7998         for other foreground threads to exit.
7999
8000 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8001
8002         * process.c, verify.c: remove some bloat.
8003
8004 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8005
8006         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8007         the calling convention to cdecl under win32.
8008
8009 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8010
8011         * object.c (mono_object_get_size): New function to get the size of
8012         an object instance.
8013
8014         * profiler.c (simple_allocation): Use above.
8015
8016 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8017
8018         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8019         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8020         get an appdomain by it's id and we can't assume the root's id is 0).
8021         * domain-internals.h: Change the function prototype to match.
8022         * icall.c: Change the icall table for AppDomain.
8023
8024 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8025
8026         * locales.c (string_invariant_compare_char): Only compute
8027         GUnicodeTypes in the case where we need them.  Test for ordinality
8028         first and return if so.
8029
8030         From the commit:
8031
8032                 /*
8033                  * FIXME: here we must use the information from c1type and c2type
8034                  * to find out the proper collation, even on the InvariantCulture, the
8035                  * sorting is not done by computing the unicode values, but their
8036                  * actual sort order.
8037                  */
8038
8039 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8040
8041         * loader.c: for P/Invoke methods, allow the "Internal" shared
8042         library name to refer to the calling process symbol namespace.
8043
8044 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8045
8046         * Makefile.am: Add the security manager to the build.
8047         * security-manager.c|h: New. Initialization of the security manager.
8048
8049 2005-01-07  Dick Porter  <dick@ximian.com>
8050
8051         * threads.c: 
8052         * monitor.c: Update thread state during Monitor and WaitHandle
8053         waits.  Fixes bug 71031.
8054
8055 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8056
8057         * reflection.c (property_encode_signature): Correctly handle when the
8058         property has no methods.
8059
8060 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8061
8062         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8063         
8064         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8065         fields from mb, not rmb. Fixes #71017.
8066
8067         * marshal.c (emit_ptr_to_str_conv): Add support for 
8068         ByValTStr -> string conversion. Fixes #71015.
8069
8070         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8071
8072         * mempool.c (mono_mempool_contains_addr): New helper function.
8073
8074 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8075
8076         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8077         HasSematics encoded fields.
8078         
8079         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8080         invalid string marshalling.
8081
8082         * metadata.c: Fix warnings.
8083         
8084 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8085
8086         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8087         profiler support.
8088
8089 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8090
8091         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8092         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8093         tests.
8094
8095 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8096
8097         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8098         so methods containing these can be AOTed.
8099
8100 2005-01-03  Martin Baulig  <martin@ximian.com>
8101
8102         * loader.c (find_method): Removed the hack for generic instances.
8103         (method_from_memberref): If our parent is a generic instance, pass
8104         its generic type definition to find_method() and then inflate the
8105         method.
8106         (mono_get_method_constrained): Pass the generic type definition to
8107         find_method() and inflate the method later.
8108
8109         * class-internals.h (MonoStats): Added `generic_class_count'.
8110
8111         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8112         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8113
8114         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8115         generic type definitions.
8116
8117 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8118
8119         * loader.c icall.c: Fix warnings.
8120
8121 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8122
8123         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8124         blittable types. Fixes #70864.
8125
8126 2004-12-29  Martin Baulig  <martin@ximian.com>
8127
8128         * icall.c
8129         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8130
8131         * reflection.c (mono_method_get_object): Create a
8132         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8133         call mono_get_inflated_method().
8134
8135         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8136
8137 2004-12-27  Martin Baulig  <martin@ximian.com>
8138
8139         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8140         (MonoMethodInflated): Added `inflated' field.
8141
8142         * class.c (mono_class_inflate_generic_method): Don't really
8143         inflate the method here; just set the `is_inflated' flag in the
8144         MonoMethod.
8145         (mono_class_get_inflated_method): Actually inflate the method here
8146         if it's not already inflated; we use the MonoMethodInflated's new
8147         `inflated' field as a cache.
8148
8149 2004-12-26  Martin Baulig  <martin@ximian.com>
8150
8151         * class.c
8152         (inflate_generic_class): Moved some code out of inflate_generic_type().
8153         (mono_class_inflate_generic_method): If we're already inflated,
8154         inflate the context and use the declaring method; ie. make sure
8155         the declaring method of an inflated method is always the generic
8156         method definition.
8157         (mono_class_create_from_typedef): Create
8158         `class->generic_container->context->gclass'.
8159
8160 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8161
8162         * metadata-internals.h, marshal.c, reflection.c: More
8163         MonoGHashTable->GHashTable.
8164
8165         * domain-internals.h, class.c: Change MonoGHashTable's into
8166         GHashTables for some cases where no gc stuff is used
8167
8168         All users: update apis
8169
8170 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8171
8172         * metadata.c (builtin_types): Make this `const'. Makes this get
8173         put into the shareable section.
8174         (mono_metadata_init): Casts to make gcc happy.
8175
8176 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8177
8178         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8179
8180 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8181
8182         * icall.c: Added an internal call to retrieve the position and length
8183         of assembly-level declarative security attributes (RequestMinimum, 
8184         RequestOptional and RequestRefuse). This is used by the Assembly class
8185         to re-create the corresponding permission sets.
8186
8187 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8188
8189         * marshal.c: fix the stelemref wrapper to be type correct
8190         (and faster).
8191
8192 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8193
8194         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8195         to do key & 0x7fffffff. Hashtable already does this. It just
8196         results in longer code.
8197
8198 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8199
8200         * appdomain.c: Bump corlib version.
8201         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8202         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8203         * reflection.c|h: Add functions to get declarative security infos
8204         (blob position and length) for assemblies, classes and methods.
8205
8206 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8207
8208         * reflection.c: sort the constant table (bug #70693).
8209
8210 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8211
8212         * object-internals.h, threads.c, domain.c: add accessors for
8213         the MonoThread and MonoDomain tls keys.
8214
8215 2004-12-18  Martin Baulig  <martin@ximian.com>
8216
8217         * class.c (inflate_generic_type): If we're inflating a generic
8218         instance, set `ngclass->context->container = context->container';
8219         ie. the container we inflated into.
8220
8221         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8222         inflate_generic_type() changes.
8223
8224 2004-12-17  Martin Baulig  <martin@ximian.com>
8225
8226         * class-internals.h
8227         (MonoGenericClass): Replaced `MonoType *generic_type' with
8228         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8229         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8230         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8231
8232 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8233
8234         * exception.c (mono_exception_from_token): New helper function.
8235
8236 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8237
8238         * assembly.c (mono_assembly_load_with_partial_name): Call 
8239         mono_assembly_loaded before invoking the preload hooks. Fixes
8240         #70564.
8241
8242         * object-internals.h (MonoThread): Change culture_info and 
8243         ui_culture_info into an array.
8244
8245         * threads.c: Cache culture info objects from more than one appdomain.
8246
8247         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8248         current UI culture.
8249
8250 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8251
8252         * threads.h threads.c appdomain.c: Clear the culture_info field of
8253         all threads during unloading if they point to an object in the dying
8254         appdomain.
8255
8256 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8257
8258         * culture-info.h (TextInfoEntry): New struct
8259         * object-internals.h: sync with managed
8260         * locales.c: fill the `text_info_data' field
8261         * culture-info-tables.h: update
8262
8263 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8264
8265         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8266         collector.
8267
8268 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8269
8270         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8271         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8272
8273 2004-12-12  Martin Baulig  <martin@ximian.com>
8274
8275         * mono-debug-debugger.c (write_type): If we're an enum and the
8276         builtin types have already been initialized, call mono_class_init().
8277
8278 2004-12-11  Martin Baulig  <martin@ximian.com>
8279
8280         * metadata.c (mono_metadata_load_generic_params): Added
8281         `MonoGenericContainer *parent_container' argument; automatically
8282         compute `container->is_method'; pass the correct owner to
8283         get_constraints().      
8284
8285         * reflection.c (compare_genericparam): Sort the GenericParam table
8286         according to increasing owners. 
8287
8288 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8289
8290         * profiler.c: allow disabling the default profiler.
8291
8292 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8293
8294         * decimal.c, icall.c: allow disabling System.Decimal support.
8295
8296 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8297
8298         * reflection.c: Add support for null attribute arguments.
8299
8300 2004-12-09  Martin Baulig  <martin@ximian.com>
8301
8302         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8303         names to get rid of compiler warnings.
8304
8305 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8306
8307         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8308         mono_marshal_load_type_info (). Fixes #69625.
8309         (mono_marshal_get_ptr_to_struct): Likewise.
8310
8311 2004-12-08  Martin Baulig  <martin@ximian.com>
8312
8313         * mono-debug.h: Bumped version number to 47.
8314
8315         * mono-debug-debugger.c
8316         (mono_debugger_event_handler, mono_debugger_event): Take two
8317         guint64 arguments insteed of a gpointer and a guint32.  
8318
8319 2004-12-08  Martin Baulig  <martin@ximian.com>
8320
8321         * debug-mono-symfile.h
8322         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8323         `address' to `native_offset'.
8324
8325 2004-12-08  Martin Baulig  <martin@ximian.com>
8326
8327         * class.c (mono_class_create_from_typespec): Only inflate if we
8328         either have `context->gclass' or `context->gmethod'.
8329
8330 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8331
8332         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8333
8334         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8335
8336         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8337
8338         * reflection.c (mono_assembly_get_object): Remove the workaround put
8339         in for the release.
8340         
8341         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8342
8343         * appdomain.c: Bump corlib version.
8344
8345         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8346         be visible in other appdomains.
8347
8348 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8349
8350         * threads.c: Interlocked inc and dec for longs were messed up,
8351         use a KISS based impl for this. Fixes 70234
8352
8353 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8354
8355         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8356
8357 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8358
8359         * icall.c: fix to follow policy not to allow struct
8360         arguments in icalls.
8361
8362 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8363
8364         * process.c: make the patch that handles spaces in file paths work
8365         on mono/windows too.
8366
8367 2004-12-06  Martin Baulig  <martin@ximian.com>
8368
8369         * class.c (mono_class_create_generic): Call
8370         mono_class_setup_supertypes() if we're dynamic.
8371         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8372
8373 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8374
8375         * object-internals.h: Add new fields to MonoThread.
8376
8377         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8378
8379         * icall.c threads-types.h threads.c: Add new icalls.
8380
8381         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8382
8383         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8384         managed side.
8385
8386         * appdomain.c: Bump corlib version.
8387
8388         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
8389         internal assemblies. Fixes #69181.
8390
8391 2004-12-05  Martin Baulig  <martin@ximian.com>
8392
8393         * class.c (mono_class_inflate_generic_signature): Make this a
8394         no-op if `context' is NULL or we don't have any type parameters;
8395         also copy `sentinelpos'.        
8396
8397 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
8398
8399         * image.c: Add unbox_wrapper_cache.
8400
8401         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
8402
8403         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
8404         function generator.
8405         
8406         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
8407         Fixes #70173.
8408
8409         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
8410         
8411 2004-12-04  Martin Baulig  <martin@ximian.com>
8412
8413         * loader.c (mono_method_get_signature_full): New public function;
8414         like mono_method_get_signature(), but with an additional
8415         `MonoGenericContext *' argument.
8416
8417         * class.c (mono_class_inflate_generic_signature): Formerly known
8418         as inflate_generic_signature(); make this public.
8419
8420 2004-12-04  Martin Baulig  <martin@ximian.com>
8421
8422         * metadata.c
8423         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
8424         instead of a `MonoGenericContainer *'.  
8425         (mono_metadata_parse_array_full): Likewise.
8426         (mono_metadata_parse_signature_full): Likewise.
8427         (mono_metadata_parse_method_signature_full): Likewise.
8428         (mono_metadata_parse_generic_inst): Likewise.
8429         (mono_metadata_parse_generic_param): Likewise.
8430         (mono_metadata_parse_mh_full): Likewise.
8431         (mono_type_create_from_typespec_full): Likewise.
8432
8433 2004-12-03  Martin Baulig  <martin@ximian.com>
8434
8435         * class-internals.h (MonoGenericContainer): Replaced the
8436         `MonoGenericContext * pointer with a `MonoGenericContext'
8437         structure and made it the first element.
8438
8439 2004-12-03  Martin Baulig  <martin@ximian.com>
8440
8441         * class.c
8442         (inflate_generic_type): Set the `context->container' when creating
8443         a new MonoGenericContext.
8444         (mono_class_inflate_generic_method): Likewise.
8445         (mono_class_create_from_typespec): Just use `context->container'
8446         to get the container.
8447
8448         * loader.c (method_from_methodspec): Set `context->parent' from
8449         `context->container' - and if that's a method container, use its
8450         parent.  Also set the `context->container' when creating a new
8451         MonoGenericContext.
8452         (mono_get_method_from_token): Use just `context->container' to get
8453         the container.
8454
8455         * metadata.c (do_mono_metadata_parse_generic_class): Also set
8456         `gclass->context->container'.
8457
8458         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
8459         the `context->container' when creating a new MonoGenericContext.
8460
8461 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
8462
8463         * reflection.c (compare_genericparam): Sort params with identical
8464         owner by their number. Fixes gen-111 on sparc.
8465
8466 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8467
8468         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
8469         around the domain changes.
8470
8471         * appdomain.c (mono_domain_unload): Handle the case when the thread
8472         calling Unload is itself being aborted during unloading. Fixes #70022.
8473
8474         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
8475
8476         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
8477         checkpoint_func as an icall so it gets a wrapper.
8478         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
8479         in the cross-appdomain wrappers too.
8480
8481         * threads.c (mono_thread_has_appdomain_ref): Make this public.
8482
8483         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
8484
8485         * reflection.c: Fix some memory leaks.
8486         
8487 2004-12-02  Martin Baulig  <martin@ximian.com>
8488
8489         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
8490
8491         * metadata.c (generic_class_cache): New static hashtable.
8492         (mono_metadata_lookup_generic_class): New public method.
8493
8494 2004-12-02  Martin Baulig  <martin@ximian.com>
8495
8496         * class.c (mono_class_create_from_typedef): Call
8497         mono_class_setup_parent() and mono_class_create_mono_type() before
8498         parsing the interfaces.
8499
8500 2004-12-02  Martin Baulig  <martin@ximian.com>
8501
8502         * metadata.c (generic_inst_cache): New static hashtable.
8503         (mono_metadata_lookup_generic_inst): New public function.
8504         (mono_metadata_inflate_generic_inst): New public function.
8505         (mono_metadata_parse_generic_inst): New public function.
8506         (do_mono_metadata_parse_generic_class): Use the new
8507         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
8508         since this'll also use the cache.
8509
8510         * reflection.c (mono_reflection_bind_generic_method_parameters):
8511         Use mono_metadata_lookup_generic_inst() to use the new cache.
8512
8513         * class.c (inflate_mono_type): Use
8514         mono_metadata_inflate_generic_inst() to inflate a generic
8515         instance; this'll also use the new cache.
8516
8517         * loader.c (method_from_methodspec): Use
8518         mono_metadata_parse_generic_inst() and
8519         mono_metadata_inflate_generic_inst() rather than parsing it
8520         manually, so we can use the new cache.
8521
8522 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8523
8524         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8525         the wait times out.
8526
8527 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8528
8529         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8530         iter->args based on whether parameters are passed in registers (i.e.
8531         MONO_ARCH_REGPARMS is defined)
8532
8533 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8534
8535         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8536         the exception message. Fixes #70070.
8537         (method_from_methodspec): Fix warnings.
8538
8539 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8540
8541         * process.c: (complete_path) return the path quoted
8542
8543 2004-12-01  Martin Baulig  <martin@ximian.com>
8544
8545         * class-internals.h (MonoGenericInst): New structure.
8546         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8547         `is_open' with `MonoGenericInst *inst'.
8548         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8549         `is_open' with `MonoGenericInst *inst'.
8550
8551 2004-11-30  Martin Baulig  <martin@ximian.com>
8552
8553         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8554
8555         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8556         to `generic_class_cache'.
8557
8558         * metadata.c
8559         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8560         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8561         (mono_generic_inst_is_valuetype): Renamed to
8562         mono_generic_class_is_valuetype().
8563
8564         * class-internals.h
8565         (MonoGenericInst): Renamed to MonoGenericClass.
8566         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8567         (MonoClass): Renamed `generic_inst' to `generic_class'.
8568         (MonoGenericContext): Renamed `ginst' to `gclass'.
8569
8570         * object-internals.h
8571         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8572
8573         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8574         mono_reflection_generic_class_initialize().
8575
8576         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8577         now known as "System.Reflection.MonoGenericClass".
8578         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8579
8580 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8581
8582         * class-internals.h: Added a flag field to MonoClass to cache the
8583         declarative security attributes actions associated with the class.
8584         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8585         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8586         applicable to the JITted method.
8587         * reflection.c|h: Added functions to extract (as flags) which security
8588         actions are available (declaratively) for a method, class or assembly.
8589         * metadata.c|h: Added functions to search the declarative security
8590         table in the metadata.
8591         
8592 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8593
8594         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8595         EXPORTEDTYPES are already in the class name cache, so there is no
8596         need to add extra code here to look at them. Just removes a bit of
8597         cruft.
8598
8599         (ves_icall_System_Environment_get_TickCount): No need for #if
8600         WINDOWS. We already have the code in io-layer.
8601
8602 2004-11-28  Martin Baulig  <martin@ximian.com>
8603
8604         * loader.c
8605         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8606         Fixes gen-112.cs.
8607
8608 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8609
8610         * assembly.c (do_mono_assembly_open): Instead of having a
8611         conditional WITH_BUNDLE, incorporate support for bundles here, by
8612         having a global `bundles' variable holding a pointer to the actual
8613         bundles. 
8614
8615         (mono_register_bundled_assemblies): New API call used by the
8616         bundle code. 
8617
8618         See mkbundle.1 for details.
8619         
8620 2004-11-27  Martin Baulig  <martin@ximian.com>
8621
8622         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8623         the vtable for generic methods.
8624
8625 2004-11-26  Martin Baulig  <martin@ximian.com>
8626
8627         * metadata.c
8628         (mono_metadata_generic_method_hash): New public function.
8629         (mono_metadata_generic_method_equal): Likewise.
8630
8631         * class-internals.h
8632         (MonoGenericContainer): Added `GHashTable *method_hash'.
8633
8634         * reflection.c (ReflectionMethodBuilder): Added
8635         `MonoGenericContainer *generic_container'.
8636         (reflection_methodbuilder_to_mono_method): Don't create a new
8637         MonoGenericContainer each time we're called.
8638         (mono_reflection_bind_generic_method_parameters): Use
8639         `container->method_hash' to cache the results so we don't create a
8640         different method if we're called several times with the same
8641         arguments.
8642
8643         * loader.c (method_from_methodspec): Use the new
8644         `container->method_hash' here, too.
8645
8646 2004-11-26  Martin Baulig  <martin@ximian.com>
8647
8648         * class.c (inflate_generic_signature): Correctly compute
8649         `res->has_type_parameters'.
8650         (mono_class_vtable): Use the `has_type_parameters' flag to
8651         determine whether we're a generic method.
8652
8653         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8654
8655 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8656
8657         * object.c (mono_runtime_run_main): Fix a small memory leak.
8658
8659 2004-11-25  Martin Baulig  <martin@ximian.com>
8660
8661         * class.c (set_generic_param_owner): Fixed the loop.
8662
8663 2004-11-25  Martin Baulig  <martin@ximian.com>
8664
8665         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8666         generic methods.
8667
8668 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8669
8670         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8671         names. Fixes #69787.
8672
8673 2004-11-24  Martin Baulig  <martin@ximian.com>
8674
8675         * class.c (mono_class_create_generic_2): If we don't have a
8676         `ginst->parent', inflate `gklass->parent' to get our parent.
8677
8678 2004-11-24  Martin Baulig  <martin@ximian.com>
8679
8680         * reflection.c (compare_genericparam): Correctly sort the
8681         GenericParam table; fixes #69779.
8682
8683 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8684
8685         * reflection.c: When writing a PE file, don't create a huge
8686         buffer in memory. Just write the arrays we have to the file.
8687         This reduces memory usage.
8688
8689         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8690         globally.
8691
8692 2004-11-17  Martin Baulig  <martin@ximian.com>
8693
8694         * class.c (mono_class_init): Don't setup `class->parent' for
8695         dynamic instances; moved this to mono_class_generic_2().
8696         (mono_class_create_generic): Also set `klass->inited' for dynamic
8697         generic instances.
8698         (mono_class_create_generic_2): Don't do anything for dynamic
8699         generic instances.  Set `klass->parent' here and also call
8700         mono_class_setup_parent() here. 
8701
8702         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8703         `MonoType *parent' argument; set `ginst->parent' before calling
8704         mono_class_create_generic_2(), so we set the correct parent.
8705
8706 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8707
8708         * reflection.c: allow getting attributes from ModuleBuilder
8709         (used by ikvm).
8710
8711 2004-11-17  Martin Baulig  <martin@ximian.com>
8712
8713         * class.c (mono_class_create_from_typedef): If a type parameter is
8714         inherited from an outer class, set its owner to that class.
8715
8716 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8717
8718         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8719           for (int*) written size. This fixes bug #69592.
8720
8721 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8722
8723         * icall.c: Added IsAuthenticodePresnet internal call.
8724         * image.c|h: New function that check a MonoImage for an Authenticode
8725         signature in the certificate PE data directory.
8726         * security.c|h: New internal call to ask the runtime if an 
8727         Authenticode signature seems referenced in the PE header.
8728
8729 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8730
8731         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8732
8733         * reflection.c (mono_image_create_pefile): Free the assembly streams
8734         after writing out the assembly file.
8735
8736         * object.c (mono_runtime_run_main): Fix small memory leak.
8737
8738         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8739         property access modifiers. Fixes #69389.
8740
8741 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8742
8743         * domain.c, object.c, object-internals.h, domain-internals.h,
8744         object.h, marshal.c: keep dynamic code info per domain.
8745
8746 2004-11-15  Martin Baulig  <martin@ximian.com>
8747
8748         * class.c (mono_type_get_name_recurse): Put type arguments in
8749         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8750         see bug #68387.
8751
8752 2004-11-15  Martin Baulig  <martin@ximian.com>
8753
8754         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8755         (mono_class_setup_vtable): When computing `the_cname' for a
8756         generic instance, don't include the namespace since we'd otherwise
8757         add it twice.
8758
8759 2004-11-15  Martin Baulig  <martin@ximian.com>
8760
8761         * class.c (mono_class_create_generic): Changed return type to void.
8762         (mono_class_create_generic_2): New public function; setup
8763         `class->method', `class->field' and `class->interfaces' here
8764         instead of in mono_class_init().
8765
8766         * class.h (mono_class_create_generic): Moved to class-internals.h.
8767
8768 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8769
8770         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8771         rather than writing to memory, write to this file. Right now,
8772         we are just writting into a buffer, and copying that. However
8773         we can avoid the buffer later.
8774
8775         (mono_dynamic_stream_reset): new function
8776
8777         * icall.c, object-internals.h: update for the above.
8778
8779 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8780
8781         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8782         have been using gc'd memory. First it is slower, unlikely
8783         the comment in the source code said, secondly, it increases
8784         our footprint to do it in the gc.
8785
8786         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8787         the method so that it does not have to copy to managed code.
8788
8789 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8790
8791         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8792
8793 2004-11-12  Martin Baulig  <martin@localhost>
8794
8795         * reflection.c (mono_image_create_token): Allow generic method
8796         definitions here, since they may appear in an `.override'; see
8797         gen-98/gen-99 for an example.
8798
8799 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8800
8801         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8802         #69365.
8803
8804         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8805         descriptive.
8806
8807 2004-11-11  Martin Baulig  <martin@ximian.com>
8808
8809         * class.c (mono_class_setup_vtable): In an explicit interface
8810         implementation, the method name now includes the arity.
8811
8812 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
8813
8814         * object.c (mono_array_full_copy): Fix warning.
8815
8816 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
8817
8818         * appdomain.c: Removed look_for_method_by_name(). Use the new method
8819         mono_class_get_method_from_name() instead.
8820         
8821         * class-internals.h: Added two new types of wrappers. 
8822         Added MonoRemotingTarget enum. Added new trampoline function type, which
8823         takes an additional MonoRemotingTarget value as parameter, so it is
8824         possible to request a trampoline for a specific target.
8825         
8826         * class.c: Added new mono_class_get_method_from_name() method.
8827         
8828         * class.h: In MonoRemoteClass, we can have now to vtables, one for
8829         general remoting sinks and one specific for cross domain calls.
8830         
8831         * debug-helpers.c: Added new wrapper names.
8832         
8833         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
8834         of a remote class.
8835         
8836         * image.c: Porperly delete value objects form the remoting invoke hashtable.
8837         
8838         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
8839         with several other methods (mono_marshal_get_xappdomain_dispatch,
8840         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
8841         and others) can generate a fast remoting wrapper for cross domain calls.
8842         More information can be found in docs/remoting.
8843         Other changes: Removed mono_find_method_by_name, and used
8844         mono_class_get_method_from_name instead.
8845         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
8846         is stored in the remoting invoke hashtable.
8847         
8848         * marshal.h: published the new method for getting the xdomain wrapper,
8849         and also added a method for getting the adequate wrapper for a given
8850         method and target.
8851         
8852         * object-internals.h, object.c: Added a couple of methods for capying and
8853         cloning arrays.
8854         Modified mono_install_remoting_trampoline, which takes the new remoting
8855         trampoline that has a remoting target as parameter.
8856         mono_class_proxy_vtable now also takes a remoting target as parameter, and
8857         will return the most suitable vtable for the target.
8858         Added mono_remote_class_vtable, which returns the vtable of a remote class
8859         (which can be the normal remoting vtable or the xdomain vtable).
8860         
8861         * threads.c: the xdomain invoke and dispatch wrappers must also be
8862         protected against interruptions.
8863
8864 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8865
8866         * icall.c: use memmove in BlockCopyInternal when the source and
8867         destination arrays are the same.
8868
8869 2004-11-09  Martin Baulig  <martin@ximian.com>
8870
8871         * class-internals.h (MonoGenericContainer): Removed `method' and
8872         `signature', replaced them with `is_method' and `is_signature'
8873         flags.  Added `context'.
8874
8875         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
8876         instead of a `MonoGenericContainer *'.
8877
8878         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
8879         for dynamic type parameters.
8880         (mono_metadata_load_generic_params): Setup `container->context'.
8881
8882         * reflection.c (mono_reflection_setup_generic_class): Setup
8883         `tb->generic_container->context'.
8884         (do_mono_reflection_bind_generic_parameters): Use
8885         mono_class_inflate_generic_type() to correctly inflate types,
8886         rather than using our own hack just for MONO_TYPE_VAR.
8887
8888 2004-11-09  Martin Baulig  <martin@ximian.com>
8889
8890         * class.c (mono_class_inflate_generic_method): Small fix; don't
8891         crash here.
8892
8893         * icall.c
8894         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
8895         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
8896         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
8897         (ves_icall_Type_BindGenericParameters): Likewise.
8898         (ves_icall_Type_get_IsGenericInstance): Likewise.
8899         (ves_icall_Type_GetGenericParameterPosition): Likewise.
8900         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
8901         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
8902         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8903
8904 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
8905
8906         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
8907         assembly versions and public key tokens. Fixes #69113.
8908
8909 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
8910
8911         * metadata.c: fix bug introduced with the type cache changes
8912         on 2004-11-06.
8913
8914 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
8915
8916         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
8917         the MonoClass pointer instead of the token in exception clauses.
8918         * reflection.c: updates for the above and make the code not depend
8919         on the structure of MonoExceptionClause.
8920
8921 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
8922
8923         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
8924         Add support for dynamic assemblies. Fixes #69114.
8925
8926         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
8927
8928 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
8929
8930         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
8931         since most only those methods use it. the code member of
8932         MonoMethodPInvoke was dead, so that can be removed too. Also,
8933         remove inline_count (again, not used), and move slot so that it
8934         can share bits with some other flags. This saves 8 bytes in the
8935         structure and gives us about 50 kb back for mcs helloworld.cs
8936
8937         * *.[ch]: Do naming changes for the above.
8938
8939         * loader.c (mono_method_get_header): Lazily init the header
8940         on first access.
8941         (mono_get_method_from_token): don't init the header here
8942         (mono_free_method): the header may never be allocated
8943
8944         Overall, this saves 150 kb of unmanaged allocations
8945         for mcs helloworld.cs. That accounts for 10% of the unmanaged
8946         memory at runtime.
8947         
8948         * loader.c, loader.h (mono_method_get_header): new accessor.
8949
8950         * *.[ch]: use the above method. Prepares us to lazily load
8951         the header.
8952
8953         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
8954         three warnings, which are actual bugs (see 69206).
8955
8956         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
8957         unused. Saves a cool 4 bytes / method.
8958
8959 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
8960
8961         * metadata.c (builtin_types): Add types for System.Object here.
8962         (mono_metadata_parse_type_full): Cache MonoType*'s that are
8963         for a class or valuetype from klass->this_arg or klass->byval_arg.
8964
8965         On mcs for a hello world, this gets us down from 21836 MonoType's
8966         to 14560.
8967
8968         (mono_metadata_free_type): Account for the above change.
8969
8970 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
8971
8972         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
8973         exception instead of asserting if name is null.
8974         (ves_icall_System_AppDomain_GetData): Ditto.
8975
8976 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
8977
8978         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
8979         EnumBuilder.
8980
8981         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
8982         Return NULL when the domain does not have entry_assembly set.
8983
8984         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
8985         Add a 'resource_modules' argument.
8986         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
8987
8988         * reflection.c (mono_reflection_create_runtime_class): Move setting
8989         of wastypebuilder here, so mono_get_type_object () returns a MonoType
8990         for enums too.
8991
8992         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
8993         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
8994         Throw an ArgumentNullException if 'ptr' is null.
8995
8996         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
8997         assemblies here. Fixes #69020.
8998
8999 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9000
9001         * reflection.c (build_compressed_metadata): Fix the previous patch for
9002         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9003         the stack.
9004
9005 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9006
9007         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9008         the cultures is false. Fixes #69090.
9009
9010         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9011         detected by valgrind.
9012         
9013         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9014         TypeResolve multiple times for the same type. Fixes #65577.
9015
9016 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9017
9018         * marshal.c: Avoid using ldftn to call managed functions. It is
9019         much slower than just a call.
9020
9021         * reflection.c (mono_module_get_object): free the basename we
9022         allocate here from glib.
9023         
9024         * reflection.c (ensure_runtime_vtable): make sure to free
9025         overrides.  Also, we were allocating an array of MonoMethod not an
9026         array of MonoMethod*.
9027
9028         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9029
9030         * image.c (mono_image_close): free image->guid here.
9031
9032 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9033
9034         * reflection.c: Fix some spec conformance issues with the PE file
9035         structures so mcs compiled apps run on the Net 2.0 beta.
9036
9037 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9038
9039         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9040         Implement this. Fixes #67264.
9041
9042         * debug-helpers.h debug-helpers.c marshal.c: Move 
9043         mono_find_method_by_name to debug-helpers.c.
9044
9045 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9046
9047         * object.c (mono_release_type_locks): type_initialization_hash is
9048         a GHashTable.
9049
9050         * reflection.c object.c object-internals.h: Fix warnings.
9051
9052         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9053         without accessors. Fixes #61561.
9054
9055         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9056         application base from the root domain if not set. Fixes #65641.
9057         (mono_runtime_init): Fix warning.
9058
9059 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9060
9061         * appdomain.c: call mono_thread_pool_init.
9062         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9063         of worker threads based on the number of CPUs and the environment
9064         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9065         for non-windows (windows) systems.
9066
9067 2004-10-27  Chris Toshok  <toshok@ximian.com>
9068
9069         * mono-debug-debugger.c (write_class): don't call mono_class_init
9070         here, as even with the check for (!klass->init_pending), we get
9071         into a situation where we're hitting cycles in class
9072         initialization.  Fixes #68816.
9073
9074 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9075
9076         * image.c: Avoid overwriting values in the loaded_images_hash when an
9077         assembly is loaded multiple times. Fixes #61152.
9078
9079         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9080         so multiple satellite assemblies for the same name can be loaded.
9081         Fixes #68259.
9082
9083         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9084         not NULL.
9085
9086         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9087         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9088
9089         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9090         pending finalizers are not invoked after the appdomain has been 
9091         unloaded. Fixes #67862.
9092
9093 2004-10-22  Martin Baulig  <martin@ximian.com>
9094
9095         * mono-debug-debugger.c
9096         (mono_debugger_runtime_invoke): Don't box valuetypes.
9097
9098 2004-10-22  Chris Toshok  <toshok@ximian.com>
9099
9100         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9101         don't hide private methods.
9102
9103 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9104
9105         * icall.c: Allows the runtime to "share" (when known) the public key
9106         token of an assembly. This avoid the need to recalculate the token 
9107         (from the public key) in managed code.
9108
9109 2004-10-21  Chris Toshok  <toshok@ximian.com>
9110
9111         * debug-helpers.c (append_class_name): argh, revert last patch.
9112         
9113 2004-10-21  Chris Toshok  <toshok@ximian.com>
9114
9115         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9116         not '/', so that it matches what the debugger uses to look up
9117         methods.
9118
9119 2004-10-21  Martin Baulig  <martin@ximian.com>
9120
9121         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9122         public method; this is called each time an exception is thrown and
9123         allows the debugger to use exception catch points.
9124
9125 2004-10-21  Martin Baulig  <martin@ximian.com>
9126
9127         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9128         the stack pointer and the exception object in some struct and pass
9129         that to the debugger.
9130
9131 2004-10-21  Chris Toshok  <toshok@ximian.com>
9132
9133         * mono-debug-debugger.c (do_write_class): add instance/static
9134         event support.  We don't expose "raise" or "other" yet.
9135         (event_is_static): new method.
9136
9137 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9138
9139         * mono-debug-debugger.c
9140         (mono_debugger_handle_exception): Remove
9141         bogus return value for fussy compilers.
9142
9143 2004-10-20  Martin Baulig  <martin@ximian.com>
9144
9145         * mono-debug-debugger.c
9146         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9147         (mono_debugger_handled_exception): Likewise.
9148
9149 2004-10-20  Martin Baulig  <martin@ximian.com>
9150
9151         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9152         MONO_DEBUGGER_EVENT_EXCEPTION.
9153
9154         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9155         public function to send the debugger a notification for an
9156         exception and inform it about a catch/finally clause.
9157
9158 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9159
9160         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9161         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9162         fix 2.95 build. 
9163
9164         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9165
9166 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9167
9168         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9169         marshalled as [In,Out]. Fixes #58325.
9170
9171 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9172
9173         * reflection.c (mono_method_body_get_object): Implement some fields.
9174
9175 2004-10-12  Martin Baulig  <martin@ximian.com>
9176
9177         * reflection.c (mono_reflection_bind_generic_parameters): Small
9178         fix, correctly retrieve our parent from a generic instance.
9179
9180 2004-10-12  Martin Baulig  <martin@ximian.com>
9181
9182         * metadata.c (mono_metadata_generic_param_equal): We always have
9183         an owner.
9184
9185         * class.c
9186         (mono_class_from_generic_parameter): We need to have an owner.
9187         (my_mono_class_from_generic_parameter): Likewise.
9188
9189         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9190         mono_reflection_create_generic_class() and added a new
9191         mono_reflection_setup_generic_class().  
9192         (mono_reflection_initialize_generic_param): If we're a nested
9193         generic type and inherited from the containing class, set our
9194         owner to the outer class.
9195
9196 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9197
9198         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9199
9200         * reflection.c (mono_method_body_get_object): New function to create
9201         a MethodBody object.
9202
9203         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9204
9205 2004-10-11  Martin Baulig  <martin@ximian.com>
9206
9207         * metadata.c (_mono_metadata_type_equal): Renamed to
9208         do_mono_metadata_type_equal() and made static.
9209
9210 2004-10-11  Martin Baulig  <martin@ximian.com>
9211
9212         * appdomain.c: Bump corlib version number to 28.
9213
9214 2004-10-10  Martin Baulig  <martin@ximian.com>
9215
9216         * class-internals.h
9217         (MonoGenericInst): Added `MonoGenericContainer *container'.
9218         (MonoGenericMethod): Likewise.
9219         (MonoGenericContext): Likewise.
9220         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9221
9222         * metadata.c
9223         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9224         (do_mono_metadata_parse_generic_inst): Likewise.
9225         (mono_metadata_parse_type_full): New public method.  This is the actual
9226         mono_metadata_parse_type() implementation - with an additional
9227         `MonoGenericContainer *' argument.
9228         (mono_metadata_parse_array_full): Likewise.
9229         (mono_metadata_parse_signature_full): Likewise.
9230         (mono_metadata_parse_method_signature_full): Likewise.
9231         (mono_metadata_parse_mh_full): Likewise.
9232         (mono_type_create_from_typespec): Likewise.
9233         (mono_metadata_interfaces_from_typedef_full): New public method;
9234         this is similar to the other _full() methods, but we take a
9235         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9236         (mono_metadata_parse_generic_param): Take an additional
9237         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9238         from that container.
9239         (mono_metadata_generic_param_equal): New static method to compare
9240         two type parameters.
9241         (_mono_metadata_type_equal): New static method; takes an
9242         additional `gboolean signature_only' argument - if true, we don't
9243         compare the owners of generic parameters.
9244         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9245         with a TRUE argument - do a signature-only comparision.
9246
9247         * loader.c: Use the new _full() methods and pass the
9248         MonoGenericContainer to them.
9249
9250         * object-internals.h (MonoReflectionTypeBuilder): Added
9251         `MonoGenericContainer *generic_container' field.
9252         (MonoReflectionMethodBuilder): Likewise.
9253
9254 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9255
9256         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9257         case initial images of dynamic assemblies.
9258
9259         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9260
9261         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9262
9263         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9264         length of event->other array.
9265         (typebuilder_setup_events): Ditto.
9266
9267         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9268         'assembly_by_name' and add an 'assemblies' list.
9269
9270         * assembly.h assembly.c: Add a new search hook for determining whenever
9271         an assembly is already loaded. Use this instead of searching in the
9272         loaded_assemblies list.
9273
9274         * domain.c appdomain.c: Implement the new search hook so loaded 
9275         assemblies are now scoped by appdomain. Fixes #67727.
9276
9277 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9278
9279         * threads.c (mono_thread_attach): Initialize synch_lock field so
9280         mono_thread_detach works again.
9281
9282         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9283         'lib' too. Fixes #63130.
9284
9285 2004-10-06  Jackson Harper  <jackson@ximian.com>
9286
9287         * culture-info-tables.h: regenerated.
9288
9289 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9290
9291         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9292         implemented by other interfaces in the result. Fixes #65764.
9293         
9294         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9295         Handle unloadable modules without crashing.
9296
9297         * image.c (load_modules): Revert the previous patch since modules must
9298         have a fixed index inside the array.
9299         
9300         * image.c (load_modules): Don't include native modules in the modules
9301         array.
9302
9303 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9304
9305         * reflection.h: Add param_defaults field.
9306
9307         * reflection.c: Add support for parameter defaults in dynamic methods.
9308         Fixes #64595.
9309
9310         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9311         an empty string when a type has no namespace. Fixes #64230.
9312
9313 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9314
9315         * tabledefs.h: Added "internal" security actions to support non-CAS
9316         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9317         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9318
9319 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9320
9321         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9322         constructor of abstract class. Fixes #61689.
9323
9324 2004-10-04  Martin Baulig  <martin@ximian.com>
9325
9326         * class-internals.h (MonoGenericContainer): New type.
9327         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9328         `MonoGenericContainer *generic_container'.
9329         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9330         `MonoGenericContainer *generic_container'.
9331
9332         * metadata.c (mono_metadata_load_generic_params): Return a
9333         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9334         removed the `num' argument.
9335
9336 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9337
9338         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9339         for dynamic images.
9340
9341         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9342         machine fields.
9343
9344         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9345
9346         * reflection.c: Save pe_kind and machine values into the generated
9347         image file.
9348
9349         * appdomain.c: Bump corlib version number.
9350
9351         * object-internals.h: Reorganize layout of LocalBuilder.
9352
9353         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9354         New helper function.
9355
9356         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9357         created MonoType for dynamic types. Fixes #66180.
9358
9359 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9360
9361         * threadpool.c: the ares hashtable needs a critical section around it.
9362         this prevents some nasty segfaults
9363
9364 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9365
9366         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9367         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9368         bug 67324).
9369         
9370 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9371
9372         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9373         
9374 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9375
9376         * image.c: Always canonicalize image file names, to avoid loading
9377         the same assembly twice when referenced using a relative path.
9378
9379 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9380
9381         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9382
9383         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9384
9385         * marshal.c: Fix warnings.
9386
9387 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
9388
9389         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
9390         attempting to marshal the delegate_trampoline as the method_addr.
9391         This patch has a static hashtable of marshalled delegates so that 
9392         we can map delegate_trampoline addresses back to delegates.  This
9393         allows a delegate passed to managed code to be passed back into native
9394         code.  Fixes #67039
9395
9396 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9397
9398         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
9399
9400         * reflection.c (method_encode_code): Align method headers properly.
9401         Fixes #66025.
9402
9403 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9404
9405         * marshal.c: In the runtime invoke wrapper, reset the abort
9406         exception if it is cached. This avoids the automatic rethrowal of 
9407         the exception after the catch of the wrapper. Also check for pending
9408         interruptions before calling the managed method. This is done using
9409         the new method emit_thread_force_interrupt_checkpoint, since the
9410         normal checkpoint method is ignored when running the invoke wrapper.
9411         * object.c: If the abort exception is rethrown, set the abort_exc
9412         field of the thread, so it will be rethrown aftere every catch.
9413         * threadpool.c: Only run an interruption checkpoint if what has been
9414         requested is a stop of the thread (aborts will be ignored).
9415         * threads.c: By default, a thread will now never be interrumped while
9416         running the runtime invoke wrapper (this ensures that runtime_invoke
9417         will always return to the caller if an exception pointer is provided).
9418         There is a new special method mono_thread_force_interruption_checkpoint()
9419         to force an interruption checkpoint even if running a protected
9420         wrapper, which is used by the same runtime invoke wrapper to do a check
9421         at a safe point.
9422
9423 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9424
9425         * object.c, object-internals.h: Implemented mono_release_type_locks,
9426         which releases the cctor locks held by a thread.
9427         * threads.c, threads.h: In thread_cleanup, release cctor locks held
9428         by a thread. Added mono_thread_exit() method to be used to safely stop
9429         a thread.
9430
9431 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9432
9433         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9434         Move null check before dereference.  Avoid indexing beyond the end
9435         of the 'modules' array.
9436
9437 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9438
9439         * metadata-internals.h (MonoImage): Add module_count field.
9440         * image.c (load_modules): Set image->module_count.
9441         (mono_image_load_file_for_image): Use image->module_count.
9442         * reflection.c (mono_image_load_module): Append to image->modules array 
9443         of dynamic assembly.
9444         (mono_module_get_object): Fix loop to actually increment index.
9445         Use image->module_count.
9446         * assembly.c (mono_assembly_load_references): Use image->module_count.
9447         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
9448         Likewise.
9449
9450 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9451
9452         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
9453         Avoid assert on generic types.
9454
9455 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
9456
9457         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
9458
9459         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
9460
9461         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
9462         function to convert a MarshalSpec structure to its managed counterpart.
9463
9464         * reflection.c: Fix warnings.
9465         
9466         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
9467         field.
9468
9469         * icall.c (mono_create_icall_signature): Fix build.
9470
9471 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
9472
9473         * icall.c: Add MakePointType icall.
9474
9475         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
9476         warnings.
9477
9478 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9479
9480         * threadpool.c: reuse allocated slots in the queue.
9481
9482 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
9483
9484         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
9485
9486         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
9487
9488         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
9489         previous change.
9490
9491         * tabledefs.h: Add constants for pinvoke attributes BestFit and
9492         ThrowOnUnmappableChar.
9493
9494         * icall.c (ves_icall_Type_GetPacking): New icall.
9495
9496 2004-09-24  Martin Baulig  <martin@ximian.com>
9497
9498         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
9499
9500 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9501
9502         * appdomain.c:
9503         (mono_domain_set): allow setting a domain that is being unloaded.
9504         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
9505         being unloaded.
9506
9507 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9508
9509         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
9510         the GetCustomAttributes icall.
9511
9512 2004-09-23  Martin Baulig  <martin@ximian.com>
9513
9514         * object-internals.h (MonoReflectionGenericParam): Replaced
9515         'has_ctor_constraint', `has_reference_type' and `has_value_type'
9516         with `guint32 attrs'.
9517
9518 2004-09-23  Martin Baulig  <martin@ximian.com>
9519
9520         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
9521
9522 2004-09-23  Martin Baulig  <martin@ximian.com>
9523
9524         * object-internals.h (GenericParameterAttributes): New enum.
9525
9526 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9527
9528         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9529         
9530         * class.c (init_events): Fill out event->other field.
9531
9532         * class.c: Fix warnings.
9533
9534         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9535
9536 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9537
9538         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9539         walk which doesn't supply the IL offset.
9540
9541 2004-09-22  Martin Baulig  <martin@ximian.com>
9542
9543         * reflection.c (mono_reflection_setup_internal_class): If we're
9544         System.ValueType, System.Object or System.Enum, set
9545         `klass->instance_size' and create the vtable.
9546         (mono_reflection_create_internal_class): If we're an enum type,
9547         get the base class from our current corlib.
9548
9549 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9550
9551         * reflection.h (MonoResolveTokenError): New type.
9552
9553         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9554         icall.
9555
9556         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9557
9558 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9559
9560         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9561         Support also calling constructors, but only for already allocated objects.
9562
9563 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9564
9565         * reflection.c (type_get_qualified_name): If the klass is null
9566         return the typename to avoid a NullRefEx.
9567         (encode_cattr_value): Get the qualified name of the boxed type,
9568         not the underlying enumtype.  Fixes #62984.
9569
9570 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9571
9572         * marshal.c: Fix problems with previous checkin.
9573
9574 2004-09-21    <vargaz@freemail.hu>
9575
9576         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9577         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9578
9579         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9580
9581 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9582
9583         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9584         should only return a type for pointers, arrays, and passbyref types.
9585         Fixes bug #63841.
9586
9587 2004-09-21  Martin Baulig  <martin@ximian.com>
9588
9589         * domain.c (mono_debugger_check_runtime_version): New public
9590         function.
9591
9592         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9593
9594 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9595
9596         * reflection.c: Added missing sort to the declarative security 
9597         attributes table. MS implementation stops seeing the attributes if the
9598         token number regress in the table (as shown by ildasm and permview).
9599
9600 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9601
9602         * object-internals.h (MonoReflectionModule): Add 'token' field.
9603         
9604         * reflection.c (mono_reflection_get_token): Add support for Module
9605         and Assembly.
9606         (mono_module_get_object): Set 'token' field.
9607         (mono_module_file_get_object): Set 'token' field.
9608
9609         * icall.c: Add new Assembly and Module icalls.
9610
9611         * appdomain.c: Bump corlib version.
9612
9613 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9614
9615         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9616         tokens of metadata objects.
9617
9618         * reflection.h reflection.c (mono_reflection_get_token): New function
9619         to obtain the token of a metadata object.
9620
9621         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9622
9623 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9624
9625         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9626         
9627         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9628
9629 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9630
9631         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9632         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9633         AssemblyBuilder to access the permissions set in the class lib.
9634         * reflection.c: Added security attributes encoding step in 
9635         mono_image_build_metadata.
9636         * tabledefs.h: Added new security actions defined in 2.0:
9637         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9638
9639 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9640
9641         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9642         macro parameter.
9643
9644 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9645  
9646         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9647           finalized. There where random SIGSEVs at program termination, when
9648           an object being finalized was trying to do a string comparison and
9649           the current culture was already finalized.
9650  
9651 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9652
9653         * threads.c: call thread_cleanup before finishing the thread if we get
9654         there.
9655
9656 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9657
9658         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9659         assemblies from the parent. Fixes #65665.
9660
9661 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9662
9663         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9664         modifiers.
9665
9666 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9667
9668         * reflection.h: add prototype for mono_get_dbnull_object
9669         * reflection.c: add prototypes for get_default_param_value_blobs 
9670         and mono_get_object_from_blob for fussier compilers
9671
9672 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9673  
9674         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9675         false deadlock checks in class initialization.
9676  
9677 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9678
9679         * image.c (mono_image_addref): Fix comment.
9680
9681         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9682         possible.
9683
9684 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9685
9686         * reflection.c (mono_param_get_objects): Modified to return
9687         ParameterInfo.DefaultValue object.
9688
9689         (get_default_param_value_blobs):
9690         (mono_get_object_from_blob):
9691         (mono_get_dbnull_object): New helper routines. 
9692
9693         * object.c (mono_get_constant_value_from_blob): New helper routine
9694         carved out from get_default_field_value ()
9695
9696         * object-internals.h (mono_get_constant_value_from_blob): Added
9697         function declaration.
9698
9699 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9700
9701         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9702         referenced assemblies. Fixes #62135.
9703
9704         * exception.h exception.c (mono_get_exception_file_not_found2): New
9705         helper function.
9706
9707 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9708
9709         * class.h class.c: Add mono_type_get_underlying_type ().
9710
9711 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9712
9713         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9714         Fix GetTypes() to support dynamically created assemblies.
9715
9716 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9717
9718         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9719         
9720         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9721         previous patch.
9722
9723         * reflection.h reflection.c loader.c: Allow dynamic construction of
9724         pinvoke methods. Fixes #65571.
9725         
9726         * reflection.c (mono_reflection_get_type): Revert previous change since
9727         it causes regressions.
9728
9729 2004-09-08  Martin Baulig  <martin@ximian.com>
9730
9731         * class.c (class_compute_field_layout): Don't call
9732         mono_class_layout_fields() for open generic instances.
9733
9734 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9735         * threads.c appdomain.c: fix typo in GC macro
9736
9737 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9738
9739         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9740         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9741
9742 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9743
9744         * image.c (mono_image_close): Applied patch from 
9745         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9746         assembly is loaded multiple times from data.
9747         
9748         * image.c (mono_image_open): Fix warning.
9749
9750 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9751
9752         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9753         once. Fixes #58334.
9754         
9755         * reflection.c (mono_reflection_create_runtime_class): Initialize
9756         klass->nested_classes. Fixes #61224.
9757
9758 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9759
9760         * threads.c: sched_yield() on exit, to allow threads to quit.
9761
9762 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9763
9764         * object.c (mono_unhandled_exception): Remove leftover debug code.
9765
9766 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9767
9768         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9769
9770 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9771
9772         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9773         
9774         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9775
9776 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9777
9778         * marshal.c (emit_marshal_array): Null terminate string arrays.
9779         
9780         * marshal.c (raise_auto_layout_exception): Fix warning.
9781
9782         * reflection.c (mono_param_get_objects): Initialize the default value
9783         with DBNull.Value, not null. Fixes #62123.
9784
9785 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9786
9787         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9788         throw an exception with a cute explanation.
9789
9790 2004-09-06  Dick Porter  <dick@ximian.com>
9791
9792         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9793         Close the new process's thread handle, as we don't use it.  The
9794         handle stays around forever otherwise.
9795
9796 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9797
9798         * object.c (arith_overflow): Fix warning.
9799
9800         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9801         calling conventions in method refs. Fixes #65352.
9802
9803         * reflection.c: Fix warnings.
9804
9805 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9806
9807         * icall.c: Add a new icall for Array.Clear
9808
9809 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9810
9811         * object.c: When allocating an array, we have to throw
9812         an overflow exception if any of the lengths are < 0.
9813
9814 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9815
9816         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9817         properly. Also move implementation of string array marshalling to 
9818         managed code. Fixes #42316.
9819
9820 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9821
9822         * assembly.c: provide more information when loading an assembly fails.
9823
9824 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9825
9826         * filewatcher.c: don't expect the development fam package to be
9827         installed.
9828
9829 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
9830
9831         * marshal.c: Make a copy of the signature cookie since it will be
9832         freed by the caller.
9833         
9834         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
9835
9836         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
9837
9838         * metadata.c (mono_metadata_free_marshal_spec): New function to free
9839         marshal specs.
9840
9841         * marshal.c: More refactoring.
9842         
9843         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
9844         smaller functions.
9845
9846 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
9847
9848         * object.c: In mono_message_invoke, fill the output parameter array after
9849           calling the managed method (it was done before the call). This fixes
9850           bug #59299.
9851
9852 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9853
9854         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
9855         as well.
9856
9857 2004-09-02  Martin Baulig  <martin@ximian.com>
9858
9859         * class.c (mono_class_instance_size): Don't allow generic type
9860         definitions or open generic instances.
9861         (mono_class_array_element_size): If we're a value type, call
9862         mono_class_instance_size() on the original class.
9863
9864         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
9865         handle generic instances.
9866
9867         * mono-debug-debugger.c (write_type): Handle generic instances
9868         like classes.
9869
9870 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
9871
9872         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
9873         the allocation request fails. Fixes #65089.
9874
9875         * object.c (mono_runtime_free_method): Do not call mono_free_method.
9876         
9877         * object.c (mono_runtime_free_method): New function to free a dynamic
9878         method.
9879
9880         * marshal.c (mono_delegate_free_ftnptr): New function to free the
9881         delegate trampoline.
9882
9883         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
9884         with hasthis as dynamic,
9885
9886         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
9887
9888         * domain.c (mono_jit_info_table_remove): New function to remove an
9889         entry from the jit info table.
9890
9891         * class-internals.h (MonoMethod): Add 'dynamic' field.
9892
9893         * loader.c: Fix warnings.
9894
9895 2004-09-01  Martin Baulig  <martin@ximian.com>
9896
9897         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
9898         instead of mono_debugger_lock() because the latter one is a no-op
9899         unless running in the debugger.
9900
9901 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9902
9903         * class.c (class_compute_field_layout): Classes with auto-layout or
9904         reference fields are not blittable.
9905         
9906 2004-09-01  Dick Porter  <dick@ximian.com>
9907
9908         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
9909         mono_image_get_filename() to get the assembly location.
9910
9911         * icall.c:
9912         * metadata.h: Fix compile warnings
9913
9914 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
9915
9916         * class.c (class_compute_field_layout): System.Object is blittable.
9917
9918         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
9919         as in/out. Fixes #59909.
9920
9921 2004-09-01  Martin Baulig  <martin@ximian.com>
9922
9923         * metadata.h (MONO_TYPE_ISREFERENCE): Call
9924         mono_metadata_generic_inst_is_valuetype() if we're a generic
9925         instance to check whether our underlying type is a reference type.
9926
9927 2004-09-01  Martin Baulig  <martin@ximian.com>
9928
9929         * metadata.c (mono_type_size): If we're a generic instance, call
9930         mono_class_value_size() for value types.
9931
9932 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
9933
9934         * marshal.c: Implement more custom marshalling functionality. Fixes
9935         #64915.
9936
9937 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9938
9939         * mono-debug.c, debug-mono-symfile.c: add some locking love.
9940
9941 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
9942
9943         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
9944
9945         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
9946
9947         * icall.c: Fix some warnings.
9948
9949         * threads.c (abort_appdomain_thread): Fix unref errors.
9950         (mono_thread_current): Fix THREAD_DEBUG define.
9951
9952 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
9953
9954         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
9955
9956         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
9957
9958 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
9959
9960         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
9961         string arrays.
9962
9963 2004-08-28  Martin Baulig  <martin@ximian.com>
9964
9965         * metadata.c
9966         (mono_metadata_generic_inst_is_valuetype): New public function.
9967
9968         * metadata.h (MONO_TYPE_ISSTRUCT): Call
9969         mono_metadata_generic_inst_is_valuetype() if we're a generic
9970         instance to check whether our underlying type is a valuetype.
9971
9972 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
9973
9974         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
9975         #63768.
9976
9977 2004-08-25  Martin Baulig  <martin@ximian.com>
9978
9979         * loader.c (mono_get_method_from_token): Abstract methods can also
9980         be generic and thus have type parameters.
9981
9982         * metadata-internals.h
9983         (MonoDynamicImage): Added `GPtrArray *gen_params'.
9984
9985         * reflection.c (mono_image_get_generic_param_info): Don't create a
9986         metadata row, just add an entry to the `gen_params' array.
9987         (build_compressed_metadata): Sort the `gen_params' array and then
9988         actually create the metadata.
9989
9990 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9991
9992         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
9993
9994 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
9995
9996         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
9997
9998 2004-08-24  Martin Baulig  <martin@ximian.com>
9999
10000         * class.cs (mono_class_is_subclass_of): Like an interface, a
10001         generic instance also derives from System.Object.
10002
10003 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10004
10005         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10006         custom modifiers to be in any order. Fixes #61990.
10007
10008 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10009
10010         * object.c: Register mono_object_new_fast icall.
10011         
10012         * object.c (mono_class_get_allocation_ftn): Return to calling
10013         mono_object_new_fast, since it seems faster to compute the object 
10014         size in unmanaged code than passing it as a parameter.
10015
10016         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10017
10018         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10019         this function with Boehm as the oom handler, so we don't have to check
10020         the result of GC_malloc.
10021
10022         * object.c: Remove checks for oom.
10023
10024         * object.h object.c (mono_class_get_allocation_ftn): New function to
10025         return the icall which can be used to allocate an instance of a given
10026         class. 
10027
10028         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10029
10030         * class-internals.h: Add 'enabled' field.
10031
10032 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10033
10034         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10035
10036 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10037         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10038         value 0x0010.
10039
10040 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10041
10042         * appdomain.c: use the Tls function for appdomain too,
10043         at Zoltan's request. Actually return in mono_context_get
10044
10045         * appdomain.c, profiler.c, threads.c: use __thread
10046
10047 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10048
10049         * appdomain.c threads.c: Call GC_CreateThread on windows.
10050
10051         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10052         multiple libraries since this don't work on windows.
10053
10054 2004-08-18  Martin Baulig  <martin@ximian.com>
10055
10056         * class-internals.h
10057         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10058         MonoMethodHeader.
10059
10060         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10061         MonoMethodNormal since we also need it for abstract and interface
10062         methods.
10063
10064         * reflection.c
10065         (build_compressed_metadata): Sort the GenericParam table.
10066         (mono_image_create_token): Added `gboolean create_methodspec'
10067         argument; this is false when generating a MethodImpl token.
10068         (reflection_methodbuilder_to_mono_method): Abstract and interface
10069         methods may also have generic parameters.
10070
10071 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10072
10073         * appdomain.c: thread local alloc
10074
10075 2004-08-17  Martin Baulig  <martin@ximian.com>
10076
10077         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10078
10079         * icall.c
10080         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10081         argument.
10082
10083         * class.c (mono_type_get_full_name): New public function.
10084         (mono_type_get_name): Don't include the type arguments.
10085
10086 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10087
10088         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10089         for inclusion into the mono executable.
10090
10091 2004-08-16  Martin Baulig  <martin@ximian.com>
10092
10093         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10094         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10095
10096 2004-08-14  Martin Baulig  <martin@ximian.com>
10097
10098         * class.c (dup_type): Also copy the `byref' field.
10099
10100 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10101
10102         * reflection.c (create_dynamic_mono_image): Revert the last change 
10103         since it breaks bootstrap.
10104
10105 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10106
10107         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10108
10109         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10110         not free them with g_free.
10111
10112 2004-08-11  Martin Baulig  <martin@ximian.com>
10113
10114         * reflection.c (mono_reflection_setup_internal_class): Also call
10115         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10116
10117 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10118
10119         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10120         called during default (first) AppDomain creation. Keep track of
10121         Evidence when loading assemblies.
10122
10123 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10124
10125         * opcodes.c, opcodes.h: reduce runtime relocations.
10126
10127 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10128
10129         * culture-info.h, locales.c: fixes and chages to sue the new
10130         optimized format of the locale data.
10131         * culture-info-tables.h: regenerated.
10132
10133 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10134         
10135         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10136
10137 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10138
10139         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10140         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10141         * domain-internals.h: icall declaration.
10142         * icall.c: icall registration.
10143         * object-internals.h: New fields in MonoAssembly for CAS.
10144
10145 2004-08-05  Duncan Mak  <duncan@ximian.com>
10146
10147         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10148         CEE_LDELEM_ANY.
10149
10150 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10151
10152         * reflection.c: fix to deal with object[] arrays in custom ctors
10153         (bug #62550).
10154
10155 2004-08-05  Martin Baulig  <martin@ximian.com>
10156
10157         * class.c (mono_class_array_element_size): Added support for
10158         generic instances and correctly handle "recursive" types.
10159
10160 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10161
10162         * assembly.c: Fix warnings.
10163
10164 2004-08-04  Martin Baulig  <martin@ximian.com>
10165
10166         * class.c
10167         (mono_type_get_name_recurse): Added `gboolean include_arity'
10168         argument specifying whether or not we should include the generic
10169         arity in the type name.
10170         (_mono_type_get_name): New static function.
10171         (mono_class_setup_vtable): If we're a generic instance, don't
10172         include the generic arity in the names of explicit method
10173         implementations.        
10174
10175 2004-08-03  Martin Baulig  <martin@ximian.com>
10176
10177         * class.c (mono_type_get_name_recurse): Enclose the generic type
10178         arguments in `<', '>'.
10179
10180 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10181
10182         * gc.c: make GC warning messages use the trace API, they are just
10183         noise to most of the users.
10184
10185 2004-08-03  Martin Baulig  <martin@ximian.com>
10186
10187         * debug-mono-symfile.c (read_string): Correctly read the string.
10188
10189 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10190
10191         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10192         
10193         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10194         icalls.
10195         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10196
10197 2004-07-30  Martin Baulig  <martin@ximian.com>
10198
10199         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10200         Reflect latest symbol writer changes.   
10201
10202 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10203
10204         * object.c: always create an object if null is passed
10205         to Invoke() where a valuetype is expected.
10206
10207 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10208
10209         * marshal.c (mono_marshal_init): make managed
10210         signatures match native ones better for 64bits.
10211
10212 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10213
10214         * appdomain.c: hack to build correctly the private bin path on windows.
10215         Fixes bug #61991.
10216
10217 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10218
10219         * assembly.c: Load mscorlib from the correct framework directory
10220           (mono/<version>/mscorlib.dll).
10221         * appdomain.h: Added prototypes for new functions.
10222         * internals.h: Added some prototypes.
10223         * domain.c: When initializing the runtime, get from the executable and
10224           the configuration files the runtime version that the app supports.
10225           Added support methods for reading app.exe.config. Added list of versions
10226           supported by the JIT. Added two new methods: mono_init_from_assembly,
10227           which initializes the runtime and determines the required version from
10228           the provided exe file, and mono_init_version, which initializes
10229           the runtime using the provided version.
10230         * icall.c: Get machine.config from version-specific directory.
10231         * reflection.c: When generating an image, embed the version number
10232           of the current runtime.
10233
10234 2004-07-28  Dick Porter  <dick@ximian.com>
10235
10236         * socket-io.c
10237         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10238         returned sockaddr size before creating the remote address object.
10239         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10240         61608.
10241
10242 2004-07-28  Dick Porter  <dick@ximian.com>
10243
10244         * locales.c (string_invariant_compare_char): Fix invariant char
10245         compares between upper and lower cases.  Fixes bug 61458.
10246
10247 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10248         
10249         * marshal.c: actually cache stelem.ref wrappers.
10250         
10251 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10252
10253         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10254         sections and remove the mono_cli_rva_map () function.
10255
10256 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10257
10258         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10259         by Geoff Norton (<gnorton@customerdna.com>).
10260
10261 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10262
10263         * class.c: fix class loads for pointer types (typeof(int) !=
10264         typeof(int*)).
10265
10266 2004-07-27  Martin Baulig  <martin@ximian.com>
10267
10268         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10269         reading the debugging information from an external ".mdb" file.
10270
10271 2004-07-24  Martin Baulig  <martin@ximian.com>
10272
10273         * reflection.c (mono_image_get_type_info): Only write a class
10274         layout entry if we actually have a size or a packing size.
10275
10276 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10277
10278         * reflection.c (type_get_fully_qualified_name): 
10279         insert cast to get type checking of ?: with non-gcc compilers
10280
10281 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10282
10283         * rand.c: use g_getenv for both lookups of
10284         MONO_EGD_SOCKET
10285
10286 2004-07-17  Martin Baulig  <martin@ximian.com>
10287
10288         * reflection.c (mono_reflection_bind_generic_method_parameters):
10289         Set `gmethod->reflection_info'.
10290
10291 2004-07-17  Martin Baulig  <martin@ximian.com>
10292
10293         * class.c (mono_class_create_from_typedef): Insert the newly
10294         created class into the hash table before computing the interfaces
10295         since we could be called recursively.
10296
10297 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10298
10299         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10300         function to implement stelem.ref in managed code
10301         * class-internals.h, debug-helpers.c: a new wrapper type
10302         for the above.
10303
10304 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10305
10306         * gc.c: allow GC handles to work even when no GC is compiled in.
10307         Fix part of bug #61134 (GetAddrOfPinnedObject).
10308
10309 2004-07-13  Peter Williams  <peter@newton.cx>
10310  
10311         * process.c (complete_path): Make sure we don't attempt to execute
10312         directories.
10313  
10314 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10315
10316         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10317           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10318           and will add/subtract the hour if needed
10319
10320 2004-07-12  Martin Baulig  <martin@ximian.com>
10321
10322         * reflection.c (mono_field_get_object): If we have
10323         `field->generic_info', take the attributes from
10324         `field->generic_info->generic_type'.    
10325
10326 2004-07-12  Martin Baulig  <martin@ximian.com>
10327
10328         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10329         This function must be called before initializing the runtime.
10330         (mono_debug_init_1): New function; call this after initializing
10331         the runtime, but before loading the assembly.  It tells the
10332         debugger to load corlib and the builtin types.
10333
10334         * mono-debug-debugger.c: Did some larger changes in the debugging
10335         code; support recursive class declarations, make sure we actually
10336         add all classes.
10337
10338 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10339
10340         * debug-helpers.c: undo my previous patch and fixed the real issue in
10341         ../mini/exceptions-x86.c
10342
10343 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10344
10345         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10346         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10347         called from other .cctors.
10348
10349 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10350
10351         * loader.c: Removed the mono_loader_wine_init hack now that we are
10352         doing a managed version of Windows.Forms.
10353
10354 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10355
10356         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10357         threadpool.c, threads.c: remove static data from rootset.
10358
10359 2004-07-09  Dick Porter  <dick@ximian.com>
10360
10361         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10362         Don't do any more processing if the matched length was 0.  It was
10363         increasing the size of the string before.  Fixes bug 61167.
10364
10365 2004-07-09  Dick Porter  <dick@ximian.com>
10366
10367         * socket-io.h:
10368         * socket-io.c
10369         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10370         Add support for SO_PEERCRED if its available.
10371
10372 2004-07-09  Peter Bartok <pbartok@novell.com>
10373         * loader.c: winelib.exe.so error message is now only displayed if
10374         MONO_DEBUG is set. To help us avoid questions when people are trying
10375         out the new Managed.Windows.Forms.
10376
10377 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10378
10379         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10380         for isinst and castclass wrappers.
10381
10382         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10383         to libmetadata from the JIT, so they could be used by the marshalling
10384         code and the interpreter.
10385
10386         * marshal.c: Register marshalling related JIT icalls here instead of
10387         in mini.c. Use CEE_MONO_ICALL instead of the family of 
10388         CEE_MONO_PROC<x> opcodes to call marshalling functions.
10389
10390         * metadata.h: Remove unneeded marshalling conversions.
10391
10392         * opcodes.c: Update for new opcodes.
10393         
10394 2004-07-08  Martin Baulig  <martin@ximian.com>
10395
10396         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
10397         (mono_debug_get_domain_data): Make this function static.
10398
10399 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10400
10401         * gc.c, object.h: add nice GC handle API for embedders.
10402
10403 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
10404
10405         * reflection.c: more changes for the new api
10406
10407         * object.c: When we reflect on a field w/ a constant value, it
10408         will not have a memory location, so we must access metadata. Also,
10409         allow easier reading of strings so that we can read them from
10410         the constant data.
10411
10412         * class.c (mono_class_layout_fields): no need for literal fields here.
10413
10414         * class-internals.h: api changes for const fields
10415
10416         * icall.c (ves_icall_get_enum_info): use new apis for const fields
10417
10418 2004-07-06  Martin Baulig  <martin@ximian.com>
10419
10420         * mono-debug.h: Increment version number to 44.
10421
10422         * mono-debug.c (mono_debug_add_wrapper): The second argument is
10423         now a gpointer, rewrote this whole method.
10424
10425         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
10426         function.  Add information about the wrapper in a new "misc table".
10427
10428         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
10429         for the new misc table.
10430
10431 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
10432
10433         * metadata-internals.h image.c: Add a cache for helper signatures.
10434
10435         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
10436
10437 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
10438
10439         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
10440         delegates from a delegate. Fixes #61033.
10441         
10442         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
10443         marshalling of stringbuilder arrays. Fixes #59900.
10444
10445 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
10446
10447         * icall.c: Add EnumBuilder:setup_enum_type icall.
10448
10449 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
10450
10451         * icall.c: Added a new icall for the property version of
10452         OffsetOfStringData.
10453
10454 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
10455
10456         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
10457         it has a constant size across platforms.
10458
10459         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
10460         stack trace.
10461
10462 2004-06-29  Martin Baulig  <martin@ximian.com>
10463
10464         * mono-debug.c (mono_debug_add_method): Protect the whole function
10465         in mono_debugger_lock(), not just parts of it.
10466
10467 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10468
10469         * reflection.c: make sure padding bytes in heaps are zeroed.
10470
10471 2004-06-24  David Waite  <mass@akuma.org>
10472
10473         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
10474         image.c, loader.c, locales.c, marshal.c, metadata.c,
10475         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
10476         string-icalls.c, threads.c: change to C90-style comments from C99 /
10477         C++ -style
10478
10479 2004-06-24  Dick Porter  <dick@ximian.com>
10480
10481         * threads.c
10482         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
10483         return createdNew.  Fixes bug 60412.
10484
10485         * threads-types.h: 
10486         * icall.c: Add createdNew parameter to CreateMutex icall
10487
10488 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10489
10490         * reflection.c, object-internals.h: save default value in params.
10491
10492 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10493
10494         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
10495         no need to build a new path combining that with the application base.
10496         Fixes bug #60442.
10497
10498 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
10499
10500         * reflection.c: fixed minor standard compliance issues.
10501
10502 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10503
10504         * reflection.c: fixed issue with encoding some custom attributes
10505         (arrays in properties and fields, bug #60411).
10506
10507 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10508
10509         * reflection.c: fix start address when copying the public key token.
10510
10511 2004-06-23  Martin Baulig  <martin@ximian.com>
10512
10513         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
10514         the `exc' object in a static object to put it into the GC's root set.
10515
10516 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
10517
10518         * reflection.c: make mono_reflection_setup_internal_class ()
10519         callable a second time to setup a new parent class.
10520
10521 2004-06-23  Dick Porter  <dick@ximian.com>
10522
10523         * threads.c: Check for WAIT_IO_COMPLETION return values.
10524
10525 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10526
10527         * appdomain.c: Removed the g_free on the public key token. Now copy 
10528         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10529         * assembly.c: Added public key token string value when loading 
10530         assemblies. Fix bug #60439.
10531         * icall.c: Added missing informations (like public key) in 
10532         GetReferencedAssemblies. Fix #60519.
10533         * image.h: Changed definition for public key token from const char*
10534         public_tok_value to guchar public_key_token [17];
10535         * reflection.c: Updated for changes to public key token.
10536
10537 2004-06-22  Lluis Sanchez Gual
10538
10539         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10540         for the field in base classes.
10541
10542 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10543
10544         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10545         mark headers as not supported, they are installed only for use by the
10546         debugger.
10547
10548 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10549
10550         * *.c, *.h: avoid namespace pollution in public headers.
10551
10552 2004-06-21  Martin Baulig  <martin@ximian.com>
10553
10554         * exception.c (mono_get_exception_security): It's in
10555         "System.Security", not in "System".
10556
10557         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10558         the exception classes.
10559
10560 2004-06-21  Martin Baulig  <martin@ximian.com>
10561
10562         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10563         Protect the exception object from being finalized.
10564
10565 2004-06-21  Martin Baulig  <martin@ximian.com>
10566
10567         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10568         public function.
10569
10570 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10571
10572         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10573         if it was not loaded before. Fix parts of #60439.
10574
10575 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10576
10577         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10578         code that was broken since Ben's change: wrappers are now
10579         dependent on the method signature only again.
10580
10581 2004-06-21  Martin Baulig  <martin@ximian.com>
10582
10583         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10584         added interface support.
10585
10586 2004-06-21  Martin Baulig  <martin@ximian.com>
10587
10588         * class.c (mono_vtable_get_static_field_data): New public method.
10589
10590 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10591
10592         * filewatcher.c : Windows build fix to be compliant with API changes.
10593
10594 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10595
10596         * class.h, class.c: more accessors.
10597         * metadata.h, metadata.c: prepare for hiding MonoType and
10598         MonoMethodSignature: people should use the accessors from now on
10599         outside of the tree.
10600
10601 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10602
10603         * *.c, *.h: more API cleanups.
10604
10605 2004-06-18  Jackson Harper  <jackson@ximian.com>
10606
10607         * assembly.c: Trace loading assemblies.
10608         * loader.c: Trace loading native libraries.
10609         * mono-config.c: Trace loading config files.
10610         
10611 2004-06-18  Dick Porter  <dick@ximian.com>
10612
10613         * locales.c: Tell ICU the lengths of strings, it can cope with
10614         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10615
10616 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10617
10618         * image.c: swapped name/filename;
10619
10620 2004-06-18  Martin Baulig  <martin@ximian.com>
10621
10622         * mono-debug-debugger.c (write_class): Write the parent class at
10623         the end of the header.
10624
10625 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10626
10627         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10628
10629 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10630
10631         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10632         (bundle_obj): New conditional define.
10633         (BUILT_SOURCES): Remove.
10634         ($(bundle_srcs)): Make parallel-make safe.
10635         (libmonoruntime_la_LIBADD): Make unconditional.
10636         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10637         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10638
10639 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10640
10641         * culture-info-tables.h: It was inconsistent with the latest
10642           supp info files.
10643
10644 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10645
10646         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10647         be loaded.
10648
10649         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10650         with gcc 2.95.
10651
10652 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10653
10654         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10655         cleaned up public header threads.h.
10656
10657 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10658
10659         * Makefile.am, *.c, *.h: more API cleanups.
10660
10661 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10662
10663         * Makefile.am: removed monosn from compilation.
10664         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10665         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10666         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10667         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10668         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10669         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10670
10671 2004-06-15  Jackson Harper  <jackson@ximian.com>
10672
10673         * assembly.c: Make locales lower case when searching the GAC for
10674         assemblies. gacutil will always make locales lowercase when
10675         installing so this effectively makes them case insensitive.
10676         
10677 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10678
10679         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10680         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10681           parameter which allows to choose whether the wait can be interrupted or 
10682           not. Also added the method mono_monitor_enter(), which locks the monitor
10683           using an infinite wait and without allowing interruption.
10684           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10685           interrupted.
10686         * object.h: Added new fields in MonoThread. suspend_event holds the event
10687           used to susped/resume the thread. synch_lock is the lock object to use for
10688           modifying the thread state.
10689         * threads.c: Use the new synch_lock object for locking, instead of "this",
10690           which can generate deadlocks.
10691           Moved thread state change in Thread.Sleep and Thread.Join from managed
10692           to unmanaged code. This avoids a deadlock when the thread was suspended
10693           just after acquiring the thread lock.
10694           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10695           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10696           which is not fully implemented in the io-layer.
10697         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10698
10699 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10700
10701         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10702         threads-types.h: more API cleanups.
10703
10704 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10705
10706         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10707         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10708         threadpool.c, threads.c: first pass at the exported API cleanup.
10709
10710 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10711
10712         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10713
10714 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10715
10716         * icall.c: added internalGetHome.
10717
10718 2004-06-14  Dick Porter  <dick@ximian.com>
10719
10720         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10721         possible to return successfully when '.' or '..' were the only
10722         entries in a directory, but were skipped.  The MonoIOStat was not
10723         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10724         Fixes bug 59574.
10725
10726 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10727
10728         * reflection.c: make binaries run on .Net 1.1 by default.
10729
10730 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10731
10732         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10733
10734 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10735
10736         * marshal.c: keep track of struct size with explicit layout
10737         (bug #59979).
10738
10739 2004-06-12  Martin Baulig  <martin@ximian.com>
10740
10741         * mono-debug-debugger.c: Comment out a debugging g_message().
10742
10743 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10744
10745         * reflection.c, reflection.h: do not free custom attrs that are cached.
10746         * icall.c: use braces to make code clearer.
10747
10748 2004-06-11  Martin Baulig  <martin@ximian.com>
10749
10750         * class.h (MonoInflatedField): New type.
10751         (MonoClassField): Replaced `MonoType *generic_type' with
10752         `MonoInflatedField *generic_info'.
10753
10754         * icall.c
10755         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10756
10757 2004-06-11  Martin Baulig  <martin@ximian.com>
10758
10759         * reflection.c (mono_image_create_method_token): Correctly encode
10760         varargs methods.
10761
10762 2004-06-11  Martin Baulig  <martin@ximian.com>
10763
10764         * metadata.c (mono_metadata_parse_method_signature): When parsing
10765         a MethodDef which has VarArgs, also set sentinelpos if we don't
10766         have any parameters.
10767
10768 2004-06-11  Martin Baulig  <martin@ximian.com>
10769
10770         * verify.c (mono_method_verify): In CEE_CALL, use
10771         mono_method_get_signature() to get the method's signature, unless
10772         we're a PInvoke method.
10773
10774 2004-06-10  Jackson Harper  <jackson@ximian.com>
10775
10776         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10777         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10778         logical name as the supplied path is just a prefix to the gac not
10779         the direct path to it.
10780         
10781 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10782
10783         * reflection.c: make the token for a created method match
10784         the token of the MethodBuilder it was created from
10785         (IKVM requires this behaviour now).
10786
10787 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10788
10789         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10790         reflection.c, socket-io.c: leak fixes.
10791
10792 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10793
10794         * icall.c: handle sentinel pos in vararg methods in position different
10795         from 0.
10796
10797 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10798
10799         * culture-info-tables.h: freshly generated.
10800
10801 2004-06-09  Martin Baulig  <martin@ximian.com>
10802
10803         * loader.c (mono_get_method_constrained): Call `mono_class_init
10804         (constrained_class)'.   
10805
10806 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10807
10808         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10809         any methods. Fixes #59629.
10810
10811 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10812
10813         * culture-info-tables.h: reflecting locale-builder updates.
10814
10815 2004-06-08  Dick Porter  <dick@ximian.com>
10816
10817         * object.h:
10818         * locales.c: Fixed compile warnings, including a real bug in
10819         CompareInfo_internal_compare.
10820         
10821 2004-06-08  Dick Porter  <dick@ximian.com>
10822
10823         * locales.c
10824         (ves_icall_System_Globalization_CompareInfo_internal_index):
10825         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10826         Double-check the resuls of usearches, because ICU currently
10827         ignores most of the collator settings here.  Fixes bug 59720.
10828         
10829 2004-06-08  Dick Porter  <dick@ximian.com>
10830
10831         * locales.c
10832         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
10833         Fix memory leak and segfault-causing typo.  No idea how this one
10834         lasted so long without being noticed.
10835
10836 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
10837
10838         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
10839         any methods. Fixes #59629.
10840
10841 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10842
10843         * assembly.c:
10844         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
10845         own the critical section before). Removed dead code (that's done
10846         in the preload hook).
10847
10848         (mono_assembly_load_with_partial_name): call the preload hook.
10849
10850 2004-06-08  Martin Baulig  <martin@ximian.com>
10851
10852         * metadata.c (mono_metadata_signature_alloc): Default
10853         `sentinelpos' to -1.
10854
10855         * reflection.c (mono_image_get_array_token): Likewise.
10856
10857 2004-06-08  Martin Baulig  <martin@ximian.com>
10858
10859         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
10860
10861         * metadata.c (mono_metadata_parse_method_signature): When parsing
10862         a MethodDef which has VarArgs, set sentinelpos.
10863
10864         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
10865         `gint16' since we're using -1 for non-varargs methods.
10866
10867         * reflection.c
10868         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
10869         (method_encode_signature): Added varargs support.
10870         (method_builder_encode_signature): Likewise.
10871         (mono_image_get_varargs_method_token): New static method.
10872         (mono_image_create_method_token): New public method; this is
10873         called via an icall instead of mono_image_create_token() when
10874         calling a varargs method.       
10875
10876 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
10877
10878         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
10879
10880 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10881
10882         * culture-info-tables.h : Reflecting the latest locale-builder that
10883           fixed empty array representation ({} to {0}).
10884
10885 2004-06-07  Jackson Harper  <jackson@ximian.com>
10886
10887         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
10888         looking up extra gac paths. This allows MONO_GAC_PATH to act
10889         exactly like a prefix.
10890         
10891 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10892
10893         * reflection.c (mono_reflection_type_from_name): Make a copy of the
10894         type name before modifying it. Fixes #59405.
10895
10896 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10897
10898         * culture-info.h: added fields for "all datetime patterns".
10899         * locales.c: (  ves_icall_System_Globalization_CultureInfo
10900           _construct_datetime_format ()): fill xxx_patterns fields.
10901         * object.h: added fields for "all datetime patterns" to
10902           MonoDateTimeFormatInfo.
10903         * culture-info-tables.h: reflecting locale-builder updates.
10904
10905 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
10906
10907         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
10908         the event has no add and remove methods. Fixes #59629.
10909
10910 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
10911
10912         * object.c: Fixed possible integer overflow when allocating large
10913         strings.
10914
10915 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10916
10917         * culture-info-tables.h: reflecting locale-builder updates.
10918
10919 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
10920
10921         * culture-info-tables.h: reflecting locale-builder updates.
10922
10923 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
10924
10925         * culture-info-tables.h: reflecting locale-builder updates.
10926
10927 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
10928
10929         * threads.c: Made Thread.Sleep abortable.
10930
10931 2004-06-02  Martin Baulig  <martin@ximian.com>
10932
10933         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
10934
10935         * debug-mono-symfile.h: Bumped symbol file version number to 37.
10936
10937 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
10938
10939         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
10940
10941 2004-05-30  Jackson Harper  <jackson@ximian.com>
10942
10943         * reflection.c: Do not hardcode assembly versions or public key
10944         tokens anymore. All of this except the corlib section was dead
10945         code anyways.
10946         
10947 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
10948
10949         * object.c (mono_runtime_invoke_array): Automatically create boxed
10950         objects for byref valuetypes if needed. Fixes #59300.
10951         
10952         * object.c (mono_method_return_message_restore): Handle 
10953         MONO_TYPE_OBJECT as well.
10954
10955 2004-05-28  Jackson Harper  <jackson@ximian.com>
10956
10957         * reflection.c: The modified type encoding was causing build
10958         problems. Reverted for now.
10959         
10960 2004-05-28  Jackson Harper  <jackson@ximian.com>
10961
10962         * reflection.c/h: Take an assembly ref so that we dont create
10963         fully qualified names when encoding types in the same assembly as
10964         the custom attribute being emitted.
10965         * appdomain.c: Increment version number.
10966         
10967 2004-05-26  Duncan Mak  <duncan@ximian.com>
10968
10969         * icall.c
10970         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10971         Set the full version number (major, minor, build, revision).
10972
10973 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
10974
10975         * marshal.c (emit_struct_conv): increment src/dst after blit
10976         (mono_marshal_get_managed_wrapper,
10977         mono_marshal_get_native_wrapper): make sure we have marshalling
10978         info before marshalling params (info computation affects
10979         blittable)
10980
10981         * class.c (class_compute_field_layout): correctly deal with
10982         blittable
10983         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
10984         value types (as per what windows dows by default)
10985         (mono_class_setup_mono_type): System.ValueType is blittable
10986         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
10987         blittable
10988
10989         * marshal.c (mono_marshal_load_type_info): flag types  as
10990         non-blittable if the native layout doesn't match the managed
10991         layout
10992
10993 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10994
10995         * appdomain.c: don't add stuff in the private search path that is
10996         above the application base. If application base is not set, there's
10997         no private search path.
10998
10999 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11000
11001         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11002         byref struct arguments in native->managed marshalling.
11003
11004 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11005
11006         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11007         cache methods using signature (special case for methods
11008         that are value type or string class)
11009         
11010         * image.c (mono_image_close): clean up allocated GSList's
11011         in runtime_invoke_cache.
11012
11013 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11014
11015         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11016         there's no MONO_CFG_DIR environment variable defined.
11017
11018 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11019
11020         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11021
11022 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11023
11024         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11025           is interrumped.
11026         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11027           before waiting for it, and call CloseHandle after the wait to unref it.
11028           This will make sure that handles are not disposed too early.
11029
11030 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11031
11032         * appdomain.c:
11033         * appdomain.h:
11034         * icall.c: removed
11035         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11036         needed now.
11037
11038         * object.c: se the application_base only for the domain that runs
11039         Main. Fixes bug #59216,
11040
11041 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11042
11043         * appdomain.c:
11044         * object.c: only the domain in which Main is run have
11045         SetupInformation.ConfigurationFile set, so moved a few lines from
11046         appdomain.c to object.c.
11047
11048 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11049
11050         * appdomain.c: we tried to load [name].(dll|exe), but according
11051         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11052         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11053         There's a test case attached to bug #58922.
11054
11055 2004-05-27  Dick Porter  <dick@ximian.com>
11056
11057         * icall.c:
11058         * file-io.c: Implemented icalls for locking and unlocking regions
11059         in a file.
11060         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11061         FALSE on error (fixes both compiler warning and real bug.)
11062
11063 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11064
11065         * culture-info-tables.h: reflecting locale-builder updates.
11066
11067           (Added missing ChangeLog entry for 05/26)
11068
11069 2004-05-27  Jackson Harper  <jackson@ximian.com>
11070
11071         * locales.c: Fix some cut and paste errors.
11072         
11073 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11074
11075         * mono-config.c: set the correct path for config. directory on windows.
11076
11077 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11078
11079         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11080           on win32.
11081
11082 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11083
11084         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11085         from pinvoke functions.
11086         
11087         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11088
11089 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11090
11091         * culture-info-tables.h: reflecting locale-builder updates.
11092
11093 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11094
11095         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11096         #59086.
11097
11098 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11099
11100         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11101         * icall.c: Modified icalls for RNG.
11102         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11103         Windows (CryptoAPI).
11104
11105 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11106
11107         * locales.c: Fix build.
11108
11109 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11110
11111         * culture-info-tables.h: reflecting locale-builder updates.
11112
11113 2004-05-25  Jackson Harper  <jackson@ximian.com>
11114
11115         * locales.c: When creating the current culture use the $LANGs
11116         specific culture. So DateTimeFormat and NumberFormat entries are created.
11117         
11118 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11119
11120         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11121         a char array as parameter.
11122
11123 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11124
11125         * image.c: In mono_image_open(), always use an absolute path name to
11126           look for already loaded images.
11127
11128 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11129
11130         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11131         missing in the windows build (like older cygwin include files).
11132
11133 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11134
11135         * icall.c: Fixed check for possible integer overflow in Buffer_
11136         BlockCopy icall. Replaced comments style // by /* */.
11137
11138 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11139
11140         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11141         
11142         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11143         check after MONO_VTADDR. Fixes pinvoke2.exe.
11144
11145         * marshal.h marshal.c metadata.h: Add beginnings of support for
11146         ftnptr -> delegate marshalling.
11147
11148 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11149
11150         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11151         * threads.c: Fix warnings.
11152
11153 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11154
11155         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11156         * icall.c: Registered icalls for Suspend and Resume.
11157         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11158           Thread.Abort.
11159         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11160         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11161         * process.c: Use WaitForSingleObjectEx.
11162         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11163           checkpoints.
11164         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11165           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11166           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11167           background threads. Added basic support for Abort in Windows.
11168           Start new threads using a managed delegate invoke wrapper. This wrapper
11169           has an interruption checkpoint that is needed since an interruption
11170           can be requested before the thread leaves the unmanaged code that starts 
11171           the thread.
11172         * marshal.c: Added interruption checkpoint after every native call, and
11173           also before managed calls for wrappers called from unmanaged code to
11174           go into managed code.
11175         * object.h: Added new field in MonoThread to keep track of interruption
11176           requests.
11177
11178 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11179
11180         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11181         calls.
11182
11183 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11184
11185         * appdomain.c:
11186         * assembly.c:
11187         * gc.c:
11188         * locales.c:
11189         * mono-config.c:
11190         * rand.c: getenv -> g_getenv (windows!)
11191
11192         * process.c: complete_path is also used on non-windows platforms.
11193
11194 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11195
11196         * icall.c: new signature for Process_Start.
11197
11198         * process.[ch]: new signature for Process_Start. If we're on windows
11199         and UseShellExecute is false, we have to search for the program by
11200         ourselves if we don't get a full path.
11201
11202 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11203
11204         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11205         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11206
11207 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11208
11209         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11210         Fixes bug #58373.
11211
11212 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11213
11214         * process.c: use double quotes to quote program name and arguments on
11215         windows. Fixes bug #58575.
11216
11217 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11218
11219         * file-io.c: don't return "." and ".." when using windows Find*File.
11220
11221 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11222
11223         * marshal.c: Don't pass wrappers to message init because method 
11224         addressed used to lookup metadata. part of remoting[2|3] fix.
11225
11226 2004-05-15  Jackson Harper  <jackson@ximian.com>
11227
11228         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11229         path is essentially the same as MONO_PATH except that it points to
11230         GACs instead of lib directories.
11231         * loader.h: The user gac is gone so we dont need function to
11232         enable/disable it.
11233         * mono-config.c: user gac option is now gone.
11234         
11235 2004-05-15  Jackson Harper  <jackson@ximian.com>
11236
11237         * culture-info.h: Make defines more consistent, add calendar data
11238         to the culture info table.
11239         * culture-info-tables.h: Add basic calendar data. Basically
11240         everyone gets default gregorian until all the data is
11241         updated.
11242         * locales.c: Use the new consistent defines. Set calendar data for
11243         culture info objects.
11244         * object.h: add a field for calendar data to CultureInfo
11245         
11246 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11247
11248         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11249         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11250         a signature.
11251         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11252         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11253         an extra param that is the pointer of the method to invoke. The IL for
11254         the invoke method is no longer specific to the method, but to the
11255         signature of the method. Thus, we can share the same code for multiple
11256         methods. This reduces the number of methods that have to be compiled.
11257
11258 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11259
11260         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11261
11262         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11263
11264         * icall.c: Optimize Buffer.BlockCopy.
11265
11266 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11267
11268         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11269         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11270         quote). Changed them to "MMMM yyyy".
11271
11272 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11273
11274         * rand.c
11275         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11276
11277 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11278
11279         * reflection.h: Updated after changes to managed structures.
11280
11281         * appdomain.c: Bump corlib version.
11282
11283 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11284
11285         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11286         windows.
11287
11288 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11289
11290         * Makefile.am: link to ../os/libmonoos.la on windows.
11291
11292         * assembly.c:
11293                 -If MONO_DEBUG, warn about non-existing directories in
11294                 MONO_PATH.
11295                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11296                 compile time variable.
11297                 -Removed init_default_path and call mono_set_rootdir from
11298                 libmonoos.a instead (windows only).
11299
11300         * assembly.h: declare mono_assembly_getrootdir().
11301
11302         * domain.c:
11303         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11304
11305         * loader.c: s/getenv/g_getenv/
11306
11307 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11308
11309         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11310
11311         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11312
11313         * metadata.h: Add new marshalling conversions.
11314
11315         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11316         function.
11317
11318         * reflection.c (mono_reflection_get_type): Lookup the type in all
11319         modules of a multi-module assembly. Fixes #58291.
11320
11321 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11322
11323         * threads.c: Before aborting a background, set the StopRequested
11324         state.  This avoids throwing the Abort exception.
11325         In mono_thread_manage, don't continue with the shutdown until all
11326         aborted threads have actually stopped.
11327
11328 2004-05-10  Jackson Harper  <jackson@ximian.com>
11329
11330         * locales.c: Remove the modifier from culture names.
11331         
11332 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11333
11334         * Makefile.am: monosn is not installed any more. It has been deprecated
11335         in favor of sn.
11336
11337 2004-05-07  Jackson Harper  <jackson@ximian.com>
11338
11339         * locales.c
11340         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11341         Fix array construction, add bailout if the length is 0.
11342
11343 2004-05-07  Dick Porter  <dick@ximian.com>
11344
11345         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11346         machine doesn't have a DNS entry.  Patch by Urs Muff
11347         (umuff@quark.com), fixes bug 57928.
11348
11349 2004-05-06  Jackson Harper  <jackson@ximian.com>
11350
11351         * reflection.c: Handle null PublicTokens properly. alloc mem for
11352         assembly names culture so we dont crash when freeing it.
11353         
11354 2004-05-06  Jackson Harper  <jackson@ximian.com>
11355
11356         * assembly.c: Check the usergac when loading with partial names.
11357         
11358 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11359
11360         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11361         does nothing for now (not required for Linux/Windows) but the class
11362         library can call it (and a newer or modified runtime could need it).
11363         * icall.c: Registred icall.
11364
11365 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11366
11367         * loader.c: prints a message on module loading error we set MONO_DEBUG
11368         environment variable.
11369
11370 2004-05-05  Jackson Harper  <jackson@ximian.com>
11371
11372         * appdomain.c: Handle PublicKeyToken=null properly.
11373         
11374 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11375
11376         * environment.c|h: Added icall ves_icall_System_Environment_
11377         GetOSVersionString to get the current OS version as a string.
11378         * icall.c: Registred icall.
11379
11380 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11381
11382         * object.c: in mono_object_get_virtual_method(), take into account that
11383         non-virtual methods don't have a slot in the vtable. Check needed when
11384         the object is a proxy.
11385
11386 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
11387
11388         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
11389         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
11390
11391         * object.c (mono_class_compute_gc_descriptor): Fix warning.
11392
11393         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
11394         passed when a valuetype is expected.
11395
11396         * object.c (mono_unhandled_exception): Only set the exit code if the
11397         exception happens in the main thread. Fixes thread5.exe.
11398
11399         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
11400         invalid names. Fixes #58047.
11401
11402 2004-05-03  Jackson Harper  <jackson@ximian.com>
11403
11404         * assembly.c: This line was committed accidently and is unneeded.
11405         
11406 2004-05-03  Jackson Harper  <jackson@ximian.com>
11407
11408         * icall.c: Add new icall for Assembly::LoadWithPartialName
11409         * assembly.c/.h: new function that probes the GAC to load partial
11410         assembly names by Paolo Molaro.
11411         
11412 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11413
11414         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
11415         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
11416         (type_get_fully_qualified_name): Added PublicKeyToken when building a
11417         full type name.
11418
11419 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11420
11421         * appdomain.c: fixed check for 'neutral' culture and removed warning.
11422         * reflection.c: fix bug when parsing a full type name and Version is not
11423         the last thing in the string.
11424
11425 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
11426
11427         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
11428         crashes when it is freed.
11429
11430 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11431
11432         * assembly.c: print the compat warning to stderr.
11433
11434 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
11435
11436         * assembly.c (mono_assembly_load_references): Add a compatibility
11437         hack to run old applications that might be still referencing the
11438         3300-based assemblies, only do this for System.xxx.
11439
11440 2004-05-01  Jackson Harper  <jackson@ximian.com>
11441
11442         * appdomain.c: If the culture is neutral we set it to "".
11443         
11444 2004-04-29  Jackson Harper  <jackson@ximian.com>
11445
11446         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
11447
11448 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
11449  
11450         * string-icalls.c: added low overhead function for copying chars
11451         * icall.c: added needed icall for the above function
11452  
11453 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11454
11455         * icall.c: fix return value of get_global_assembly_cache.  Implemented
11456         Environment.GetLogicalDrives.
11457
11458 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
11459
11460         * rand.c: try and talk to egd or prngd
11461         for random bytes if opening devices fail.
11462
11463 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
11464
11465         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
11466         alignment for the type using the native alignment of its members 
11467         instead of using klass->min_align.
11468
11469         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
11470
11471 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11472
11473         * file-io.c:
11474         * socket-io.c: added check for sys/aio.h.
11475
11476 2004-04-28  Dick Porter  <dick@ximian.com>
11477
11478         * threads.c: Don't abort a thread thats already aborting, when
11479         terminating everything.
11480
11481 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11482
11483         * icall.c: added 2 new async calls for Socket.
11484
11485         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
11486         IO on *nix systems.
11487
11488         * threadpool.c: removed unused variable.
11489
11490 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
11491
11492         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
11493
11494 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11495
11496         * locales.c: put back string_invariant_tolower () and
11497         string_invariant_toupper ().
11498
11499 2004-04-26 David Waite <mass@akuma.org>
11500
11501         * file-io.h:
11502         * socket-io.h:
11503         * threads.h:
11504         * unicode.h: remove comma from end of enumeration declarations
11505
11506 2004-04-26 David Waite <mass@akuma.org>
11507
11508         * debug-mono-symfile.h:
11509         * decimal.c:
11510         * mono_debug.h:
11511         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
11512
11513
11514 2004-04-26  Jackson Harper  <jackson@ximian.com>
11515
11516         * appdomain.c: Increment version number.
11517         
11518 2004-04-26  Jackson Harper  <jackson@ximian.com>
11519
11520         * appdomain.c: Set assembly references public token value when
11521         PublicKeyToken is specified, not the hash_value. Free public token
11522         values when free assembly name data. Previously the public key
11523         token was hex decoded, however we are using hex encoded public key
11524         tokens, so this is not neccasary.
11525         * assembly.c: Lookup assemblies in the gac if their public token
11526         value is set. Add function to allow enabling user gac
11527         lookups. Specify whether or not the assembly was loaded from the
11528         GAC. Compare full assembly names when checking the cache for
11529         assemblies (Temporarily disabled see comment in code). Remove
11530         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11531         specifies trace-loader they get extra info to stdout on the
11532         loading of assemblies.
11533         * image.h: Add a field for an assembly references public token
11534         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11535         whether an assembly has been loaded from the GAC.
11536         * image.c: Remove a corlib -> mscorlib name mapping.
11537         * loader.h: Add function to enable/disable the user gac.
11538         * mono-config.c: Check if the usergac is enabled in the config
11539         file.
11540         * icall.c: New icall to determine whether or not an assembly has
11541         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11542         * tabldefs.h: Add constant for assemblyref flag that specifies a
11543         full public key is used instead of a public token.
11544         * reflection.c: Remove mscorlib -> corlib mappings. Set
11545         PublicTokenValue instead of hash value. This value is a hex
11546         string so it does not need to be expanded.
11547
11548 2004-04-26  Martin Baulig  <martin@ximian.com>
11549
11550         * mono-debug-debugger.c (mono_debugger_initialize): Set
11551         `mono_debugger_initialized' before calling mono_debug_lock().
11552
11553 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11554
11555         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11556           InternalToUpper/InternalToLower.
11557         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11558           removed invariant culture shortcut.  This is now done in managed code.
11559         * locales.c: (string_invariant_toupper/tolower) removed.
11560
11561 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11562
11563         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11564         Added Poll internal call.
11565
11566         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11567         call for Poll. Select was too heavy for polling a single socket.
11568
11569         * threadpool.[ch]: added mono_threadpool_cleanup.
11570         * threads.c: use it. Don't use Thread_Abort on windows.
11571
11572 2004-04-23  Martin Baulig  <martin@ximian.com>
11573
11574         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11575
11576 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11577
11578         * icall.c: Registred new icalls for key pair protection and added an
11579         icall for Environment.GetFolderPath on Windows.
11580         * security.c|h: Added new icalls for key pair protection.
11581
11582 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11583
11584         * socket-io.c: don't display the non-supported family warning for known
11585         families. Now this is not displayed on windows when checking support
11586         for IPv4/IPv6.
11587
11588 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11589
11590         * class.c: don't display the layout warning for static fields.
11591
11592 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11593
11594         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11595         * locales.c, locales.h: Added new icalls for culture-specific
11596         Char.ToLower and Char.ToUpper.
11597
11598 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11599
11600         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11601         by David Waite.
11602
11603 2004-04-20  Martin Baulig  <martin@ximian.com>
11604
11605         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11606         of the type name before passing it to mono_reflection_type_from_name().
11607
11608 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11609
11610         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11611         encodings here. Fixes #56965.
11612
11613 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11614
11615         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11616         fix test on strstr result not that I can see anything that
11617         relies on the result.
11618
11619 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11620
11621         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11622         Fixes #57081.
11623
11624         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11625
11626         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11627         function to determine which marshalling to use for strings. Fixes
11628         #56965.
11629
11630         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11631
11632         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11633
11634 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11635
11636         * icall.c: #include mono-config.h
11637
11638 2004-04-15  Jackson Harper  <jackson@ximian.com>
11639
11640         * culture-info-tables.h: Fix date formats for en-US culture.
11641         
11642 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11643
11644         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11645         ThreadPool.SetMinThreads.
11646         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11647         ThreadPool.SetMinThreads.
11648
11649 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11650
11651         * mono-config.c: also load the .config file in the directory
11652         where the assembly was found.
11653
11654 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11655
11656         * assembly.c: load per-assembly config files.
11657         * icall.c: decrapified code to get the config dir and moved to
11658         mono-config.c.
11659         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11660         per-assembly config files. When doing a dll map lookup give precedence
11661         to the per-assembly data.
11662
11663 2004-04-14  Martin Baulig  <martin@ximian.com>
11664
11665         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11666         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11667         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11668
11669         * mono-debugger-debugger.c: While the debugger is locked, remember
11670         whether the symbol tables have changes and send one single
11671         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11672
11673 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11674
11675         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11676
11677         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11678         function.
11679
11680         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11681         account when marshalling string arrays. Fixes #56965.
11682
11683 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11684
11685         * icall.c: Add new icalls mapping for security.
11686         * security.c|h: Add internal calls for WindowsIdentity,
11687         WindowsImpersonationContext and WindowsPrincipal.
11688
11689 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11690
11691         * class.c: Added comment to ensure the System.MonoDummy class
11692         is removed when no longer necessary
11693
11694 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11695
11696         * appdomain.c: Pass arguments to the bootstraping exceptions to
11697         minimize JITed methods at boot
11698
11699         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11700         second string to be null.
11701
11702         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11703         Change the protocol to minimize the JIT methods at startup.  Now
11704         it Returns the internal codepage, if the value of "int_code_page"
11705         is 1 at entry, and we can not compute a suitable code page
11706         number, returns the code page as a string.
11707
11708 2004-04-13  Jackson Harper  <jackson@ximian.com>
11709
11710         * culture-info-tables.h: Fix number of decimal digits for all
11711         english locales.
11712
11713 2004-04-13  Jackson Harper  <jackson@ximian.com>
11714
11715         * icall.c: Clairfy out of sync error message. It is not always
11716         your corlib that is out of sync.
11717
11718 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11719
11720         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11721         properties when only the set accessor is overriden. Fixes #55874.
11722
11723 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11724
11725         * assembly.c (mono_assembly_load_references): Make this thread safe.
11726         Fixes #56327.
11727
11728 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11729
11730         * monosn.c: Add missing initialization calls.
11731
11732 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11733
11734         * locales.c:
11735         ves_icall_System_Globalization_CultureInfo_construct_number_format
11736         Fix g_assert so it compiles on fussier compilers re int/ptr
11737         mismatch
11738
11739 2004-04-08  Dick Porter  <dick@ximian.com>
11740
11741         * socket-io.h:
11742         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11743         53992.  Also rearrange the code so that the internal calls return
11744         an error value and exceptions are thrown from managed code.
11745
11746         * icall.c: Add type info to the socket icalls.
11747
11748 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11749
11750         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11751         owes me a beer.
11752
11753 2004-04-07  Martin Baulig  <martin@ximian.com>
11754
11755         * class.c (mono_class_from_generic_parameter): Don't default
11756         `klass->parent' to `mono_defaults.object_type'.
11757
11758 2004-04-07  Martin Baulig  <martin@ximian.com>
11759
11760         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11761         `param->pklass->reflection_info'.       
11762
11763 2004-04-07  Jackson Harper  <jackson@ximian.com>
11764
11765         * culture-info-tables.h: Fix date separator symbol.
11766         
11767 2004-04-07  Martin Baulig  <martin@ximian.com>
11768
11769         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11770         from System.Type to System.MonoType.
11771
11772 2004-04-07  Martin Baulig  <martin@ximian.com>
11773
11774         * reflection.h
11775         (MonoReflectionGenericParam): Added `has_reference_type' and
11776         `has_value_type' fields.
11777
11778         * reflection.c (mono_image_get_generic_param_info): Encode the
11779         correct flags if we have the `class' or `struct' constraint.
11780
11781 2004-04-07  Martin Baulig  <martin@ximian.com>
11782
11783         * reflection.h
11784         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11785
11786 2004-04-07  Jackson Harper  <jackson@ximian.com>
11787
11788         * appdomain.c: Revert extra patches, just wanted to bump the
11789         version number.
11790         
11791 2004-04-07  Jackson Harper  <jackson@ximian.com>
11792
11793         * Makefile.am: Add culture-info private headers.
11794         * icall.c: Add new icalls for contructing locales.
11795         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11796         * locales.h: Declare new culture info construction methods.
11797         * object.h: Add new fields used to avoid the CultureMap to
11798         MonoCultureInfo.
11799         * culture-info.h: Definition of structs used in the culture info
11800         tables.
11801         * culture-info-tables.h: Autogenerated tables that contain culture
11802         info data. This file was generated with the locale-builder tool.
11803         * appdomain.c: Incement corlib version number.
11804         
11805 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11806
11807         * appdomain.c: (mono_runtime_init) move mono_thread_init
11808         to before mono_object_new calls so critical sections
11809         are initialized before use.
11810
11811 2004-04-07  Martin Baulig  <martin@ximian.com>
11812
11813         * icall.c
11814         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
11815         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
11816         (ves_icall_MonoGenericParam_initialize): Removed.
11817         (monogenericparam_icalls): Removed.
11818         (generictypeparambuilder_icalls): Added new table for
11819         System.Reflection.Emit.GenericTypeParameterBuilder.
11820
11821         * reflection.c
11822         (mono_reflection_define_generic_parameter): Removed.
11823         (mono_reflection_initialize_generic_parameter): This is now called
11824         from GenericTypeParameterBuilder's .ctor.
11825
11826 2004-04-06  Martin Baulig  <martin@ximian.com>
11827
11828         * class.c (mono_class_init): Don't inflate nested classes in a
11829         generic instance.
11830         (mono_type_get_name_recurse): Include the generic arguments for
11831         generic instances and generic type declarations.
11832         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
11833         (_mono_class_get_instantiation_name): Removed.
11834         (mono_class_create_generic): Always use `gklass->name' as our name.
11835
11836         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
11837
11838         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
11839         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
11840         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
11841         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
11842         closed generic methods here.
11843
11844         * reflection.c
11845         (mono_reflection_generic_inst_get_nested_types): Removed.
11846         (inflate_mono_method): Copy the generic parameters from the
11847         MonoMethodHeader into out MonoGenericMethod.
11848
11849 2004-04-06  Martin Baulig  <martin@ximian.com>
11850
11851         * row-indexes.h
11852         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
11853
11854         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
11855
11856         * reflection.c (build_compressed_metadata): If we have any entries
11857         in the GenericParam, MethodSpec or GenericParamConstraint tables,
11858         set the header version to 1.1.
11859
11860 2004-04-06  Martin Baulig  <martin@ximian.com>
11861
11862         * class.c (mono_class_init): If we're a generic instance,
11863         initialize our nested classes, too.
11864         (_mono_class_get_instantiation_name): Deal with the new `!%d'
11865         suffix. 
11866
11867 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11868
11869         * process.c: quote the argument passed to the shell on windows.
11870
11871 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
11872
11873         * threads.c (mono_alloc_special_static_data): Allow this to be
11874         called during startup.
11875
11876 2004-04-02  Martin Baulig  <martin@ximian.com>
11877
11878         * icall.c
11879         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
11880
11881 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
11882
11883         * icall.c: Fix build.
11884
11885 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
11886
11887         * Makefile.am: Added security.c|h.
11888         * icall.c: Added icall for get_UserName;
11889         * security.c: New file for security related icalls. Added function
11890         get_UserName for System.Environment (fix #56144).
11891         * security.h: New. Header file for security.c
11892
11893 2004-04-02  Dick Porter  <dick@ximian.com>
11894
11895         * icall.c: Deleted the icalls that were obsoleted some time ago
11896         by the ICU string code, and which were mixed into the icall
11897         rearranging.  Fixes bug 55969.
11898
11899         * string-icalls.h: 
11900         * string-icalls.c: Deleted the code that those icalls reference.
11901
11902 2004-04-01  Martin Baulig  <martin@ximian.com>
11903
11904         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
11905
11906         * class.c (mono_class_from_generic_parameter): Don't set 
11907         TYPE_ATTRIBUTE_INTERFACE.
11908         (my_mono_class_from_generic_parameter): Likewise.
11909
11910 2004-04-01  Martin Baulig  <martin@ximian.com>
11911
11912         * loader.c (find_method): Added an optional `MonoClass *ic'
11913         argument to search in a specific interface.
11914         (mono_get_method_constrained): New public function.
11915
11916 2004-04-01  Martin Baulig  <martin@ximian.com>
11917
11918         * reflection.c (mono_image_get_generic_field_token): Use the
11919         `handleref' cache here.
11920
11921 2004-04-01  Martin Baulig  <martin@ximian.com>
11922
11923         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
11924
11925         * reflection.c (create_generic_typespec): Use the `typespec' hash
11926         here, not the `typeref' one.    
11927
11928 2004-04-01  Martin Baulig  <martin@ximian.com>
11929
11930         * class.c (mono_class_inflate_generic_type): Moved the
11931         functionality into a new static inflate_generic_type() which
11932         returns NULL if it didn't do anything.  Only increment the
11933         `mono_stats.inflated_type_count' if we actually inflated
11934         something.
11935         (mono_class_get_full): Check the classes type to see whether we
11936         need to inflate it; also inflate MONO_TYPE_(M)VAR.
11937
11938 2004-04-01  Jackson Harper  <jackson@ximian.com>
11939
11940         * reflection.c: Set culture for assembly references.
11941         
11942 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
11943
11944         * reflection.[ch], icall.[ch], Fix support for pinning variables.
11945
11946 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11947
11948         * assembly.c:
11949         (do_mono_assembly_open): the critical section also covers
11950         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
11951
11952 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11953
11954         * threads.c:
11955         (mono_manage_threads): abort the background threads when finishing.
11956         Fixes bug #47232.
11957
11958 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11959
11960         * gc.c: only close the done_event handle if there was no timeout.
11961         C-ified comments.
11962
11963 2004-03-30  Martin Baulig  <martin@ximian.com>
11964
11965         * icall.c (icall_entries): It's called "System.Activator", not
11966         "System.Activation".    
11967
11968 2004-03-30  Martin Baulig  <martin@ximian.com>
11969
11970         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
11971         (mono_class_create_from_typespec): Likewise.
11972
11973 2004-03-30  Martin Baulig  <martin@ximian.com>
11974
11975         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
11976         `has_ctor_constraint' and `initialized'.
11977
11978 2004-03-30  Martin Baulig  <martin@ximian.com>
11979
11980         * reflection.c (encode_new_constraint): New static function to add
11981         the constructor constraint attribute to a type parameter.
11982         (encode_constraints): Call encode_new_constraint() if necessary.
11983
11984         * reflection.h
11985         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
11986
11987         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
11988         
11989 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
11990
11991         * reflection.c, icall.c: add support for pinning variables. 
11992
11993 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
11994
11995         * marshal.c (mono_marshal_get_managed_wrapper):
11996         init bool local with zero rather than null.
11997
11998 2004-03-29  Martin Baulig  <martin@ximian.com>
11999
12000         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12001         the "official" behavior here.
12002         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12003
12004 2004-03-29  Martin Baulig  <martin@ximian.com>
12005
12006         * icall.c: Reflect latest API changes.
12007
12008 2004-03-29  Martin Baulig  <martin@ximian.com>
12009
12010         * loader.c (mono_get_method_from_token): Also call
12011         mono_metadata_load_generic_params () for abstract and interface
12012         methods; replace the type arguments in the method signature with
12013         the ones which are loaded from the metadata.
12014
12015 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12016
12017         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12018         of the lock is not the current thread. MS.NET don't do it, in spite of
12019         what the documentation says. See bug #56157.
12020
12021 2004-03-28  Martin Baulig  <martin@ximian.com>
12022
12023         * class.c (mono_class_init): Don't call init_properties() and
12024         init_events() for generic instances; set `prop->parent' when
12025         inflating properties.
12026
12027         * reflection.c (mono_generic_inst_get_object): Call
12028         `mono_class_init (ginst->klass)'.
12029         (mono_type_get_object): Only create a MonoGenericInst if your
12030         generic type is a TypeBuilder.
12031         (do_mono_reflection_bind_generic_parameters): Only set
12032         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12033
12034 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12035
12036         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12037         Fixes #56091.
12038
12039 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12040
12041         * icall.c: added Kill_internal icall.
12042         * process.[ch]: added Kill_internal icall.
12043
12044 2004-03-25  Martin Baulig  <martin@ximian.com>
12045
12046         * class.h (MonoStats): Added `generic_instance_count',
12047         `inflated_method_count', `inflated_type_count' and
12048         `generics_metadata_size'.       
12049
12050 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12051
12052         * reflection.c: no warnings now.
12053
12054 2004-03-25  Martin Baulig  <martin@ximian.com>
12055
12056         * class.c (mono_class_get_full): New public function; does a
12057         mono_class_get(), but also takes a `MonoGenericContext *'.
12058
12059         * loader.c (mono_field_from_memberref): Renamed to
12060         `field_from_memberref', made static and added `MonoGenericContext *'
12061         argument.
12062         (mono_field_from_token): Added `MonoGenericInst *' argument.
12063         (method_from_memberef): Likewise.
12064         (mono_get_method_from_token): Likewise.
12065         (mono_get_method_full): New public function; does a
12066         mono_get_method(), but also takes a `MonoGenericContext *'.
12067
12068         * verify.c (mono_method_verify): Get the method's generic context
12069         and pass it to mono_field_from_token(), mono_get_method_full() and
12070         mono_class_get_full().
12071
12072 2004-03-25  Martin Baulig  <martin@ximian.com>
12073
12074         * class.c (mono_class_inflate_generic_type): Take a
12075         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12076         `MonoGenericMethod *'.
12077
12078 2004-03-25  Martin Baulig  <martin@ximian.com>
12079
12080         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12081         instead of the MonoGenericMethod here.
12082
12083 2004-03-25  Martin Baulig  <martin@ximian.com>
12084
12085         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12086         each time we create a new MonoGenericInst, we also create a new
12087         context which points back to us.
12088
12089         * class.c (inflate_method): Use `ginst->context' instead of
12090         creating a new context.
12091
12092         * loader.c (method_from_memberref): Use
12093         `klass->generic_inst->context' instead of creating a new context.
12094
12095 2004-03-25  Martin Baulig  <martin@ximian.com>
12096
12097         * class.h (MonoGenericContext): New struct.
12098         (MonoGenericMethod): Removed `generic_inst'.
12099
12100         * class.c (mono_class_inflate_generic_method): Take a
12101         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12102
12103 2004-03-25  Martin Baulig  <martin@ximian.com>
12104
12105         * loader.h (MonoMethodInflated): New typedef.
12106
12107         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12108         `generic_param_count' consume just 30 bits, added `is_inflated'
12109         and `has_type_parameters' flags (one bit each).
12110
12111         * class.c (mono_class_inflate_generic_method): Create a
12112         MonoMethodInflated instead of a MonoMethodNormal and set
12113         `is_inflated' in the method signature.
12114
12115         * class.h (MonoGenericMethod): Removed `generic_method'.
12116
12117 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12118
12119         * image.c: Make sure the name of a MonoImage is always an absolute path.
12120           This fixes bug #54415.
12121
12122 2004-03-24  Martin Baulig  <martin@ximian.com>
12123
12124         * class.c (mono_class_setup_vtable): If we're a generic instance,
12125         use our generic type's vtable size.
12126
12127 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12128
12129         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12130         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12131         problems.
12132
12133 2004-03-23  Martin Baulig  <martin@ximian.com>
12134
12135         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12136         `MonoEvent *events'.
12137
12138         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12139         (typebuilder_icalls): Added "get_event_info"; calls
12140         mono_reflection_event_builder_get_event_info(). 
12141
12142         * reflection.c (mono_reflection_generic_inst_initialize): Added
12143         `MonoArray *events'.
12144         (mono_reflection_event_builder_get_event_info): New function.
12145
12146 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12147
12148         * object.h: add mono_type_initialization_init
12149
12150         * object.c (mono_runtime_class_init): 
12151         implement class constructor synchronization rules
12152         to cope with threading issues.  
12153         add mono_type_initialization_init
12154
12155         * appdomain.c (mono_runtime_init): call 
12156         mono_type_initialization_init
12157
12158         * class.h: removing initializing field from MonoVTable
12159
12160 2004-03-23  Martin Baulig  <martin@ximian.com>
12161
12162         * class.c (my_mono_class_from_generic_parameter): Use
12163         `param->name' if it's not NULL. 
12164
12165 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12166
12167         * class.c: do not insert non-virtual methods in the vtable.
12168         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12169         that means the method is non-virtual. This never would have
12170         happened before.
12171
12172 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12173
12174         * profiler.c: Added lock for accessing coverage_hash.
12175
12176 2004-03-22  Martin Baulig  <martin@ximian.com>
12177
12178         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12179         `method->method->signature->generic_param_count != 0' to make it
12180         work for interface methods.
12181
12182 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12183
12184         * process.c: quote the string passed to the shell using g_shell_quote.
12185
12186 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12187
12188         * threads.c:
12189         (mono_threads_manage): don't remove the finalizer thread and self
12190         from the threads hash table so that mono_thread_manage can be called
12191         more than once.
12192
12193 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12194
12195         * process.c: quote the arguments when UseShellExecute is true. Fixes
12196         bug #55790.
12197
12198 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12199
12200         * threads.c: set mono_thread_detach as a cleanup routine for every
12201         thread. This way it's always executed upon thread termination, either
12202         aborted or finished normally. No more xsp hangs!
12203
12204 2004-03-17  Martin Baulig  <martin@ximian.com>
12205
12206         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12207         `int count_nested' and a `MonoType **nested'.
12208
12209         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12210         most of the functionality into a new static
12211         do_mono_reflection_bind_generic_parameters() and don't take a
12212         `MonoType *nested_in' argument any more.  Don't compute nested
12213         types here.
12214         (mono_reflection_generic_inst_get_nested_types): New public method
12215         to get nested types.
12216
12217         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12218         we're a nested class.
12219
12220         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12221         mono_reflection_generic_inst_get_nested_types() to compute the
12222         nested types.
12223
12224 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12225
12226         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12227         descriptive error message under windows.
12228         
12229 2004-03-17  Martin Baulig  <martin@ximian.com>
12230
12231         * class.c (dup_type): Added `const MonoType *original' argument;
12232         copy the attrs from the original type.
12233
12234 2004-03-17  Martin Baulig  <martin@ximian.com>
12235
12236         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12237         `m->generic_inst_cache' here.
12238
12239 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12240
12241         * exception.h exception.c: Add stack_overflow_exception.
12242
12243 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12244
12245         * threadpool.c:
12246         (overlapped_callback): call SetEvent *after* invoking the callback.
12247         No need to call CloseHandle.
12248
12249 2004-03-16  Martin Baulig  <martin@ximian.com>
12250
12251         * reflection.c (mono_image_get_fieldref_token): Take a
12252         `MonoReflectionField *' instead of a `MonoClassField *' and a
12253         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12254
12255 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12256
12257         * appdomain.c: don't add the culture to the filename we're looking for
12258         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12259
12260 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12261
12262         * locales.c: don't ignore symbols when doing case insensitive compares.
12263         Thanks Dick! Fixes bug #54046.
12264
12265         * threads.c: surround 'threads' usage with enter/leave in
12266         mono_thread_manage.
12267
12268 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12269
12270         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12271         implicitly marshalled as [Out]. Fixes #55450.
12272
12273         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12274         an exception.
12275
12276 2004-03-16  Martin Baulig  <martin@ximian.com>
12277
12278         * class.c (mono_class_from_generic_parameter): Use the actual
12279         parameter name. 
12280
12281 2004-03-16  Martin Baulig  <martin@ximian.com>
12282
12283         * reflection.c (type_get_signature_size): New static function.
12284         Compues the size of the type in a method signature.
12285         (method_get_signature_size): New static function; calls
12286         type_get_signature_size() to compute the actual size of the
12287         method's signature.
12288         (method_encode_signature): Use method_get_signature_size() to get
12289         the signature's size rather than using `nparams * 10'.
12290
12291 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12292
12293         * file-io.h: define here WapiOverlapped on windows. I don't want the
12294         regular OVERLAPPED one.
12295
12296         * file-io.c:
12297         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12298         Disabling AIO on windows.
12299
12300 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12301
12302         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12303         bug #55385.
12304
12305 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12306
12307         * appdomain.c: upgraded corlib version.
12308
12309         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12310         and BeginWrite. Allow opening files for asynchrnous operations.
12311
12312         * file-io.h: new struct that maps FileStreamAsyncResult.
12313         * icall.c: added new icalls.
12314         * process.[ch]: support setting child process environment variables
12315         and use the SHELL or COMSPEC when UseShellExecute is true.
12316
12317         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12318         callback for async. IO is here and also BindHandle.
12319
12320         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12321         from here.
12322
12323 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12324
12325         * reflection.c (create_custom_attr): Allow len == 0.
12326
12327         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12328         computation on big-endian machines.
12329
12330 2004-03-13  Martin Baulig  <martin@ximian.com>
12331
12332         * class.h (MonoGenericInst): Added `int count_ifaces'.
12333
12334         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12335         `ginst->count_ifaces' instead `klass->interface_count' since we
12336         may get called before the vtable is created.
12337
12338         * loader.c (mono_method_get_param_names): If we're a generic
12339         instance, return and don't initialize the class.
12340
12341         * reflection.c (mono_reflection_setup_generic_class): Don't call
12342         ensure_runtime_vtable().
12343         (mono_reflection_bind_generic_parameters): Set
12344         `ginst->count_ifaces'.
12345
12346 2004-03-11  Jackson Harper <jackson@ximian.com>
12347
12348         * icall.c:
12349         * unicode.c:
12350         * unicode.h: Remove unused System.Char icalls.
12351         
12352 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12353
12354         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12355         code when we P/Invoke the first library in Windows.Forms, instead
12356         of when we first open the assembly.
12357
12358         * assembly.c: Drop the lookup from here.
12359
12360 2004-03-10  Martin Baulig  <martin@ximian.com>
12361
12362         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12363         class for properties, fields and events.  Finally fixes #54945.
12364
12365 2004-03-10  Martin Baulig  <martin@ximian.com>
12366
12367         * metadata.c (mono_metadata_class_equal): New static function;
12368         checks whether two generic instances or two generic parameters are
12369         equal.
12370         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12371         compare classes.        
12372
12373 2004-03-10  Martin Baulig  <martin@ximian.com>
12374
12375         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12376
12377         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12378         argument and write it into the `reflection_info' field.
12379
12380         * icall.c
12381         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12382         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12383
12384 2004-03-09  Jackson Harper  <jackson@ximian.com>
12385
12386         * char-conversions.h: use 8 bits for numeric data its all we need
12387         * icall.c: numeric data is only 8 bits now.
12388
12389 2004-03-09  Martin Baulig  <martin@ximian.com>
12390
12391         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
12392
12393         * class.c (init_properties, init_events): Initialize the new
12394         `parent' field.
12395
12396         * reflection.c (typebuilder_setup_properties): Likewise.
12397         (typebuilder_setup_events): Likewise.
12398
12399         * reflection.h (MonoEventInfo): Replaced `parent with
12400         `declaring_type' and `reflected_type'.
12401
12402         * icall.c (ves_icall_get_property_info): Distinguish between
12403         declaring and reflected type.
12404         (ves_icall_get_event_info): Likewise.
12405
12406 2004-03-09  Martin Baulig  <martin@ximian.com>
12407
12408         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
12409         (ves_icall_Type_GetField): Correctly set field->klass.
12410
12411 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
12412
12413         * loader.h: Fix warning.
12414
12415 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
12416
12417         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
12418         library routine if present.  Notice that it will still continue
12419         executing even if its missing, for those working on the Gtk#
12420         edition of Windows.Forms.
12421
12422         * assembly.c (do_mono_assembly_open): If loading the
12423         System.Windows.Forms call mono_loader_wini_init.
12424
12425 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
12426
12427         * class.h: Added MonoRemoteClass struct.
12428         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
12429         function for MonoStrings.
12430         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
12431         Added internal call for getting the proxy type.
12432         * marshal.c: Get the type of transparent proxies from its remote_class.
12433         Added methods that generate the IL for type checks and casts:
12434         mono_marshal_get_isinst, mono_marshal_get_castclass, 
12435         mono_marshal_get_proxy_cancast.
12436         * marshal.h: Declaration of the previous new methods.
12437         * object.c: Added new moethods for creating and updating MonoRemoteClass
12438         instances: mono_remote_class, mono_upgrade_remote_class, 
12439         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
12440         * verify.c: FIx transparent_proxy_fields layout.
12441         * appdomain.c: Bump corlib version.
12442
12443 2004-03-04  Jackson Harper  <jackson@ximian.com>
12444
12445         * icall.c: Add icall to access char conversion tables.
12446         * char-conversions.h: Character conversion tables.
12447         * Makefile.am: Add char-conversions.h private header file.
12448         
12449 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
12450
12451         * appdomain.c (unload_thread_main): Increase unloading timeout to
12452         10 sec as a temporary workaround for Nant problems.
12453
12454 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
12455
12456         * gc.c: Add checks for GC_enable and GC_disable.
12457
12458         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
12459         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
12460         (bug #54988).
12461         
12462 2004-02-27  Martin Baulig  <martin@ximian.com>
12463
12464         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12465         `MonoReflectionType *' instead of a `MonoType *'.
12466
12467 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
12468
12469         * gc.c (run_finalize): Avoid finalizing the object representing the
12470         finalizer thread.
12471         (finalizer_thread): Fix warning.
12472
12473 2004-02-25  Martin Baulig  <martin@ximian.com>
12474
12475         * class.c (_mono_class_get_instantiation_name): Added `int offset'
12476         argument for nested types.
12477         (mono_class_create_generic): Added support for nested generictypes.
12478
12479         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
12480         `GList *nested'.
12481
12482         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
12483
12484         * reflection.c (method_encode_signature): Increase the minimum
12485         value of `size' from 10 to 11.
12486         (mono_reflection_bind_generic_parameters): Take `int type_argc'
12487         and `MonoType **types' arguments instead of the `MonoArray
12488         *types'; added `MonoType *nested_in'.  Recursively instantiate
12489         nested classes. 
12490
12491 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
12492
12493         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
12494         stack_overflow_ex members which are used by exception handling.
12495
12496         * appdomain.c (mono_runtime_init): Initialize the new members.
12497
12498         * gc.c (mono_gc_enable): New helper function.
12499         * gc.c (mono_gc_disable): New helper function.
12500
12501 2004-02-23  Martin Baulig  <martin@ximian.com>
12502
12503         * icall.c: I must have been really stupid - make it actually work
12504         this time ;-)
12505
12506 2004-02-23  Martin Baulig  <martin@ximian.com>
12507
12508         * loader.c (method_from_memberref): Only inflate the method if
12509         it's in another klass.
12510
12511 2004-02-23  Martin Baulig  <martin@ximian.com>
12512
12513         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
12514         (mono_class_init): If we're a generic instance and an interface,
12515         compute `class->interface_id'; also create `class->interfaces'
12516         here and inflate them.
12517
12518         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
12519         `ginst->is_open'.
12520         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
12521
12522         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12523
12524 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12525
12526         * reflection.c (method_encode_code): Improved the error message
12527         generated by the exception.
12528
12529 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12530
12531         * icall.c: Martin did not do what he said in the ChangeLog for
12532         2004-02-18, but put back the changes for properties and events.
12533         Commenting those changes out again and adding comment to bug #54518.
12534         
12535         * process.c: removed warning.
12536
12537 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12538
12539         * marshal.c (emit_struct_conv): Print an error message instead of
12540         asserting when a type does not have the StructLayout attribute.
12541
12542 2004-02-20  Martin Baulig  <martin@ximian.com>
12543
12544         * reflection.c (mono_type_get_object): Also use the cache for
12545         generic instances.
12546         (mono_reflection_bind_generic_parameters): Always compute
12547         `ginst->ifaces'.        
12548
12549 2004-02-20  Martin Baulig  <martin@ximian.com>
12550
12551         * class.h (MonoGenericMethod): Removed `klass'.
12552
12553         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12554         *klass' argument.
12555
12556 2004-02-20  Martin Baulig  <martin@ximian.com>
12557
12558         * reflection.c (method_encode_methodspec): Actually use the
12559         uninflated signature for the memberref.
12560
12561 2004-02-20  Martin Baulig  <martin@ximian.com>
12562
12563         * class.h (MonoGenericMethod): Removed `declaring'.
12564
12565         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12566         is NULL, compute it here.
12567
12568 2004-02-20  Martin Baulig  <martin@ximian.com>
12569
12570         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12571
12572         * metadata.c (mono_metadata_generic_inst_hash): New method.
12573         (mono_metadata_generic_inst_equal): New method.
12574
12575         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12576         `klass->image->generic_inst_cache' cache to avoid creating
12577         duplicate MonoGenericInst's.
12578
12579         * class.c (mono_class_inflate_generic_type): Use the cache.
12580
12581 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12582
12583         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12584
12585 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12586
12587         * icall.c: added Socket.WSAIoctl icall.
12588
12589         * socket-io.[ch]: implemented
12590         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12591
12592 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12593
12594         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12595
12596 2004-02-18  Urs C Muff  <umuff@quark.com>
12597
12598         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12599         this work on PPC and other big-endian architectures.
12600
12601         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12602         fields with an underscore to make sure they're only accessed by
12603         the read32() macro.
12604
12605 2004-02-18  Martin Baulig  <martin@ximian.com>
12606
12607         * icall.c: Put the klass->refclass changes back for methods and
12608         fields, but not for properties and events.  We're currently not
12609         distinguishing between DeclaringType and ReflectedType for
12610         properties and events, that's what caused the regressions.
12611
12612 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12613
12614         * object.c:
12615         (mono_async_result_new): the handle can be NULL.
12616
12617         * threadpool.c: Use an event instead of a semaphore, don't initialize
12618         it until needed. This saves quite a few semaphores from being created
12619         when using the threadpool.
12620
12621 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12622
12623         * object.c (mono_string_is_interned_lookup): Fix interning of long
12624         strings. Fixes #54473.
12625
12626         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12627
12628         * icall.c: Revert the klass->refclass changes since they introduce
12629         regressions (bug #54518).
12630
12631 2004-02-18  Martin Baulig  <martin@ximian.com>
12632
12633         * class.c (mono_class_init): If we're a generic instance and don't
12634         come from a TypeBuilder, inflate our members here.
12635         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12636         (mono_class_create_generic): New public method.
12637         (mono_class_initialize_generic): Removed.
12638         (get_instantiation_name): Renamed to
12639         _mono_class_get_instantiation_name() and made it public.
12640
12641 2004-02-18  Martin Baulig  <martin@ximian.com>
12642
12643         * class.c (mono_class_inflate_generic_type): Clear the new
12644         instance's `nginst->klass' when inflating a generic instance.
12645         (mono_class_is_subclass_of): Added (basic) support for generic
12646         instances.
12647
12648 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12649
12650         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12651         MonoMempool to hold compiled native code.
12652
12653 2004-02-17  Martin Baulig  <martin@ximian.com>
12654
12655         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12656         `properties'.
12657
12658         * reflection.c (mono_reflection_generic_inst_initialize): Added
12659         `MonoArray *properties' argument.
12660
12661         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12662
12663 2004-02-17  Martin Baulig  <martin@ximian.com>
12664
12665         * icall.c (ves_icall_Type_GetFields): Renamed to
12666         ves_icall_Type_GetFields_internal() and added a
12667         `MonoReflectionType *rtype' argument; pass it to
12668         mono_field_get_object() to set the field's "reflected" type.
12669         (ves_icall_Type_GetConstructors): Likewise.
12670         (ves_icall_Type_GetEvents): Likewise.
12671         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12672         argument; pass it to mono_method_get_object() to set the method's
12673         "reflected" type.       
12674
12675 2004-02-17  Martin Baulig  <martin@ximian.com>
12676
12677         * class.h (MonoDynamicGenericInst): New type.
12678         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12679
12680         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12681         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12682         (ves_icall_MonoGenericInst_GetFields): New interncall.
12683
12684         * class.c (mono_class_from_generic): Don't call
12685         mono_class_initialize_generic() if this is a dynamic instance;
12686         ie. it's being created from a TypeBuilder.
12687         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12688         `class->byval_arg.type'.
12689
12690         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12691         to `inflate_method' and made static.
12692         (mono_reflection_inflate_field): Removed.
12693         (mono_reflection_generic_inst_initialize): New public method.
12694
12695         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12696         `ctors' and `fields'; added `initialized'.
12697
12698 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12699
12700         * debug-helpers.c (mono_method_full_name): Fix output for empty
12701         namespaces.
12702
12703 2004-02-12  Martin Baulig  <martin@ximian.com>
12704
12705         * class.h (MonoClassField): Added `MonoType *generic_type'.
12706
12707         * reflection.c (mono_image_get_fieldref_token): Added support for
12708         instantiated generic types.
12709         (field_encode_inflated_field): Removed.
12710         (mono_image_get_inflated_field_token): Removed.
12711         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12712
12713         * reflection.h (MonoReflectionInflatedField): Removed.
12714
12715 2004-02-12  Martin Baulig  <martin@ximian.com>
12716
12717         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12718         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12719
12720         * reflection.c (mono_image_get_methodspec_token): Take a
12721         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12722         (mono_image_create_token): Check whether we have a
12723         `method->signature->gen_method' and call
12724         mono_image_get_methodspec_token() if appropriate.
12725         (inflated_method_get_object): Removed.
12726         (mono_reflection_bind_generic_method_parameters): Return a
12727         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12728         (mono_reflection_inflate_method_or_ctor): Likewise.
12729
12730         * reflection.h (MonoReflectionInflatedMethod): Removed.
12731
12732 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12733
12734         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12735         for custom valuetype marshalling.
12736
12737         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12738
12739 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12740
12741         * icall.c: fixed WSAGetLastError_internal name.
12742
12743 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12744
12745         * threads.c (mono_thread_attach): Allow this to be called multiple
12746         times for a thread.
12747         
12748         * threads.c (build_wait_tids): Do not wait for ourselves.
12749
12750         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12751         appdomain list is empty.
12752
12753         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12754         memory returned by mono_string_builder_to_utf16, since it points into
12755         managed memory. Thanks to Bernie Solomon for noticing this.
12756
12757         * icall.c: Add AppDomainSetup icalls.
12758
12759         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12760
12761         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12762         types.
12763
12764         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12765         custom attributes to the method_aux struct. Also fix array indexes etc.
12766
12767         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12768         
12769 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12770
12771         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12772         (both static and runtime) and reduce startup time.
12773
12774 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12775
12776         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12777         AsAny marshalling conversion instead of crashing.
12778
12779         * marshal.c: Fix warnings.
12780
12781 2004-02-09  Martin Baulig  <martin@ximian.com>
12782
12783         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12784
12785         * reflection.h (MonoReflectionInflatedMethod): Removed the
12786         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12787
12788         * reflection.c (method_encode_methodspec): Removed the `method'
12789         argument; we get it from `gmethod->declaring'.
12790         (inflated_method_get_object): Removed the `declaring' argument.
12791
12792 2004-02-09  Martin Baulig  <martin@ximian.com>
12793
12794         * class.h (MonoGenericMethod): New type.
12795         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12796         `generic_method'.
12797
12798         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12799         a `MonoGenericMethod *gen_method' one.
12800
12801         * class.c (mono_class_inflate_generic_type): Take an additional
12802         `MonoGenericMethod * argument.  This is only non-NULL if we're
12803         inflating types for a generic method.   
12804         (mono_class_inflate_generic_signature): Renamed to
12805         inflate_generic_signature() and made static; take a
12806         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12807         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12808         instead of a `MonoGenericInst *' one.
12809         (mono_class_inflate_generic_method): Likewise.
12810
12811         * reflection.c (encode_generic_method_sig): Take a
12812         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12813         (method_encode_methodspec): Likewise.
12814         (inflated_method_get_object): Likewise. 
12815
12816         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
12817         field with a `MonoGenericMethod *gmethod' one.  
12818
12819 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
12820
12821         * class.h (mono_class_has_parent): add parens to expansion
12822         so you can ! this.
12823
12824 2004-02-08  Martin Baulig  <martin@ximian.com>
12825
12826         * image.h (MonoImage): Removed `generics_cache'.
12827
12828         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
12829         instead of a `MonoType *' argument; removed the `inflate_methods'
12830         argument.  Don't inflate methods here.
12831
12832         * loader.c (find_method): If it's a generic instance, call
12833         mono_class_init() on the `sclass->generic_inst->generic_type'.
12834
12835         * metadata.c (mono_type_size): Make this work on uninitialized
12836         generic instances; call it on the `ginst->generic_type's class.
12837
12838         * reflection.c (mono_reflection_bind_generic_parameters): Call
12839         mono_class_from_generic() to create the `ginst->klass'.
12840
12841 2004-02-08  Martin Baulig  <martin@ximian.com>
12842
12843         * class.h (MonoClass): Changed type of `generic_inst' from
12844         `MonoType *' to `MonoGenericInst *'.
12845
12846 2004-02-08  Martin Baulig  <martin@ximian.com>
12847
12848         * icall.c (ves_icall_Type_BindGenericParameters): Just call
12849         mono_type_get_object(), this is now creating a `MonoGenericInst'
12850         for MONO_TYPE_GENERICINST.
12851         (ves_icall_MonoGenericInst_GetParentType): Likewise.
12852         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
12853
12854         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
12855         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
12856         (inflated_method_get_object): Added `MonoClass *refclass' argument.
12857         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
12858         and reflected type.
12859
12860         * reflection.h (MonoReflectionInflatedMethod): Removed
12861         `declaring_type' and `reflected_type'.
12862
12863 2004-02-08  Martin Baulig  <martin@ximian.com>
12864
12865         * class.h (MonoGenericInst): Added `MonoType *parent' and
12866         `MonoType **ifaces'.
12867
12868         * reflection.h (MonoReflectionGenericInst): Removed `klass',
12869         `parent' and `interfaces'.
12870
12871         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12872         `MonoType *' argument and return a `MonoType *'.
12873
12874         * icall.c
12875         (ves_icall_MonoGenericInst_GetParentType): New interncall.
12876         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
12877
12878 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12879
12880         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
12881         valuetype marshalling.
12882
12883 2004-02-06  Martin Baulig  <martin@ximian.com>
12884
12885         * class.c
12886         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
12887         (my_mono_class_from_generic_parameter): Likewise.
12888
12889 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
12890
12891         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
12892         contents of the symbol files lazily.
12893
12894         * object.h (MonoThread): Add 'name' and 'name_len' fields.
12895
12896         * threads.h threads.c icall.c: New icalls for getting and setting the
12897         threads name.
12898
12899 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
12900
12901         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
12902         Raise an exception when the domain is not found.
12903
12904 2004-02-03  Martin Baulig  <martin@ximian.com>
12905
12906         * reflection.c (mono_image_get_methodspec_token): Use the
12907         uninflated signature; fixes gen-33.
12908
12909 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
12910
12911         * gc.c threads.c: Make the finalizer thread a normal managed thread so
12912         the finalizer code can use thread functionality.
12913
12914         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
12915         the finalizer thread.
12916
12917         * threads.c: Make some functions more robust.
12918
12919         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
12920
12921         * metadata.h: Add new marshalling conventions.
12922
12923         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
12924         stringbuilder marshalling. Fixes #53700.
12925
12926         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
12927
12928         * reflection.c (mono_image_get_type_info): Save declarative security
12929         info.
12930
12931         * reflection.c (mono_image_get_field_info): Handle uninitialized 
12932         unmanaged fields as well.
12933
12934         * appdomain.c: Bump corlib version.
12935
12936 2004-02-01  Martin Baulig  <martin@ximian.com>
12937
12938         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
12939         method type arguments.  
12940
12941 2004-01-30  Duncan Mak  <duncan@ximian.com>
12942
12943         * marshal.h: Add prototype for
12944         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
12945         and
12946         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
12947         fix the build.
12948
12949 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
12950
12951         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
12952         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
12953
12954 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12955
12956         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12957         custom marshalling of valuetypes.
12958
12959         * marshal.c: Fix some warnings.
12960
12961 2004-01-29  Martin Baulig  <martin@ximian.com>
12962
12963         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
12964         for generic method parameters.
12965
12966         * reflection.c (method_encode_methodspec): Write the uninflated
12967         signature into the methodspec table.
12968         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
12969         is always the uninflated method.
12970         (reflection_methodbuilder_to_mono_method): Copy the generic
12971         parameters from the MethodBuilder into `header->gen_params'.
12972
12973 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
12974
12975         * class.c (mono_class_from_generic_parameter): Fix warning.
12976
12977 2004-01-27  Martin Baulig  <martin@ximian.com>
12978
12979         * class.c (mono_class_from_generic_parameter): Don't create
12980         `klass->methods' here.  
12981
12982 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
12983
12984         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
12985         extension since it does not work with libraries named lib<FOO>.dll.so.
12986
12987 2004-01-25  Martin Baulig  <martin@ximian.com>
12988
12989         * class.c (mono_class_inflate_generic_type): Added support for
12990         MONO_TYPE_GENERICINST.
12991
12992         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
12993         inflate methods on open constructed types.      
12994
12995 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12996
12997         * object.c: fire ProcessExit event in the root AppDomain after running
12998         Main. Fixes bug #53299.
12999
13000 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13001
13002         * socket-io.c: include the new socket-wrappers.h header.
13003         Use the wrappers instead of the unix socket functions to make the code
13004         more clear.
13005
13006 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13007
13008         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13009
13010         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13011         Fixes #22532.
13012
13013 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13014
13015         * reflection.c (mono_image_create_pefile): Handle the case when the
13016         entry point is not a MethodBuilder.
13017
13018         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13019         field to ReflectionMethod since it is not allways a builder.
13020
13021         * reflection.c (type_get_fully_qualified_name): New helper function to
13022         return the fully qualified name of a type.
13023
13024         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13025         type name for custom marshallers.
13026
13027         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13028
13029         * class.c (mono_class_setup_vtable): If a parent class already 
13030         implements an interface, use the implementing methods from that class.
13031         Fixes #53148.
13032
13033 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13034
13035         * threadpool.c: just return instead of ExitThread to allow for thread
13036         clean up earlier.
13037
13038 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13039
13040         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13041         when closing resource modules.
13042
13043         * reflection.c (mono_image_create_pefile): Handle the case when the
13044         entry point is not a MethodBuilder.
13045
13046         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13047         field to ReflectionMethod since it is not allways a builder.
13048
13049 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13050
13051         * marshal.c (mono_marshal_get_managed_wrapper): 
13052         mono_marshal_alloc takes native int so CONV_I
13053         the arg for 64bits.
13054
13055 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13056
13057         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13058         tokens in the cattr table. Fixes #53108.
13059
13060 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13061
13062         * loader.c: don't trim ".dll" before looking up in the config file.
13063         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13064
13065 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13066
13067         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13068         Return the module which contains the resource as well.
13069         (ves_icall_System_Reflection_Module_Close): New icall.
13070
13071         * appdomain.c: Bump corlib version number.
13072
13073         * image.c (mono_image_addref): New public function.
13074
13075         * assembly.c: Call mono_image_addref.
13076
13077         * reflection.c (mono_module_get_object): Increase reference count of 
13078         the image.
13079
13080         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13081         Fixes #22532.
13082
13083         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13084         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13085         proper exceptions on DllImport problems.
13086
13087 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13088
13089         * class.c, metadata.c: eliminate CSIZE macro.
13090
13091 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13092
13093         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13094         * object.h: Added async_callback field in MonoAsyncResult.
13095         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13096         * verify.c: Added async_callback in MonoAsyncResult layout.
13097
13098 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13099
13100         * reflection.c (mono_reflection_get_custom_attrs): Add support
13101         for Modules.
13102
13103 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13104
13105         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13106         marshalling.
13107         (mono_marshal_method_from_wrapper): Add null pointer check.
13108
13109 2004-01-16  Martin Baulig  <martin@ximian.com>
13110
13111         * debug-mono-symfile.h: Set version number to 36 and reflect
13112         latest symbol writer changes.
13113
13114 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13115
13116         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13117         multi-dimensional arrays.
13118         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13119         (mono_class_from_mono_type): Use bounded_array_class_get.
13120         
13121         * class.c (mono_bounded_array_class_get): New function which takes
13122         a 'bounded' bool argument to distinguish vectors from one dimensional
13123         arrays.
13124
13125         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13126         bounded_array_class_get if the array has bounds.
13127
13128         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13129         Search modules loaded using AssemblyBuilder:AddModule as well.
13130
13131 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13132
13133         * appdomain.c: increased corlib version.
13134         * filewatcher.c: removed g_print.
13135         * icall.c:
13136         (get_property_info): only allocate what is actually requested.
13137         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13138
13139 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13140
13141         * Makefile.am: added filewatcher.[ch]
13142         * filewatcher.[ch]: FileSystemWatcher runtime support.
13143         * icall.c: added new FSW icalls.
13144
13145 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13146
13147         * string-icalls.c: fix stringbuilder regression as suggested by
13148         Iain McCoy <iain@mccoy.id.au>.
13149
13150 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13151
13152         * process.c (process_read_stringtable_block): Recognize '007f' as
13153         a language neutral stringtable block.
13154
13155 2004-01-12  Patrik Torstensson
13156
13157         * object.h (MonoStringBuilder) : Changed layout to support our
13158         new stringbuilder class.
13159         * marshal.c: Change marshalling to support the new layout of 
13160         string builder.
13161         * appdomain.c: increased version number because new layout of
13162         string builder.
13163
13164 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13165
13166         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13167         assembly name as an string instead of an AssemblyName, since it is
13168         easier to extract info from it.
13169
13170         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13171         the culture subdirectories too. Fixes #52231.
13172
13173 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13174
13175         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13176         It takes 2 new parameters with an optional name for the method to look
13177         for and case ignoring info.
13178
13179         * threadpool.c: removed unused variable.
13180
13181 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13182
13183         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13184         It takes 2 new parameters with an optional name for the property to look
13185         for and case ignoring info.
13186         Fixes bug #52753.
13187
13188 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13189
13190         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13191         Fix #52451.
13192
13193 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13194
13195         * appdomain.c:
13196         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13197         Fixes bug #52630.
13198
13199 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13200
13201         * reflection.c: Add support for more than one unmanaged resource.
13202
13203         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13204         in field->def_value, as done in all other cases.
13205
13206         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13207         TypeBuilders.
13208
13209         * reflection.c (mono_reflection_create_runtime_class): Remove 
13210         errorneous assignment to klass->element_class, since it is already
13211         done in mono_reflection_setup_internal_class.
13212
13213 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13214
13215         * gc.c: added missing LeaveCriticalSection.
13216         * icall.c: indented a couple of lines.
13217         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13218         if we call EndInvoke inside a callback. Fixes bug #52601.
13219
13220 2004-01-07  Martin Baulig  <martin@ximian.com>
13221
13222         * mono-debug-debugger.h
13223         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13224
13225 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13226
13227         * appdomain.c: Use messages in NotImplementedException.
13228
13229         * exception.c (mono_get_exception_not_implemented): Now this takes
13230         a message argument.
13231
13232         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13233         exception instead of g_asserting an aborting when something is not
13234         implemented.
13235
13236         Add some inline docs.
13237
13238 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13239
13240         * reflection.h: Update after changes to object layout.
13241
13242         * reflection.c: Implement saving of unmanaged aka win32 resources.
13243
13244         * appdomain.c: Bump version number.
13245
13246         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13247         Handle missing domains gracefully.
13248
13249 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13250
13251         * file-io.c : On Windows, there are much more invalid_path_chars.
13252
13253 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13254
13255         * class.h, object.c: prepare for GetType () speedup.
13256
13257 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13258
13259         * profiler.c: workaround for --profile null reference exception on
13260           cygwin. Patch by Patrik Torstensson.
13261
13262 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13263
13264         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13265         make work for unaligned access.
13266
13267 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13268
13269         * class.c: small cleanup (class->fields [i] -> field).
13270         * image.c: check address of metadata is valid.
13271
13272 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13273
13274         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13275         search the list of loaded assemblies.
13276
13277         * reflection.c (mono_reflection_type_from_name): Use 
13278         mono_assembly_loaded instead of mono_image_loaded.
13279
13280         * reflection.c: Fix warnings.
13281
13282 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13283
13284         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13285         is dynamic. This is needed since an assembly can contain both dynamic and
13286         non-dynamic images.
13287
13288         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13289         assembly->dynamic.
13290
13291         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13292
13293         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13294         to store modules loaded using AddModule.
13295
13296         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13297         on Modules.
13298
13299         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13300
13301         * reflection.c (mono_image_fill_export_table_from_module): New function to
13302         fill out the EXPORTEDTYPES table from a module.
13303
13304         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13305         into a separate function. Also handle loaded non-dynamic modules.
13306
13307         * reflection.c (mono_image_basic_init): Fix memory allocation.
13308
13309         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13310
13311         * assembly.c (mono_assembly_load_references): Make this public.
13312
13313 2003-12-19  Martin Baulig  <martin@ximian.com>
13314
13315         * class.c (mono_class_initialize_generic): Made this static, take
13316         a `MonoGenericInst *' instead of a `MonoClass *'.
13317         (mono_class_from_generic): Call mono_class_initialize_generic()
13318         unless we're already initialized or being called from
13319         do_mono_metadata_parse_generic_inst().
13320
13321         * class.h (MonoGenericInst): Added `initialized' and
13322         `init_pending' flags.
13323
13324         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13325         `mono_class_init (gklass)' or mono_class_initialize_generic()
13326         here; set `generic_inst->init_pending' while parsing the
13327         `type_argv'.
13328
13329 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13330
13331         * locales.c: include string.h for memxxx prototypes
13332
13333 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13334
13335         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13336         constructor when accessing literal fields.
13337
13338 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13339
13340         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13341
13342         * reflection.c (assembly_add_resource_manifest): New function to fill
13343         the MANIFESTRESOURCE table.
13344
13345         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13346
13347         * reflection.h: Update to changes in class layout.
13348
13349         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13350         Reenable call to mono_runtime_is_shutting_down ().
13351
13352         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13353         determine if the runtime is shutting down.
13354
13355 2003-12-16  Jackson Harper <jackson@ximian.com>
13356
13357         * icall.c: comment out call to mono_runtime_is_shutting_down to
13358         fix build.
13359         
13360 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13361
13362         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13363         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13364
13365 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13366
13367         * reflection.c: move definition of swap_with_size
13368         to before its first call
13369
13370 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13371
13372         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13373
13374         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13375         icall.
13376
13377         * object.c: Fix warnings.
13378
13379         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13380         members if FlattenHierarchy is set.
13381
13382         * reflection.c (mono_image_add_decl_security): New function to emit
13383         declarative security.
13384
13385         * reflection.h reflection.c: Add support for declarative security.
13386
13387         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13388         
13389 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
13390
13391         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13392         
13393         * appdomain.c verify.c: Moved corlib version checking into its own
13394         function in appdomain.c since it needs to create vtables etc.
13395
13396 2003-12-13  Patrik Torstensson <p@rxc.se>
13397
13398         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
13399         instead of unwrapped server.
13400
13401 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
13402
13403         * verify.c (check_corlib): Fix field index.
13404
13405 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
13406
13407         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
13408         GetGacPath icall.
13409
13410 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
13411
13412         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
13413         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
13414         cope with sizeof(size_t) != sizeof(guint32).
13415
13416 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13417
13418         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
13419         in case of failure.
13420
13421 2003-12-10  Mark Crichton <crichton@gimp.org>
13422
13423         * icall.c: removed the GetNonZeroBytes.  We now handle this case
13424         in managed code.
13425
13426         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
13427
13428 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
13429
13430         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
13431         marked as deleted.
13432
13433 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
13434
13435         * verify.c (check_corlib): Handle the case when the version field is 
13436         initialized by a static constructor.
13437
13438 2003-12-08  Patrik Torstensson  <p@rxc.se>
13439
13440     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
13441
13442 2003-12-08  Martin Baulig  <martin@ximian.com>
13443
13444         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
13445         a MonoReflectionGenericParameter, also take the parameter index
13446         and name as arguments.
13447         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13448         (ves_icall_MonoGenericParam_initialize): New interncall.
13449         (ves_icall_Type_make_byref_type): New interncall.
13450
13451         * reflection.h (MonoReflectionGenericParam): Derive from
13452         MonoReflectionType, not just from MonoObject.  Added `refobj' and
13453         `index' fields.
13454
13455         * reflection.c (mono_reflection_define_generic_parameter): Create
13456         and return a new MonoReflectionGenericParam; don't initialize the
13457         constraints here.
13458         (mono_reflection_initialize_generic_parameter): New public method;
13459         initializes the constraints and creates the `param->pklass'.
13460
13461 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
13462
13463         * reflection.h reflection.c: Use the new fields 'num_types', 
13464         'num_fields' and 'num_methods' to track the number of types etc.
13465
13466         * verify.c (check_corlib): Check corlib version number.
13467
13468 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
13469
13470         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
13471         function works on all methods.
13472
13473 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
13474
13475         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
13476         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
13477         the custom_type_info flag of the transparent proxy.
13478         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
13479         objects that supports IRemotingTypeInfo.
13480         * object.h: Added custom_type_info field in transparent proxy.
13481
13482 2003-12-06  Martin Baulig  <martin@ximian.com>
13483
13484         * class.c (mono_class_create_from_generic): Removed.
13485         (mono_class_from_generic): Check `ginst->klass' before doing
13486         anything else.  This is important to fully support "recursive"
13487         generic types.
13488
13489         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
13490         empty `generic_inst->klass' before doing anything else.
13491
13492 2003-12-06  Dick Porter  <dick@ximian.com>
13493
13494         * verify.c: 
13495         * object.h:
13496         * icall.c:
13497         * locales.c: Use C structs to access class fields.  Don't do a
13498         conversion between MonoString and UChar because both are
13499         platform-endian UTF-16.  Compare now takes startindex and count
13500         parameters.  Add a char overload for IndexOf.  Speed up the
13501         invariant string IndexOf.
13502
13503 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
13504
13505         * Makefile.am (monosn_LDADD): Fix parallel build.
13506
13507 2003-12-04  Martin Baulig  <martin@ximian.com>
13508
13509         * icall.c
13510         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13511         (ves_icall_Type_make_array_type): New interncall.       
13512
13513 2003-12-04  Martin Baulig  <martin@ximian.com>
13514
13515         * locales.c: also change it in the !HAVE_ICU case.
13516
13517 2003-12-04  Dick Porter  <dick@ximian.com>
13518
13519         * icall.c:
13520         * locales.c: construct_compareinfo is now in CompareInfo, not
13521         CultureInfo.
13522
13523 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13524
13525         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13526         image->files array.
13527
13528         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13529         table as well.
13530
13531         * assembly.c (mono_assembly_load_references): Only load references
13532         once.
13533
13534         * class.c (mono_class_from_name): Avoid linear search of the 
13535         EXPORTEDTYPE table.
13536
13537         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13538
13539 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13540
13541         * image.h (MonoImage): Add 'field_cache' field.
13542
13543         * loader.c (mono_field_from_token): Cache field lookups.
13544         
13545         * reflection.c (mono_module_get_object): Fix name property.
13546
13547         * icall.c (ves_icall_get_enum_info): Update after changes to 
13548         mono_metadata_get_constant_index ().
13549
13550         * icall.c: Get rid of get_type_info icall, use a separate icall for
13551         each type property to avoid needless memory allocations. Fixes #51514.
13552
13553         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13554         to avoid needless binary searches.
13555
13556         * class.c (class_compute_field_layout): Move the initialization of
13557         field->def_value to mono_class_vtable ().
13558
13559         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13560         non-corlib types.
13561
13562         * object.c (mono_object_allocate): Make it inline.
13563
13564         * object.c (mono_object_allocate_spec): Make it inline.
13565         
13566 2003-12-02  Dick Porter  <dick@ximian.com>
13567
13568         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13569         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13570
13571 2003-12-01  Dick Porter  <dick@ximian.com>
13572
13573         * threads.c: Fix signature and call in CreateMutex and
13574         CreateEvent.
13575
13576 2003-12-01  Dick Porter  <dick@ximian.com>
13577
13578         * icall.c: 
13579         * locales.c: Implement string compares and searching
13580
13581         * object.h: Add extra Thread field
13582
13583 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13584
13585         * reflection.c (fixup_method): Add support for MonoCMethod.
13586
13587 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13588
13589         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13590
13591         * reflection.c (assembly_name_to_aname): Allow extra characters in
13592         assembly names. Fixes #51468.
13593
13594 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13595
13596         * exception.c (mono_exception_from_name_domain): New helper function.
13597
13598         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13599         exception object in the correct domain.
13600
13601         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13602         formatting + make a copy a the input data.
13603
13604         * loader.c (mono_get_method_from_token): Methods which contain
13605         native code do not have entries in the ImplMap.
13606
13607         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13608         Thanks to Gonzalo for spotting this.
13609         
13610         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13611         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13612
13613         * assembly.h (mono_assembly_load_from): Split the second part of 
13614         assembly loading into a new public function.
13615
13616         * exception.h (mono_get_exception_bad_image_format): New function.
13617
13618 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13619
13620         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13621         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13622         
13623         * icall.c: Add new icall for creating dynamic methods.
13624
13625         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13626
13627         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13628
13629         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13630         create a dynamic method.
13631
13632         * reflection.c (resolve_object): New helper function.
13633
13634         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13635         which manipulate it so they can also work on dynamic methods.
13636
13637         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13638         creating the MonoReflectionMethodAux structure if it is not needed.
13639         
13640         * reflection.h verify.c: Update after changes to object layout.
13641
13642         * reflection.c (method_builder_encode_signature): Fix compilation on
13643         gcc 2.95.x.
13644
13645 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13646
13647         * appdomain.h: Added support for context static fields. Added static_data
13648           field to MonoAppContext and renamed thread_static_fields to a more
13649           generic special_static_fields in MonoAppDomain, since it can now contain
13650           context static fields.
13651         * domain.c: Updated hashtable name.
13652         * object.c: Replaced field_is_thread_static() for a more generic
13653           field_is_special_static() which also checks for context static attribute.
13654           In mono_class_vtable(), added support for static context fields.
13655         * threads.c: Changed methods that manage thread static fields to more
13656           generic methods so they can be reused both for thread and context static
13657           data.
13658         * threads.h: Declared some new methods.
13659
13660 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13661
13662         * reflection.h: Update after changes to the managed types.
13663
13664         * reflection.c (encode_custom_modifiers): New helper function.
13665
13666         * reflection.c (method_encode_signature): Emit custom modifiers.
13667
13668         * reflection.c (field_encode_signature): Emit custom modifiers.
13669
13670 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13671
13672         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13673
13674         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13675         implementation.
13676
13677         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13678         icall.
13679
13680         * object.c (mono_field_get_value_object): New function.
13681
13682         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13683         specific.
13684
13685 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13686
13687         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13688         return a preallocated out-of-memory exception instance.
13689
13690         * object.c (out_of_memory): Use the new function.
13691
13692         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13693         flag is before the custom modifiers. Fixes #49802.
13694
13695 2003-11-16  Martin Baulig  <martin@ximian.com>
13696
13697         * class.c (mono_class_is_open_constructed_type): Implemented the
13698         MONO_TYPE_GENERICINST case.
13699
13700 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13701
13702         * assembly.c (mono_assembly_fill_assembly_name): New function to
13703         fill out the MonoAssemblyName structure.
13704         (mono_assembly_open): Use the new function.
13705
13706         * icall.c (fill_reflection_assembly_name): New helper function.
13707
13708         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13709         new function.
13710
13711         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13712
13713 2003-11-15  Martin Baulig  <martin@ximian.com>
13714
13715         * class.c (mono_class_is_open_constructed_type): New public
13716         function; checks whether a type is an open constructed type,
13717         ie. whether it still contains type parameters.
13718         (mono_class_inflate_generic_type): If we're a type parameter and
13719         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13720         type.
13721
13722         * class.h (MonoGenericInst): Added `guint32 is_open'.
13723
13724         * loader.c (method_from_methodspec): Check whether we're an open
13725         or closed constructed type and set `ginst->is_open'.
13726
13727         * reflection.c (mono_reflection_bind_generic_parameters): Check
13728         whether we're an open or closed constructed type and set
13729         `ginst->is_open'.
13730         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13731         from open constructed types.
13732
13733 2003-11-15  Martin Baulig  <martin@ximian.com>
13734
13735         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13736         a generic instance (instead of a generic type declaration) with
13737         unbound generic parameters, bind them to our actual types.
13738
13739 2003-11-14  Martin Baulig  <martin@ximian.com>
13740
13741         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13742
13743         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13744         an interface type, populate `res->interfaces' with instantiated
13745         versions of all the interfaces we inherit.
13746
13747 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13748
13749         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13750         when MONO_PATH is set but doesn't contain the install dir.
13751
13752 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13753
13754         * icall.c:
13755         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13756         it's also implemented in base classes. Fixes bug #50927.
13757
13758 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13759
13760         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13761         if this method is called from a finalizer. Fixes #50913.
13762
13763 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13764
13765         * threads.c: Implement VolatileRead/VolatileWrite
13766
13767         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13768
13769 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13770
13771         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13772         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13773         2.95.3.
13774
13775         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13776         from Peter Ross (pro@missioncriticalit.com).
13777         
13778 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13779
13780         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13781
13782 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13783
13784         * assembly.c (mono_assembly_load_references): Disable check because it
13785         triggers on older corlibs which lots of people have.
13786
13787 2003-11-12  Jackson Harper  <jackson@ximian.com>
13788
13789         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13790         load corlib.dll if mscorlib.dll is not found.
13791         * assembly.h: Remove corlib name define.
13792         * class.c:
13793         * domain.c:
13794         * image.c: Change corlib name to mscorlib.
13795         
13796 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13797
13798         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13799
13800 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13801
13802         * appdomain.h: Added loader_optimization here to sync with the C#
13803         code, and add disallow_binding_redirects field.
13804
13805 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13806
13807         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13808
13809         * reflection.c (mono_image_build_metadata): Fix crash on modules
13810         with no types.
13811
13812         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
13813
13814         * icall.c (ves_icall_get_method_info): Return callingConvention as
13815         well.
13816
13817         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
13818         namespaces from the EXPORTEDTYPE table as well.
13819
13820         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
13821         from all modules inside the assembly.
13822         
13823 2003-11-11  Martin Baulig  <martin@ximian.com>
13824
13825         * reflection.c (mono_reflection_bind_generic_parameters): Make
13826         this work for interfaces.
13827
13828 2003-11-11  Martin Baulig  <martin@ximian.com>
13829
13830         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
13831
13832 2003-11-11  Martin Baulig  <martin@ximian.com>
13833
13834         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
13835         "MonoInflatedMethod" and "MonoInflatedCtor".
13836
13837 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13838
13839         * reflection.c (resolution_scope_from_image): Use the assembly table
13840         from the manifest module, since other modules don't have it.
13841
13842         * debug-helpers.c (mono_type_full_name): New helper function.
13843
13844         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
13845
13846         * image.c (mono_image_load_file_for_image): New public function which
13847         is a replacement for the load_file_for_image in class.c.
13848
13849         * assembly.c (mono_assembly_load_module): A wrapper for the function
13850         above which does assembly association and reference loading too.
13851
13852         * class.c (mono_class_from_name): Call mono_assembly_load_module.
13853
13854 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13855
13856         * appdomain.c: not all of the attributes for the full assembly name
13857         are required and the order doesn't matter. Fixes bug #50787.
13858
13859 2003-11-10  Dick Porter  <dick@ximian.com>
13860
13861         * locales.c: Use platform-endian UTF16
13862
13863 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13864
13865         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13866         
13867 2003-11-10  Martin Baulig  <martin@ximian.com>
13868
13869         * metadata.c
13870         (mono_metadata_load_generic_params): Make this actually work.
13871
13872         * reflection.c (mono_reflection_bind_generic_parameters): If our
13873         parent is a generic instance, pass all the `types' to it, no
13874         matter whether it has the same number of type parameters or not.
13875
13876 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
13877
13878         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
13879
13880         * assembly.c (mono_assembly_load_references): Move the image<->assembly
13881         assignment code to this function so it gets called recursively for all
13882         modules.
13883
13884         * image.c (load_modules): Remove the assembly assignment since it is
13885         now done by mono_assembly_load_references.
13886         
13887         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13888         Add 'module' argument.
13889         (mono_module_get_types): New helper function.
13890         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
13891
13892 2003-11-08  Martin Baulig  <martin@ximian.com>
13893
13894         * class.c (mono_class_inflate_generic_method): Interface method
13895         don't have a header.
13896
13897         * reflection.c (mono_image_get_methodspec_token): Take an
13898         additional `MonoGenericInst *' argument instead of reading it from
13899         the header; this is necessary to support interfaces.
13900         (mono_image_create_token): Pass the `MonoGenericInst *' from the
13901         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
13902         (inflated_method_get_object): Take an additional `MonoGenericInst *'
13903         argument.
13904
13905         * reflection.h (MonoReflectionInflatedMethod): Added
13906         `MonoGenericInst *ginst'.
13907
13908 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
13909
13910         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
13911
13912 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
13913
13914         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
13915
13916 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
13917
13918         * reflection.c 
13919         (reflection_methodbuilder_from_method_builder):
13920         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
13921         initialize a ReflectionMethodBuilder structure.
13922         (mono_image_get_methodbuilder_token):
13923         (mono_image_get_ctorbuilder_token): New functions to emit memberref
13924         tokens which point to types in another module inside the same assembly.
13925
13926         * reflection.c: Use the new helper functions.
13927         
13928         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
13929
13930         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
13931         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
13932
13933         * reflection.c (resolution_scope_from_image): Emit a moduleref if
13934         neccesary.
13935
13936         * reflection.c (mono_image_build_metadata): Emit metadata only for the
13937         current module. Emit the manifest only for the main module.
13938
13939         * reflection.c (mono_image_create_token): Add assertion when a 
13940         memberref needs to be created.
13941
13942         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
13943
13944         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
13945         larger buffer for the custom attribute blob. Fixes #50637.
13946         
13947 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13948
13949         * threadpool.c: notify listener on async processing handles after
13950         invoking the async callback. Thanks to Zoltan.
13951
13952 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13953
13954         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
13955         avoid code duplication.
13956
13957         * reflection.h (MonoDynamicImage): New type which is currently unused,
13958         but will be used through the ref.emit code in place of 
13959         MonoDynamicAssembly.
13960
13961         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13962         object layout.
13963
13964         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
13965         a MonoDynamicImage instead of just a MonoImage.
13966         
13967         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
13968         icalls to ModuleBuilder but keep their semantics, so they will work
13969         with moduleb->assemblyb. This will change later.
13970         
13971 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13972
13973         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
13974         object layout.
13975
13976         * reflection.c (mono_image_build_metadata): Avoid creation of a default
13977         main module, since it is now done by the managed code.
13978
13979 2003-11-03  Martin Baulig  <martin@ximian.com>
13980
13981         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
13982         `ginst->klass' here.
13983         (method_encode_methodspec): Don't use the `ginst->generic_method's
13984         klass if it's a generic instance, use `ginst->klass' in this case.
13985
13986 2003-11-03  Martin Baulig  <martin@ximian.com>
13987
13988         * reflection.c (mono_image_get_generic_method_param_info):
13989         Removed, use mono_image_get_generic_param_info() instead.
13990         (mono_image_get_type_info): Write the GenericParam table before
13991         the Method table.  This is neccessary because in the GenericParam
13992         table, type parameters of the class (ie. '!0' etc.) must come
13993         before the ones from its generic methods (ie. '!!0' etc).
13994
13995 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
13996
13997         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
13998
13999 2003-11-02  Martin Baulig  <martin@ximian.com>
14000
14001         * reflection.c (create_generic_typespec): Take a
14002         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14003         the generic parameters from it.
14004
14005 2003-11-02  Martin Baulig  <martin@ximian.com>
14006
14007         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14008         instead of a `MonoClassField *' since we just need the type.
14009         (create_generic_typespec): New static function.  Creates a
14010         TypeSpec token for a generic type declaration.
14011         (mono_image_get_generic_field_token): New static function.
14012         (mono_image_create_token): If we're a FieldBuilder in a generic
14013         type declaration, call mono_image_get_generic_field_token() to get
14014         the token.
14015
14016 2003-11-02  Martin Baulig  <martin@ximian.com>
14017
14018         * reflection.h
14019         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14020         `MonoReflectionGenericInst *declaring_type' and
14021         `MonoReflectionGenericInst *reflected_type' fields.
14022
14023         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14024         `MonoReflectionGenericInst *declaring_type' and a
14025         `MonoReflectionGenericInst *reflected_type' argument instead of a
14026         single `MonoReflectionGenericInst *type' one.  Set
14027         `res->declaring_type' and `res->reflected_type' from them.
14028         (mono_reflection_inflate_field): Likewise.      
14029
14030 2003-11-02  Martin Baulig  <martin@ximian.com>
14031
14032         * class.c (mono_class_setup_vtable): Don't store generic methods
14033         in the vtable.  
14034
14035 2003-11-02  Martin Baulig  <martin@ximian.com>
14036
14037         * reflection.h (MonoReflectionGenericInst): Added
14038         `MonoReflectionType *declaring_type'.
14039
14040         * reflection.c (mono_reflection_bind_generic_parameters): Use
14041         `if (tb->parent)' instead of `klass->parent'.
14042
14043 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14044
14045         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14046         with an empty ASSEMBLY table.
14047
14048         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14049         variable in the inner and outer loops.
14050
14051 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14052
14053         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14054         argument.
14055
14056         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14057         
14058         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14059         icalls. Instead, do everything in managed code. This is needed since
14060         it is hard to restore the original domain etc. in unmanaged code in the
14061         presence of undeniable exceptions.
14062
14063         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14064         New icalls to push and pop appdomain refs.
14065
14066 2003-10-31  Martin Baulig  <martin@ximian.com>
14067
14068         * class.c (inflate_generic_type): Renamed to
14069         mono_class_inflate_generic_type() and made it public.
14070
14071         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14072         New interncall.
14073
14074         * loader.c (mono_field_from_memberref): Also set the retklass for
14075         typespecs.
14076
14077         * fielder.c (mono_image_get_inflated_field_token): New static
14078         method; creates a metadata token for an inflated field.
14079         (mono_image_create_token, fixup_method): Added support for
14080         "MonoInflatedField".
14081         (fieldbuilder_to_mono_class_field): New static function.
14082         (mono_reflection_inflate_field): New public function.
14083
14084         * reflection.h
14085         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14086         (MonoReflectionInflatedField): New typedef.     
14087
14088 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14089
14090         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14091         for Solaris and other platforms without s6_addr16
14092
14093 2003-10-30  Martin Baulig  <martin@ximian.com>
14094
14095         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14096         argument instead of two.
14097         (mono_class_inflate_generic_signature): Likewise.
14098         (inflate_generic_header): Likewise.
14099         (mono_class_inflate_generic_method): Likewise.  In addition, if
14100         `ginst->klass' is set, it becomes the new `method->klass'.
14101
14102         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14103         field.
14104
14105         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14106         first byte. [FIXME]
14107         (method_encode_methodspec): If we have generic parameters, create
14108         a MethodSpec instead of a MethodRef.
14109         (fixup_method): Added support for "MonoInflatedMethod" and
14110         "MonoInflatedCtor".
14111         (mono_image_create_token): Added support for "MonoInflatedMethod"
14112         and "MonoInflatedCtor".
14113         (inflated_method_get_object): New static function; returns a
14114         managed "System.Reflection.MonoInflatedMethod" object.
14115         (mono_reflection_bind_generic_method_parameters): Return a
14116         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14117         (mono_reflection_inflate_method_or_ctor): Likewise.
14118         (mono_image_get_generic_method_param_info): Initialize unused
14119         fields to zero.
14120         (mono_image_get_generic_param_info): Likewise.
14121
14122         * reflection.h (MonoReflectionInflatedMethod): New public
14123         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14124         "S.R.MonoInflatedCtor" classes.
14125
14126         * loader.c (method_from_memberref): If we're a TypeSpec and it
14127         resolves to a generic instance, inflate the method.
14128
14129 2003-10-28  Dick Porter  <dick@ximian.com>
14130
14131         * object.c (mono_runtime_run_main): Convert command-line arguments
14132         into utf8, falling back to the user's locale encoding to do so.
14133
14134 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14135
14136         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14137         at this time.
14138
14139         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14140
14141         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14142         up icalls at method definition time. Partially fixes #33569.
14143
14144 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14145
14146         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14147         marshalling of arrays. Fixes #50116.
14148
14149         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14150
14151         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14152         points to a vtable in the dying appdomain.
14153
14154         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14155         listeners into unmanaged code inside the lock.
14156
14157         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14158         domains and add some comments.
14159
14160 2003-10-25  Martin Baulig  <martin@ximian.com>
14161
14162         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14163
14164         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14165
14166         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14167         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14168         currently parsing.  Create the generic class and store it in
14169         `generic_inst->klass' before parsing the type arguments.  This is
14170         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14171         for an example.
14172         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14173         to support recursive typespec entries.
14174
14175         * class.c (mono_class_setup_parent): If our parent is a generic
14176         instance, we may get called before it has its name set.
14177         (mono_class_from_generic): Splitted into
14178         mono_class_create_from_generic() and mono_class_initialize_generic().
14179
14180 2003-10-25  Martin Baulig  <martin@ximian.com>
14181
14182         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14183         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14184         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14185         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14186
14187         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14188         (create_typespec): Likewise.
14189         (mono_reflection_bind_generic_parameters): Return a
14190         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14191         (mono_reflection_inflate_method_or_ctor): New public function.
14192
14193         * reflection.h (MonoReflectionGenericInst): New typedef.        
14194
14195 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14196
14197         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14198         inside the domain lock. Fixes #49993.
14199         
14200         * object.c (mono_class_vtable): When typed allocation is used, 
14201         allocate vtables in the GC heap instead of in the mempool, since the
14202         vtables contain GC descriptors which are used by the collector even
14203         after the domain owning the mempool is unloaded.
14204
14205         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14206
14207         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14208         reflect what it does. Also invalidate mempools instead of freeing
14209         them if a define is set.
14210
14211         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14212         of the appdomain.
14213         
14214         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14215         hold the finalizable objects in this domain.
14216
14217         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14218         appdomain.
14219
14220         * appdomain.c (mono_domain_set): New function to set the current
14221         appdomain, but only if it is not being unloaded.
14222
14223         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14224         appdomain which is being unloaded.
14225         
14226         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14227         unloading of the root appdomain.
14228
14229         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14230         icall to execute a method in another appdomain. Intended as a 
14231         replacement for InternalSetDomain, which can confuse the code 
14232         generation in the JIT.
14233
14234         * appdomain.c (mono_domain_is_unloading): New function to determine
14235         whenever an appdomain is unloading.
14236
14237         * appdomain.c (mono_domain_unload): New function to correctly unload
14238         an appdomain.
14239
14240         * assembly.c (mono_assembly_load_references): Check that an assembly
14241         does not references itself.
14242
14243         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14244         domain manually, it asks the finalizer thread to do it, then waits for
14245         the result. Also added a timeout.
14246
14247         * icall.c: Register the new icalls.
14248
14249         * threads.h threads.c: Export the mono_gc_stop_world and 
14250         mono_gc_start_world functions.
14251         
14252         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14253         function to fill out the mempool with 0x2a.
14254
14255 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14256
14257         * reflection.h (MonoReflectionMethodAux): New structure to store
14258         information which is rarely used, thus is not in the MonoMethod
14259         structure.
14260
14261         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14262         store the aux info.
14263
14264         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14265         and marshalling info into the aux structure.
14266
14267         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14268         from the aux structure.
14269
14270         * loader.c (mono_method_get_param_names): Retrieve the param names from
14271         the aux structure.
14272         
14273 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14274
14275         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14276         warning.
14277
14278 2003-10-21  Dick Porter  <dick@ximian.com>
14279
14280         * socket-io.c
14281         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14282         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14283
14284 2003-10-21  Martin Baulig  <martin@ximian.com>
14285
14286         * reflection.c (mono_reflection_bind_generic_parameters):
14287         `klass->parent' is NULL for interfaces.
14288
14289 2003-10-21  Martin Baulig  <martin@ximian.com>
14290
14291         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14292
14293 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14294
14295         * exception.c (mono_exception_from_name_msg): New helper function for
14296         creating exceptions and initializing their message field.
14297
14298         * exception.c: Simplify functions using the new helper.
14299
14300         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14301         New function.
14302
14303         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14304         mono_raise_exception, since otherwise gcc doesn't generate the function
14305         epilog for raise_exception, confusing the stack unwinding in the JIT.
14306         Fixes #45043.
14307
14308         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14309         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14310         Fixes #49499.
14311
14312 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14313
14314         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14315         utf8.
14316
14317 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14318
14319         * icall.c: Removed GetUninitializedObject method because
14320           AllocateUninitializedClassInstance does the same.
14321
14322 2003-10-18  Martin Baulig  <martin@ximian.com>
14323
14324         * class.c (inflate_generic_signature): Renamed to
14325         mono_class_inflate_generic_signature() and made it public.
14326         (my_mono_class_from_generic_parameter): New static function; if we
14327         don't already have the generic parameter's MonoClass, create a
14328         very simple one which is just used internally in the runtime and
14329         not passed back to managed code.
14330
14331         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14332
14333         * metadata.h (MonoMethodSignature): Moved the
14334         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14335         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14336
14337         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14338         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14339         interncall on the MonoMethod class, not on MethodInfo.
14340         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14341         calling mono_reflection_bind_generic_method_parameters() directly.
14342
14343         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14344         return the already computed `method->signature'.
14345         (method_from_methodspec): New static function to load a method
14346         from a MethodSpec entry.
14347         (mono_get_method_from_token): Call the new method_from_methodspec()
14348         for MethodSpec tokens.  
14349         (mono_get_method_from_token): If we're a generic method, load the
14350         type parameters.
14351
14352         * reflection.c (mono_image_get_memberref_token): Allow
14353         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14354         table.
14355         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14356         (mono_image_create_token): First check whether it's a generic
14357         method (so we'd need to create a MethodSpec), then do the other
14358         two alternatives.
14359         (mono_reflection_bind_generic_method_parameters): Return a
14360         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14361         called directly from the interncall.
14362
14363 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14364
14365         * reflection.c (load_public_key): Move loading of the public key
14366         into managed code.
14367
14368         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14369
14370         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14371         fields.
14372
14373         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14374         culture, hash_alg and public_key. Fixes #49555.
14375
14376 2003-10-17  Martin Baulig  <martin@ximian.com>
14377
14378         * class.h (MonoGenericInst): Moved this declaration here and added
14379         `MonoMethod *generic_method'.
14380
14381         * icall.c
14382         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14383         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14384
14385         * metadata.c (mono_metadata_type_equal): Two types of
14386         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
14387         index; ie. don't compare the address of the `MonoGenericParam'
14388         structure.
14389         (mono_metadata_load_generic_params): Removed the `MonoMethod
14390         *method' argument.
14391
14392         * metadata.h (MonoGenericInst): Moved declaration to class.h.
14393         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
14394
14395         * reflection.c (method_encode_signature): Encode the number of
14396         generic parameters.
14397         (encode_generic_method_sig): New static function.
14398         (method_encode_methodspec): New static function; creates an entry
14399         in the MethodSpec table for a generic method.
14400         (mono_image_get_methodspec_token): New static function.
14401         (mono_image_create_token): Call mono_image_get_methodspec_token()
14402         for generic methods.
14403         (mono_reflection_bind_generic_method_parameters): New public
14404         function.  Instantiates a generic method.
14405
14406 2003-10-16  Martin Baulig  <martin@ximian.com>
14407
14408         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
14409         *gen_params' here from MonoMethodHeader.
14410
14411         * metadata.c (mono_metadata_parse_method_signature): If we have
14412         generic parameters, initialize `method->gen_params' and then set
14413         the correct `type->data.generic_param' in all the parameters.
14414
14415 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
14416
14417         * threads.c (mono_threads_get_default_stacksize): New function to 
14418         return the default stacksize.
14419
14420         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
14421         termination of the finalizer thread, since the previous method had
14422         race conditions. Fixes #49628.
14423
14424         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
14425         as for the other managed threads.
14426
14427 2003-10-16  Martin Baulig  <martin@ximian.com>
14428
14429         * class.c (inflate_generic_signature): Copy `generic_param_count'
14430         and `gen_params'.
14431
14432         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
14433         New interncall.
14434
14435         * metadata.c (mono_metadata_parse_method_signature): Actually set
14436         the `method->generic_param_count' here.
14437         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
14438
14439 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
14440
14441         * object.h: Add a new field to TypedRef to simplify the implementation
14442         of the REFANY opcodes in the JIT.
14443
14444         * icall.c: Make use of the new field.
14445
14446         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
14447         dynamically.
14448
14449 2003-10-15  Martin Baulig  <martin@ximian.com>
14450
14451         * class.c (mono_class_from_gen_param): Renamed to
14452         mono_class_from_generic_parameter() and moved most of the
14453         functionality from mono_reflection_define_generic_parameter()
14454         here; ie. we create a "real" class here.
14455         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
14456         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
14457         previously been called.
14458
14459         * class.h (MonoGenericParam): Moved the declaration of this struct
14460         here from metadata.h and added `MonoMethod *method'.
14461
14462         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
14463         interncall.
14464
14465         * loader.c (mono_get_method_from_token): If we have any generic
14466         parameters, call mono_metadata_load_generic_params() to read them
14467         from the MONO_TABLE_GENERICPAR.
14468
14469         * metadata.c (mono_metadata_load_generic_params): Added
14470         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
14471
14472         * metadata.h (MonoMethodSignature): Replaced
14473         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
14474         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
14475
14476         * reflection.c (mono_reflection_define_generic_parameter): Moved
14477         most of the functionality into the new
14478         mono_class_from_generic_parameter(); set the `method' field if
14479         we're a method parameter.       
14480
14481 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
14482
14483         * marshal.c (emit_struct_conv): if native size is 0
14484         emit no code.
14485
14486 2003-10-14  Martin Baulig  <martin@ximian.com>
14487
14488         * icall.c: The generics API has changed in the spec since it was
14489         added to System.Type; these modifications make it match the spec
14490         again.
14491         (ves_icall_Type_GetGenericParameters): Renamed to
14492         `ves_icall_Type_GetGenericArguments'.
14493         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
14494         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
14495         `ves_icall_MonoType_get_HasGenericArguments'.
14496         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
14497         `ves_icall_MonoType_get_IsGenericParameter'.
14498         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
14499         this is no interncall anymore.
14500         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
14501         `ves_icall_TypeBuilder_get_IsGenericParameter'.
14502
14503 2003-10-14  Martin Baulig  <martin@ximian.com>
14504
14505         * reflection.c (mono_reflection_bind_generic_parameters): Also
14506         inflate generic methods if we're reading the class from IL.
14507
14508 2003-10-13  Martin Baulig  <martin@ximian.com>
14509
14510         * reflection.c (mono_reflection_define_generic_parameter): This
14511         method isn't called directly from the icall anymore; take a
14512         `MonoReflectionAssemblyBuilder *' so we can use this for type and
14513         method generic parameters.
14514         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
14515         (method_builder_encode_signature): Encode generic parameters.
14516         (mono_image_get_method_info): Write generic params to the
14517         MONO_TABLE_GENERICPARAM table.
14518
14519         * reflection.h (MonoReflectionMethodBuilder): Added
14520         `MonoArray *generic_params'.
14521
14522         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14523
14524         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14525         wrapper for mono_reflection_define_generic_parameter().
14526         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14527
14528 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14529
14530         * marshal.h: Add missing function to fix build.
14531
14532         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14533         the SetLastError pinvoke attribute.
14534
14535         * marshal.c (mono_marshal_set_last_error): New helper function called
14536         by the generated code.
14537         
14538         * marshal.c (mono_mb_emit_branch): New helper function.
14539
14540         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14541
14542         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14543         classes as parameters and return values of delegates. Fixes #29256. 
14544
14545 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14546
14547         * locales.c: use gint32 in non HAVE_ICU case
14548
14549 2003-10-11  Martin Baulig  <martin@ximian.com>
14550
14551         * mono-debug.c (mono_debug_add_method): Added a workaround for
14552         bug #48591.
14553
14554 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14555
14556         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14557         delegates passed to native code must use the STDCALL calling 
14558         convention. Fixes #35987.
14559
14560 2003-10-10  Martin Baulig  <martin@ximian.com>
14561
14562         * class.c (inflate_generic_type): If we're inflating for a generic
14563         type instance (and not for a generic method), return
14564         MONO_TYPE_MVAR unchanged.
14565
14566 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14567
14568         * string-icalls.c: Join ignores null strings in the source array.
14569         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14570         * threads.c: GetAvailableTheads is slightly more accurate.
14571
14572 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14573
14574         * threads.h threads.c : add mono_threads_set_default_stacksize
14575         and pass default to CreateThread calls.
14576
14577 2003-10-09  Dick Porter  <dick@ximian.com>
14578
14579         * icall.c:
14580         * locales.h:
14581         * locales.c: Internal calls for constructing CultureInfo and
14582         related objects from libicu (if its available.)
14583
14584 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14585
14586         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14587
14588 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14589
14590         * threadpool.c: added an argument to async_invoke_thread that is the
14591         item to process, pass the MonoAsyncResult to the thread start function
14592         when creating a new thread. This way we don't need to acquire any lock
14593         when we're creating a new thread. Readded a semaphore for faster
14594         response times (instead of that Sleep i added).
14595
14596 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14597
14598         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14599         get daylight change dates better on Windows, fix handling
14600         of platforms without tm_gmtoff.
14601
14602 2003-10-06  Martin Baulig  <martin@ximian.com>
14603
14604         * class.c (inflate_generic_method): Renamed to
14605         mono_class_inflate_generic_method() and made public.
14606         (mono_class_init): Don't inflate the generic methods here.
14607         (mono_class_from_generic): Added `gboolean inflate_methods'
14608         argument.  Inflate the methods here.
14609
14610         * loader.c (mono_method_get_param_names): Ignore instances of
14611         generic types for the moment.
14612
14613         * reflection.c (fixup_method): Added support for inflated methods.
14614         (mono_image_create_token): Use mono_image_get_methodref_token()
14615         for inflated methods.
14616         (mono_custom_attrs_from_param): Ignore instances of generic types
14617         for the moment.
14618         (mono_reflection_bind_generic_parameters): New public function.
14619         Moved all the functionality from
14620         ves_icall_Type_BindGenericParameters() here and added support for
14621         dynamic types.
14622         (mono_reflection_define_generic_parameter): Initialize
14623         `klass->methods' here.
14624
14625         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14626         functionality into mono_reflection_define_generic_parameter().
14627         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14628         TypeBuilder, return that TypeBuilder.
14629
14630 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14631
14632         * appdomain.c: removed mono_delegate_semaphore.
14633
14634         * threadpool.c:
14635         (mono_thread_pool_add): moved hash table creation inside and the thread 
14636         creation outside of the critical region.
14637         (mono_thread_pool_finish): removed obsolete code.
14638         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14639         continue or exit the thread depending on the queue.
14640
14641 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14642
14643         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14644         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14645         handle more bool marshalling options
14646
14647 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14648
14649         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14650         arrays of structs. Also add a more descriptive error message when
14651         a structure member is marshalled as LPArray.
14652
14653 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14654
14655         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14656         marshalling arrays of complex types. Fixes #29098. Also remove an
14657         usused and incomplete function.
14658
14659 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14660
14661         * gc.c: report heap_size - free_bytes as total memory allocated
14662         (bug#49362).
14663
14664 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14665
14666         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14667         fix timezone handling problems on Windows.
14668         
14669         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14670         asserts when the year is outside the range handled by ms the functions.
14671
14672         * class.c (setup_interface_offsets): If the class is an interface,
14673         fill out its interface_offsets slot.
14674
14675 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14676
14677         * threadpool.c: mark threadpool threads as background.
14678
14679 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14680
14681         * decimal.c - define DECINLINE to nothing if not using GCC
14682
14683 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14684
14685         * assembly.c: More refcount fixes.
14686
14687 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14688
14689         * string-icalls.c: if we're not trimming, return the same string.
14690         When not splitting, don't create a new string.
14691
14692 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14693
14694         * image.c:
14695         (mono_image_open): increment the ref_count inside the critical section.
14696
14697 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14698
14699         * image.c (mono_image_open): Fix reference counting bug.
14700
14701 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14702
14703         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14704         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14705         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14706         mono_lookup_pinvoke_call throws.        
14707
14708 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14709
14710         * reflection.c (mono_reflection_parse_type): Fix #49114.
14711
14712         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14713         temporary workaround for cygwin header problem.
14714
14715         * object.c (mono_object_isinst): Synchronize this with the code
14716         generated by the JIT for casts.
14717
14718 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14719
14720         * reflection.c (encode_type): Fix #38332.
14721
14722 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14723
14724         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14725         the original method from the wrapper method.
14726
14727 2003-09-25  Martin Baulig  <martin@ximian.com>
14728
14729         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14730         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14731         (ves_icall_Type_get_IsGenericInstance): New interncall.
14732
14733 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14734
14735         * object.c: fix cast warning in big endian code.
14736
14737 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14738
14739         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14740         
14741 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14742
14743         * assembly.c: don't call check_env from mono_assembly_load. It's
14744         already done once in mono_assemblies_init and may cause headaches when
14745         multiple threads are loading assemblies.
14746
14747 2003-09-19  Martin Baulig  <martin@ximian.com>
14748
14749         * reflection.c (mono_reflection_define_generic_parameter): Don't
14750         allocate `klass->methods', set `klass->flags' to
14751         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14752
14753 2003-09-18  Martin Baulig  <martin@ximian.com>
14754
14755         * class.c (mono_class_init): Don't create `class->methods' if it's
14756         already initialized.
14757
14758         * metadata.c (mono_metadata_load_generic_params): Make this
14759         actually work.
14760
14761         * reflection.c (mono_reflection_define_generic_parameter): Set
14762         parent class and interfaces from the constraints.
14763
14764         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14765         to keep this struct in sync with the declaration in TypeBuilder.cs.
14766
14767 2003-09-17  Martin Baulig  <martin@ximian.com>
14768
14769         * metadata.h (MonoType): Replaced the data's `int type_param'
14770         field with `MonoGenericParam *generic_param'.
14771         (MonoGenericParam): Added `MonoClass *klass'.
14772
14773         * class.c (mono_class_from_gen_param): Removed the
14774         `MonoImage *image' and `int type_num' arguments.
14775
14776         * metadata.c (mono_metadata_parse_generic_param): New static
14777         method; creates a MonoGenericParam which just contains the index.
14778         (do_mono_metadata_parse_type): Call
14779         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14780         MONO_TYPE_MVAR.
14781
14782         * reflection.c (mono_image_typedef_or_ref): Generic type
14783         parameters may be in the same assembly, but never use a typedef
14784         for them.
14785         (mono_reflection_define_generic_parameter): We're now creating a
14786         "real" class for the type parameter; it's now safe to call
14787         mono_class_from_mono_type() on the class'es type, it'll do the
14788         right thing.
14789
14790 2003-09-16  Martin Baulig  <martin@ximian.com>
14791
14792         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14793         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14794         the `symfile' data structure must be fully initialized before it
14795         gets added to the table.
14796
14797 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14798
14799         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14800
14801         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14802         class init trampolines.
14803
14804 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14805
14806         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14807         to the built-in profiler to turn off time and allocation profiling
14808         respectively.
14809
14810 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
14811
14812         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
14813         g_direct_equal.
14814
14815         * debug-helpers.c (mono_method_full_name): Print the wrapper type
14816         in human readable form.
14817
14818 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
14819
14820         * reflection.c icall.c: Fixed warnings.
14821
14822         * image.c (load_class_names): Use a temporary hash table to hold the
14823         namespaces in order to avoid doing many string comparisons.
14824
14825         * image.h: Fix typo.
14826
14827         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
14828         Pass NULL instead of g_direct_equal to the GHashTable constructor 
14829         since the NULL case is short-circuited inside g_hash_table_lookup, 
14830         leading to better performance.  
14831
14832         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
14833         obtain the first custom attribute for a given index. Depends on the
14834         CustomAttribute table being sorted by the parent field.
14835
14836         * reflection.c (mono_custom_attrs_from_index): Use the new function 
14837         for better performance.
14838
14839 2003-09-07  Martin Baulig  <martin@ximian.com>
14840
14841         * class.c (mono_class_init): If we're a generic instance, inflate
14842         all our methods instead of loading them from the image.
14843         (mono_class_from_generic): Set `class->methods = gklass->methods'.
14844
14845 2003-09-07  Martin Baulig  <martin@ximian.com>
14846
14847         * mono-debug-debugger.c: Added support for constructors.
14848
14849 2003-09-06  Martin Baulig  <martin@ximian.com>
14850
14851         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
14852         New interncall.
14853
14854         * reflection.c (mono_reflection_setup_generic_class): Call
14855         ensure_runtime_vtable() to create the vtable.
14856
14857 2003-09-05  Martin Baulig  <martin@ximian.com>
14858
14859         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
14860         MONO_TYPE_MVAR.
14861
14862 2003-09-04  Martin Baulig  <martin@ximian.com>
14863
14864         * reflection.c (mono_reflection_define_generic_parameter): Generic
14865         parameters start with zero.
14866
14867 2003-09-04  Martin Baulig  <martin@ximian.com>
14868
14869         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14870
14871         * reflection.h (MonoReflectionGenericParam): New typedef.
14872         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
14873         the generic parameters from the managed TypeBuilder.
14874
14875         * reflection.c (mono_reflection_define_generic_parameter): New function.
14876         (mono_reflection_create_runtime_class): Encode generic parameters.
14877         (mono_reflection_setup_generic_class): New function; this is
14878         called after adding adding all generic params to the TypeBuilder.
14879         (encode_type): Added MONO_TYPE_VAR.
14880
14881 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
14882
14883         * class.h class.c (mono_class_needs_cctor_run): Moved this method
14884         here from the JIT.
14885
14886         * assembly.h assembly.c: Moved the AOT loading code into an assembly
14887         load hook.
14888
14889 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
14890
14891         * reflection.h reflection.c class.h class.c: Delete duplicate 
14892         definition of mono_type_get_name () from reflection.c and export the
14893         one in class.c.
14894
14895         * class.c: Class loading fixes from Bernie Solomon 
14896         (bernard@ugsolutions.com).
14897
14898         * reflection.c: Endianness fixes from Bernie Solomon 
14899         (bernard@ugsolutions.com).
14900         
14901 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
14902
14903         * assembly.h assembly.c: Define a file format version for AOT
14904         libraries.
14905         
14906         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
14907
14908         * appdomain.h (MonoJitInfo): New field to determine whenever the
14909         code is domain neutral.
14910         
14911 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
14912
14913         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
14914
14915 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
14916
14917         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
14918         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
14919         Avoid caching the result since strings must be domain specific. Fixes
14920         #48050.
14921
14922 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
14923
14924         * marshal.c (mono_marshal_init): Make this callable multiple times
14925         since it is hard to find a correct place to call it.
14926
14927         * object.c (mono_runtime_class_init): Execute static constructors in
14928         the correct appdomain.
14929
14930         * image.c (build_guid_table): Handle the case when multiple images have
14931         the same GUID.
14932
14933 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14934
14935         * icall.c: added a couple of icalls for System.Web.
14936
14937 2003-08-28  Martin Baulig  <martin@ximian.com>
14938
14939         * icall.c (ves_icall_Type_BindGenericParameters): Use
14940         `klass->generic_inst' instead of `&klass->byval_arg' in the
14941         mono_type_get_object() call.  The returned type must be
14942         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
14943
14944 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
14945
14946         * NOTES: New file.
14947
14948         * object.c (mono_class_proxy_vtable): Make it thread safe.
14949
14950         * pedump.c: Fix warning.
14951
14952         * object.c appdomain.h: Get rid of metadata_section. 
14953         It is no longer needed and it was causing deadlocks with domain->lock.
14954
14955         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
14956
14957 2003-08-26  Martin Baulig  <martin@ximian.com>
14958
14959         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
14960
14961 2003-08-26  Martin Baulig  <martin@ximian.com>
14962
14963         * pedump.c (main): Call mono_metadata_init(),
14964         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
14965         and mono_loader_init().
14966
14967 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
14968
14969         * loader.h: Add missing include to fix build.
14970
14971         * image.h: mono_image_load_references is no more.
14972
14973         * assembly.c: Reworked assembly loading to make it really thread safe.
14974         After these changes, the assembly returned by mono_assembly_open is
14975         fully initialized, i.e. all its references assemblies are loaded.
14976
14977         * assembly.c (mono_image_load_references): Renamed to 
14978         mono_assembly_load_references, and made private, since clients no
14979         longer need to call it.
14980
14981         * class.c: Removed calls to mono_assembly_load_references, since it was
14982         a source of deadlocks.
14983
14984         * loader.h loader.c class.h class.c: Protect data structures using a 
14985         new lock, the loader lock.
14986
14987         * class.c (mono_class_setup_vtable): Create temporary hash tables and
14988         GPtrArrays only when needed.
14989
14990         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
14991         into empty structures by mcs. Fixes pinvoke7.cs.
14992         
14993         * domain.c (mono_init): Call a new initialization function.
14994
14995         * appdomain.c (mono_runtime_init): Call the new initializer function
14996         of the marshal module.
14997
14998         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
14999         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15000
15001         * marshal.h marshal.c: Added locks around the wrapper caches to make
15002         this module thread safe.
15003
15004         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15005         this argument. Fixes pinvoke1.exe.
15006
15007 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15008
15009         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15010         enumeration of values. Removed fields to store remote call output values in
15011         MonoAsyncResult. Not needed any more.
15012         * object.c: Initialize call_type and async_result fields in mono_message_init.
15013         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15014         dispatching the message.
15015         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15016         async call to finish. To do it use a message with EndInvoke call type.
15017
15018 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15019
15020         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15021         determines whenever a method has marshalling info.
15022
15023 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15024
15025         * assembly.c: fix the build on windows.
15026
15027 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15028
15029         * object.cs: Fixed bug #47785.
15030
15031 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15032
15033         * string-icalls.c (StringReplace): If their are no occurances of
15034         the old string found return a reference to the supplied
15035         string. This saves some memory and matches MS behavoir.
15036         
15037 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15038
15039         * socket-io.c: fixed compilation for systems that define AF_INET6
15040         and don't define SOL_IP/SOL_IPV6.
15041
15042 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15043
15044         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15045         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15046
15047         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15048
15049         * domain.c: Make this module thread safe.
15050
15051         * domain.c (mono_init): Call new initialization function.
15052
15053         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15054         reference types too. Fixes #38812.
15055
15056         * image.c (mono_image_init): Fixed warnings.
15057
15058         * class.c (mono_class_from_typeref): Handle assembly load failure
15059         correctly.
15060
15061         * appdomain.c (add_assemblies_to_domain): Handle the case when
15062         the references of an assembly are not yet loaded.
15063
15064         * metadata.c image.c assembly.c: Moved initialization of global
15065         variables to a separate function called at startup since lazy 
15066         initialization of these variables is not thread safe.
15067         
15068         * image.c assembly.c: Made this module thread safe by adding locks in 
15069         the appropriate places.
15070
15071         * domain.c (mono_init): Call the new initialization functions of the
15072         three modules.
15073
15074 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15075
15076         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15077           make a direct call. It is proxy's work to make the call asynchronous.
15078           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15079           the return values.
15080         * object.cs: mono_method_call_message_new(): read AsyncResult and
15081           state object from parameters list, if this info is requested.
15082         * object.h: Added fields to store remote call output values in
15083           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15084
15085 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15086
15087         * object.h: add needed fields to MonoThread.
15088         * threads.c, threads.h: allow registering a function to cleanup data
15089         allocated per thread by the JIT.
15090
15091 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15092
15093         * loader.h: portability fix by Bernie Solomon
15094         * <bernard@ugsolutions.com>.
15095
15096 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15097
15098         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15099         return a MonoArray. This simplifies the code and also ensures that
15100         the cache allways contains an object reference as a value.
15101
15102         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15103         function.
15104
15105 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15106
15107         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15108         fixes a problem with byte ordering when getting the address family for
15109         a socket.
15110
15111 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15112
15113         * .cvsignore: Added monosn.
15114
15115         * reflection.h reflection.c loader.c: Added support for parameter
15116         marshalling to dynamically created types. Fixes #47295.
15117
15118 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15119
15120         * rand.c: remove useless warnings.
15121
15122 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15123
15124         * class.c: implemented ldtoken for methods and fieldrefs.
15125
15126 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15127
15128         * threadpool.c: when mono_async_invoke was called, no one took care of
15129         monitoring the queue. So if the method invoked took some time and we
15130         got new async invoke requests after 500 ms (the thread created waited
15131         that long in WaitForSingleObject), the new async invoke was not called
15132         until the previous one finished.
15133
15134         This is fixed now. Thanks to Totte for helping with it.
15135
15136 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15137
15138         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15139
15140 2003-08-11  Martin Baulig  <martin@ximian.com>
15141
15142         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15143
15144 2003-08-06  Martin Baulig  <martin@ximian.com>
15145
15146         * mono-debug-debugger.c: Added support for static fields,
15147         properties and methods.
15148
15149 2003-08-06  Martin Baulig  <martin@ximian.com>
15150
15151         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15152         make this work for applications with multiple application domains.
15153
15154 2003-08-04  Martin Baulig  <martin@ximian.com>
15155
15156         * mono-debug-debugger.c: Completely reworked the type support; the
15157         most important thing is that we're now just using one single
15158         `MonoType' instance per type.
15159
15160 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15161
15162         * mono-endian.h, mono-endian.c, icall.c: Added icall
15163         ves_icall_System_Double_AssertEndianity to assert double word endianity
15164         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15165
15166 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15167
15168         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15169         support, icalls and fixes.
15170
15171 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15172
15173         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15174         classes that are a punctuation character in .NET is not the same a
15175         g_unichar_ispunct.
15176
15177 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15178
15179         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15180
15181 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15182
15183         * icall.c: Add new MemCopy internalcall.
15184         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15185         Simplified code; It is not necessary to handle all the cases here,
15186         as the C# code takes care of it.  Only handle the case of the name
15187         resource embedded into the assembly.
15188
15189         Changed signature to return the data pointer and the size of the
15190         data. 
15191
15192 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15193
15194         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15195         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15196
15197 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15198
15199         * socket-io.c: ignore EINTR error in select.
15200
15201 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15202
15203         * class.h, class.c: removed unused subclasses field in MonoClass.
15204
15205 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15206
15207         * icall.c: improve fix of get_base_definition(). If the parent class
15208           doesn't have the mehod, look at the parent of the parent.
15209         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15210           to check if a parameter is an in or out parameter
15211           (PARAM_ATTRIBUTE_IN is not set by default).
15212           mono_method_return_message_restore(): Use mono_class_value_size to
15213           get the size of a value type. mono_type_stack_size (parameterType)
15214           does not return the correct value if parameterType is byRef.
15215           mono_load_remote_field(), mono_load_remote_field_new(),
15216           mono_store_remote_field(), mono_store_remote_field_new():
15217           raise exception if the remote call returns an exception.
15218
15219 2003-07-28  Martin Baulig  <martin@ximian.com>
15220
15221         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15222         method.  This is a wrapper around mono_runtime_invoke() which
15223         boxes the instance object if neccessary.
15224
15225 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15226
15227         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15228         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15229
15230 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15231
15232         * icall.c: disable mcs bug workaround.
15233
15234 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15235
15236         * object.c (mono_runtime_class_init): Take the metadata_section
15237         mutex before obtaining the domain mutex.
15238
15239         * appdomain.h: Added definition of metadata_section mutex here. 
15240
15241         * object.c: define metadata_mutex here.
15242
15243 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15244
15245         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15246         fixed.
15247
15248 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15249
15250         * reflection.c: Fix bug #46669
15251
15252 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15253
15254         * exception.c:
15255         * exception.h:
15256         * icall.c:
15257         * object.h: fill in the type name for TypeLoadException.
15258
15259 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15260
15261         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15262         relationship between TypeBuilders while compiling corlib) and bug
15263         45993 (Array types returned from the runtime while compiling
15264         corlib were from the loaded corlib).
15265
15266 2003-07-22  Martin Baulig  <martin@ximian.com>
15267
15268         * mono-debug-debugger.c: Reworked the type support a bit more;
15269         distinguish between types and classes.
15270
15271 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15272
15273         * icall.c: add IsArrayImpl icall.
15274
15275 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15276
15277         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15278         initializing real_size only once. Also fix bug #46602.
15279
15280 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15281
15282         * object.c: Renamed mono_metadata_section to metadata_section.
15283
15284 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15285
15286         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15287           empty array if the type is an array. Fixed.
15288           ves_icall_MonoMethod_get_base_definition: if the base method
15289           is abstract, get the MethodInfo from the list of methods of
15290           the class.
15291         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15292           and it was 1-based. Fixed in mono_param_get_objects.
15293
15294 2003-07-20  Martin Baulig  <martin@ximian.com>
15295
15296         * mono-debug.h: Set version number to 31.
15297         (mono_debug_init): Added `MonoDomain *' argument.
15298
15299         * mono-debug-debugger.c: Reworked the type support; explicitly
15300         tell the debugger about builtin types; pass the `klass' address to
15301         the debugger.
15302
15303 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15304
15305         * image.c: Allow new metadata tables to be loaded without a
15306         warning. Also update the warning message to give the new constant value.
15307                 
15308 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15309
15310         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15311         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15312         array type representation changes.
15313
15314 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15315
15316         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15317         on Environment.Exit () call.
15318
15319 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15320
15321         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15322         requires a matching corlib.
15323
15324 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15325
15326         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15327           Committed again without the CRs.
15328         
15329 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15330
15331         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15332           getting it from the "this" socket instance. Did not work
15333           if the socket is a subclass of Socket.
15334           Also fixed bug #35371.
15335
15336 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15337
15338         * metadata.c: fixed size for TypedByRef.
15339         * loader.c: when searching for a method, consider the vararg amrker.
15340         * unicode.c, decimal.c: constify some arrays.
15341
15342 2003-07-15  Dick Porter  <dick@ximian.com>
15343
15344         * socket-io.c: Fixed compilation for gcc < 3.2.
15345
15346         Fixed compilation for machines that don't have AF_INET6 (thanks to
15347         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15348
15349         Fixed compile warnings.
15350         
15351         Fixed formatting and line endings.
15352
15353 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15354
15355         * socket-io.h:
15356         * socket-io.c: Added IPv6 support.
15357
15358 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15359
15360         * class.c (mono_class_is_assignable_from): New function to implement
15361         the is_assignable_from logic. Used by mono_object_isinst, 
15362         Type::IsAssignableFrom () and the interpreter.
15363
15364         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15365         Object, even interfaces.
15366         
15367         * object.c (mono_object_isinst): Implement in terms of 
15368         is_assignable_from.
15369
15370         * icall.c (ves_icall_type_is_assignable_from): New icall.
15371
15372 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15373
15374         * domain.c (foreach_domain): fix compiler warning.
15375
15376 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15377
15378         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15379         not available on all plattforms
15380
15381 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15382
15383         * image.h image.c: Store the metadata version string in MonoImage.
15384         * icall.c: New icall to retrieve the image version.
15385         * reflection.c (create_dynamic_image): Fill in the image version field
15386         * reflection.c (build_compressed_metadata): Use the image version
15387         from the image structure.
15388
15389 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15390
15391         * appdomain.c: modified comment.
15392         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
15393         That will be its last iteration when mono_gc_cleanup is called from
15394         mono_runtime_cleanup and before the domain is unloaded.
15395
15396         Fixes bug #45962.
15397
15398 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
15399
15400         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
15401         attributes.
15402
15403 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15404
15405         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
15406         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
15407         Bernie Solomon <bernard@ugsolutions.com>.
15408
15409 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15410
15411         * object.c, object.h: provide mono_object_new_fast() for faster
15412         allocation in some special cases.
15413
15414 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
15415
15416         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
15417         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
15418
15419 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
15420
15421         * threadpool.c: fix leaks.
15422
15423 2003-07-01  Dick Porter  <dick@ximian.com>
15424
15425         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
15426         using MonoGHashTables.  Fixes threadpool bug posted to list.
15427
15428 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15429
15430         * image.h, image.c: added support to load an assembly from a byte array.
15431         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
15432         assembly bundle support.
15433
15434 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
15435
15436         * threadpool.c (mono_thread_pool_add): keep a reference to the
15437         AsyncResult to prevent GC
15438
15439 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15440
15441         * class.c: leak fix.
15442
15443 2003-06-25  Dick Porter  <dick@ximian.com>
15444
15445         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
15446         for the async object, the WaitHandle object will close the handle.
15447         Fixes bug 45321.
15448
15449 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15450
15451         * class.c: in mono_array_class_get (), lookup from the hash with the
15452         same type we insert: this works around a bug in
15453         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
15454         lluis. The real fix will have to wait for after the release.
15455
15456 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15457
15458         * icall.c: fix memory leak when getting type members.
15459
15460 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15461
15462         * reflection.c: added more pubtoken special cases.
15463
15464 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
15465
15466         * class.c: handle field offset correctly when class size
15467         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
15468
15469 2003-06-20  Martin Baulig  <martin@ximian.com>
15470
15471         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
15472         *image' field.
15473
15474 2003-06-20  Martin Baulig  <martin@ximian.com>
15475
15476         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
15477
15478 2003-06-20  Martin Baulig  <martin@ximian.com>
15479
15480         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
15481         just distinguish between variables in registers and variables at
15482         an offset relative to a register.
15483
15484 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15485
15486         * icall.c: #ifdef out latest changes until mcs is fixed.
15487
15488 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15489
15490         * icall.c: return members in metadata order.
15491
15492 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15493
15494         * icall.c: avoid infinite loop in GetTimeZoneData.
15495
15496 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
15497
15498         * icall.c: added Marshal.Prelink/All icalls.
15499
15500 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15501
15502         * object.c, object.h: fix warnings and do some overflow checking
15503         when creating arrays.
15504
15505 2003-06-17  Dick Porter  <dick@ximian.com>
15506
15507         * file-io.h:
15508         * file-io.c: File attributes need to be tweaked slightly when
15509         passed from the managed to the w32 world.
15510
15511 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15512         * profiler.h profiler-private.h profiler.c: Rework last patch
15513         based on suggestion by Paolo.
15514         
15515 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15516
15517         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
15518         instruction level coverage data collection.
15519         * profiler.h profiler.c (: Added new callback function which can be
15520         used by the profiler to limit which functions should have coverage
15521         instrumentation.
15522         * profiler.c (mono_profiler_load): Call g_module_build_path to
15523         generate the file name of the profiler library.
15524
15525 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15526
15527         * profiler.c, profiler.h, profiler-private.h: added basic block 
15528         coverage profiling API.
15529
15530 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15531
15532         * reflection.c (mono_reflection_create_runtime_class): Add support
15533         for events in dynamically generated code.
15534
15535         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15536         not allocated.
15537
15538 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15539
15540         * icall.c: when getting timezone info, return reasonable values if we
15541         can't get the actual data.
15542
15543 2003-06-14  Dick Porter  <dick@ximian.com>
15544
15545         * threads.c (start_wrapper): Remove the reference to the thread
15546         object in the TLS data, so the thread object can be finalized.
15547         This won't be reached if the thread threw an uncaught exception,
15548         so those thread handles will stay referenced :-( (This is due to
15549         missing support for scanning thread-specific data in the Boehm GC
15550         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15551
15552 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15553
15554         * reflection.c: ensure streams and tables are first allocated with
15555         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15556
15557 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15558
15559         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15560
15561 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15562
15563         * reflection.c (mono_reflection_create_runtime_class): Add support for
15564         properties to dynamically created classes.
15565         * reflection.c: Fix a few places where non-MonoObjects were inserted
15566         into the tokens hashtable.
15567
15568 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15569
15570         * object.c: some support to handle out of memory exceptions.
15571
15572 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15573
15574         * marshal.c (mono_marshal_get_native_wrapper): support reference
15575         return types
15576
15577 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15578
15579         * object.h, object.c: more portability stuff from Bernie Solomon.
15580         Unexport mono_object_allocate(). Added mono_object_unbox ().
15581         Set exitcode when an unhandled exception is thrown.
15582
15583 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15584
15585         * marshal.c (mono_marshal_get_native_wrapper): use custom
15586         marshaler for return types.
15587
15588 2003-06-10  Dick Porter  <dick@ximian.com>
15589
15590         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15591         ip_mreq is available
15592
15593 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15594
15595         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15596         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15597         by Bernie Solomon <bernard@ugsolutions.com>.
15598
15599 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * gc.c (mono_gc_init): Avoid error message on shutdown when
15602         GC_DONT_GC=1 is used.
15603
15604         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15605         New icall to return the GUID of a module.
15606
15607 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15608
15609         * class.c: ensure instance size always includes the parent's size
15610         even whem class size is set explicitly (fixes bug#44294).
15611
15612 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15613
15614         * profiler.h, profiler.c: made the simple profiler thread-safe,
15615         get more accurate timing info. Allow the loading of an
15616         externally-developed profiler module.
15617
15618 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15619
15620         * marshal.c (mono_marshal_get_native_wrapper): improved
15621         class/byref arguments.
15622         (mono_marshal_get_native_wrapper): better string marshaling support.
15623
15624 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15625
15626         * class.c: ensure .pack and .size are handled correctly and
15627         simplified layout of static fields.
15628
15629 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15630
15631         * appdomain.c
15632         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15633
15634         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15635         current directory (fix bug 44008)
15636
15637 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15638
15639         * marshal.c (mono_marshal_get_native_wrapper): started support for
15640         custom marshalers.
15641         (mono_delegate_to_ftnptr): consider marshalling specifications
15642
15643 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15644
15645         * reflection.c, reflection.h: emit custom marshal info.
15646
15647 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15648
15649         * object.c: free the GError.
15650         * icall.c: added CloseEvent_internal.
15651         * threads.[ch]:
15652         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15653         call.
15654
15655 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15656
15657         * loader.c (mono_method_get_signature): Add support for dynamic
15658         assemblies.
15659
15660 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15661
15662         * reflection.c: fixed bug #43905.
15663
15664 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15665
15666         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15667         handling TypedReference and ArgIterator.
15668         * loader.c, loader.h: added function to get signature at call site.
15669
15670 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15671
15672         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15673         data readonly. Buglets and warning fixes. Some MethodSpec support.
15674
15675 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15676
15677         * class.h, class.c, object.c: remove relative numbering support.
15678
15679 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15680
15681         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15682         free the string, until we get a chance to fix Gtk#
15683
15684 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15685
15686         * marshal.c: revert last patch.
15687
15688 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15689
15690         * icall.c: updates for new mono_class_vtable() not calling
15691         the type constructor anymore.
15692
15693 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15694
15695         * object.h, object.c: separate vtable creation from type
15696         initialization. Make running the .cctor thread safe.
15697
15698 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15699
15700         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15701
15702 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15703
15704         * loader.c (mono_get_method): consider calling convention
15705
15706 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15707
15708         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15709         to return the invisible global type for a module.
15710
15711         * reflection.c (mono_image_build_metadata): Emit global fields too.
15712
15713 2003-05-20  Peter Williams  <peterw@ximian.com>
15714
15715         * loader.c (mono_lookup_internal_call): Add a few newlines.
15716
15717 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15718
15719         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15720         literal strings.
15721
15722         * appdomain.c (set_domain_search_path): Recalculate search path when
15723         AppDomainSetup.PrivateBinPath changes.
15724
15725         * object.c (mono_class_compute_gc_descriptor): It turns out some
15726         parts of the class libs (like System.Thread) holds pointers to
15727         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15728         to treat native int a pointer type here.
15729         
15730 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15731
15732         * appdomain.h, domain.c: add hashtable for jump target resolution.
15733
15734 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15735
15736         * reflection.h reflection.c icall.c: Added new icalls 
15737         GetManifestResourceInfoInternal, GetModulesInternal and support
15738         infrastructure.
15739
15740 2003-05-16  Dick Porter  <dick@ximian.com>
15741
15742         * icall.c:
15743         * file-io.h:
15744         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15745
15746 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15747
15748         * object.c: mono_store_remote_field: little fix to previous patch.
15749
15750 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15751
15752         * class.c: add constructors to array classes.
15753         * icall.c: special case array construction for InternalInvoke (),
15754
15755 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15756
15757         * class.h class.c reflection.c object.c: Added support for field
15758         defaults in dynamically generated classes.
15759
15760 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15761
15762         * reflection.c: properly encode charset for ddlimport.
15763
15764 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15765
15766         * threads.c: allow compiling without GC.
15767
15768 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15769
15770         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15771         handling of thread static data.
15772
15773 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15774
15775         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15776
15777 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15778
15779         * class.c (mono_array_class_get): always set the serializable flags
15780         (mono_array_class_get): always set the SEALED attribute for array types
15781
15782 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15783
15784         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15785         attributes (fix for bug 42021).
15786
15787 2003-05-12  Dick Porter  <dick@ximian.com>
15788
15789         * gc.c: Don't run finalizers when the finalizer thread is
15790         finishing up, because the default domain has already been
15791         destroyed.
15792
15793 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15794
15795         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15796         value is null, we should throw an exception.   This is slightly
15797         different than the other conventions used for the constructor.
15798
15799 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15800
15801         * socket-io.c: fixed windows build.
15802
15803 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15804
15805         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15806
15807 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15808
15809         * object.c (mono_string_new_wrapper): Compatibility fix for MS
15810         compilers.
15811
15812 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
15813
15814         * class.c (mono_class_layout_fields): Add experimental GC aware
15815         auto layout facility. Requires class library changes to work correctly.
15816
15817         (mono_class_setup_vtable): Avoid overriding explicit interface
15818         method implementations. Fixes iface3.exe test.
15819
15820         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
15821         object reference.
15822         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
15823         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
15824
15825         * metadata.h: Add new type classification macro which determines
15826         whenever the type holds an object reference.
15827
15828 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
15829
15830         * marshal.c (mono_marshal_get_native_wrapper): cleanups
15831
15832 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
15833
15834         * gc.c (finalizer_thread): Work around a GC bug.
15835
15836 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
15837
15838         * marshal.c (emit_struct_conv): allow unions
15839
15840         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
15841
15842 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
15843
15844         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
15845
15846 2003-05-06  Martin Baulig  <martin@ximian.com>
15847
15848         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
15849
15850 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15851
15852         * socket-io.c:
15853         (Select_internal): allow NULLs, don't create arrays if not needed.
15854         Coupled with Socket.cs changes.
15855
15856         * threadpool.c:
15857         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
15858         register a finalizer for it that will close the semaphore handle. This
15859         fixes the leak and make Lupus' test run with > 4080 loops.
15860
15861 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
15862
15863         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
15864         Jerome Laban (bug #42287)
15865
15866 2003-05-02  Martin Baulig  <martin@ximian.com>
15867
15868         * debug-mono-symfile.h
15869         (MonoSymbolFile): Moved declaration into mono-debug.h.
15870         (MonoDebugMethodJitInfo): Likewise.
15871         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
15872         argument.
15873         (_mono_debug_address_from_il_offset): Take a
15874         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
15875
15876         * mono-debug.h
15877         (MonoDebugDomainData): New struct.
15878         (mono_debug_get_domain_data): New function.
15879         (mono_debug_add_method): Take an additional `MonoDomain *'
15880         argument.
15881         (mono_debug_source_location_from_address): Likewise.
15882         (mono_debug_il_offset_from_address): Likewise.
15883         (mono_debug_address_from_il_offset): Likewise.
15884
15885 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
15886
15887         * reflection.c: one more check for null type in custom attrs.
15888
15889 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15890
15891         * reflection.c: avoid warning (comparison is always false due to limited
15892         range of data type).
15893
15894 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15895
15896         * icall.c: throw an exception in Type.GetField if the argument 'name'
15897         is NULL.
15898
15899 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
15900
15901         * reflection.c: fixed handling of enums in named arguments to custom
15902         attributes (bug #42123).
15903
15904 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
15905
15906         * reflection.c: use the right array element type and handle
15907         a null for a Type argument, too.
15908
15909 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
15910
15911         * reflection.c: handle arrays as arguments to custom attributes.
15912
15913 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15914
15915         * reflection.c: handle a string value in a custom attr
15916         ctor that takes an object.
15917
15918 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
15919
15920         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
15921         (fix bug #42063)
15922
15923 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
15924
15925         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
15926
15927 2003-04-27  Martin Baulig  <martin@ximian.com>
15928
15929         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
15930         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
15931         MONO_DEBUGGER_EVENT_BREAKPOINT.
15932         (mono_breakpoint_trampoline_code): Removed.
15933         (mono_debugger_event_handler): The last argument is now a
15934         `guint32'.
15935         (mono_debugger_insert_breakpoint_full): Removed the
15936         `use_trampoline' argument.
15937         (mono_debugger_method_has_breakpoint): Likewise.
15938         (mono_debugger_trampoline_breakpoint_callback): Renamed to
15939         mono_debugger_breakpoint_callback(); take the method and
15940         breakpoint number as arguments.
15941
15942 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
15943
15944         * metadata.c: fix off by one when loading parameters attributes.
15945
15946 2003-04-24  Martin Baulig  <martin@ximian.com>
15947
15948         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
15949
15950 2003-04-24  Martin Baulig  <martin@ximian.com>
15951
15952         * mono-debug-debugger.c: Moved all code which interacts with the
15953         Mono Debugger here.
15954
15955         * debug-mono-symfile.c: This code now just deals with the symbol
15956         file itself, the debugger code is now in mono-debug-debugger.c.
15957
15958 2003-04-23  Martin Baulig  <martin@ximian.com>
15959
15960         * mono-debug.c (mono_debug_source_location_from_il_offset):
15961         New method; like mono_debug_source_location_from_address(), but
15962         takes an IL offset instead of a machine address.
15963
15964 2003-04-23  Martin Baulig  <martin@ximian.com>
15965
15966         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
15967         `line' field; this is now computed by the debugger.
15968
15969 2003-04-23  Martin Baulig  <martin@ximian.com>
15970
15971         * mono-debug.[ch]: New files.  This is the new debugging interface.
15972
15973         * mono-debug-debugger.[ch]: New files.  Moved all code which
15974         interacts with the Mono Debugger here.
15975
15976 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
15977
15978         * domain.c (mono_init): initialize mono_defaults.monitor_class
15979
15980 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
15981
15982         * reflection.c (method_encode_code): Add a spicy exception to help
15983         future compiler authors.
15984
15985 2003-04-21  Martin Baulig  <martin@ximian.com>
15986
15987         * icall.c
15988         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15989         Make this work with relative pathnames; g_filename_to_uri() needs
15990         an absolute filename.
15991
15992 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
15993
15994         * icall.c: Track name changes in Object and ValueType.
15995
15996 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
15997
15998         * metadata.c (mono_type_stack_size): size should be a multiple of
15999         sizeof (gpointer)
16000
16001 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16002
16003         * gc.c:
16004         (internal_domain_finalize): moved into mono_domain_finalize. No need
16005         to create another thread because the finalizers will be run in the
16006         finalizer thread.
16007         
16008         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16009         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16010         to be run (MS does this too).
16011
16012 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16013
16014         * object.c (mono_class_compute_gc_descriptor): Update comment.
16015
16016         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16017
16018         * image.h: Add synchronized wrapper cache.
16019
16020         * image.c (do_mono_image_open): Initialize cache.
16021
16022         * reflection.c (create_dynamic_mono_image): Initialize cache.
16023
16024 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16025
16026         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16027         ves_icall_System_Buffer_ByteLengthInternal.
16028
16029 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16030
16031         * reflection.c: setup klass->nested_in earlier. Allow
16032         a dash in the assembly name.
16033
16034 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16035
16036         * metadata.c (mono_type_to_unmanaged): dont access
16037         type->data.klass for MONO_TYPE_OBJECT
16038         (mono_type_to_unmanaged): consider System.Delegate class
16039
16040 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16041
16042         * class.c: just setup supertypes in the proper place instead of
16043         initializing the full element class for arrays.
16044
16045 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16046
16047         * class.c: ensure the element class of arrays is initialized.
16048         Setup the supertype info for array classes, too.
16049
16050 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16051
16052         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16053
16054 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16055
16056         * Makefile.am: re-added -m option when running cygpath. This way,
16057         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16058         separator.
16059         * mono-config.c: same codepath for locating mono config file for WIN32
16060         and the rest.
16061         * assembly.c: if mono_assembly_setrootdir is called, don't override
16062         the value set.
16063
16064 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16065
16066         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16067         MONO_ASSEMBLIES variable.
16068
16069 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16070
16071         * icall.c: added Assembly::GetNamespaces() icall.
16072
16073 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16074
16075         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16076
16077 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16078
16079         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16080         * object.c: fixed bug in the construction of vtable for proxies
16081
16082 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16083
16084         * object.c (mono_array_new): Mark mono_array_new as an icall.
16085
16086 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16087
16088         * class.c: fixed test for public method when overriding interfaces.
16089         Closes bug #40970.
16090
16091 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16092
16093         * appdomain.h, domain.c: added mono_domain_foreach() to
16094         be able to access the currently loaded appdomains.
16095         * object.c: make string interning work across sppdomains.
16096         Mark some functions for use as icalls.
16097
16098 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16099
16100         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16101
16102         * reflection.h reflection.c: Allocate long living data using 
16103         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16104
16105         * reflection.c: Double the allocation size in streams instead of
16106         increasing it, to prevent unneccesary copying on large assemblies.
16107         
16108         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16109         creation if the assembly does not have the Run flag set.
16110
16111 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16112
16113         * class.h: avoid the C++ keywords in header files (Jerome Laban
16114         spotted and fixed this).
16115
16116 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16117
16118         * object.c:
16119         (mono_unhandled_exception): fill in the arguments for the
16120         UnhandledException event. Only trigger that event for the default
16121         domain (as MS does).
16122
16123 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16124
16125         * object.c: Improve typed allocation stuff based on suggestions from
16126         Paolo. Also turn it on if the GC library supports it.
16127
16128 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16129
16130         * object.c object.h class.h: Added experimental typed allocation
16131         facility using the interfaces in gc_gcj.h.
16132
16133         * os/gc_wrapper.h: Added new include files.
16134         
16135 2003-04-03  Martin Baulig  <martin@ximian.com>
16136
16137         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16138         which is not yet enabled by default.
16139
16140         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16141         functions.
16142         (mono_gc_lock, mono_gc_unlock): New static functions.
16143
16144         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16145         functions; stop/start the world for the garbage collector.  This
16146         is using the windows API; we need to complete the SuspendThread()/
16147         ResumeThread() implementation in the io-layer to make this work on Unix.
16148         (mono_gc_push_all_stacks): New public function; tells the garbage
16149         collector about the stack pointers from all managed threads.
16150
16151 2003-04-03  Martin Baulig  <martin@ximian.com>
16152
16153         * object.h (MonoThread): Added `gpointer stack_ptr'.
16154
16155         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16156
16157 2003-04-03  Martin Baulig  <martin@ximian.com>
16158
16159         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16160
16161 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16162
16163         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16164         field.last.
16165
16166 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16167
16168         * loader.c (mono_lookup_internal_call): Report the corlib that is
16169         out of sync.
16170
16171 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16172
16173         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16174         System.DBNull (it's class not valuetype).
16175
16176 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16177
16178         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16179         if the array method was already assigned a token (fixes bug#40646).
16180
16181 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16182
16183         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16184         if no assembly is given.
16185
16186 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16187
16188         * metadata.h: Added the new tables.
16189
16190         * row-indexes.h: Added definitions for new tables.
16191
16192         * metadata.c: Add schemas for new tables, and add support for
16193         computing the sizes of them.
16194
16195         * class.c: Update for handling the new type cases.
16196
16197 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16198
16199         * metadata.h (MONO_TYPE_IS_VOID): new macro
16200
16201 2003-03-31  Martin Baulig  <martin@ximian.com>
16202
16203         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16204
16205         * threads.c (mono_thread_new_init): Call `thread_created' in the
16206         mono_thread_callbacks.
16207
16208 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16209
16210         * loader.h: added marshalbyrefobject_class to mono_defaults
16211         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16212         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16213           generation of output parameters.
16214           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16215         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16216           contextbound and the target object belongs to the context of the caller.
16217         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16218         * object.c: Implemented support for interfaces and abstract classes
16219           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16220           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16221
16222 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16223
16224         * class.h class.c (mono_class_is_subclass_of): New function.
16225         
16226         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16227         routines for most common case (calls from ArrayList::ToArray).
16228
16229         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16230         routine so programs which call Environment::Exit() can be profiled.
16231
16232         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16233         Added MONO_ARCH_SAVE_REGS.
16234
16235         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16236
16237 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16238
16239         * blob.h: Add a couple of new MonoType types definitions.
16240
16241         * tabledefs.h: Add a couple of new call convs.
16242
16243 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16244
16245         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16246         the layout of the class.
16247
16248         * reflection.c (alloc_table): double the size on overflow to avoid
16249         unnecessary copying.
16250
16251         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16252         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16253         null so it can be garbage collected.
16254         
16255 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16256
16257         * reflection.c (mono_reflection_get_type): Return the resolved type
16258         only if it is in the assembly we searched.
16259
16260         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16261
16262         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16263         method.
16264
16265 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16266
16267         * appdomain.c:
16268         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16269         the right one is 'file:///blah', but MS allows it.
16270         * assembly.c:
16271         (mono_assembly_open): allow 'file://blah'
16272
16273         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16274
16275 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16276
16277         * socket-io.c: fixes bug #40310.
16278
16279 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16280
16281         * reflection.c (mono_reflection_parse_type): handle deeply nested
16282         types correctly.
16283
16284         * reflection.c (mono_image_create_token): Use unique token values
16285         since they will be put into a hash table.
16286
16287         * class.c (mono_class_setup_vtable): If a method occurs in more than
16288         one place in the vtable, and it gets overriden, then change the
16289         other occurances too.
16290
16291         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16292         object as return type.
16293
16294 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16295
16296         * icall.c: Deleted "ToString" implementation for double and float
16297         because they are full implemented in managed code.
16298
16299 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16300
16301         * reflection.c, reflection.h: implemented and exported functions
16302         to retrieve info about custom attributes.
16303
16304 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16305
16306         * appdomain.c: moved Uri handling to assembly.c
16307         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16308         work when using a file Uri in *nix and windows.
16309
16310         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16311         GetReferencedAssemblies.
16312
16313 2003-03-18  Dick Porter  <dick@ximian.com>
16314
16315         * icall.c: Rename a couple of internal calls
16316
16317         * threads.c: Set the thread state to Stopped when a thread exits.
16318         Fixes bug 39377.
16319
16320 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16321
16322         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16323         New icall.
16324
16325         * object.c (mono_class_vtable): fix warning.
16326
16327 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16328
16329         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16330
16331         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16332         memory.
16333         (method_encode_clauses): Create exception info structures in the right
16334         order.
16335         (mono_reflection_setup_internal_class): Initialize supertypes field.
16336
16337         * class.c object.c: Handle interfaces which implement other interfaces 
16338         correctly.
16339
16340         * class.h class.c: Move the supertypes array initialization code into 
16341         a separate function so it can be used for dynamic types too. Also call
16342         it earlier, in mono_class_init(), since it can be used before the
16343         type is initialized.
16344
16345 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16346
16347         * Makefile.am:
16348         * assembly.c:
16349         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16350
16351         * appdomain.c:
16352         * appdomain.h:
16353         * marshal.c:
16354         * object.c: remove warnings.
16355
16356 2003-03-13  Martin Baulig  <martin@ximian.com>
16357
16358         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16359         (MonoDebugLexicalBlockEntry): New types.
16360
16361         * debug-mono-symfile.c
16362         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16363
16364 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16365
16366         * process.c: ret can be any non-zero value accroding to MS doc.
16367
16368 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16369
16370         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16371         fixing a warning for a miss-used prototype, would have cause
16372         random memory corruption.
16373
16374 2003-03-07  Martin Baulig  <martin@ximian.com>
16375
16376         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16377         getting really annoying ....
16378
16379 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16380
16381         * reflection.c (fixup_method): added support for array methods.
16382
16383 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16384
16385         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16386         (pointed out by Michael Adams).
16387
16388 2003-03-04  Dick Porter  <dick@ximian.com>
16389
16390         * icall.c: Temporarily reverted the Double and Single ToString()
16391         change, because it broke nunit.
16392
16393 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
16394
16395         * object.h, threads.h: make include files compatible with C++
16396         (patch by Jerome Laban <jlaban@wanadoo.fr>).
16397
16398 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16399
16400         * icall.c: Erased ToString helper functions for Double and Single.
16401         Now, that implementations ar all in managed code (Double and Single
16402         Formatters).
16403
16404 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
16405
16406         * appdomain.c: Added method for initializing the default context of
16407         a domain. Added internal call for getting the default context.
16408         * appdomain.h: Added context variable in MonoDomain struct.
16409         * domain.c: mono_domain_set also sets the default context of the domain
16410         * icall.c: Mapped internal method InternalGetDefaultContext.
16411         * object.c: mono_object_get_virtual_method returns always a remoting
16412         wrapper if the object is a transparent proxy.
16413         mono_runtime_invoke_array: when creating an object by calling the
16414         constructor, if the created object is a proxy, then the constructor should
16415         be called using the a remoting wrapper.
16416
16417 2003-03-03  Dick Porter  <dick@ximian.com>
16418
16419         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
16420         variable so it compiles on solaris.  Problem spotted by
16421         Christopher Taylor <ct@cs.clemson.edu>
16422
16423 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16424
16425         * appdomain.c:
16426         (get_info_from_assembly_name): don't leak value.
16427
16428         * icall.c:
16429         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
16430         result.
16431
16432 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
16433
16434         * assembly.c: export mono_image_load_references ().
16435         * class.c: handle function pointers. mono_class_from_name() now
16436         supports nested type names directly.
16437
16438 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
16439
16440         * reflection.h reflection.c: Encode already created dynamic methods 
16441         and fields correctly as a DEF instead of a REF.
16442
16443         * reflection.c: Get rid of the force_ref argument to 
16444         mono_image_typedef_or_ref since it was wrong in the first place.
16445
16446         * string-icalls.c: add error checking to string constructors according
16447         to the MSDN docs.
16448
16449         * reflection.c: Emit types in the order their TypeBuilders were 
16450         created. Previously, a new table index was assigned to each type before
16451         the tables were emitted. This was wrong because the signature blob
16452         might already refer to a type by its original table index.
16453
16454 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
16455
16456         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
16457         change.
16458         
16459 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16460
16461         * Makefile.am: make assemblies dir have \ instead of / on windows.
16462
16463 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
16464
16465         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
16466         iterate over the NESTEDCLASS table using a linear search since the
16467         table is not guaranteed to be sorted by the secondary key.
16468
16469         * class.c (mono_class_create_from_typedef): fixed up call to
16470         mono_metadata_nesting_typedef.
16471         
16472 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
16473
16474         * marshal.c (mono_string_to_byvalstr): clear the memory as
16475         suggested by Jerome Laban <jlaban@wanadoo.fr>
16476
16477 2003-02-26  Dick Porter  <dick@ximian.com>
16478
16479         * process.c: Cope with padding in .rsrc blocks
16480
16481 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16482
16483         * metadata.h: reverted the filter_len change, it breaks reflection
16484         
16485 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16486
16487         * metadata.h: added a new field to store the filter_len
16488         
16489
16490 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
16491
16492         * reflection.c: handle custom attributes for types and members
16493         created with Reflection.Emit (bug#38422).
16494
16495 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
16496
16497         * reflection.c: define RTSpecialName automatically for constructors for
16498         compatibility with MS.NET.
16499
16500         * reflection.c (mono_reflection_create_runtime_class): initialize
16501         nested_in field of dynamically created classes.
16502
16503 2003-02-22  Martin Baulig  <martin@ximian.com>
16504
16505         * debug-mono-symfile.h: Incremented version number.
16506
16507 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16508
16509         * object.h icall.c process.c: fix warnings.
16510
16511 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16512
16513         * appdomain.h appdomain.c:
16514         (mono_domain_try_type_resolve): split the 
16515         name_or_tb argument into a name and a tb argument.
16516         (mono_domain_has_type_resolve): new function to check whenever the
16517         application has registered a TypeResolve event handler.
16518         
16519         * icall.c reflection.h reflection.c: move the type resolve logic into
16520         mono_reflection_get_type () so it will be invoked when 
16521         Assembly::GetType () is called.
16522
16523         * reflection.c:
16524         (mono_reflection_get_type): renamed to get_type_internal.
16525         (mono_reflection_get_type): fixed type name generation so it works 
16526         for nested types too.
16527         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16528         costly type name generation if there is no resolve event handler.
16529
16530 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16531
16532         * class.c, image.c: load exported types from file references.
16533
16534 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16535
16536         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16537           used to cache the managed methods used to create proxies and make 
16538           remote invocation of methods.
16539         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16540           to be remotely created.
16541         * object.c: Modified the method mono_class_vtable(). It now initializes 
16542           the remote flag of the vtable. Modified mono_object_new_specific(), 
16543           so now it checks the remote flag.
16544         * icall.c: Added a couple of internal methods, one for enabling instance 
16545           creation interception for a type, and one for creating objects bypassing
16546           the remote check.
16547
16548 2003-02-18  Martin Baulig  <martin@ximian.com>
16549
16550         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16551         New interncall to get a method's metadata token.
16552
16553         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16554         New interncall for the debugger.
16555
16556 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16557
16558         * class.c (mono_class_setup_vtable): allocate supertype array
16559
16560 2003-02-18  Martin Baulig  <martin@ximian.com>
16561
16562         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16563
16564 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16565
16566         * reflection.c:
16567         (assembly_name_to_aname): jump over unknown properties (i've found
16568         something like: 'type, assembly, version=xxx, custom=null, public...',
16569         so now will ignore custom=null and still get the rest of the values).
16570
16571 2003-02-17  Dick Porter  <dick@ximian.com>
16572
16573         * threads.c: Have Thread.Start() wait for a semaphore to signal
16574         that the thread has set up all its local data.  This fixes bug
16575         34323, where Abort() raced the new thread's TLS data.
16576
16577         Also removes the handle_store() call from start_wrapper, because
16578         threads are now always created suspended and there is no longer a
16579         race between the parent and child threads to store the info.
16580
16581 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16582
16583         * image.c: explain the #- heap issue in a message, hopefully
16584         avoiding FAQs on mono-list.
16585
16586 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16587
16588         * icall.c:
16589         (GetEntryAssembly): if the domain has not invoked
16590         AppDomain.ExecuteAssembly yet, return the assembly of the default
16591         AppDomain.
16592
16593 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16594
16595         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16596
16597 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16598
16599         * metadata.c, reflection.c: simple speedup to type hash
16600         and equals code.
16601
16602 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16603
16604         * image.c, image.h, class.c, assembly.c: move module loading
16605         to MonoImage. When loading metadata, consider alignemnet from
16606         the start of metadata, not from the metadata address in memory.
16607
16608 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16609
16610         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16611         AssemblyBuilder objects. Factored out custom attribute creation into
16612         a separate function.
16613         (create_custom_attr): new function to create custom attributes.
16614
16615 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16616
16617         * Makefile.am: Got tired of typing the full pathname to pedump.
16618         Until there is another option, am installing this.
16619
16620 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16621
16622         * class.c (class_compute_field_layout): always set field->parent 
16623         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16624
16625 2003-02-11  Dick Porter  <dick@ximian.com>
16626
16627         * threads-types.h:
16628         * monitor.c: Rewrote Monitor, making lock much faster and
16629         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16630         creates them as needed.
16631
16632         * exception.c: Added SynchronizationLockException
16633
16634         * threads.c: Deleted old Monitor implementation.  The new one is
16635         in a new file.
16636
16637 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16638
16639         * class.c: handled TypedReference type code. Set the correct size for
16640         class data. Setup interface_offsets for interface classes, too.
16641
16642 2003-02-09  Martin Baulig  <martin@ximian.com>
16643
16644         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16645
16646 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16647
16648         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16649         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16650         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16651         * verify.c: check for code that runs after the end of the method.
16652
16653 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16654
16655         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16656         "System.Math::Round2".
16657         * sysmath.h: Added Floor, Round and Round2 definitions.
16658         * sysmath.c: Modified certain functions that were not 100% compliant
16659         with MS.NET (math precision) and added the implementation of Floor,
16660         Round and Round2.
16661
16662 2003-02-07  Martin Baulig  <martin@ximian.com>
16663
16664         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16665
16666 2003-02-07  Martin Baulig  <martin@ximian.com>
16667
16668         * debug-mono-symfile.c: Reflected latest symwriter changes.
16669         (mono_debug_create_mono_symbol_file): Removed.
16670         (mono_debug_open_mono_symbol_file): Take an argument which
16671         specifies whether to create a dynamic symbol file.
16672
16673 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16674
16675         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16676
16677 2003-02-05  Martin Baulig  <martin@ximian.com>
16678
16679         * reflection.c (mono_image_build_metadata): Make this public,
16680         protect it against being called multiple times, don't create
16681         resources and don't build the compressed metadata here.
16682         (mono_image_create_pefile): Do this here.
16683
16684         * icall.c
16685         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16686
16687 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16688
16689         * socket-io.c: fixed bug #36322.
16690
16691 2003-02-06  Piers Haken <piersh@friskit.com>
16692
16693         * appdomain.[ch]:
16694         * class.h:
16695         * debug-mono-symfile.c:
16696         * icall.c:
16697         * loader.c:
16698         * mono-config.c:
16699         * monosn.c:
16700         * reflection.c:
16701         * socket-io.c: warning cleanups
16702
16703 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16704
16705         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16706         function. works like remoting invoke, but does a check for the Proxy first.
16707
16708 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16709
16710         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16711
16712 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16713
16714         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16715         array of pointers.
16716         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16717         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16718
16719         * object.c (mono_store_remote_field_new): used by the new jit
16720         instead of mono_store_remote_field
16721         (mono_load_remote_field_new): used by the new jit
16722         instead of mono_load_remote_field
16723
16724 2003-02-05  Patrik Torstensson
16725
16726         * appdomain.c: changed unload to take the domain id instead
16727         of domain
16728         
16729         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16730
16731
16732 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16733
16734         * appdomain.c: don't look for assemblies in ApplicationBase if
16735         PrivateBinPathProbe is set.
16736
16737 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16738
16739         * object.c: make the first argument in main_args contain the absolute
16740         path to the assembly. Fixes bug #37511.
16741
16742 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16743
16744         * icall.c: get correct UTC offset for countries not using daylight
16745         time saving. Fixes bug #30030.
16746
16747 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16748
16749         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16750         and 1 are the family).
16751
16752 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16753
16754         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16755
16756         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16757
16758 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16759
16760         * reflection.c: added support for SignatureHelper tokens, which is
16761         needed by the Calli opcode.
16762
16763         * reflection.h: track changes to SignatureHelper class.
16764
16765         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16766
16767 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16768
16769         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16770
16771 2003-02-03  Patrik Torstensson
16772         * appdomain.[c|h], domain.c : 
16773          - Added support for getting a domain via domain id
16774          - Support for setting and getting domain from System.AppDomain 
16775            (used in cross appdomain channel)
16776          - Added support for get/set for a MonoAppContext on a thread 
16777            (Context class in System.Runtime.Remoting.Contexts),
16778          - Removed hack in Get/SetData and ExecuteAssembly.
16779         
16780         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16781         the managed world to get control when a proxy is created.
16782
16783         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16784         
16785 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16786
16787         * icall.c
16788         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16789         Populate the codebase field as well.
16790
16791 2003-02-02  Martin Baulig  <martin@ximian.com>
16792
16793         * debug-mono-symfile.c
16794         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16795         (mono_debug_symfile_add_method): Allow interncalls.
16796
16797 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16798
16799         * icall.c: throw parse exception if strtod fails or the string is empty.
16800
16801 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16802
16803         * marshal.c: handle object type separately from defined
16804         class types.
16805
16806 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16807
16808         * marshal.c: handle NATIVE_LPSTR for strings when it's
16809         explicitly specified.
16810
16811 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
16812
16813         * reflection.c, reflection.h, icall.c: setup the reflection
16814         handle cache for ModuleBuilders and AssemblyBuilders.
16815
16816 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
16817
16818         * reflection.c (reflection_methodbuilder_to_mono_method): set
16819         pinvoke flag
16820
16821 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16822
16823         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
16824
16825 2003-01-29  Dick Porter  <dick@ximian.com>
16826
16827         * threads.c: No need for the fake_thread kludge now that Thread
16828         doesn't run a class constructor
16829         
16830 2003-01-29  Dick Porter  <dick@ximian.com>
16831
16832         * threads.c: Use g_direct_hash instead of the rather bogus
16833         g_int_hash
16834
16835 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
16836
16837         * marshal.c (mono_marshal_get_native_wrapper): add check for null
16838         (fix pinvoke12.exe)
16839         (mono_marshal_get_struct_to_ptr): generate valid IL code
16840         (mono_marshal_get_ptr_to_struct): generate valid IL code
16841         (*): correctly set sig->pinvoke, we need to memdup the signature
16842         to do that
16843
16844 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16845
16846         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
16847         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
16848
16849 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16850
16851         * profiler.c: provide more callers information.
16852
16853 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
16854
16855         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
16856
16857         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
16858
16859         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
16860
16861 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16862
16863         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
16864         exception instead of going into an infinite loop on dates which it 
16865         can't yet handle.
16866
16867         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
16868         out-of-range exception if needed.
16869
16870         * class.c (mono_class_setup_vtable): allow a virtual method to provide
16871         an implementation for an interface method and to override an inherited
16872         method at the same time. 
16873         Imagine a scenario when a virtual method is used to override a
16874         virtual abstract method in a parent class, and this same method 
16875         provides an implementation for an method inherited from an interface. 
16876         In this case, the interface resolution code will set im->slot, which 
16877         means that the virtual method override pass will skip this method 
16878         which means a pointer to the abstract method inherited from the parent
16879         will remain in the vtable of this non-abstract class.
16880
16881         * class.c: (mono_class_setup_vtable): continue search for a real 
16882         method if only an abstract method is found.     
16883
16884 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
16885
16886         * reflection.c: add size to encoding for ByValStr and ByValArray
16887         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
16888
16889 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16890
16891         * class.c (mono_class_setup_vtable): pass the override info as an
16892         argument.
16893
16894         * class.c (mono_class_setup_vtable): set the slot of overriding methods
16895         correctly.
16896         
16897         * reflection.c (ensure_runtime_vtable); add support for method 
16898         overrides.
16899         
16900 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16901
16902         * reflection.c (resolution_scope_from_image): Hack to work to work with
16903         dynamic assemblies.
16904
16905         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
16906         added a 'force_ref' argument to force this function to allways return 
16907         a TypeRef. This is needed by mono_image_get_memberref_token ().
16908         
16909 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16910
16911         * reflection.c (mono_image_get_type_info): interfaces really don't have
16912         a parent.
16913
16914         * reflection.c (mono_image_basic_init): fill out missing fields of
16915         image structure.
16916
16917         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
16918         dynamic assemblies. This is required so dynamic assemblies show up in
16919         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
16920         Type::GetType() etc. This is consistent with MS behaviour.
16921
16922         * image.c image.h reflection.c: add newly created classes to the name 
16923         cache so mono_class_get () will find them.      
16924
16925 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
16926
16927         First part of changes to get IKVM.NET running under mono.
16928         
16929         * appdomain.h, appdomain.c: added new function 
16930         mono_domain_try_type_resolve() which will emit TypeResolve events. 
16931         This function will call AppDomain::DoTypeResolve to do the actual work.
16932
16933         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
16934         moved existing code dealing with dynamic tokens to a new function 
16935         called mono_reflection_lookup_dynamic_token (). This function will 
16936         raise TypeResolve events when appropriate. Since reflection.c is not 
16937         part of libmetadata, a new hook function called 
16938         mono_lookup_dynamic_token() is added to class.c which will call this.
16939
16940         * assembly.h assembly.c: make the invoke_load_hook function public,
16941         so it can be called for dynamic assemblies.
16942
16943         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
16944
16945         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
16946         type isn't found.
16947
16948         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
16949         MonoGHashTable, since it contains pointers to objects which the GC 
16950         needs to track.
16951
16952         * assembly.c (search_loaded): remove unused variable.
16953         
16954 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
16955
16956         * object.c: fixed issue exposed by gcc-generated IL programs
16957         that use RVA data for pointers.
16958
16959 2003-01-25  Martin Baulig  <martin@ximian.com>
16960
16961         * threads.c (start_wrapper): Moved the initialization of
16962         `start_func' above the mono_new_thread_init() call to which we
16963         pass it as argument.
16964
16965 2003-01-24  Martin Baulig  <martin@ximian.com>
16966
16967         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
16968         the MonoThread pointer.
16969
16970 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
16971
16972         * icall.c: Rename `PowImpl' to Pow.
16973
16974 2003-01-23  Dick Porter  <dick@ximian.com>
16975
16976         * threads.c (start_wrapper): Create a Thread object if needed, so
16977         the Main() thread can do the class initialisation in a subthread
16978         that has been set up to allow managed code execution.
16979
16980         Pass the thread ID instead of the MonoThread pointer to the thread
16981         start and attach callbacks.  This change is required, because the
16982         jit thread start callback must be called _before_ the Thread
16983         object can be created.
16984         
16985         (mono_thread_init): Removed much object creation code that is no
16986         longer needed.  No managed code is called from here now.
16987
16988         * object.c (mono_runtime_exec_managed_code): Create a subthread
16989         for Main, and call back to the runtime to use it.
16990         Set the exit code when Main exits.
16991
16992         * gc.c: Make sure domain finalisation happens in a subthread.
16993         Re-enable threaded GC, fixing bug 31333 (again).
16994
16995         * environment.c: System.Environment internall calls (so far just
16996         ExitCode is here, the others are still in icall.c)
16997
16998         * appdomain.c (mono_runtime_cleanup): All threads running managed
16999         code should have finished before mono_runtime_cleanup() is
17000         reached, so no need to clean up threads.
17001
17002 2003-01-22  Martin Baulig  <martin@ximian.com>
17003
17004         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17005         `gpointer func' arguments.      
17006         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17007         but added `MonoThread *thread' argument.
17008         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17009
17010         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17011         and pass it to the mono_thread_start_cb callback.
17012         (mono_install_thread_callbacks): New public function to install a
17013         set of callbacks which are set by the debugger.
17014         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17015
17016 2003-01-22  Martin Baulig  <martin@ximian.com>
17017
17018         * Makefile.am: Install debug-mono-symfile.h.
17019
17020 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17021
17022         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17023
17024 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17025
17026         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17027         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17028         (mono_array_class_get): correctly set access levels of arrays
17029
17030 2003-01-20      Patrik Torstensson
17031         * image.h (MonoAssemblyName): changed major, minor, build, revision
17032         from signed to unsigned.
17033
17034 2003-01-20  sean kasun <skasun@azstarnet.com>
17035
17036         * reflection.c (load_cattr_value): Now this handles
17037         MONO_TYPE_SZARRAY.  Fixes bug #35629
17038
17039 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17040
17041         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17042         integer value
17043
17044 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17045
17046         * decimal.c: fixed bug #26056.
17047
17048 2003-01-17  Martin Baulig  <martin@ximian.com>
17049
17050         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17051
17052 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17053
17054         * exception.[ch]:
17055         (mono_get_exception_type_initialization): new function.
17056
17057         * object.c: throw a TypeInitializationException when an exception is
17058         thrown invoking the class constructor.
17059
17060 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17061
17062         * reflection.c: fixed attribute reading.
17063
17064 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17065
17066         * icall.c:
17067         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17068         provided, look for the type in the calling assembly and then in
17069         mscorlib; if the assembly name is provided, only try that one.
17070
17071 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17072
17073         * object.c: register the vtable before there is a chance it's
17074         queried again recursively.
17075
17076 2003-01-13  Duncan Mak  <duncan@ximian.com>
17077
17078         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17079         gc-internal.h. 
17080         
17081 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17082
17083         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17084
17085 2003-01-11  Martin Baulig  <martin@ximian.com>
17086
17087         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17088         this to 20 for the release.
17089
17090 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17091
17092         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17093
17094         * loader.c (mono_method_get_marshal_info): bug fix
17095
17096         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17097         structures with explicit layout
17098
17099 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17100
17101         * profiler.c: made the output more readable (and sorted). 
17102         Added caller information for the allocation profiler.
17103
17104 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17105
17106         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17107
17108 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17109
17110         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17111         to get value types.
17112         
17113 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17114
17115         * object.c, profiler.h, profiler.c, profiler-private.h:
17116         Added object allocation profiler.
17117
17118 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17119
17120         * reflection.h, reflection.c: handle global methods.
17121         Compress blob entries.
17122
17123 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17124
17125         * marshal.c: fix compilation.
17126
17127 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17128
17129         * loader.c (mono_method_get_marshal_info): impl.
17130
17131         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17132
17133 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17134
17135         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17136         for reference types.
17137
17138 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17139
17140         * loader.c: fixed off by one error in loaded parameter names.
17141
17142 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17143
17144         * marshal.c (mono_marshal_get_icall_wrapper): like
17145         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17146         instead of a MonoMethod.
17147
17148 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17149
17150         * decimal.c: fixed bug #36537.
17151
17152 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17153
17154         * marshal.c: throw a missing method exception if a
17155         P/Invoke method is not found.
17156
17157 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17158
17159         * icall.c: allow a null this for constructors.
17160
17161 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17162
17163         * icall.c: raise the proper exceptions if the arguments to the
17164         internal Invoke are incorrect.
17165
17166 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17167
17168         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17169
17170 2003-01-03  Martin Baulig  <martin@ximian.com>
17171
17172         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17173
17174 2002-12-31  Martin Baulig  <martin@ximian.com>
17175
17176         * debug-mono-symfile.c: Completely rewrote the type section.
17177         Instead of using individual malloc()ed fields, we use one big
17178         continuous memory area and offsets into this area.
17179         See the comments in the source code for details.
17180
17181 2002-12-30  Martin Baulig  <martin@ximian.com>
17182
17183         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17184
17185 2002-12-30  Martin Baulig  <martin@ximian.com>
17186
17187         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17188         line number table in this data blob instead of using an external
17189         pointer.
17190
17191 2002-12-28  Martin Baulig  <martin@ximian.com>
17192
17193         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17194
17195 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17196
17197         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17198         as a boxed return type.
17199
17200 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17201
17202         * appdomain.c
17203         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17204         g_build_filename to properly get separators on the filename created.
17205
17206         * object.h: Small change, introduce MonoMarshalByRefObject to
17207         track the layout of that structure in the C# universe as we make
17208         changes there.
17209
17210 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17211
17212         * object.c: removed assert to allow static fields on interfaces.
17213         * loader.c: a TypeSpec may be used for any type, not just arrays.
17214
17215 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17216
17217         * class.c, class.h: added mono_class_array_element_size ().
17218         Ignore static methods in interfaces.
17219
17220 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17221
17222         * threads.c: fixed the build under cygwin.
17223
17224 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17225
17226         * reflection.c: handle nullref constants. Allocate keys for
17227         reflection handles with the GC.
17228
17229 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17230
17231         * threads.c, threads.h: added mono_thread_get_abort_signal()
17232         to get a suitable signal for thread abort.
17233
17234 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17235
17236         * metadata.c: fix handling of ExportedType table.
17237
17238 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17239
17240         * icall.c: added WriteWindowsDebugString internal call.
17241
17242 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17243
17244         * reflection.h: added fields to match C# implementation.
17245
17246 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17247
17248         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17249
17250 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17251
17252         * gc.h, gc-internal.h: Rename header for GC internal calls to
17253         gc-internal.h from gc.h as to not clash with Boehm GC having its
17254         header installed as <gc.h> in outside include paths.
17255         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17256         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17257
17258 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17259
17260         * icall.c: assign minor, build and revision in FillName.
17261
17262 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17263
17264         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17265         Added support for running code generated by Reflection.Emit.
17266
17267 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17268
17269         * appdomain.c: check for NULL argument in LoadFrom.
17270
17271 2002-12-10  Dick Porter  <dick@ximian.com>
17272
17273         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17274
17275 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17276
17277         * appdomain.c: fix buglet when building exe file name.  Handle full
17278         assembly name (needed after latest changes to AssemblyName).
17279         * image.c:
17280         (mono_image_close): free some hashtables.
17281
17282 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17283
17284         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17285         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17286         on some systems (redhat 7.3) 
17287
17288 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17289
17290         * threads.c: delete the critical section of a sync block,
17291         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17292
17293 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17294
17295         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17296
17297 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17298
17299         * appdomain.[ch]: handle the assembly preload event to try loading the
17300         assemblies using the paths we have in the current domain.
17301
17302         * assembly.[ch]: created an assembly preload hook that is called to try
17303         loading the assembly by other means that the ones provided here.
17304
17305         * domain.c: initialize the domain search path.
17306
17307         From now on, assemblies (TODO: except corlib and System) are loaded
17308         according to these rules when using mono_assembly_load ():
17309
17310                 1. It tries to load the assembly from the ApplicationBase
17311                 of the current domain appending .dll and .exe (TODO: have to
17312                 try loading from name/name.dll and name/name.exe).
17313
17314                 2. It tries the search path specified in PrivateBinPath for the
17315                 current domain (if any).
17316
17317                 3. Previous behavior.
17318
17319 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17320
17321         * icall.c: implemented GetInterfaceMap() related icall.
17322         * domain.c, loader.h: load MethodInfo in mono_defaults.
17323
17324 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17325
17326         * gc.c: disable the finalizer thread for now, untill all the issues
17327         with it are resolved.
17328
17329 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17330
17331         * string-icalls.c: handle embedded nulls in string ctor when the
17332         length is specified.
17333
17334 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17335
17336         * class.c: look for explicit interface implementation in parent
17337         classes, too.
17338
17339 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17340
17341         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17342
17343 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17344
17345         * gc.c: protect handles with a critical section.
17346
17347 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17348
17349         * icall.c:
17350         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17351         parameters. If no assembly specified, try getting the type from all
17352         the assemblies in the current domain, else, load the assembly and get
17353         the type from it.
17354
17355 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17356
17357         * marshal.c: applied patch from Aleksey Demakov that fixes
17358         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17359
17360 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17361
17362         * icall.c: fixed get_location.
17363
17364 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17365
17366         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17367         declarations to make it work with older gcc. 
17368
17369         * loader.c (mono_get_method): set signature->pinvoke for native calls
17370
17371 2002-11-20  Dick Porter  <dick@ximian.com>
17372
17373         * threads.c (mono_thread_init): Set the main thread's handle
17374
17375 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17376
17377         * gc.c: allow compilation without GC support. Changed to match the
17378         mono coding style.
17379
17380 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17381
17382         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17383
17384 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17385
17386         * reflection.c: set a public key token on the core assemblies.
17387
17388 2002-11-18  Dick Porter  <dick@ximian.com>
17389
17390         * threads.c: Split out some thread initialisation so that other
17391         files can set the start callback function.
17392
17393         * gc.c: Run finalisers in a separate thread, to avoid stack
17394         overflow.  Fixes bug 31333.
17395
17396         * appdomain.c: Set up GC finalisation thread.
17397
17398         * reflection.c: 
17399         * object.c: 
17400         * domain.c: Use gc.h macros for GC_malloc
17401         
17402 2002-11-15  Dick Porter  <dick@ximian.com>
17403
17404         * threadpool.c: 
17405         * threads.c:
17406         * appdomain.c: Removed mono_runtime_init_with_attach(),
17407         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
17408         merging the extra parameter with the existing function.  Removed
17409         unneeded code in mono_thread_attach().
17410
17411 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
17412
17413         * image.c (mono_image_loaded_by_guid): a method to get loaded
17414         images by guid. 
17415         (load_metadata_ptrs): we store the guid as string.
17416
17417 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
17418
17419         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
17420
17421         * metadata.c (mono_guid_to_string): imported method form Zoltan
17422         Varga (slightly modified)
17423
17424         * assembly.c (mono_assembly_open): load precompiled code
17425
17426         * loader.h (MonoMethod): we store the method token for use in the
17427         aot compiler. 
17428
17429 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17430
17431         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
17432         the hook function called when an assembly is loaded.
17433         
17434         * domain.c: Modified file.
17435         (mono_domain_assembly_load): removed hash table insertion of assemblies.
17436
17437         Fixes bug #33196.
17438
17439 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
17440
17441         * reflection.c: Map PEFileKind to the value expected by the WinNT
17442         image loader. 
17443
17444 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17445
17446         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
17447         Read until the buffer is filled completely.
17448
17449 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17450
17451         * icall.c: implemented MonoType.InternalGetEvent ().
17452
17453 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17454
17455         * appdomain.c: implemented InitAppDomainSetup. Delayed
17456         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
17457         the entry_assembly.
17458
17459         * assembly.c: base_dir is now an absolute path ending with
17460         G_DIR_SEPARATOR.
17461
17462         * icall.c: modified get_location according to the above changes.
17463
17464         * object.c: init AppDomain.SetupInformation for the default domain after
17465         we have the entry assembly.
17466
17467         * domain.c: when unloading a domain, setup = NULL.
17468
17469 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
17470
17471         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
17472
17473 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
17474
17475         * object.h, object.c: introduced mono_object_get_virtual_method ()
17476         to lookup the method invoked on an object when a callvirt is done on
17477         a method.
17478         * icall.c: make MethodInfo::Invoke() always do a virtual call.
17479
17480 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17481
17482         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
17483         current domain when loaded an assembly and failed to load it.
17484
17485         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
17486
17487 2002-10-31  Dick Porter  <dick@ximian.com>
17488
17489         * icall.c: 
17490         * file-io.h: 
17491         * file-io.c: Return the error status in a parameter, as the
17492         GetLastError() value has long since been blown away if we try and
17493         look it up in a subsequent internal call invocation.  Delete the
17494         GetLastError() internal call, because it's useless.
17495
17496 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
17497
17498         * class.[ch]: added cast_class to fix bug 29517
17499
17500 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
17501
17502         * marshal.c: create valid IL code in the filter clause:
17503         the new JIT is less forgiving:-)
17504
17505 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17506
17507         * icall.c: removed get_property internal call.
17508
17509 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
17510
17511         * appdomain.h domain.c: Added an ID to appdomains.
17512         
17513         * threads.c threads.h icall.c: Implement icall
17514         Thread:GetDomainID(), and remove unused icall 
17515         CurrentThreadDomain_internal.
17516
17517 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17518
17519         * icall.c: Don't recurse through the base types in GetConstructor.
17520         Fixes bug #32063. 
17521
17522 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17523
17524         * mempool.h, mempool.c: added mono_mempool_empty() and
17525         mono_mempool_stats().
17526
17527 2002-10-23  Dick Porter  <dick@ximian.com>
17528
17529         * file-io.c: 
17530         * file-io.h: 
17531         * icall.c: Added MonoIO.GetFileType internal call
17532
17533 2002-10-17  Dick Porter  <dick@ximian.com>
17534
17535         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17536         delegate semaphore before waiting for all threads to finish,
17537         because new threads can also call async delegates.  Fixes bug
17538         32004.
17539
17540         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17541         of 3 seconds, in case another async job is queued.  (This part is
17542         needed because the bug fix reintroduced the 3s exit lag.)  This
17543         makes the mono_runtime_shutdown flag superfluous.
17544
17545 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17546
17547         * reflection.c: include ehader size in method section headers.
17548         Really check for suplicated modules entries.
17549
17550 2002-10-17  Martin Baulig  <martin@gnome.org>
17551
17552         * debug-mono-symfile.c: Added back support for locals.
17553
17554 2002-10-14  Martin Baulig  <martin@gnome.org>
17555
17556         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17557         MONO_TYPE_VOID.
17558
17559 2002-10-14  Martin Baulig  <martin@gnome.org>
17560
17561         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17562         mono_class_get() instead of looking in the class cache. 
17563
17564 2002-10-13  Martin Baulig  <martin@gnome.org>
17565
17566         * debug-mono-symfile.c: Set version number to 28, include the
17567         signature in method names.
17568
17569 2002-10-13  Martin Baulig  <martin@gnome.org>
17570
17571         * debug-mono-symfile.h: Set version number to 27.
17572
17573 2002-10-11  Martin Baulig  <martin@gnome.org>
17574
17575         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17576
17577 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17578
17579         * metadata.c, metadata.h: added helper function to allocate signatures.
17580
17581 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17582
17583         * icall.c: added internal call to get the location of machine.config.
17584
17585 2002-10-08  Martin Baulig  <martin@gnome.org>
17586
17587         * debug-mono-symfile.c: Ignore classes with a pending init for the
17588         moment.
17589
17590 2002-10-03  Dick Porter  <dick@ximian.com>
17591
17592         * threads.c: Freebsd pthread_t is a pointer
17593
17594 2002-10-03  Dick Porter  <dick@ximian.com>
17595
17596         * socket-io.c: Implemented GetHostName_internal
17597
17598 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17599
17600         * mono-config.c:
17601         (mono_config_parse_file): don't leak the text.
17602
17603 2002-10-02  Martin Baulig  <martin@gnome.org>
17604
17605         * debug-mono-symfile.c: Added support for methods.
17606
17607 2002-10-01  Martin Baulig  <martin@gnome.org>
17608
17609         * debug-mono-symfile.c: Don't emit methods and line numbers for
17610         the dynamic symbol file, just write the type table.  We can easily
17611         have an external helper program which creates a symbol file for an
17612         IL file.        
17613
17614 2002-10-01  Dick Porter  <dick@ximian.com>
17615
17616         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17617         Only add the handle to the cleanup array when we're about to
17618         launch the thread.  Bug 31425 deadlocked when the test was run on
17619         mono under w32.
17620
17621 2002-10-01  Martin Baulig  <martin@gnome.org>
17622
17623         * debug-mono-symfile.c: Added support for properties.
17624
17625 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17626
17627         * reflection.c: unaligned store fix from Mark Crichton
17628         <crichton@gimp.org>.
17629
17630 2002-09-27  Martin Baulig  <martin@gnome.org>
17631
17632         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17633         New interncall.
17634
17635 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17636
17637         * assembly.h, assembly.c: use a sane API to hook into the assembly
17638         loading process instead of a useless special-purpouse hack
17639         (ngen needs a hook, too, for example).
17640
17641 2002-09-27  Dick Porter  <dick@ximian.com>
17642
17643         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17644         io-layer can set up some process handle info.  Not needed on w32,
17645         but doesn't hurt either.
17646
17647         * process.c: Pass the program name in the second parameter to
17648         CreateProcess, so the path is searched.  Include the working
17649         directory. Implemented process name, process enumeration, and some
17650         process detail internal calls.
17651         
17652         * icall.c: Added internal calls for process lookup, and some
17653         process details
17654
17655 2002-09-26  Martin Baulig  <martin@gnome.org>
17656
17657         * assembly.c (mono_install_open_assembly_hook): New global
17658         function to install a function to be invoked each time a new
17659         assembly is loaded.
17660         (mono_assembly_open): Run this callback function if set.
17661
17662         * debug-mono-symfile.c: Put back line numbers for the dynamic
17663         symbol file and also record the .il file as source file.  This
17664         allows us to install the temporary symbol file as `file.dbg' just
17665         like a compiler-generated one.
17666
17667 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17668
17669         * Corrected typo in gc.c (BOHEM vs BOEHM).
17670
17671 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17672
17673         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17674         GetProperties. Also avoid calling g_slist_length in GetProperties and
17675         GetMethods.
17676
17677 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17678
17679         * reflection.c: avoid unaligned stores (bug spotted by
17680         Mark Crichton  <crichton@gimp.org>).
17681
17682 2002-09-25  Martin Baulig  <martin@gnome.org>
17683
17684         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17685         instead of guint64 for addresses and added prologue/epilogue info.
17686
17687 2002-09-25  Martin Baulig  <martin@gnome.org>
17688
17689         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17690         store line number info.  For the dynamic symbol file, we only need
17691         to provide the JIT generated dynamic line number info for the dynamic
17692         symbol file.
17693
17694 2002-09-25  Martin Baulig  <martin@gnome.org>
17695
17696         * debug-mono-symfile.h: Incremented version number.
17697
17698 2002-09-24  Martin Baulig  <martin@gnome.org>
17699
17700         * class.c (mono_debugger_class_init_func): New global function
17701         pointer variable.
17702         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17703         call it.
17704
17705         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17706         function.  This is called via the mono_debugger_class_init_func
17707         hook to add all types to the dynamic type table.
17708         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17709         from its metadata token.
17710
17711         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17712         New interncall for the debugger.
17713
17714 2002-09-24  Nick Drochak <ndrochak@gol.com>
17715
17716         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17717         before using it in case it is null.
17718         
17719 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17720
17721         * metadata.c: allow custom modifiers in local var signatures
17722         (bug spotted by Zoltan Varga).
17723
17724 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17725
17726         * class.c: deal with the <Module> class that may have a NULL vtable.
17727         Eliminate warnings.
17728
17729 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17730
17731         * image.c, image.h: more strong name helpers.
17732         * monosn.c: more work: convert pem keys to cryptoapi format.
17733
17734 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17735
17736         * string-icalls.c: speedup IndexOf.
17737
17738 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17739
17740         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17741
17742 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17743
17744         * icall.c: cleanup: use mono_object_domain ().
17745
17746 2002-09-23  Martin Baulig  <martin@gnome.org>
17747
17748         * debug-mono-symfile.c: Improved type support.
17749
17750 2002-09-22  Martin Baulig  <martin@gnome.org>
17751
17752         * debug-mono-symfile.c: Added support for reference types and strings.
17753
17754 2002-09-22  Martin Baulig  <martin@gnome.org>
17755
17756         * debug-mono-symfile.c: Started to work on the type table.
17757
17758 2002-09-21  Martin Baulig  <martin@gnome.org>
17759
17760         * debug-mono-symfile.c: Largely reworked the symbol table format.
17761         The symbol table is now incrementally updated each time a new
17762         method is added.  We're now also using our own magic and version
17763         so that you don't need to recompile all your classes if the
17764         dynamic table changes.
17765         (mono_debug_update_mono_symbol_file): Removed.
17766         (mono_debug_symfile_add_method): New function to add a method.
17767
17768 2002-09-21  Martin Baulig  <martin@gnome.org>
17769
17770         * icall.c
17771         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17772         New interncall.
17773
17774         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17775         New interncall to get a method from its metadata token.
17776
17777 2002-09-21  Martin Baulig  <martin@gnome.org>
17778
17779         * debug-mono-symfile.c: Create type table.
17780
17781 2002-09-20  Martin Baulig  <martin@gnome.org>
17782
17783         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17784
17785 2002-09-20  Martin Baulig  <martin@gnome.org>
17786
17787         * debug-mono-symfile.c: Provide information about params and locals.
17788
17789 2002-09-20  Martin Baulig  <martin@gnome.org>
17790
17791         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17792         New interncall.
17793
17794         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17795         interncall to get a method from its metadata token.
17796
17797 2002-09-20  Martin Baulig  <martin@gnome.org>
17798
17799         * debug-mono-symfile.c: Added a few checks for method->header
17800         being non-NULL.  This should never happen, but for the moment
17801         let's use a g_warning() rather than a g_assert().
17802
17803 2002-09-19  Mark Crichton  <crichton@gimp.org>
17804
17805         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17806         even if support for it isn't present.  Added an #ifdef to fix this.
17807
17808         * socket-io.c: Added checks back for Solaris support.
17809
17810 2002-09-19  Martin Baulig  <martin@gnome.org>
17811
17812         * debug-mono-symfile.c (read_string, write_string): Reflect latest
17813         changes in the symbol file format.
17814
17815 2002-09-18  Martin Baulig  <martin@gnome.org>
17816
17817         * debug-mono-symfile.c: Set version number to 21.
17818
17819 2002-09-18  Dick Porter  <dick@ximian.com>
17820
17821         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
17822         on netbsd.  Fixes bug 30051.
17823
17824 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17825
17826         * reflection.c:
17827         (set_version_from_string): little fix.
17828
17829 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17830
17831         * monosn.c, Makefile.am: added strong name utility.
17832         * reflection.h, reflection.c: implemented delayed signing,
17833         locale, version and hash id assembly attributes.
17834
17835 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17836
17837         * loader.c, metadata.c: load param attributes in signatures.
17838
17839 2002-09-16  Martin Baulig  <martin@gnome.org>
17840
17841         * debug-mono-symfile.c: Added string table with all method names.
17842
17843 2002-09-14  Martin Baulig  <martin@gnome.org>
17844
17845         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
17846         fast method lookup.
17847
17848 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17849
17850         * reflection.c: record the public key token of referenced assemblies.
17851
17852 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17853
17854         * image.c, image.h: added functions to get the strong name and the
17855         public key of an assembly.
17856         * pedump.c: use them.
17857
17858 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
17859
17860         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
17861
17862 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
17863
17864         * marshal.c (mono_marshal_get_managed_wrapper): Added
17865         MONO_TYPE_BOOLEAN 
17866
17867 2002-09-11  Martin Baulig  <martin@gnome.org>
17868
17869         * gc.c: Call GC_unregister_disappearing_link() on all links when
17870         finalizing them, this is necessary to aviod a crash in boehm's
17871         finalize handler.
17872
17873 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17874
17875         * gc.c: handle GetTarget for finalized objects spotted and fixed by
17876         nick@chemlab.org.
17877
17878 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17879
17880         * icall.c: implemented MonoType::Module.
17881         * reflection.c, reflection.h: mono_module_get_object () from
17882         Tomi Pakarinen <tomi.pakarinen@welho.com>.
17883
17884 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17885
17886         * icall.c: ignore overridden methods in GetMethods ().
17887         Fix for FieldInfo::SetValue().
17888         * object.c: handle float/double in runtime invoke.
17889
17890 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17891
17892         * object.c: allow a constructor to be called again on an object.
17893
17894 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17895
17896         * class.h, class.c: move field layout code to it's own function and
17897         export it. Get an interface id earlier. Move fields in MonoClass
17898         so they are more cache friendly and align the bitfields.
17899         * loader.c: temporary handle get_param_names() for a runtime method.
17900         * reflection.c, reflection.h: more code to handle runtime creation of
17901         types.
17902
17903 2002-09-09  Martin Baulig  <martin@gnome.org>
17904
17905         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
17906         signature with the pinvoke field being set for the actual call.
17907
17908 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17909
17910         * icall.c: removed some unused icalls. Start of map of glib charsets
17911         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
17912
17913 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17914
17915         * debug-helpers.c: break infinite loop (found and fixed by
17916         Holger Arnold <harnold@gmx.de>).
17917
17918 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17919
17920         * icall.c: target may be null in create_delegate.
17921
17922 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17923
17924         * marshal.c: handle a boolean return type.
17925
17926 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17927
17928         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
17929
17930 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17931
17932         * gc.c: fix weakreferences.
17933
17934 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17935
17936         * icall.c: added icall to get default codepage.
17937
17938 2002-09-03  Dick Porter  <dick@ximian.com>
17939
17940         * threads.h: 
17941         * threads.c: Use MonoThread instead of MonoObject where
17942         apropriate.
17943
17944         Store running thread objects in a hash table, so that we have all
17945         the info to hand when waiting for them to finish
17946         (means we don't need OpenThread() any more, so mingw builds should
17947         be fully functional again.)
17948
17949         * verify.c:
17950         * object.h: Added thread ID to MonoThread
17951
17952 2002-09-03  Martin Baulig  <martin@gnome.org>
17953
17954         * icall.c (System.Reflection.Assembly::get_location): New interncall.
17955
17956 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17957
17958         * icall.c: fixed leak in get_temp_path. Thanks lupus.
17959
17960 2002-09-03  Martin Baulig  <martin@gnome.org>
17961
17962         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
17963         argument to store the end address of the disassembled instruction.
17964
17965         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
17966         here from debug-symfile.h.
17967         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
17968         JIT into this struct.
17969         (MonoSymbolFile): Added `char *image_file' field.
17970         (MonoDebugGetMethodFunc): Removed.
17971         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
17972         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
17973         (mono_debug_find_method): New method.
17974
17975         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
17976         create a full symbol file.
17977         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
17978         and static symbol files.
17979         (mono_debug_find_method): The symbol file keeps an internal method hash,
17980         call this to get a MonoDebugMethodInfo from a MonoMethod.
17981
17982         * debug-symfile.[ch]: Removed.
17983
17984 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
17985
17986         * image.c (do_mono_image_open): Remove linker version check.
17987
17988 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
17989
17990         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
17991         wrappers for instance methods.
17992         
17993 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17994
17995         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
17996
17997 2002-08-28  Dick Porter  <dick@ximian.com>
17998
17999         * Makefile.am: Export HOST_CC for w32 builds
18000
18001 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18002
18003         * file-io.c process.c: MonoString are null terminated, no
18004         need for mono_string_to_utf16() anymore.
18005
18006 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18007
18008         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18009
18010 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18011
18012         * icall.c, reflection.h: speedup System.MonoType.
18013
18014 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18015
18016         * reflection.c: allow null as the value of a string argument in
18017         custom attributes constructors.
18018
18019 2002-08-27  Martin Baulig  <martin@gnome.org>
18020
18021         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18022         `trampoline_address' field.
18023
18024 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18025
18026         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18027         check (fixes bug #29486) 
18028
18029 2002-08-27  Martin Baulig  <martin@gnome.org>
18030
18031         * debug-mono-symfile.c: Changed the file format in a way that allows us
18032         open it read-only and to use a specially malloced area for all the
18033         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18034         debugging IL code and there is no MCS generated symbol file for it.
18035
18036 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18037
18038         * object.c: added a define for a good string and array
18039         creation speedup (not enabled by default because we need to deal with
18040         the synch stuff).
18041
18042 2002-08-26  Martin Baulig  <martin@gnome.org>
18043
18044         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18045         function to create a dynamic symbol file.  This is used by the
18046         debugger to create a symbol file for IL code on-the-fly.
18047
18048 2002-08-26  Martin Baulig  <martin@gnome.org>
18049
18050         * loader.c (mono_lookup_pinvoke_call): Include the error message
18051         from g_module_error() in the error message.
18052
18053 2002-08-24  Martin Baulig  <martin@gnome.org>
18054
18055         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18056         function to update the symbol file.  The symbol file is mmap()ed
18057         writable, but private.  This allows us to install the symbol file
18058         together with the assembly.
18059
18060 2002-08-24  Martin Baulig  <martin@gnome.org>
18061
18062         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18063         but they can read the new symbol file format which mcs is now creating.
18064
18065         * debug-symfile.c (mono_debug_find_source_location): Moved to
18066         debug-mono-symfile.c; this is now operating on the new symbol file.
18067
18068 2002-08-23  Martin Baulig  <martin@gnome.org>
18069
18070         * debug-helpers.c (mono_method_desc_from_method): New function to get
18071         a MonoMethodDesc from a MonoMethod.
18072
18073 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18074
18075         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18076         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18077
18078 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18079
18080         * string-icalls.[ch]: make helper methods static.
18081
18082 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18083
18084         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18085         types to it and to SetValueInternal.
18086
18087         * object.c: Moved handle_enum label to its proper place. This was the
18088         f... bug! ;-)
18089
18090         This time i compiled mcs and gtk-sharp and they both work.
18091
18092 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18093
18094         * icall.c: reverted partially my previous patch until 
18095         object.c:set_value handles enums correcly.
18096
18097 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18098
18099         * icall.c:
18100         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18101         (ves_icall_System_Environment_get_MachineName): removed warning when
18102         compiling under cygwin.
18103
18104 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18105
18106         * object.c: fixed field_get_value() for reference types.
18107
18108 2002-08-22  Dick Porter  <dick@ximian.com>
18109
18110         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18111         Don't free a buffer while it's still needed.  Patch from Jonathan
18112         Liger <Jonathan.liger@wanadoo.fr>
18113
18114 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18115
18116         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18117         internal call.
18118
18119 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18120
18121         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18122         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18123
18124         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18125         we call unmanaged code which throws exceptions.
18126
18127 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18128
18129         * appdomain.h: added per-domain entry_assembly.
18130         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18131         arguments.
18132         * icall.c: Assembly::GetEntryAssembly icall.
18133         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18134         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18135
18136 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18137
18138         * appdomain.h, gc.c: added mono_domain_finalize ().
18139
18140 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18141
18142         * object.c:
18143         (mono_print_unhandled_exception): changed g_warning by g_printerr
18144         because g_log has a 1024 characters limit (yeah, i got a big stack
18145         trace). Don't print exception name, that should be in ToString 
18146         returned string.
18147
18148 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18149
18150         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18151         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18152
18153 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18154
18155         * object.c:
18156         (mono_print_unhandled_exception): after previous commit, i realized
18157         that MS calls ToString on the exception. I changed this function to
18158         do that. This way we get stack_trace for free.
18159
18160 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18161
18162         * object.c:
18163         (mono_print_unhandled_exception): invoke Message property instead of
18164         getting 'message' field from Exception. Don't allocate memory for
18165         'trace' and 'message' if not needed.
18166
18167 2002-08-18  Dick Porter  <dick@ximian.com>
18168
18169         * unicode.c: Fix asserts to match Encoder.cs checks
18170
18171 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18172
18173         * marshal.c: fix unaligned store issue and a few wrong
18174         opcode argument types.
18175
18176 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18177
18178         * icall.c: added GetUninitializedObjectInternal internal call.
18179
18180 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18181
18182         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18183         to the right domain.
18184
18185 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18186
18187         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18188
18189         * class.c (class_compute_field_layout): set blittable to false for Strings
18190
18191         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18192
18193 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18194
18195         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18196         first chunk of code to create types at runtime. Code to
18197         handle ReflectedType/DeclaringType. Make reflection handles
18198         domain specific.
18199
18200 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18201
18202         * class.c: set correct name in arrays.
18203
18204 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18205
18206         * appdomain.c (mono_domain_transfer_object): make it work with
18207         valuetypes. bug fixes.
18208
18209 2002-08-12  Dick Porter  <dick@ximian.com>
18210
18211         * object.h: Rename some parameters to avoid c++ keywords (Patch
18212         from Joseph Wenninger <kde@jowenn.at>)
18213
18214 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18215
18216         * icall.c: added icall to implement Assembly.GetFile*.
18217
18218 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18219
18220         * reflection.h, reflection.c: code to embed managed resources.
18221
18222 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18223
18224         * class.c: move all the type size stuff into
18225         class_compute_field_layout().
18226
18227 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18228
18229         * class.c: ensure enums have always the correct instance size.
18230         * unicode.c: remove wrong assert.
18231
18232 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18233
18234         * assembly.c: fix mem corruption issue.
18235         * image.h, image.c: added mono_image_get_resource () to access
18236         managed resources.
18237         * icall.c: implemented Assembly.EntryPoint property and some
18238         Managed Resources related internalcalls.
18239
18240
18241 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18242
18243         * image.c, image.h: impemented mono_image_get_entry_point ().
18244         * appdomain.c: use mono_image_get_entry_point.
18245
18246 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18247
18248         * reflection.c: support the object type argument when loading
18249         custom attributes.
18250
18251 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18252
18253         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18254         String as return type.
18255
18256 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18257
18258         * reflection.c: fix encoding of named args for custom attrs to match
18259         the ms implementation. Read them back when instantiating custom
18260         attributes.
18261
18262 2002-08-02  Radek Doulik  <rodo@ximian.com>
18263
18264         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18265         by Dietmar as quick fix
18266         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18267         16 as stack size, used on more places as quick fix before Dietmar
18268         will fix it properly
18269
18270 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18271
18272         * object.h, object.c: added accessors for fields and properties.
18273
18274 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18275
18276         * class.c, class.h: made mono_class_get_field_from_name ()
18277         loop on parent types.
18278         Added mono_class_get_property_from_name ().
18279
18280 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18281
18282         * class.c, class.h: move the code to setup the type vtable in its own
18283         function so that it can be reused also for types created at runtime.
18284         Eliminate the "class" identifier from the header file.
18285         * reflection.c: setup the vtable for enums so that we can create
18286         objects for use in SetConstant ().
18287
18288 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18289
18290         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18291         instead of the delegate itself as this pointer (bug #28383)
18292
18293 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18294
18295         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18296         conversions.
18297
18298 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18299
18300         * loader.c: don't set the pinvoke bit on icalls.
18301
18302 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18303
18304         * debug-helpers.c (mono_method_full_name): only print a number to
18305         indicate wrapper type (so that the output is more readable in traces).
18306
18307 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18308
18309         * class.c (mono_class_init): include method override patch from Paolo
18310
18311 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18312
18313         * icall.c: fixed GetTypeCode().
18314
18315 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18316
18317         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18318         use real delegate invoke function to make it work with multicast
18319         delegates (fix bug# 28291).
18320
18321 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18322
18323         * object.c: load constant strings.
18324
18325 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18326
18327         * reflection.c: no magic numbers.
18328         * tabledefs.h: security action enum.
18329
18330 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18331
18332         * assembly.c: fix possible memory corruption.
18333
18334 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18335
18336         * reflection.h, reflection.c: added support for linking resources.
18337         * verify.c: check we have an updated corlib.
18338
18339 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18340
18341         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18342         string arrays.
18343         (mono_marshal_string_array): null terminate unmanaged string arrays.
18344         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18345
18346 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18347
18348         * icall.c: Type.GetType () can now return also types from the
18349         calling assembly.
18350
18351 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18352
18353         * loader.h, loader.c: stack walking support.
18354         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18355         GetCallingAssembly.
18356
18357 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18358
18359         * marshal.c: added optimisations for blittable types 
18360
18361         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18362         (mono_class_setup_mono_type): set blittable attribute for single
18363         and double.
18364
18365         * marshal.c (mono_string_utf8_to_builder): impl.
18366         (mono_string_builder_to_utf8): impl.
18367         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18368
18369 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18370
18371         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18372         (mono_marshal_get_managed_wrapper): impl. byref types
18373
18374 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18375
18376         * icall.c:
18377         (search_method): don't display debug message. 
18378
18379 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18380
18381         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18382
18383 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18384
18385         * appdomain.c: set the missing filename when throwing exception.
18386
18387 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18388
18389         * metadata.c (mono_type_size): code cleanup
18390         (mono_type_stack_size): removed some test code
18391
18392 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
18393
18394         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
18395         mono_get_exception_file_not_found now.
18396
18397         * exception.c (mono_exception_from_name_two_strings): New version
18398         that will call a constructor with two string arguments. 
18399         (mono_get_exception_file_not_found): New helper routine, used to
18400         report file-not-found errors.
18401
18402 2002-07-20  Dick Porter  <dick@ximian.com>
18403
18404         * process.h:
18405         * process.c: Pass file handles to CreateProcess
18406         
18407         * icall.c:
18408         * file-io.h:
18409         * file-io.c: Implemented CreatePipe
18410
18411 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18412
18413         * metadata.c (mono_get_param_info): set alignment for value types
18414
18415 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18416
18417         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
18418         Constify mono_domain_assembly_open().
18419         * loader.c: handle null namespace in icalls.
18420
18421 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18422
18423         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
18424         (emit_str_to_ptr_conv): marshal object as structs
18425
18426         * metadata.c (mono_type_to_unmanaged): marshal object as structs
18427
18428         * marshal.c (mono_marshal_get_runtime_invoke): support value types
18429
18430 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
18431
18432         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
18433         (mono_marshal_get_native_wrapper): we an now return value types
18434
18435 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18436
18437         * verify.c: more checks implemented.
18438
18439 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
18440
18441         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
18442         (fix bug #27695)
18443         (mono_marshal_get_native_wrapper): allow byref arguments
18444         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
18445         impl. PtrToStringXXX methods
18446         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
18447         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
18448         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
18449         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
18450         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
18451
18452 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18453
18454         * reflection.c: fix buglet in parsing an assembly name.
18455
18456 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18457
18458         * marshal.c (emit_ptr_to_str_conv): first impl.
18459
18460 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18461
18462         * object.c, class.h: cache the vtable in the class as suggested by
18463         vargaz@freemail.hu (Zoltan Varga).
18464
18465 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18466
18467         * class.h, loader.c: added mono_field_from_token().
18468         * verify.c: first cut of type checking code.
18469
18470 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18471
18472         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
18473
18474 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
18475
18476         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
18477         (fix bug #27782)
18478         (mono_marshal_get_remoting_invoke): impl.
18479         (mono_delegate_begin_invoke): impl.
18480         (mono_mb_emit_save_args): impl.
18481         (mono_delegate_end_invoke): impl.
18482         (mono_marshal_get_delegate_begin_invoke):
18483         (mono_marshal_get_delegate_end_invoke):
18484         (mono_marshal_get_delegate_invoke): generate a special name for
18485         those methods (including the signature) and associate them whith
18486         the delegate class. 
18487
18488 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
18489
18490         * reflection.[ch]: 
18491         (mono_reflection_type_from_name): now it has a MonoImage parameter
18492         which is used as the default image to search the type in. If the image
18493         is NULL or getting the type from it fails, it defaults to corlib.
18494
18495         * icall.c: changed 1 call to mono_reflection_type_from_name to match
18496         new parameter.
18497
18498 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18499
18500         * reflection.c: update the parameter table index.
18501
18502 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18503
18504         * domain.c: don't include the mark byte in the string hash.
18505
18506 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18507
18508         * icall.cs: icall for Type.GetTypeCode ().
18509         * verify: a couple of fixes and disabled local initialization checks.
18510
18511 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
18512
18513         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
18514
18515         * debug-helpers.c (mono_method_full_name): print the type of the
18516         runtime wrapper
18517
18518         * metadata.c (mono_signature_hash): a hash function for signatures
18519         (mono_signature_hash): better hash algorithm
18520
18521         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
18522
18523         * debug-helpers.c (mono_method_full_name): this can now generate
18524         method names with signatures
18525
18526         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18527         method dont have this pointers.
18528
18529 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18530
18531         * reflection.c: fixup typebuilder tokens.
18532         * image.c: fix buglet.
18533         * marshal.h: remove whitespace.
18534         * metadata.h, metadata.c: reinstate code that was removed.
18535         * verify.c: handle catch directives and fix another couple of bugs.
18536
18537 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18538
18539         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18540         (mono_marshal_get_native_wrapper): make it comp. with the old code
18541         (mono_marshal_get_native_wrapper): support boolean
18542         (mono_marshal_get_managed_wrapper): support more types
18543
18544 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18545
18546         * class.c (class_compute_field_layout): compute class->blittable attribute.
18547
18548 2002-07-09  Dick Porter  <dick@ximian.com>
18549
18550         * threads.c: Make the thread cleaning up cope with threads that
18551         call ExitThread()
18552
18553 2002-07-08  Radek Doulik  <rodo@ximian.com>
18554
18555         * reflection.c (method_encode_code): use non-translated values to
18556         compute finally_start, this fixes exception handling on ppc, yay!
18557
18558         * decimal.h (struct signscale): fix endianess
18559
18560 2002-07-07  Radek Doulik  <rodo@ximian.com>
18561
18562         * reflection.c: swap box_val and not val
18563
18564 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18565
18566         * reflection.c, reflection.h: handle full assembly info in type name.
18567         Handle Type arguments when loading custom attributes.
18568         * icall.c: updated to use new mono_reflection_type_from_name () method.
18569
18570 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18571
18572         * loader.c:
18573         (method_from_memberref): also print assembly name when method not found.
18574
18575 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18576
18577         * icall.c:
18578         (ves_icall_TypeGetProperties): fixed bug #27473. 
18579
18580 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18581
18582         * reflection.c: display image name and token when cannot find the
18583         .ctor for an attribute.
18584
18585 2002-07-05  Martin Baulig  <martin@gnome.org>
18586
18587         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18588
18589 2002-07-04  Dick Porter  <dick@ximian.com>
18590
18591         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18592         compile on mingw.  This will cause mingw builds to not wait for
18593         subthreads to terminate after the main thread does.  I've lodged a
18594         bug with the mingw developers for them to wrap OpenThread().
18595
18596 2002-07-03  Dick Porter  <dick@ximian.com>
18597
18598         * threads.c: Store thread IDs instead of handles, because
18599         GetCurrentThread() returns a pseudohandle and therefore stores
18600         useless values.  mono_thread_cleanup() continues checking the
18601         array of threads until it is empty, to cope with subthreads
18602         spawning new threads after the main thread has finished.
18603
18604         * profiler.h:
18605         * profiler.c:
18606         * profiler-private.h: Pass the thread ID to thread profiler
18607         functions, instead of a handle
18608
18609 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18610
18611         * verify.c: fixes to make it more usable.
18612         * pedump.c: added --verify code to verify IL code in an assembly.
18613
18614 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18615
18616         * reflection.c: turn errors into warnings to allow compiling corlib.
18617
18618 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18619
18620         * reflection.c: add special cases to compile corlib.
18621
18622 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18623
18624         * reflection.c: handle properties with only a set method.
18625
18626 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18627
18628         * opcodes.h: add enum with opcodes in opval order.
18629
18630 2002-07-01  Dick Porter  <dick@ximian.com>
18631         
18632         * object.h:
18633         * object.c (mono_runtime_run_main): Removed unneeded argument
18634
18635 2002-06-28  Martin Baulig  <martin@gnome.org>
18636
18637         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18638
18639 2002-06-27  Dick Porter  <dick@ximian.com>
18640
18641         * threads.c: Store the handle in both the parent thread and in the
18642         subthread, to minimise the time between starting a new thread and
18643         storing its ID.
18644
18645 2002-06-26  Dick Porter  <dick@ximian.com>
18646
18647         * appdomain.c (mono_runtime_cleanup): Close the socket library
18648         after all the threads have finished, not before
18649
18650 2002-06-26  Martin Baulig  <martin@gnome.org>
18651
18652         * debug-symfile.c (mono_debug_find_source_location): Added
18653         `guint32 *line_number' argument.  If it's not NULL, store the line number
18654         there and return the file name without the line number.
18655
18656 2002-06-25  Dick Porter  <dick@ximian.com>
18657
18658         * icall.c:
18659         * process.h:
18660         * process.c: Process forking and other support functions
18661
18662 2002-06-25  Dick Porter  <dick@ximian.com>
18663
18664         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18665         things dont happen when the image is closed.
18666         (mono_image_lookup_resource): Walk the resource section looking
18667         for a particular entry
18668
18669         * cil-coff.h: PE resource section decoding
18670
18671 2002-06-25  Dick Porter  <dick@ximian.com>
18672         
18673         * assembly.h:
18674         * assembly.c: 
18675         (mono_assembly_foreach): Accessor functions to walk the list of
18676         loaded assemblies
18677         (mono_assembly_set_main):
18678         (mono_assembly_get_main): Process methods need to know which
18679         assembly is the "main" one
18680
18681         * object.c (mono_runtime_run_main): Record the main assembly
18682
18683         * debug-helpers.c: Fix typo
18684
18685 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18686
18687         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18688         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18689
18690 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18691
18692         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18693
18694 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18695
18696         * image.c (do_mono_image_open): Initialize reference count,
18697         otherwise we leak the MonoImage.
18698
18699 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18700
18701         * reflection.c: small tweak to handle self-hosting.
18702
18703 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18704
18705         * reflection.c: fix type name parse code.
18706
18707 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18708
18709         * reflection.c: break out of the loop.
18710         * image.c: special case corlib.
18711
18712 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18713
18714         * reflection.c: add all the custom attrs at the end to ensure the
18715         ctors have been properly initialized when the attributes are defined
18716         in the current assembly.
18717
18718 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18719
18720         * reflection.c: handle correctly multiple-nested types.
18721
18722 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18723
18724         * row-indexes.h: fix typos.
18725         * reflection.c: adjust for typos and fix method_def_or_ref
18726         encoding in MethodImpl table.
18727
18728 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18729
18730         * reflection.c: fix entry point patching (thanks Serge!).
18731
18732 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18733
18734         * verify.c: add check for System.Exception
18735
18736 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18737
18738         * image.c, class.c: minifix for code just c&p'ed.
18739         * reflection.c: warning fix.
18740         * object.h, loader.h, domain.c: load also StringBuilder.
18741
18742 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18743
18744         * marshal.h, marshal.c: some support code to handle complex marshaling.
18745
18746 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18747
18748         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18749         Better signatures with vtable error dump.
18750
18751 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18752
18753         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18754
18755 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18756
18757         * icall.c (ves_icall_Type_GetField): impl.
18758
18759 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18760
18761         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18762         to retrieve a marshal description blob for a field or param.
18763
18764 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18765
18766         * reflection.h, reflection.c: change order of nested type emission
18767         to avoid table corruption. The NestedTypes table is sorted.
18768         * icall.c: change order of GetConstructor results to workaround mcs bug.
18769
18770 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18771
18772         * reflection.h, reflection.c: handle field and param marshal
18773         information.
18774
18775 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18776
18777         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18778
18779 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18780
18781         * reflection.c: fix call convention.
18782
18783 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18784
18785         * reflection.h, reflection.c: mono_image_get_memberref_token()
18786         takes a type instead of a class, now. Added
18787         mono_image_get_array_token() to create tokens for the special
18788         multi-dim array methods.
18789
18790 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18791
18792         * assembly.c: handle modules (no assembly table). Split
18793         loading references in its own function.
18794         * class.c: handle moduleref resolution scope.
18795         * image.c, image.h: cache module name in image.
18796
18797 2002-06-07  Martin Baulig  <martin@gnome.org>
18798
18799         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18800         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18801
18802 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18803
18804         * icall.c: more signature fixes that used uint instead of int.
18805
18806 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18807
18808         * reflection.c: fixed signature of field refs.
18809
18810 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18811
18812         * class.c, reflection.c: handle typerefs of nested types
18813         (both on read and when writing files).
18814
18815 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18816
18817         * icall.c: fix method signatures that tried to workaround the previous
18818         typo, d'oh!
18819
18820 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18821
18822         * debug-helpers.c: fix typo.
18823
18824 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18825
18826         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
18827         rewrote the PE/COFF writing code (our programs are understood by the
18828         ms runtime, now).
18829
18830 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18831
18832         * gc.c, gc.h, icall.c: weakreference support.
18833
18834 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18835
18836         * Makefile.am, mono-config.c: use $(sysconfdir).
18837
18838 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18839
18840         * icall.c: changed default precision of Double.ToString() to 15.
18841         Fixed memory leak. Unified with Single.ToString.
18842
18843 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18844
18845         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
18846
18847 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18848
18849         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
18850         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
18851         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
18852         and myself.
18853
18854 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18855
18856         * debug-symfile.c, sysmath.c: yet more compilation fixes.
18857
18858 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18859
18860         * reflection.c, socket-io.c: more compilation fixes.
18861
18862 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18863
18864         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
18865         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
18866         unicode.c: warning and compiler compatibility fixes.
18867
18868 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18869
18870         * class.h, metadata.c: fixed warnings/compilation errors.
18871
18872 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18873
18874         * Makefile.am, mono-config.c, mono-config.h: configuration file
18875         support routines.
18876         * loader.c, loader.h: make Dll mapping configurable at runtime in the
18877         config file. Export methods to insert and lookup mappings.
18878
18879 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18880
18881         * reflection.c: handle types and boxed objects in custom attr
18882         constructors.
18883
18884 2002-05-30  Martin Baulig  <martin@gnome.org>
18885
18886         * debug-symfile.c
18887         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
18888
18889 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
18890
18891         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
18892         to lookup the implmap row for a P/Invoke method.
18893         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
18894         P/Invoke method from the runtime on an as needed basis.
18895
18896 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
18897
18898         * metadata.c (mono_metadata_parse_signature): impl.
18899
18900 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18901
18902         * class.c: handle .pack directive.
18903
18904 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18905
18906         * object.c: initialize static fields with RVA data.
18907
18908 2002-05-25  Martin Baulig  <martin@gnome.org>
18909
18910         * debug-symfile.c
18911         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
18912
18913 2002-05-24  Martin Baulig  <martin@gnome.org>
18914
18915         * debug-symfile.c
18916         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
18917         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
18918         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
18919
18920 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18921
18922         * object.c: special case string ctros in invoke.
18923         * gc.c: silly whitespace changes.
18924
18925 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
18926
18927         * threadpool.[ch]: impl. a threadpool that can
18928         be used by mint and mono.
18929
18930 2002-05-22  Martin Baulig  <martin@gnome.org>
18931
18932         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
18933         The first argument is now a `MonoReflectionModuleBuilder *', the return
18934         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
18935         `methods' field to get the method builder.  The `token' argument is the
18936         unfixed token.
18937
18938         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
18939         invalid characters instead of g_assert_not_reached()ing.  This seems
18940         to be the behaviour of mscorlib.
18941
18942 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
18943
18944         * object.c (mono_runtime_invoke_array): applied patch from Rachel
18945         Hestilow to fix bug #25104
18946
18947 2002-05-21  Martin Baulig  <martin@gnome.org>
18948
18949         * debug-symfile.c (mono_debug_find_source_location): New function.
18950         Looks up an IL offset in the line number table and returns the source
18951         location as a string.
18952
18953 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18954
18955         * icall.c:
18956         (mono_double_ToStringImpl): changed %f by %g until we have something
18957         better.
18958
18959 2002-05-21  Nick Drochak  <ndrochak@gol.com>
18960
18961         * icall.c : Use different name for Math.Pow's icall.  Needed to check
18962         parameters first in C#.
18963
18964 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18965
18966         * icall.c, reflection.h: added icall to get info about an event.
18967
18968 2002-05-20  Radek Doulik  <rodo@ximian.com>
18969
18970         * object.c (mono_value_box): don't use memcpy for boxing on BIG
18971         endian
18972         (mono_value_box): don't use memcpy for small sizes on
18973         architectures with unaligned access
18974
18975 2002-05-20  Martin Baulig  <martin@gnome.org>
18976
18977         * reflection.c (mono_reflection_setup_internal_class): Don't crash
18978         if `tb->parent == NULL'.
18979         (mono_reflection_create_internal_class): New function.  This is
18980         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
18981         for enum types.
18982
18983         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
18984         New interncall.
18985
18986 2002-05-19  Martin Baulig  <martin@gnome.org>
18987
18988         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
18989         argument to get the length, don't default to the array length.
18990
18991 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
18992
18993         * assembly.c (mono_assembly_setrootdir): New function used to
18994         override the MONO_ASSEMBLIES directory.
18995
18996 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18997
18998         * icall.c: ValueType_GetHashCode() initialize local var.
18999
19000 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * reflection.c: sort custom attributes table.
19003
19004 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19005
19006         * reflection.c: support named args in custom attributes (write support).
19007
19008 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19009
19010         * reflection.c: fix finally position calculation.
19011
19012 2002-05-15  Radek Doulik  <rodo@ximian.com>
19013
19014         * reflection.c: fixed endianess at many places
19015
19016         * icall.c (ves_icall_InitializeArray): comment out debug msg
19017
19018 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19019
19020         * object.c (mono_unhandled_exception): new function to handle
19021         unhandled exceptions.
19022         (mono_unhandled_exception): call the UnhandledException event.
19023         (mono_runtime_delegate_invoke): impl.
19024
19025 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19026
19027         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19028         returns the RVA, not the direct pointer to the data. Handle the case
19029         when the class size is fixed.
19030
19031 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19032
19033         * reflection.c: fix some endianess issues.
19034
19035 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19036
19037         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19038
19039         * threads.c (mono_thread_init): added a callback which is invoked
19040         at thread start.
19041
19042 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19043         
19044         * icall.c: make GetHashCode return non-negative values.
19045
19046 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19047
19048         * object.c, icall.c, gc.c: revert to address-based hashcode.
19049
19050 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19051
19052         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19053
19054 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19055
19056         * icall.c, class.c: special case <Module>.
19057
19058 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19059
19060         * icall.c: fix bug in GetNow().
19061
19062 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19063
19064         * object.c (mono_runtime_class_init): make sure that we call all
19065         static class constructors.
19066
19067 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19068
19069         * reflection.c: sort methodsemantics table.
19070
19071 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19072
19073         * reflection.h, reflection.c: honour init locals setting.
19074
19075 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19076
19077         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19078
19079 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19080
19081         * reflection.c: support ContructorBuilders in attribute blob creation.
19082
19083 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19084
19085         * reflection.c: some changes to build a binary that can be run
19086         directly in windows.
19087
19088 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19089
19090         * loader.c: print a big message when an icall can't be found.
19091
19092 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19093
19094         * string-icalls.c: fix bug 24248.
19095
19096 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19097
19098         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19099         icall.c, reflection.h: separate assembly loading by pathname and by
19100         assembly name. Use the MONO_PATH env var to search for assemblies.
19101
19102 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19103
19104         * assembly.c, image.h: add some support for assemblies
19105         with multiple modules.
19106         * class.c, class.h: export mono_class_from_typeref().
19107         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19108         instead.
19109
19110 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19113         documentation says (the ECMA one is correct).
19114
19115 2002-05-02  Dick Porter  <dick@ximian.com>
19116
19117         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19118         Don't name the synchronisation mutex.
19119
19120 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19121
19122         * rand.c
19123         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19124         Make the prototypes match.
19125         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19126         Same.
19127
19128         * icall.c
19129         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19130         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19131         all systems have tm.tm_zone, so use strftime() with %Z to print
19132         the timezone abreviation into a temp string.
19133
19134         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19135         rather than mono_array_addr() on a MonoString on Big Endian
19136         machines.
19137
19138 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19139
19140         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19141         fix bug 24041
19142
19143 2002-04-30  Dick Porter  <dick@ximian.com>
19144
19145         * socket-io.c: Cope with SOCKET being an integer rather than a
19146         pointer now.
19147
19148         * threads.c: Added Thread_free_internal, to deal with thread
19149         handle cleanup.  Moved calls to handle_store() and handle_remove()
19150         to start_wrapper(), so each can only be called once.  Allocate
19151         synchronisation blocks with GC_malloc(), and use GC finalisation
19152         to close the handles.
19153
19154         * icall.c: added System.Threading.Thread::Thread_free_internal
19155
19156 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19157
19158         * icall.c: support Environment.Exit, CommandLineArgs().
19159
19160 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19161
19162         * object.c, object.h: added mono_runtime_run_main () and
19163         mono_runtime_get_main_args () for use in System.Environment.
19164
19165 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19166
19167         * gc.c: fix thinko, enable actual finalization since the jit is now
19168         fixed.
19169
19170 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19171
19172         * gc.c, object.c: take into account that an object may be offset wrt the address
19173         returned by GC_malloc().
19174
19175 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19176
19177         * image.c: handle files without entries in the assembly table (modules).
19178
19179 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19180
19181         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19182         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19183         allowed to be null when it's System.Object class setup.
19184
19185 2002-04-27  Martin Baulig  <martin@gnome.org>
19186
19187         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19188         if `tb->parent == NULL' rather than crashing.
19189
19190 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19191
19192         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19193         calling acos() where asin() should have been called.
19194
19195 2002-04-26  Martin Baulig  <martin@gnome.org>
19196
19197         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19198         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19199         there's a subdirectory called `System', but we don't want to read that
19200         subdirectory as an assembly.
19201
19202 2002-04-25  Martin Baulig  <martin@gnome.org>
19203
19204         * debug-symfile.c: Reflect latest MonoString changes.
19205
19206 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19207
19208         * rand.c, rand.h: instance method icalls need to have an explicit
19209         this pointer as first argument in the C implementation.
19210
19211 2002-04-25  Nick Drochak <ndrochak@gol.com>
19212
19213         * icall.c: Fix typo in map for GetNonZeroBytes
19214
19215 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19216
19217         * string-icalls.c : String does now passes unit tests without any 
19218         errors, the following changes has been made:
19219         
19220         Implemented replace methods.
19221         Renaming of methods to (try) follow the standard.
19222         Fixed compare ordinal
19223         Made all memory allocated directly to function instead of via icall function.
19224         Small performance fix in is_in_array function
19225                         
19226  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19227
19228         c (mono_string_Internal_ctor_charp_int_int):
19229         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19230         sindex < 0, throw ArgumentOutOfRangeException instead of
19231         ArgumentNullException.
19232
19233         Added new check for length == 0, however
19234         I need to make it return String.Empty from the C code.
19235         
19236         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19237         that calculate the length for us here.
19238         
19239         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19240         mono_string_new_utf16 with mono_string_new, since value is utf8.
19241
19242 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19243
19244         * object.c: register the object for finalization if needed.
19245         Allocate one more char in the string for the terminating 0 char.
19246
19247 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19248
19249         * class.c, class.h, image.c: check if a type implemenst a destructor.
19250         Use the proper key for array class lookups.
19251         * icall.c: register the icalls in the System.GC class.
19252         * gc.c, gc.h: GC-related functions and icalls.
19253
19254 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19255
19256         * icall.c:
19257         * socket-io.c:
19258         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19259         changed a couple of free () by g_free ().
19260
19261         * decimal.c: one-liner in the comments for decimal2string ().
19262
19263 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19264
19265         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19266
19267 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19268
19269         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19270         * object.c (mono_runtime_invoke_array) : handle null in params
19271
19272 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19273
19274         * string-icalls.c: fixed bug in split (one off bug)
19275
19276 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19277
19278         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19279         * icalls.c: added String::Equals as internal method
19280
19281 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19282
19283         * threads.c: fixed bug in the double interlocked functions
19284
19285 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19286
19287         * threads.c: implemented all of the new interlocked icalls.
19288         * string-icalls.c: fix a bug in insert.
19289         * icalls.c: added the icalls for interlocked, removed old string functions.
19290         
19291 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19292
19293         * loader.c: fix off-by-one error when reading argument names.
19294
19295 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19296
19297         * profiler.c: win32 counter implementation (untested).
19298         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19299         (the latter needs testing and more complete impl. from win32 folks).
19300
19301 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19302
19303         * object.c: mono_array_new_full workaround mono_array_class_get
19304         problem.
19305
19306 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19307
19308         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19309         * object.h (mono_string_chars): Changed casting type.
19310
19311 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19312
19313         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19314                            method signatures to use gunichar2 instead of gint16.
19315
19316 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19317
19318         * object.h, object.c: domain-specific versions of mono_object_new and
19319         mono_array_new.
19320
19321 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19322
19323         * object.c: changed String layout
19324
19325         * string-icalls.c (mono_string_Internal_ctor_chara): added
19326         internal string constructors.
19327
19328 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19329
19330         * threads.c: pass 'this' to the thread start routine.
19331
19332 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19333
19334         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19335         InternalCompareStr don't call twice mono_string_cmp_char for the last
19336         character. Improved performance in mono_string_cmp_char.
19337
19338 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19339
19340         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19341         code into its own library: libmonoruntime.
19342
19343 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19344
19345         * object.h, object.c: changed array format so that szarrays do not
19346         require a bounds structure.
19347         * icall.c, appdomain.c: support for new szarray format.
19348
19349 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19350
19351         * metadata.c: compare also the retuns type when comparing signatures:
19352         we didn't do this as an optimization since really overloaded methods
19353         must differ also in the arguments, but this doesn't work with
19354         low-level IL code (or when using explicit conversion operators: see
19355         bug#23498 for an example).
19356
19357 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19358
19359         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19360
19361 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19362
19363         * icall.c: make MonoType::GetElementType its own icall.
19364
19365 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19366
19367         * icall.c: remove MonoMethod_get_Name().
19368         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19369         object.
19370
19371 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19372
19373         * string-icalls.c: optimized a few methods.
19374
19375 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19376
19377         * icall.c: added all new string internal calls
19378         * string-icalls.c: added, new string internal call implementation.
19379         * object.c: added mono_string_new_size for allocating a string a size
19380
19381 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19382
19383         * object.c (mono_object_isinst): use the same code as in the
19384         optimized x86 version.
19385
19386 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19387
19388         * profiler.c: TSC-based timer code (faster and more accurate).
19389         Not hooked up in configure, yet (set USE_X86TSC to 1).
19390
19391 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
19392
19393         * profiler.c, profiler.h: track time spent compiling methods.
19394         * threads.c: track thread creation/destruction.
19395
19396 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
19397
19398         * profiler.c, profiler.h, profiler-private.h: profiling interface
19399         and sample implementation. Moved here so that it can be used also by
19400         the jit.
19401
19402 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
19403
19404         * reflection.c, reflection.h: keep types and other handles separate in
19405         the hash tables for referred tokens. Add guid for modules.
19406
19407 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19408
19409         * assembly.c: fix bugs found with valgrind.
19410         * metadata.h, metadata.c: added mono_metadata_guid_heap().
19411
19412 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
19413
19414         * threads: added icall support for getting current domain for
19415                    the thread.
19416  
19417 2002-04-13  Martin Baulig  <martin@gnome.org>
19418
19419         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
19420         (MonoDebugVarInfo): Added `index' field for register based addresses.
19421         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
19422         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
19423         `MonoDebugVarInfo *params' and `guint32 this_offset' with
19424         `MonoDebugVarInfo *this_var'.
19425
19426         * debug-symfile.c (relocate_variable): New static function to write
19427         a location description for a local variable or method parameter.
19428
19429 2002-04-12  Martin Baulig  <martin@gnome.org>
19430
19431         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
19432         stack offset and begin/end scope address of a local variable.
19433         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
19434         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
19435         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
19436
19437         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
19438         Added new relocation types for start/end scope of a local variable.
19439
19440 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19441
19442         * object.h: add mono_object_domain() macro.
19443         * reflection.c: handle typespecs.
19444         * icall.c: MonoMethod::get_Name() implementation.
19445
19446 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19447
19448         * icall.c: String::GetHashCode() icall implementation.
19449
19450 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19451
19452         * icall.c: String::IndexOfAny icall.
19453         * object.c, object.h: make array->max_length more useful.
19454         Intrduced mono_object_class() and mono_string_length() macros.
19455
19456 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19457
19458         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
19459         instead of g_unichar_isdigit.
19460
19461 2002-04-11  Nick Drochak  <ndrochak@gol.com>
19462
19463         * icall.c: Implement a simple Double.ToString().
19464
19465 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19466
19467         * appdomain.h: only io-layer.h is supposed to be included.
19468         * icall.c: explicitly import environ. Fix warning.
19469
19470 2002-04-10  Nick Drochak  <ndrochak@gol.com>
19471
19472         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
19473                 return true even if it's not Daylight Savings time.
19474                 Only return false for the case where the function isn't
19475                 implemented for a plaform (read Windows).
19476
19477 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19478
19479         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
19480         data with a mutex.
19481
19482 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
19483
19484         * mempool.c (mono_mempool_alloc): only use g_malloc when
19485         absolutely necessary.
19486
19487 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19488
19489         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
19490
19491         * class.c (mono_class_vtable): use domain mempool to allocate vtable
19492         (mono_class_proxy_vtable): use domain mempool
19493
19494 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19495
19496         * appdomain.h, appdomain.c: split initialization that requires the
19497         execution engine support into mono_runtime_init().
19498
19499 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19500
19501         * class.c (mono_class_init): don't include vtable inside MonoClass
19502         to save some memory, gather some statistics.
19503         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
19504
19505 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19506
19507         * icall.c: internalcall implementation for ValueType.Equals().
19508
19509 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
19510
19511         * object.c (mono_message_init): moved 
19512         (mono_runtime_exec_main): new arch. independent impl.
19513         (mono_runtime_invoke_array): new method - like
19514         mono_runtime_invoke, but you can pass an array of objects.
19515         (mono_remoting_invoke): new arch. independent impl.
19516         (mono_message_invoke): new arch. independent impl.
19517         (mono_runtime_class_init): new arch. independent impl.
19518         (mono_runtime_object_init): new arch. independent impl.
19519
19520 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19521
19522         * metadata.c, object.c, reflection.c: documented the exported
19523         functions.
19524
19525 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19526
19527         * icall.c: simpler code to pass the assembly builder data to corlib.
19528         Implement GetNestedTypes() internalcall.
19529
19530 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19531
19532         * class.c: warn if a type can't be loaded.
19533
19534 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19535
19536         * image.h: typedef MonoImageOpenStatus
19537         * types.h: removed unused file
19538         
19539 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19540
19541         * icall.c: Enum_ToObject accepts enum value arguments.
19542
19543 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19544
19545         * class.c: move initialization of properties, events and nested
19546         classes, so that they happen for interfaces, too.
19547
19548 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * icall.c: cleanup some ugly casts in Array_SetValue*.
19551
19552 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19553
19554         * icall.c: the values array fro enums is of the correct type, now.
19555         Implement (correctly) getFullName instead of assQualifiedName for
19556         MonoType.
19557         * reflection.h, reflection.c: added mono_type_get_name ().
19558
19559 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19560
19561         * assembly.c, image.h: for each MonoImage, record from wich assembly
19562         it was loaded.
19563         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19564         Make Type.Assembly work.
19565
19566 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19567
19568         * debug-symfile.h: use char* instead of gpointer to avoid
19569         unnecessary casts.
19570
19571         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19572
19573         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19574         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19575
19576 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19577
19578         * icall.c (mono_message_init): impl. (code cleanup)
19579         (ves_icall_InternalExecute): impl. FieldGetter
19580
19581         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19582         defined we call all (non-static)methods through the vtable. 
19583
19584 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19585
19586         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19587         finalizer even though the memory is still referenced (and the chunk of
19588         memory is not freed).
19589
19590 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19591
19592         * assembly.c: fix brokeness.
19593
19594 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19595
19596         * class.c: kill some warnings. Check explicit interface method
19597         implementation also without considering the namespace.
19598         Load also literal strings in static class data.
19599
19600 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19601
19602         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19603         (default_assembly_name_resolver): Make the resolver take the
19604         "base" directory where the assembly was originally defined, so we
19605         can load DLLs that are in the same directory as the assembly that
19606         is being referenced.
19607
19608 2002-03-28  Dick Porter  <dick@ximian.com>
19609
19610         * file-io.h: 
19611         * file-io.c:
19612         * socket-io.c: 
19613         * unicode.h: 
19614         * unicode.c: Warning cleanups
19615
19616 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19617
19618         * object.h, reflection.h: use the correct type instead of MonoObject.
19619
19620 2002-03-28  Martin Baulig  <martin@gnome.org>
19621
19622         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19623         (mono_debug_update_symbol_file): Initialize classes if necessary.
19624
19625 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19626
19627         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19628         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19629
19630 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19631
19632         * assembly.h: fix function prototype.
19633         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19634         * mono-endian.h: use const cast.
19635
19636 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19637
19638         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19639
19640 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19641
19642         * loader.c: don't assert when a typeref can't be loaded, give
19643         a chance to the runtime to trow an exception instead.
19644         * loader.h: fix warning.
19645
19646 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19647
19648         * class.c (mono_class_proxy_vtable): added proxy support
19649
19650 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19651
19652         * icall.c: removed last of PAL calls, added System.Environment
19653         * file-io.h, file-io.c: MonoIO implementation
19654         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19655
19656 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19657
19658         * appdomain.c: do not use the byte marker in ldstr table lookup.
19659         * debug-helpers.c: allow two ':' to separate class and method name.
19660         * object.c: allocate arrays bounds with the GC, too.
19661         * verify: add a few more checks.
19662
19663 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19664
19665         * reflection.c: output also literal strings. Allocate parameter data
19666         with GC_malloc() (thanks, Martin, for catching this!).
19667
19668 2002-03-26  Martin Baulig  <martin@gnome.org>
19669
19670         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19671         include the `this' offset in the `param_offsets'.
19672
19673 2002-03-25  Martin Baulig  <martin@gnome.org>
19674
19675         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19676         mono_debug_get_class() function to get the classes. Added new
19677         relocation types for arrays and strings.
19678         (mono_debug_get_class): New static function to search in all
19679         referenced assemblies for a metadata token.
19680
19681         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19682
19683 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19684
19685         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19686         hold gc-allocated objects. Make the string heap a stream like the
19687         others. Removed duplicated code when writing stream info.
19688         Added asserts to catch possible buffer overflows. Set the sorted map
19689         for tables that need sorting. Added some documentation.
19690
19691 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19692
19693         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19694         for interned strings and vtables.
19695
19696 2002-03-24  Martin Baulig  <martin@gnome.org>
19697
19698         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19699         it in the array since it was created with g_slist_prepend().
19700
19701 2002-03-24  Martin Baulig  <martin@gnome.org>
19702
19703         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19704         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19705         (mono_debug_method_from_token): Renamed to
19706         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19707         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19708
19709         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19710         relocation types.
19711
19712         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19713
19714 2002-03-24  Martin Baulig  <martin@gnome.org>
19715
19716         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19717         (mono_debug_method_from_token): New func.
19718
19719         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19720         New interncall, calls mono_debug_local_type_from_signature().
19721         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19722         calls mono_debug_method_from_token().
19723
19724 2002-03-23  Martin Baulig  <martin@gnome.org>
19725
19726         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19727         specifies the number of bytes to be converted, not the array size.
19728         Return the number of chars, not the number of bytes.
19729         (ves_icall_iconv_get_chars): The `byteCount' argument
19730         specifies the number of bytes to be converted, not the array size.
19731
19732 2002-03-23  Martin Baulig  <martin@gnome.org>
19733
19734         * reflection.h (MonoReflectionSigHelper): New type.
19735
19736         * reflection.c (mono_reflection_sighelper_get_signature_local),
19737         (mono_reflection_sighelper_get_signature_local): New functions.
19738
19739         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19740         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19741         interncalls.
19742
19743 2002-03-23  Martin Baulig  <martin@gnome.org>
19744
19745         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19746         is_writeable is set.
19747         (mono_raw_buffer_update): New function to write the modified map
19748         back to disk.
19749
19750         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19751
19752         * debug-symfile.c (mono_debug_update_symbol_file): Call
19753         mono_raw_buffer_update() when done writing.
19754
19755 2002-03-23  Martin Baulig  <martin@gnome.org>
19756
19757         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19758
19759         * debug-symfile.c: Added support for arguments and local variables.
19760
19761 2002-03-23  Dick Porter  <dick@ximian.com>
19762
19763         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19764         protected by ifdefs, hence breaking the w32 build.
19765
19766 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19767
19768         * object.c: implement is_interned() the right way.
19769
19770 2002-03-21  Martin Baulig  <martin@gnome.org>
19771
19772         * debug-symfile.[ch]: New files to handle debugging information
19773         files. There's also support to dynamically update these symbol
19774         files to include machine dependent information.
19775
19776 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19777
19778         * threads.c (mono_thread_create): new function to create thread
19779         from C
19780
19781 2002-03-20  Martin Baulig  <martin@gnome.org>
19782
19783         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19784         method is a constructor.
19785         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19786         points to ves_icall_InternalInvoke().
19787
19788 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19789
19790         * file-io.c: Flush shouldn't throw exceptions.
19791
19792 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19793
19794         * file-io.c: FileStream flush support; FileSetLength now
19795         restores file pointer.
19796
19797 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19798
19799         * class.c: set image for pointer classes.
19800
19801 2002/03/19  Nick Drochak <ndrochak@gol.com>
19802
19803         * sysmath.c: Forgot one.
19804
19805 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19806
19807         * sysmath.c: Avoid redefining existing names.
19808
19809 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
19810
19811         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
19812         handled by runtime as icall rather than dllimport from libm.so
19813         * file-io.c, file-io.h: fixed handle argument type.
19814
19815 2002-03-18  Dick Porter  <dick@ximian.com>
19816
19817         * reflection.c (mono_image_get_type_info): rename interface to
19818         iface, because of "#define interface struct" on windows.
19819
19820 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
19821
19822         * class.c, class.h: rename and export mono_ptr_class_get().
19823         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
19824         * reflection.c, reflection.h, icall.c: better/saner type name
19825         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
19826         method signatures.
19827
19828 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
19829
19830         * class.c (mono_class_init): removed hardcoded GHC_SLOT
19831
19832         * icall.c (ves_icall_InternalInvoke): impl.
19833
19834 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19835
19836         * reflection.c: output the interface map table, too.
19837
19838 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19839
19840         * class.c (class_compute_field_layout): separate computation of 
19841         static field layout
19842
19843 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
19844
19845         * icall.c: added System.Buffer support.
19846         * file-io.c: moved file icalls from PAL to FileStream.
19847
19848 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
19849
19850         * icall.c (ves_icall_System_Object_GetHashCode): impl.
19851
19852 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
19853
19854         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
19855
19856 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19857
19858         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
19859
19860 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19861
19862         * debug-helpers.{c,h}: moved here from monograph some useful functions
19863         to locate a method by name/signature in a class or image. Included
19864         also a small and flexible IL disassembler.
19865
19866 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
19867
19868         * reflection.c: fixup tokens in methods with small header size, too.
19869
19870 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
19871
19872         * object.c (mono_string_to_utf8): remove assert(!error), instead
19873         print a warning. 
19874
19875 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
19876
19877         * icall.c: update to the new mono_Array_class_get interface.
19878
19879 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19880
19881         * appdomain.c, object.c: Boehm-GC enable.
19882         * icall.c: make get_data_chunk() support split data requests.
19883         Ensure a class is initialized in more cases. Return only the first
19884         property found in GetProperties() or the compiler gets confused. 
19885         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
19886         * reflection.h, reflection.c: add fixup mechanism for field and method
19887         tokens. Initialize assembly->typeref in a single place. Output
19888         properties after events. Support custom attributes for events, too.
19889         Typo fix for paramter custom attrs.
19890
19891 2002-03-07  Martin Baulig  <martin@gnome.org>
19892
19893         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
19894
19895 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
19896
19897         * class.c (mono_array_class_get): fix. for multi. dim. arrays
19898
19899 2002-03-06  Martin Baulig  <martin@gnome.org>
19900
19901         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
19902         non-zero lower bounds. See testcases #F10-#F13.
19903
19904 2002-03-05  Martin Baulig  <martin@gnome.org>
19905
19906         * exception.c (mono_get_exception_argument_out_of_range): New exception.
19907
19908         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
19909         ves_icall_System_Array_GetValue(), only calculate the absolute array position
19910         here.
19911         (ves_icall_System_Array_SetValue): Likewise.
19912         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
19913         as argument and does the actual work. This function is used when copying a
19914         multi-dimensional array.
19915         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
19916         now do all the widening conversions of value types.
19917         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
19918
19919 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19920
19921         * class.c: remove some magic numbers and use the smbolic names,
19922         instead. Added init_events() to load event info at class init time.
19923         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
19924         and mono_metadata_methods_from_event().
19925         * reflection.h, reflection.c: added support for writing out the evnets
19926         related information.
19927
19928 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19929
19930         * reflection.h, icall.c: use a different method (GetInterfaces)
19931         to gather interface info and add isbyref, isprimitive and
19932         ispointer to the ves_icall_get_type_info() return value.
19933
19934 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
19935
19936         * class.h: stared adding support for events.
19937         * icall.c: split find_members implementation. Added debug icall to get
19938         the address of an object.
19939         * reflection.c: handle TypeBuilders in mono_type_get_object().
19940
19941 2002-03-01  Martin Baulig  <martin@gnome.org>
19942
19943         * icall.c (ves_icall_System_Array_GetLength): This must throw an
19944         ArgumentOutOfRangeException(), not an ArgumentException().
19945         (ves_icall_System_Array_GetLowerBound): Likewise.
19946         (ves_icall_System_Array_GetValue): Improved argument checking.
19947         (ves_icall_System_Array_SetValue): Improved argument checking.
19948
19949 2002-03-01  Martin Baulig  <martin@gnome.org>
19950
19951         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
19952         called with invalid arguments rather than just dying with g_assert().
19953         (ves_icall_System_Array_SetValue): Likewise.
19954         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
19955         raise a NotImplementedException instead.
19956         (ves_icall_System_Array_GetLength): Added argument checking.
19957         (ves_icall_System_Array_GetLowerBound): Added argument checking.
19958
19959 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
19960
19961         * object.h (mono_assert): new macros mono_assert and
19962         mono_assert_not_reached
19963
19964 2002-02-28  Martin Baulig  <martin@gnome.org>
19965
19966         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
19967         and "System::String::IsInterned" to "System::String::_IsInterned".
19968
19969 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
19970
19971         * icall.c: remove hacks for typebuilder. Added icall to create a
19972         modified type from a tybebuilder.
19973         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
19974         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
19975         to create a backing MonoClass for a TypeBuilder.
19976
19977 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19978
19979         * class.c, class.h: more refactoring of class init.
19980         Export mono_class_setup_mono_type() and mono_class_setup_parent().
19981
19982 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
19983
19984         * marshal.c, marshal.h: start of marshaling interface.
19985
19986 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19987
19988         * icall.c: fix order in assembly qualified name icall.
19989
19990 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19991
19992         * class.c: do not free str, since we store it in the hash table.
19993         * reflection.h: add label field to MonoILExceptionInfo.
19994         * reflection.c: handle references to more than one assembly. Handle
19995         case when there isn't a module created in the assembly.
19996
19997 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19998
19999         * class.c: Fix typo. Start refactoring of class init code.
20000
20001 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20002
20003         * appdomain.c: exit with 1 on error.
20004         * class.c: we already have the name in MonoClassField.
20005         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20006         MonoStreamHeader instead of an offset of image->raw_metadata.
20007
20008 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20009
20010         * appdomain.c (mono_init): Be even more descriptive about the error.
20011
20012 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20013
20014         * appdomain.c: give the user an informative message when corlib can't
20015         be loaded.
20016
20017 2002-02-26  Martin Baulig  <martin@gnome.org>
20018
20019         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20020         New icall to get the time zone data.
20021
20022 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20023
20024         * reflection.c: set virtual and raw size of section correctly.
20025         * threads.c: transfer domain information to newly created threads.
20026
20027 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20028
20029         * class.c: when instancing a class in a domain, load the default
20030         vaules for static fields from the constant table. Fix System.Enum to
20031         not be an enum.
20032         * icall.c: implement Object::GetType() internalcall. Implemented
20033         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20034         Fixed checking of binding flags in find_members().
20035         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20036         * reflection.c: handle enumerations when writing to the constant
20037         table. Use a different object cache for types.
20038
20039
20040 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20041
20042         * object.c (mono_object_isinst): fix for arrays
20043
20044         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20045
20046 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20047
20048         * object.c: don't use mprotect ()  and fix intern pool hash table
20049         lookup for big endian systems.
20050
20051 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20052
20053         * icall.c: change type_is_subtype_of () signature.
20054
20055 2002-02-21  Mark Crichton  <crichton@gimp.org>
20056
20057         * rand.c, rand.h: Added random number generator for
20058         System.Security.Cryptography classes.
20059
20060         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20061
20062         * icall.c: Added System.Security.Cryptography calls.
20063
20064 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20065
20066         * class.c, icall.c, metadata.c: better support for pointer types.
20067         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20068         * reflection.c: Add support for getting custom attrs for properties
20069         and simplify some code.
20070
20071 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20072
20073         * icall.c: change getToken () and add custom attribute GetBlob()helper
20074         method.
20075         * reflection.h: add custom attrs array to the reflection builder structures.
20076         * reflection.c: encode and emit custom attributes for all the relevant
20077         reflection objects. Cache fieldref and methodref tokens. Change
20078         mono_image_create_token() interface to take a MonoDynamicAssembly.
20079         More complete custom attributes decoder. Load custom attributes for
20080         Assembly, Field, Method and Constructor objects, too. Make the
20081         returned array an Attribute[] one, not object[]. Added
20082         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20083         custom attribute constructor.
20084
20085 2002-02-20  Dick Porter  <dick@ximian.com>
20086
20087         * icall.c:
20088         * rawbuffer.c:
20089         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20090         problem code out for now).
20091
20092 2002-02-19  Radek Doulik  <rodo@ximian.com>
20093
20094         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20095
20096 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20097
20098         * icall.c: register the GetCustomAttributes method.
20099         * object.c, object.h: add mono_string_new_len ().
20100         * reflection.h, reflection.c: added mono_runtime_invoke(),
20101         mono_install_runtime_invoke(). Added
20102         mono_reflection_get_custom_attrs () to load custom attributes and
20103         create the attribute objects.
20104
20105 2002-02-19  Dick Porter  <dick@ximian.com>
20106         * threads-dummy-types.c:
20107         * threads-dummy-types.h:
20108         * threads-dummy.c:
20109         * threads-dummy.h:
20110         * threads-pthread-types.c:
20111         * threads-pthread-types.h:
20112         * threads-pthread.c:
20113         * threads-pthread.h:  Deleted obsolete files
20114
20115 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20116
20117         * class.c (mono_class_vtable): runtime init the class when we
20118         allocate static class data.
20119
20120         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20121
20122         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20123         and String - but we will need generic marshalling support in the
20124         future. 
20125         (mono_init): set the domain name in a ms compatible way
20126
20127         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20128         String[].
20129
20130 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20131
20132         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20133         for sizes
20134
20135         * appdomain.c (mono_domain_unload): impl.
20136
20137 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20138
20139         * appdomain.c, object.c: fix intern pool implementation.
20140         * class.c: fix alignment code.
20141
20142 2002-02-16  Radek Doulik  <rodo@ximian.com>
20143
20144         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20145         and s2 > s1, just copy lower bytes to be compatible with little
20146         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20147         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20148
20149         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20150         force big_endian to be 1 for big endian machines 
20151         (ves_icall_iconv_new_decoder): ditto
20152
20153 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20154
20155         * socket-io.c (convert_sockopt_level_and_name): If the system
20156         doesn't define SOL_IP or SOL_TCP, get them by hand using
20157         getprotobyname() and caching the values (because this could be a
20158         slow operation).
20159         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20160         Use the appropriate struct when the system does support it. Ie,
20161         not all systems have struct ip_mreqn so use struct ip_mreq when
20162         appropriate.
20163
20164 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20165
20166         * reflection.c: handle finally clauses.
20167
20168 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20169
20170         * socket-io.c: use g_snprintf() instead of snprintf.
20171
20172 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20173
20174         * reflection.c (mono_param_get_objects): Cast second argument to
20175         mono_method_get_param_names to a const char** to silence the
20176         compiler warning.
20177
20178         * appdomain.c (mono_domain_assembly_open): Put parens around the
20179         truth statement in the for-loop.
20180
20181         * unicode.c (iconv_convert): Got rid of a compiler warning about
20182         int i being unused when the system has a new iconv.
20183         (iconv_get_length): Same.
20184
20185         * image.c (load_class_names): Cast the second argument to
20186         g_hash_table_insert() to char* to hush compiler warnings about the
20187         arg being a const.
20188         (mono_image_open): Same here.
20189
20190         * socket-io.c: Don't conditionally include sys/filio.h or
20191         sys/sockio.h here anymore since we now get them from
20192         io-layer/io-layer.h
20193         (inet_pton): If the system doesn't support inet_aton, implement
20194         using inet_addr and also #define INADDR_NONE if it isn't defined
20195         by the system.
20196
20197 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20198
20199         * metadata.c, metadata.h: added function to get packing and size info
20200         of a typedef.
20201         * reflection.h, reflection.c: handle field RVA data. Save info about
20202         the table layout if needed. Assign typedef indexes to all the types
20203         before dumping the info about them to avoid forward reference problems.
20204
20205 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20206
20207         * socket-io.c (convert_sockopt_level_and_name): ifdef
20208         SO_ACCEPTCONN because it is not defined on my system (old debian)
20209
20210 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20211
20212         * opcode.c: use stddef.h to get NULL.
20213
20214 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20215
20216         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20217         for FIONBIO, FIONREAD and SIOCATMARK.
20218         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20219         define INADDR_NONE and besides, inet_addr() is deprecated and
20220         should not be used. Use inet_pton() instead - it also has the
20221         added bonus that it can easily handle IPv6 addresses as well.
20222         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20223
20224 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20225
20226         * decimal.c: remove _MSC_VER conditional.
20227
20228 2002-02-13  Dick Porter  <dick@ximian.com>
20229
20230         * socket-io.c: 
20231         * icall.c: Internal calls for Blocking, Select, Shutdown,
20232         GetSocketOption and SetSocketOption
20233
20234 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20235
20236         * assembly.cs: better resolver: use it instead of some kludgy
20237         code.
20238
20239 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20240
20241         * reflection.c: the best way to speed-up the compiler is to avoid
20242         infinite loops.
20243
20244 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20245
20246         * class.c (mono_class_vtable): changed the object layout
20247         (obj->vtable->class). 
20248         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20249
20250 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20251
20252         * assembly.c: look for assemblies in the assembly dir, too.
20253
20254 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20255
20256         * class.c: fix thinko in mono_class_from_type().
20257
20258 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20259
20260         * exception.h, exception.c: added TypeLoadException.
20261         * object.h, object.c: added mono_array_clone ().
20262         * icall.c: handle throwOnError in AssemblyGetType().
20263         Added Array.Clone().
20264         * opcode.h, opcode.c: use a single value for the opcode val.
20265         Compile fix for non-gcc compilers.
20266
20267 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20268
20269         * opcodes.c, opcodes.h: export interesting info about opcodes.
20270
20271 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20272
20273         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20274         icalls. 
20275
20276         * class.c (class_compute_field_layout): set element_class for enums
20277         (mono_class_create_from_typedef): set element_class for normal classes
20278
20279         * icall.c (ves_icall_System_Enum_get_value): impl.
20280
20281         * class.c (mono_class_create_from_typedef): do not set valuetype
20282         flag for System.ValueType and System.Enum
20283
20284 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20285
20286         * unicode.c (iconv_convert): fix big endian problem.
20287
20288 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20289
20290         * class.c: add asserts if we are ever going to scribble over memory.
20291         * socket-io.c: not all systems have AF_IRDA defined.
20292
20293 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20294
20295         * class.c (class_compute_field_layout): do not consider static
20296         fields to compute alignment
20297
20298 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20299
20300         * appdomain.c (mono_appdomain_get): impl.
20301         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20302
20303 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20304
20305         * icall.c: ignore "file://" prefix when loading an assembly.
20306
20307 2002-01-23  Dick Porter  <dick@ximian.com>
20308
20309         * socket-io.c:
20310         * icall.c:
20311         * Makefile.am: Added socket support
20312
20313 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20314
20315         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20316         code back.  This should return the assemblies that are loaded by
20317         the runtime on behalf of an application domain. 
20318
20319         The current implementation is still broken, it just returns every
20320         assembly loaded, but until we get real applications domain this
20321         will do.
20322
20323 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20324
20325         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20326         AppDomain object.
20327
20328 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20329
20330         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20331         the mono_class_from_name lookup.
20332         (ves_icall_get_parameter_info): ditto.
20333         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20334         method.
20335         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20336
20337 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20338
20339         * class.c: load also nested classes on class init.
20340         System.ValueType instance methods gets passed boxed
20341         values, unless methods in derived classed that get a pointer to the
20342         data.
20343         * icall.c: use better name parsing code in GetType().
20344         * image.c, image.h: add mono_image_loaded ().
20345         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20346         * reflection.c, reflection.h: added mono_reflection_parse_type().
20347
20348 2002-01-22  Veronica De Santis <veron78@interfree.it>
20349
20350         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20351         * threads.c : Added the implementation of internal calls for events
20352         * threads.h : Added prototypes of internal calls for events
20353         
20354 2002-01-21  Radek Doulik  <rodo@ximian.com>
20355
20356         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20357
20358 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20359
20360         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20361         (mono_class_value_size): use min_align
20362
20363 2002-01-20  Dick Porter  <dick@ximian.com>
20364
20365         * threads.h:
20366         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20367         so it compiles on w32.
20368
20369 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20370
20371         * metadata.c (mono_type_stack_size): impl.
20372
20373         * class.c (mono_class_get_field): impl. memberref token
20374
20375 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20376
20377         * icall.h : Added the internal calls mapping for CreateMutex_internal
20378                     and ReleaseMutex_internal.
20379         * threads.h : Added the prototype of mutexes internal calls.
20380         * threads.c : Added the implementations of mutexes internal calls.
20381
20382 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20383
20384         * metaparse.h: removed unused file.
20385         * reflection.c, reflection.h: added stream_data_align () function 
20386         to align data in streams and keep stream aligned. Add support for
20387         exception support in method headers.
20388
20389 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
20390
20391         * unicode.c: make iconv_convert () return the number of bytess written
20392         in the output buffer.
20393
20394 2002-01-15  Dick Porter  <dick@ximian.com>
20395         * threads.c: Make the runtime's idea of infinite timeouts coincide
20396         with the class library's
20397
20398         Fix a particularly egregious bug in mono_thread_cleanup(). That
20399         code was so utterly bogus it must have been written on a Monday.
20400
20401 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20402
20403         * reflection.h: add subtypes field to TypeBuilder.
20404         * reflection.c: encode constants for literal fields.
20405         Handle subtypes. Fix user string token (and add a zero byte)
20406         at the end.
20407         
20408 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
20409
20410         * class.c (mono_class_init): bug fix: assign slot numbers for
20411         abstract methods.
20412
20413 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20414
20415         * reflection.c: don't try to output a code RVA for abstract methods.
20416         Small fixes for method header format. Output parameter info to the
20417         ParamDef table. Save method overriding info to MethodImpl table.
20418         Fix property support. Allow typedef.extends to be a type in the
20419         building assembly.
20420         * verify.c: fix off-by-one error.
20421
20422 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
20423
20424         * class.c: fix mono_class_from_mono_type () for szarray types.
20425         Remove unused cache check in mono_class_from_type_spec().
20426         * icall.c: *type_from_name () functions handle simple arrays and byref.
20427         * reflection.c: handle byref and szarray types. Handle methods without
20428         body (gets P/Invoke compilation working). Handle types and fields in
20429         get_token ().
20430         * reflection.h: add rank to MonoTypeInfo.
20431
20432 2002-01-10  Dick Porter  <dick@ximian.com>
20433
20434         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
20435         internal calls
20436
20437 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20438
20439         * icall.c: initialize class in type_from_handle ().
20440         Loop also in parent classes for get_method ().
20441         * reflection.c: properly encode class and valuetype types.
20442         Start on encoding TypeBuilder types. Handle fieldrefs.
20443         Use correct length when registering a user string.
20444         Handle ConstructorBuilder and MonoMethod in get_token ().
20445         Make mono_type_get_object () aware of cached types.
20446         * object.c: back out change to mono_string_new ().
20447
20448 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
20449         * object.c: mono_string_new should return a NULL when the string 
20450         passed in is NULL -- not try to deference it.
20451         
20452 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20453
20454         * icall.c: hack to make IsSubType work for TypeBuilders.
20455         * reflection.c: emit constructors before methods.
20456         Retrieve param names in mono_param_get_objects().
20457
20458 2002/01/05  Nick Drochak  <ndrochak@gol.com>
20459
20460         * Makefile.am: fix list of headers and sources so automake 1.5
20461         doesn't complain. Removed \# at end of list.
20462
20463 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20464
20465         * reflection.c: get token for a method ref. Set return type of
20466         constructor to void.
20467         * loader.c: debug message.
20468         * class.c: typo fix.
20469
20470 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
20471
20472         * icall.c: fix array init with rank > 1. FindMembers
20473         loops in parent class as well.
20474         * image.c: do not insert nested types in name cache.
20475         * reflection.c: warning fix.
20476         * reflection.h: add override method (for interface impl).
20477
20478 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
20479
20480         * metadata.c: fix customattr decoding.
20481
20482 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
20483
20484         * rawbuffer.cs: Added native Win32 implementation, avoids using
20485         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
20486
20487 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
20488
20489         * class.c: make the low-level routines handle the cache.
20490
20491 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
20492
20493         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
20494
20495 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
20496
20497         * class.c: fix mono_array_element_size() for objects.
20498         * class.h, class.c: add properties to MonoClass and load them
20499         at init time.
20500         * icall.c: check with isinst() when assigning a value to an array
20501         instead of requiring the classes to match exactly.
20502         Implemented icall for System.Type::GetType().
20503         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
20504         enums. Handle bindingflags when looking for methods and fields.
20505         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
20506         and mono_metadata_methods_from_property().
20507         * reflection.h, reflection.c: added structures for propreties,
20508         parameters and enums. Implemented mono_property_get_object() and
20509         mono_param_get_objects().
20510
20511 2001-12-18  Dick Porter  <dick@ximian.com>
20512
20513         * file-io.c: Use mono_string_to_utf16() instead of
20514         mono_string_chars()
20515
20516         * object.c: Added mono_string_to_utf16(), which copies the non
20517         NULL-terminated MonoString into a new double-null-terminated
20518         buffer.
20519
20520 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
20521
20522         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20523
20524 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20525
20526         * file-io.c: raise exceptions if handle is invalid.
20527
20528 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20529
20530         * assembly.c: yet another check for mscorlib.
20531         * class.c, class.h: load nesting info for classes.
20532         * icall.c: many new functions to support the Reflection classes.
20533         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20534         * reflection.h, reflection.c: mono_image_create_token(),
20535         mono_assembly_get_object(), mono_type_get_object(),
20536         mono_method_get_object(), mono_field_get_object(): methods to return
20537         objects that parallel the C representation of assemblies, types,
20538         methods, fields.
20539
20540 2001-12-11  Dick Porter  <dick@ximian.com>
20541
20542         * icall.c:
20543         * file-io.c: Internal calls for file IO.
20544
20545 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20546
20547         * tabledefs.h: missing FileAttributes.
20548         * verify.h, verify.c: use is_valid_string () to simplify and check for
20549         valid strings more correctly. Fix warnings and speeling.
20550         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20551         Check code: branches, maxstack, method calls.
20552
20553 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20554
20555         * object.c (mono_object_allocate): removed static, so that the jit
20556         can allocate value types.
20557
20558         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20559
20560 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20561
20562         * class.c: init enum types right away and register the
20563         token->MonoClass map in mono_class_create_from_typedef ().
20564         * verify.h, verify.c: first cut of the verifier.
20565         * pedump.c: add --verify switch to verify metadata tables.
20566         * tabledefs.h: add some missing enums.
20567
20568 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20569
20570         * class.c (mono_install_runtime_class_init): impl.
20571         (mono_class_init): renamed mono_class_metadata_init to
20572         mono_class_init, also removed the metadata_inited flag
20573
20574         * object.c (mono_object_isinst): use faster algorithm
20575
20576 2001-11-30  Radek Doulik  <rodo@ximian.com>
20577
20578         * mono-endian.h: reverted last change
20579         added function prototypes
20580
20581         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20582         add mono-endian.c back
20583
20584         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20585         for unaligned access, I've mistaked it with endianess. I am
20586         sorry.
20587         (mono_read16): fix reverted endianess
20588         (mono_read64): ditto
20589         (mono_read32): ditto
20590
20591 2001-11-30  Dick Porter  <dick@ximian.com>
20592
20593         * exception.c: Implement mono_exception_from_name()
20594
20595 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20596
20597         * metadata.h, metadata.c: remove params_size and locals_size and their
20598         calculation from the metadata code: they are only usefult to the
20599         interp.
20600
20601 2001-11-29  Radek Doulik  <rodo@ximian.com>
20602
20603         * object.c (mono_ldstr): swap bytes here, it's probably not the
20604         best place, but works for me now, I'll redo it once I know mono
20605         better, also note that I add PROT_WRITE and don't reset back, also
20606         note that it's only affects big endians, so x86 should be OK
20607
20608         * mono-endian.h (read16): use just glib macros for both endians
20609
20610         * mono-endian.c: removed as glib macros are used in in
20611         mono-endian.h so we don't need to care about endianess for read
20612         macros as glib does that for us already
20613
20614 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20615
20616         * class.h, class.h: take minimum alignment into consideration so
20617         that the fields of a class remain aligned also when in an array.
20618
20619 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20620
20621         * loader.h, loader.c: add mono_method_get_param_names().
20622         * class.c: 0-init class fields.
20623
20624 2001-11-26  Dick Porter  <dick@ximian.com>
20625
20626         * icall.c:
20627         * threads-types.h:
20628         * threads.c: New file that handles System.Threading on all platforms
20629
20630         * object.c: 
20631         * object.h: Remove the synchronisation struct from MonoObject,
20632         replace it with a pointer that gets initialised on demand
20633
20634         * Makefile.am: Replace all the system-specific threading code with
20635         a single file that uses the new wrapper library
20636
20637 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20638
20639         * class.c, class.h: add mono_install_trampoline() so that the runtime
20640         can register a function to create a trampoline: removes the ugly
20641         requirement that a runtime needed to export arch_create_jit_trampoline.
20642         * object.h, object.c: added mono_install_handler() so that the runtime
20643         can install an handler for exceptions generated in C code (with
20644         mono_raise_exception()). Added C struct for System.Delegate.
20645         * pedump.c: removed arch_create_jit_trampoline.
20646         * reflection.c: some cleanups to allow registering user strings and
20647         later getting a token for methodrefs and fieldrefs before the assembly
20648         is built.
20649         * row-indexes.h: updates and fixes from the new ECMA specs.
20650
20651 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20652
20653         * class.h, class.c: add enum_basetype field to MonoClass.
20654         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20655         to get index in the constant table reated to a field, param or
20656         property.
20657         * reflection.h, reflection.c: handle constructors. Set public-key and
20658         version number of the built assembly to 0.
20659         * row-indexes.h: update from new ECMA spec.
20660
20661 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20662
20663         * class.h, class.c: add a max_interface_id to MonoClass.
20664         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20665         since it's used to do that. Added mono_type_type_from_obj().
20666         Make GetType() return NULL instead of segfaulting if the type was not
20667         found. Handle simple arrays in assQualifiedName.
20668         * object.h: add a struct to represent an Exception.
20669         * reflection.c: output call convention in method signature.
20670         Add code to support P/Invoke methods and fixed offsets for fields.
20671
20672 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20673
20674         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20675         the value.
20676         * icall.c: use mono_array_addr instead of array->vector: fixes the
20677         reflection image writing.
20678         * reflection.c: init call convention byte to 0 in method signature.
20679         Encode the property signature. Don't output property-related methods
20680         twice. Really process the properties for a type (don't cast a field to
20681         a property, my mom always told me that).
20682         Fix 64 bit issues in pointer alignment in a different and more
20683         readable way.
20684
20685 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20686
20687         * loader.h: Removed type class from MonoDefaults, added monotype
20688
20689         * loader.c: Loaded MonoType, removed loading of Type
20690
20691         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20692         and fills in System.Type._impl with a RuntimeTypeHandle rather
20693         than the actual MonoClass *
20694
20695         (ves_icall_type_from_handle): change from type_class to
20696         monotype_class
20697
20698         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20699         implemented
20700
20701         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20702         implemented
20703
20704         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20705
20706         (ves_icall_System_Reflection_Assembly_GetType): implemented
20707
20708         (ves_icall_System_MonoType_assQualifiedName): implemented
20709
20710         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20711
20712 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20713
20714         * assembly.c (mono_assembly_open): Implement a cache for the
20715         assemblies. 
20716
20717         (mono_assembly_close): only destroy the assembly when the last
20718         reference is gone.
20719         
20720 2001-11-09  Dick Porter  <dick@ximian.com>
20721
20722         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20723
20724 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20725
20726         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20727
20728 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20729
20730         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20731         from Martin Weindel.
20732         * object.h: add mono_string_chars ().
20733
20734 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20735
20736         * reflection.c (build_compressed_metadata): Eliminates warnings
20737         and uses 64-bit clean code.
20738
20739         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20740         (mono_type_equal): Change signature to eliminate warnings.
20741
20742 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20743
20744         * icall.c, loader.c: remove the internalcall array constructors.
20745         Changes to match the new MonoArray structure.
20746         * object.h, object.c: an array object doesn't allocate an extra
20747         vector. Add mono_array_new_full () to create jagged arrays easily.
20748
20749 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20750
20751         * metadata.h, metadata.c: add mono_metadata_field_info () to
20752         retreive all the info about a field from vairous tables.
20753         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20754         * class.h, class.c: augment MonoClassField with more info.
20755         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20756         policy and load a field's RVA if needed.
20757
20758 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20759
20760         * class.c (mono_class_metadata_init): create a trampoline for all
20761         virtual functions instead of actually compiling them.
20762
20763 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20764
20765         * class.h, class.c: include name in MonoClassField.
20766         * class.c: fix fundamental type of System.Object and System.String.
20767         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20768         tokens in ldtoken.
20769         * icall.c: remove internalcalls for the Reflection stuff that is now
20770         done in C# code.
20771         * loader.c: mono_field_from_memberref () implementation.
20772         * mono-endian.c: thinko (s/struct/union/g).
20773         * object.c, object.h: make the mono_string_* prototypes actually use
20774         MonoString instead of MonoObject.
20775         * reflection.c, reflection.h: updates for changes in the reflection
20776         code in corlib: we use C structures that map to the actual C# classes.
20777         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20778         fat method header if needed and use the info from the ILGenerator for
20779         methods. Handle fields in types. Misc fixes.
20780
20781 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20782
20783         * class.c (mono_class_metadata_init): bug fix: always allocate
20784         space for static class data
20785
20786 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20787
20788         * class.c (mono_compute_relative_numbering): use relative
20789         numbering to support fast runtime type checks.
20790
20791 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20792
20793         * class.c (mono_class_create_from_typeref): added debugging output
20794         to print class name when MonoDummy is returned instead of real class
20795
20796 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20797
20798         * class.c (mono_class_metadata_init): interface offset table now
20799         contains pointers into the vtable - this is more efficient for the jit
20800
20801 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20802
20803         * class.c (mono_class_metadata_init): use a temporary vtable (the
20804         old algorithm only worked for the interpreter, but not for the jit)
20805
20806 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20807
20808         * loader.c (method_from_memberref): use mono_class_get to get the
20809         class of an array instead of using System.Array directly.
20810         (mono_get_method): also add MEMBERREF methods to the method cache
20811         which usefull for arrays.
20812
20813 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
20814
20815         * pedump.c (arch_compile_method): added to compute vtable entry
20816
20817         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
20818         number of interfaces.
20819         
20820         * class.h: merged MonoArrayClass into MonoClass
20821
20822         * class.c (mono_class_create_from_typedef): compute the vtable size and
20823         allocate space to include the vtable inside MonoClass
20824         (mono_class_metadata_init): initialize the vtable
20825
20826 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
20827
20828         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
20829         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
20830         * image.c: endian fixes by Laurent Rioux.
20831         * object.h, object.c: rename MonoStringObject to MonoString and
20832         MonoArrayObject to MonoArray. Change some function names to conform to
20833         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
20834         guint16* as first argument, so don't use char*.
20835         Provide macros to do the interesting things on arrays in a portable way.
20836         * threads-pthread.c: updates for the API changes and #include <sched.h>
20837         (required for sched_yield()).
20838         * icall.c: updates for the API changes above.
20839         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
20840         platforms that need them.
20841
20842 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
20843
20844         * class.c: set the correct type for all the fundamental
20845         type when loading the class.
20846
20847 2001-10-05  Dick Porter  <dick@ximian.com>
20848
20849         * threads-pthread.c (pthread_mutex_timedlock): Simple
20850         compatibility version for C libraries that lack this call.
20851
20852 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20853
20854         * class.c: MonoTypes stored in MonoClass are stored as
20855         fundamental MonoTypes when the class represents a
20856         fundamental type (System.Int32, ...).
20857         The TypeHandle return by ldtoken is a MonoType*.
20858         * icall.c: ves_icall_get_data_chunk () write out all the
20859         PE/COFF stuff. Implement ves_icall_define_method (),
20860         ves_icall_set_method_body (), ves_icall_type_from_handle ().
20861         * image.c: properly skip unknown streams.
20862         * loader.h, loader.c: add type_class to mono_defaults.
20863         * metadata.c, metadata.h: export compute_size () as
20864         mono_metadata_compute_size () with a better interface.
20865         Typo and C&P fixes.
20866         * pedump.c: don't try to print the entry point RVA if there is no entry point.
20867         * reflection.c, reflection.h: many cleanups, fixes, output method
20868         signatures and headers, typedef and typeref info, compress the metadata
20869         tables, output all the heap streams, cli header etc.
20870         * row-indexes.h: typo fixes.
20871
20872 2001-10-04  Dick Porter  <dick@ximian.com>
20873
20874         * object.h: Add a synchronisation mutex struct to MonoObject
20875
20876         * object.c (mono_new_object): Initialise the object
20877         synchronisation mutexes
20878
20879         * icall.c: System.Threading.Monitor internal calls
20880         
20881         * threads-pthread.h:
20882         * threads-pthread.c: System.Threading.Monitor internal calls
20883
20884         * threads-types.h: New file, includes the system-specific thread
20885         structures
20886         
20887         * threads-pthread-types.h:
20888         * threads-pthread-types.c: New files, handle pthread-specific
20889         synchronisation types
20890
20891         * threads-dummy-types.h: 
20892         * threads-dummy-types.c: New files of dummy support for
20893         thread-specific types
20894
20895         * metadata.c:
20896         * image.c:
20897         * pedump.c: include mono-endian.h not endian.h
20898         
20899         * Makefile.am: More threads files.
20900         Name mono-endian.h not endian.h
20901
20902 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
20903
20904         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
20905         stuff and implement a few more bits.
20906         * icall.c: a field needs to be dereferenced twice. Do not use the same
20907         name for two variables in the same scope.
20908         * image.c, image.h: cleanups.
20909
20910 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
20911
20912         * class.c (mono_class_metadata_init): bug fix: compute the right size
20913
20914 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
20915
20916         * icall.c: implemented some of the Reflection internalcalls.
20917         * image.c, image.h: start writing out the PE/COFF image.
20918         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
20919         that does the reverse than decode_blob_size ().
20920         * object.c: use mono_metadata_encode_value (). Move here
20921         temporary implementation of mono_string_to_utf8 ().
20922         * rawbuffer.c: make malloc_map static.
20923
20924 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20925
20926         * metadata.c: fix type comparison for arrays.
20927         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
20928         Added a couple of new classes to monodefaults.
20929         * icall.c: added a couple of Reflection-related internalcalls.
20930         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
20931         Added a byval_arg MonoType to MonoClass.
20932
20933 2001-09-28  Dick Porter  <dick@ximian.com>
20934
20935         * icall.c:
20936         * threads-pthread.h: 
20937         * threads-pthread.c: Implemented internal calls for
20938         LocalDataStoreSlot operations.  Applied mutexes around all shared
20939         data.  Reworked the thread creation and Start() operations to
20940         avoid a race condition.
20941         
20942         * threads-dummy.h:
20943         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
20944
20945 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
20946
20947         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
20948
20949 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
20950
20951         * class.c, loader.c: warn and return NULL instead of erroring out.
20952         * icall.c: added System.AppDomain::getCurDomain().
20953         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
20954
20955 2001-09-25  Dick Porter  <dick@ximian.com>
20956
20957         * threads-pthread.h:
20958         * threads-pthread.c: Implemented timed thread joining and added
20959         System.Threading.Thread::Join_internal internal call
20960
20961         * icall.c: Added System.Threading.Thread::Join_internal internal call
20962
20963         * threads-dummy.h:
20964         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
20965
20966 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
20967
20968         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
20969         mono_string_intern () to implement the semantics of the ldstr opcode
20970         and the interning of System.Strings.
20971         * icall.c: provide hooks to make String::IsIntern and String::Intern
20972         internalcalls.
20973
20974 2001-09-23  Dick Porter  <dick@ximian.com>
20975
20976         * threads-dummy.c: 
20977         * threads-dummy.h: New files of dummy threading routines
20978
20979         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
20980         support code based on system specifics
20981
20982         Rename PTHREAD_LIBS to THREAD_LIBS
20983         
20984 2001-09-23  Dick Porter  <dick@ximian.com>
20985
20986         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
20987         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
20988         internal calls.
20989         (mono_thread_init): Set up a Thread object instance to return when
20990         the main thread calls Thread.CurrentThread
20991         (mono_thread_cleanup): Wait for all subthreads to exit
20992
20993         * icall.c: New internal calls for System.Threading.Thread::Sleep
20994         (including Schedule) and CurrentThread
20995
20996         * threads.h: New file, to insulate thread-specific stuff from the
20997         rest of the code
20998
20999 2001-09-21  Dick Porter  <dick@ximian.com>
21000
21001         * threads-pthread.h: 
21002         * threads-pthread.c: New file, for handling pthreads-style
21003         threading support.  Start() now starts a new thread and executes
21004         the ThreadStart delegate instance.
21005
21006         * icall.c: Added the internalcall for
21007         System.Threading.Thread::Start_internal
21008
21009         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21010
21011 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21012
21013         * loader.c: work around the different signatures for delegates
21014         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21015
21016 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21017
21018         * class.h, class.c: add mono_class_get_field_from_name ().
21019         * *: Fix C comments and other ANSI C issues.
21020
21021 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21022
21023         * endian.h, assembly.c: fix some endianness issues.
21024
21025 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21026
21027         * loader.h, load.c: add delegate_class to mono_defaults.
21028         Handle runtime provided methods in mono_get_method ().
21029
21030 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21031
21032         * loader.c (mono_get_method): use pinvoke for internal call
21033
21034         * icall.c: use pinvoke for internal call
21035
21036         * loader.c (method_from_memberref): set the method name
21037
21038 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21039
21040         * metadata.c: help the compiler generate better code for
21041         mono_class_from_mono_type ().
21042
21043 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21044
21045         * class.c (mono_class_metadata_init): delayed computing of the
21046         class size to mono_class_metadata_init ()
21047
21048 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21049
21050         * class.c, class.h: add an interfaces member to MonoClass.
21051         * image.c, image.h: add assembly_name field to MonoImage
21052         from the assembly table.
21053         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21054
21055 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21056
21057         * class.c: Handle Array in mono_class_from_mono_type ().
21058         * metadata.c, pedump.c: some endian fixes.
21059
21060 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21061
21062         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21063         * metadata.c: fix small problem introduced with the latest commit.
21064
21065 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21066
21067         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21068         We don't need a MonoMetadata pointer anymore to compare signatures in
21069         mono_metadata_signature_equal (), update callers.
21070         Reduced memory usage an number of allocations for MonoMethodHeader and
21071         MonoMethodSignature.
21072
21073 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21074
21075         * metadata.c: added compare for szarray.
21076
21077 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21078
21079         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21080         and add a couple more types to it and mono_defaults. Give an hint on
21081         classes that need implementing in our corlib and are referenced
21082         in mscorlib.
21083
21084 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21085
21086         * class.h, class.c: keep track if a class is also an Enum.
21087         * loader.c: Implement a couple more types for use in libffi
21088         marshalling. Gives better diagnostics when failing to dlopen
21089         a library. Set method->klass for P/Invoke methods, too.
21090
21091 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21092
21093         * class.c, class.h: add a MonoType this_arg to MonoClass that
21094         represents a pointer to an object of the class' type that
21095         can be used by the interpreter and later the type cache.
21096         Add best guess alignment info for valuetype objects.
21097
21098 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21099
21100         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21101         into MonoType: one less level of indirection and allocation and
21102         simplifies quite a bit of code. Added cache for MonoTypes that are
21103         used frequently, so that we don't need to allocate them all the time.
21104
21105 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21106
21107         * class.c (mono_class_create_from_typedef): System.Enum is also a
21108         value type, although it does not derive from System.ValueType
21109         (maybe a bug in the ms compiler?)
21110
21111         * metadata.c (mono_type_size): return the right size for value types
21112
21113         * loader.c (mono_get_method): only initialize method header if not abstract
21114
21115         * class.c (mono_class_from_mono_type): use mono_default values. 
21116
21117 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21118
21119         * *: use MonoClass pointers instead of <type_tokens>
21120         
21121         * class.h: new flag: metadata_inited.
21122
21123         * class.c (mono_class_metadata_init): impl.
21124         (mono_class_instance_size): impl.
21125         (mono_class_data_size): impl.
21126
21127 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21128
21129         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21130         MonoClass now has the name and name_space fields. 
21131         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21132         mono_get_method () takes and optional MonoClass as argument.
21133         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21134         instead that takes advantage of a map from class names to typedef
21135         tokens in MonoImage.
21136
21137 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21138
21139         * metadata.c: zero is not a valid alignment boundary.
21140         Merge MONO_TYPE_VOID in default decoding code.
21141
21142 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21143
21144         * image.h: merged MonoMetadata into MonoImage
21145
21146         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21147         identify the type of elements.
21148
21149 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21150
21151         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21152         * cil-coff.h: split MonoMSDOSHeader and add size info.
21153         * image.c: add some consistency checks.
21154         * metadata.c: fix row size computation: one programmer
21155         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21156         add explanation for the locator routine.
21157         Fix decoding of size in method header.
21158         
21159 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21160
21161         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21162         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21163         function from gnome-libs.  This uses the right path separator
21164         based on the OS, and also works around a bug in some systems where
21165         a double slash is not allowed. 
21166         (default_assembly_name_resolver): Use g_concat_dir_and_file
21167         (mono_assembly_open): ditto.
21168
21169 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21170
21171         * metadata.c (mono_metadata_signature_equal): impl.
21172
21173         * *: void is now a realy MonoType (instead of using NULL)
21174         
21175         * metadata.c (do_mono_metadata_parse_type): use
21176         mono_metadata_parse_type to parse void value.
21177
21178 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21179
21180         * metadata.c, metadata.h: in the signature and method header store
21181         only the space required for holding the loca vars and incoming arguments.
21182
21183 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21184
21185         * metadata.c (do_mono_metadata_parse_type): treat void like any
21186         other type (instead of assigning NULL);
21187
21188 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21189
21190         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21191
21192 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21193
21194         * image.c (do_mono_image_open): added a cache for arrays.
21195
21196 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21197
21198         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21199         decode a single column from a row in a metadata table and changes
21200         to take advantage of it in the typedef locator (gives a nice speed up).
21201         Store offset info for function params.
21202
21203 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21204
21205         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21206
21207 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21208
21209         * assembly.c: how could mono_assembly_close () had ever worked?
21210         * metadata.c, metadata.h: provide offset info for local vars.
21211         Implement mono_type_size () to take care of alignment as well
21212         as size (it was mono_field_type_size in cli/class.c before).
21213
21214 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21215
21216         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21217
21218         * assembly.h (CORLIB_NAME): set to corlib.dll
21219
21220         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21221
21222 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21223
21224         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21225         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21226         tokentype.h: massive namespace cleanup.
21227
21228 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21229
21230         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21231
21232 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21233
21234         * metadata.c (mono_metadata_free_type): added check for type !=
21235         NULL (void) before calling mono_metadata_free_type()
21236
21237 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21238
21239         * metadata.h, row_indexes.h: added header with enumerations to use
21240         to index in the columns from tables in metadata and to decode coded
21241         tokens: we should start using this instead of embedding magic numbers
21242         all over the code.
21243
21244 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21245
21246         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21247         Move metadata_t info from cli_image_info_t to MonoImage, where
21248         it's easily accessible. Changed all the uses accordingly.
21249         Added the method and class caches to MonoImage.
21250         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21251         and mono_metadata_decode_value () signature to be more consistent
21252         with the other parse functions (and simplify code). Taken advantage
21253         of zero-length array allocation with GCC. Removed reduntant (and
21254         wrong) MonoFieldType struct and use MonoParam instead. Changed
21255         mono_metadata_parse_field_type () to use common code for parsing.
21256         Added mono_metadata_typedef_from_field () and
21257         mono_metadata_typedef_from_method () to lookup a typedef index from a
21258         field or method token.
21259         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21260
21261 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21262
21263         * metadata.c (mono_metadata_parse_field_type): Implement. 
21264         (do_mono_metadata_parse_type): Split engine from
21265         mono_metadata_parse_type, so that we can create smaller structures
21266         for things that just have one pointer to the MonoType (look at
21267         the MonoFieldType)
21268
21269 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21270
21271         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21272         as Jan Gray found out, it is incorrect. 
21273
21274 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21275
21276         * assembly.c: Implement asssembly loading.  This loads an image
21277         and loads all the referenced assemblies.  Come to think of it, we
21278         could always do lazy loading of the assemblies. 
21279
21280         * image.c (mono_image_open): Keep loaded images in a hashtable.
21281
21282         * image.h (MonoImage): Add reference count.
21283
21284 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21285
21286         * assembly.c (mono_assembly_open): Keep track of the file name in
21287         case the assembly has no ASSEMBLY table.
21288
21289         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21290         from get.c here.
21291
21292 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21293
21294         * metadata.c, metadata.h: decode local vars in method header
21295         parse function. Change callers accordingly.
21296
21297 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21298
21299         * metadata.h, cil-coff.h: protect against multiple inclusion.
21300         Added some new structures to hold information decoded from metadata:
21301         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21302         and relevant decoding/free functions.
21303         * metadata.c: implement decoding functions. Add warning for out of bounds
21304         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21305         all the info about a method signature and invocation. Remove check on
21306         uninitialized local var in parse_mh() and fix memory leak.
21307
21308 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21309
21310         * metadata.h: More macros.
21311
21312         * tokentype.h: New file.
21313
21314 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21315
21316         * assembly.c: added a consistency check and initialize
21317         some structures with g_new0().
21318         * metadata.c: fixed a couple more bugs in table size computation
21319         and add other checks for out-of bound access to metadata.
21320
21321 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21322
21323         * metatada.c: fix bugs computing table sizes. Spew a
21324         warning when index in string heap is out of bounds.
21325
21326 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21327
21328         * metadata.h: Add a couple of macros to manipulate tokens. 
21329
21330 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21331
21332         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21333         cli_section_tables).
21334
21335 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21336
21337         * metadata.c (mono_metadata_user_string): New function, provides
21338         access to the UserString heap. 
21339
21340 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21341
21342         * metadata.c: Add inline documentation.
21343
21344 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21345
21346         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21347         files. 
21348
21349 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21350
21351         * typeattr.h: New file, TypeAttribute flags. 
21352
21353 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21354
21355         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21356         mono_assembly_ensure_section): Section loading code.
21357         (load_section_tables): Load the sections.
21358
21359         * mono/metadata/metadata.c (mono_metadata_locate_token,
21360         mono_metadata_locate): Functions to locate the information
21361         definition given a token or a table and an index.
21362         (mono_metadata_compute_table_bases): New.
21363         (compute_size): New function to compute the sizes of the various
21364         tables.
21365
21366         * mono/metadata/metadata.h: Finish listing the different index
21367         types. 
21368
21369         * mono/metadata/pedump.c: Improve to dump new information.
21370
21371 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21372
21373         * mono/metadata/metadata.c: Entered all the tables matching
21374         Beta2. 
21375
21376         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21377
21378
21379