2005-09-20 Martin Baulig <martin@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2005-09-20  Martin Baulig  <martin@ximian.com>
2
3         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
4         write the rank into the class entry.
5
6 2005-09-20  Martin Baulig  <martin@ximian.com>
7
8         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
9
10 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
11
12         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13
14         * icall.c (custom_attrs_defined_internal): New icall.
15
16         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
17         function.
18         (mono_custom_attrs_construct_by_type): New helper function.
19
20 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21
22         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
23         terminate the resulting string. Fixes #76123.
24
25 2005-09-16  Martin Baulig  <martin@ximian.com>
26
27         * mono-debug.c
28         (mono_debug_add_method): Ignore inflated methods for the moment.
29
30 2005-09-14  Martin Baulig  <martin@ximian.com>
31
32         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
33
34 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
35
36         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
37         return a success/failure indication.
38         (mono_metadata_interfaces_from_typedef_full): Ditto.
39         (get_constraints): Ditto.
40
41 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
42
43         * marshal.c (emit_marshal_array): Fix handling of null arrays.
44         
45         * marshal.c (emit_marshal_array): Add support for returning string
46         arrays from delegates. Fixes #76063.
47
48         * marshal.c: Use the emit_ldloc/stloc macros where possible.
49
50 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
51
52         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
53         icall.
54
55 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
56
57         * reflection.c icall.c: Fix after mono_get_exception_type_load
58         signature change.
59
60         * assembly.c (mono_assembly_get_assemblyref): New helper function.
61         (mono_assembly_load_reference): Use the new helper.
62
63         * class-internals.h (MonoLoaderError): New structure containing 
64         information about type loading errors.
65
66         * class-internals.h loader.c: Add APIs to store per-thread loader
67         error information.
68
69         * loader.c class.c: Set the loader error if needed.
70
71         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
72
73 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
74
75         * decimal.c: fixed to handle the broken ARM fp format.
76
77 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
78
79         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
80         broken.
81
82 2005-09-06  Martin Baulig  <martin@ximian.com>
83
84         * domain.c (supported_runtimes): Added v2.0.50727.
85
86 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
87
88         * culture-info.h: reduce the size of some structures.
89
90 2005-09-05  Martin Baulig  <martin@ximian.com>
91
92         Reflect latest API changes in the August CTP.
93
94         * icall.c
95         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
96         ("MonoType.HasGenericArguments"): Removed.
97         ("MonoMethod.BindGenericParameters"): Renamed to
98         "MakeGenericMethod".
99         ("MethodBuilder.BindGenericParameters"): Renamed to
100         "MakeGenericMethod".    
101
102 2005-09-05  Martin Baulig  <martin@ximian.com>
103
104         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
105
106 2005-09-05  Martin Baulig  <martin@ximian.com>
107
108         Applying a patch from Michal Moskal <malekith@nemerle.org>.
109
110         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
111         generic_container is non-NULL.
112
113 2005-09-05  Martin Baulig  <martin@ximian.com>
114
115         Applying a patch from Michal Moskal <malekith@nemerle.org>.
116
117         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
118
119 2005-08-29  Michal Moskal  <malekith@nemerle.org>
120
121         * reflection.c (encode_locals,
122         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
123         for large generic types.
124
125 2005-09-05  Martin Baulig  <martin@ximian.com>
126
127         Applying a patch from Michal Moskal <malekith@nemerle.org>.
128
129         * class.c (mono_dup_array_type): New public method.
130         (mono_metadata_signature_deep_dup): New public method.
131         (dup_type): Correctly duplicate array and function types.
132
133 2005-09-05  Martin Baulig  <martin@ximian.com>
134
135         Applying a patch from Michal Moskal <malekith@nemerle.org>.
136
137         * reflection.c (get_default_param_value_blobs): Handle generic types
138         and generic methods.
139
140 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
141
142         * class.c: Fixed error reporting (method/class were inversed) for 
143         inheritance demands.
144         * security-manager.c|h: Added the AppDomain when calling the managed
145         System.Security.SecurityManager.InheritanceDemand method.
146
147 2005-09-01  Raja R Harinath  <rharinath@novell.com>
148
149         * reflection.c (encode_marshal_blob): 'marshaltype' and
150         'marshaltyperef' are alternate sources for the custom marshaler
151         name.
152
153 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
154
155         * class.c: fix creation of array classes with rank == 1
156         (patch by Ankit Jain <jankit@novell.com>).
157
158 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
159
160         * object.c: fix check for creating the bound data for arrays vs
161         szarrays.
162
163 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
164
165         * object.c: configuration file name is now based on the executable name,
166         not the image name. Fixes bug #75931.
167
168 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
169
170         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
171         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
172
173 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
174
175         * rand.c: Use wincrypt.h instead of WinCrypt.h.
176
177 2005-08-24  Ankit Jain  <jankit@novell.com>
178             Raja R Harinath  <rharinath@novell.com>
179
180         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
181           called by it recursively.
182           (mono_class_init): Remove special case in pending_init handling, since it's
183           superseded by the fix to mono_class_from_typeref.
184
185 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
186
187         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
188         BROKEN_THREAD_START stuff.
189
190 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
191
192         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
193         trampoline.
194
195         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
196         
197         * object.c (mono_delegate_ctor): Replace the original function address with
198         a delegate trampoline.
199
200 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
201
202         * icall.c: add boolean argument to base64_to_byte_array and 
203         InternalFromBase64String to control whether a whitespace-only string
204         is allowed (or should casue a FormatException to be thrown). We need
205         this as the behavior has changed between MS.NET 1.x and 2.0, and we
206         to match the MS behaviour in both profiles.
207         * appdomain.c: Bump corlib version.
208
209 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
210
211         This patch implements a big portion of publisher policy
212         support, used to bind assembly versions and redirect
213         one assembly from version A to version B.
214
215         * assembly.c:
216         New GSList loaded_assembly_bindings, for storing the cached
217         assembly bindings.
218         (assembly_binding_maps_name): New static function for checking if a 
219         assembly binding information maps an assembly name.
220         (mono_assembly_binding_info_free): New function for freeing
221         assembly binding information resources.
222         (get_publisher_policy_info): New static function for retrieving 
223         assembly binding information from a MonoImage.
224         (compare_versions): New static function for comparing an assembly
225         binding information data and the version of an assembly name.
226         (check_policy_versions): New static function for checking if an
227         assembly binding info mapping an assembly name is valid for it.
228         (mono_assembly_load_publisher_policy): New static function for
229         loading the 'policy.major.minor.MyAssembly' image for an assembly
230         with an assembly name 'aname'.
231         (mono_assembly_bind_version): New static function for updating
232         assembly redirection.
233         (mono_assembly_apply_binding): New static function for applying
234         assembly binding.
235         (search_binding_loaded): New static function for searching 
236         loaded assembly binding infos in the cache domain.
237         (mono_assembly_load_full): Don't apply assembly binding for
238         reflection only assemblies.
239
240         * metadata-internals.h: Add MonoAssemblyBindingInfo,
241         which contains information about assembly binding. Also
242         declare signature for mono_config_parse_publisher_policy ()
243         function, used to retrieve pub policy info.
244         
245         * mono-config.c:
246         (publisher_policy_start): New static function used to parse publisher 
247         policy config files.
248         (publisher_policy_parser): New static MonoParseHandler containing 
249         the functions used when parsing config files.
250         (mono_config_parse_publisher_policy): New function for parsing
251         publisher policy files.
252         
253 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
254
255         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
256
257         * marshal.c (mono_delegate_free_ftnptr): Ditto.
258
259         * object.c (mono_get_addr_from_ftnptr): New helper function.
260
261         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
262
263         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
264
265 2005-08-19  Dick Porter  <dick@ximian.com>
266
267         * threads.c, threads.h, appdomain.c, appdomain.h,
268         profiler-private.h, monitor.c, object.c, object-internals.h,
269         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
270         store the thread ID, so it can hold a 64 bit value if needed.
271
272 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
273
274         * reflection.c (mono_reflection_create_dynamic_method): Store the
275         handle class into the method references as well so ldtoken works in
276         dynamic methods.
277
278         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
279         types.
280
281 2005-08-19  Ankit Jain <jankit@novell.com>
282
283         Fix #75847.
284         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
285           here rather than using the method signature of a arbitrary function
286           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
287           two arguments.
288           Hack done with Harinath.
289
290 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
291
292         * threadpool.c: disable printing stack traces when we get a exception
293         in a threadpool thread. I need to do more testing to figure out which
294         cases actually print this. Fixes bug #75828.
295
296 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
297
298         * icall.c: there might be ignored whitespace after the last '='. This
299         fixes length computation and bug #75840.
300
301 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
302
303         * assembly.c (mono_assembly_load_full): Consider .exe extension as
304         well. Fixes #75809.
305
306         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
307         #75784.
308         
309         * reflection.c (create_custom_attr_data): Ditto.
310
311 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
312
313         * locales.c, culture-info.h : removed RegionLCIDMap.
314         * culture-info-tables.h : regenerated.
315
316 2005-08-16  Martin Baulig  <martin@ximian.com>
317
318         * class.c (mono_type_get_name_recurse): Small fix.
319
320 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
321
322         * locales.c : indentation fixie.
323
324 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
325
326         * object-internals.h,
327           locales.h,
328           locales.c,
329           culture-info.h,
330           icall.c : added RegionInfo table support.
331         * culture-info-table.h : regenerated for region support.
332
333 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
334
335         * reflection.c (resolve_object): handle all kinds of MonoMethod
336         including generic ones
337
338 2005-08-12  Ankit Jain <jankit@novell.com>
339
340         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
341           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
342
343 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
344
345         * process.c: Don't close a thread handle when it's NULL. This is a
346         workaround for bug #75733.
347
348 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
349
350         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
351
352 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
353
354         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
355
356 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
357
358         * threadpool.c: if a work item in the thread pool has a callback that
359         catches a exception, don't propagate it after invoking the callback.
360         Fixes bug #75336.
361
362 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
363
364         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
365
366         * class-internals.h (MonoCachedClassInfo): Add some new fields.
367
368         * class.c (mono_class_init): Load field info lazily in the AOT case.    
369
370         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
371
372 2005-08-03  Ankit Jain  <jankit@novell.com>
373
374         Fix #75683.
375         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
376           PInvoke calling convention is 0.
377
378 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
379
380         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
381         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
382
383 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
384
385         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
386         to handle threads not started by the GC (patch by Michael Meeks
387         <michael.meeks@novell.com>).
388
389 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
390
391         * reflection.c: Make buffer used in emitting types larger for some
392         big generic types (patch by Michal Moskal).
393
394 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
395
396         * mono-debug.c: Fix some (not all) alignment problems.
397
398 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
399
400         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
401         Invoke mono_image_load_from_data_full passing the refonly
402         parameter.
403
404         * assembly.c
405         (mono_assembly_open_from_bundle): Add the refonly argument, 
406         in order to pass it to other methods it calls to.
407         (do_mono_assembly_open): Add the refonly argument, in order 
408         to pass it to other methods it calls to.
409         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
410         the refonly parameter to it.
411
412         * image.c: Add loaded_images_refonly_hash and
413         loaded_images_refonly_guid_hash to cache the reflection
414         only loaded images.
415         (mono_images_init): Initialize the hash tables used for
416         caching the reflection only images.
417         (load_modules): Invoke mono_image_open_full passing the refonly
418         parameter to load the modules the correct way.
419         (build_guid_table): Add the refonly argument, to re-build the 
420         correct hash table.
421         (do_mono_image_open): Added the refonly argument, in order to
422         define it for the loaded image.
423         (mono_image_loaded_full): New function, which receives an
424         additional parameter to look for the image in the refonly or
425         non-refonly section.
426         (mono_image_loaded): Updated, using mono_image_loaded_full.
427         (mono_image_loaded_by_guid_full): The same case that happens
428         with mono_image_loaded_full.
429         (mono_image_loaded_by_guid): Likewise.
430         (register_image): Use the ref_only variable inside MonoImage
431         to decide in which hash table store the current image.
432         (mono_image_open_from_data_full): Rename
433         mono_image_open_from_data to mono_image_open_from_data_full,
434         adding the refonly argument, to define the ref_only variable 
435         inside MonoImage.
436         (mono_image_open_from_data): Return 
437         mono_image_open_from_data_full.
438         (mono_image_open_full): Rename mono_image_open to
439         mono_image_open_full, receiving the new refonly argument,
440         to pass it to inner methods.
441         (mono_pe_file_open): Update this function, to open
442         a MonoImage as a non-refonly image.
443         (mono_image_close): Use the refonly variable inside
444         MonoImage to remove the image from the correct caches.
445
446         * image.h: Add the signatures of mono_image_open_full,
447         mono_image_open_from_data_full, mono_image_loaded_full,
448         mono_image_loaded_by_guid_full.
449
450         * metadata-internals.h: Add the ref_only field to 
451         MonoImage.
452         
453 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
454
455         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
456         Fix the last behavior, which used to load the assemblies and
457         extract MonoReflectionAssemblyName information, instead of
458         extract it from the metadata tables. Needed for Reflection
459         Only assemblies.
460         
461 2005-07-29  Martin Baulig  <martin@ximian.com>
462
463         * mono-debug-debugger.c
464         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
465         not initialized.
466
467         * mono-debug.c
468         (mono_debug_address_from_il_offset): Check whether we have
469         debugging support before attempting to take the lock.
470         (mono_debug_source_location_from_address): Likewise.
471         (mono_debug_source_location_from_il_offset): Likewise.
472         (mono_debug_il_offset_from_address): Likewise.
473         (mono_debug_address_from_il_offset): Likewise.
474
475 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
476
477         * class.c (mono_class_from_name_case): Add support for dynamic images.
478         Fixes #75650.
479
480         * object.c (mono_class_compute_gc_descriptor): Add a workaround
481         for #75479.
482
483 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
484         
485         * reflection.c (mono_method_get_object): Fix warning.
486
487 2005-07-28  Martin Baulig  <martin@ximian.com>
488
489         * mono-debug.c
490         (mono_debug_add_wrapper): Also write the wrapper type.
491
492 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
493
494         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
495         
496         * class.c (mono_class_init): Avoid reading nested classes if the AOT
497         data indicates the class has none.
498
499 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
500
501         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
502         loader lock with the debugger lock. Prevents deadlocks for beagle.
503
504         Beagle can now run on an smp box for a weekend without any
505         issues. Woohoo!
506
507 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
508
509         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
510         in a module. Fixes #75629.
511
512 2005-07-26  Martin Baulig  <martin@ximian.com>
513
514         * mono-debug.c (mono_debug_add_wrapper): New static method.
515         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
516         interncall or a wrapper.
517
518         * mono-debug.h (MonoDebugWrapperData): New public typedef.
519         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
520         (MONO_DEBUGGER_VERSION): Bump to 51.
521
522         * mono-debug-debugger.c
523         (mono_debugger_add_type): Removed this empty function.
524         (mono_debugger_add_method): Likewise.
525
526 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
527
528         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
529         before accessing method->slot.
530
531 2005-07-21  Jb Evain  <jbevain@gmail.com>
532
533         * reflection.c (method_encode_clauses/class): Handle filters clauses.
534         Fixes #75010.
535
536 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
537
538         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
539         #75587.
540
541 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
542
543         * image.h image.c: Add mono_image_get_guid () API function.
544
545 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
546
547         There were issues when multiple threads tried to load
548         assemblies. A deadlock was created between assemblies_mutex and
549         mono_domain_assemblies_lock. This fixes the issue by making the
550         assembly ref counting be lock free. See bug 75586.
551         
552         * image.c (mono_image_close): The add ref function here was using
553         Interlocked operations while the unref was using a mutex and a
554         --. I don't think this was ever a bug that would be exposed in a
555         non-pendantic way (ie, by an embedder doing a ref on one thread
556         and an unref on another), but for the sake of correctness, this is
557         now Interlocked.
558
559         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
560         (mono_assembly_load_reference): Call mono_assembly_addref rather
561         than touching the refcount ourselves.
562         (mono_assembly_close): Use InterlockedDecrement to unref the
563         assembly. Don't acquire the lock unless it is actually needed.
564
565 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
566
567         * class.c (mono_class_layout_fields): Fix calculation of has_references
568         for generic types.
569
570 2005-07-12  Martin Baulig  <martin@ximian.com>
571
572         Applying a patch from Michal Moskal <malekith@nemerle.org>.
573
574         * metadata.c
575         (mono_type_hash): Provide better hashing for generic instances.
576         (mono_generic_inst_hash): Improve hashing.
577         (mono_generic_class_hash): Likewise.
578
579         * reflection.c (mymono_metadata_type_hash): Improve hashing for
580         generic instances.
581
582 2005-07-12  Martin Baulig  <martin@ximian.com>
583
584         * reflection.c (mono_reflection_create_runtime_class): Remove the
585         hack for generic type definitions and non-`Run' assemblies.
586         (mono_reflection_bind_generic_parameters): Also use
587         `klass->wastypebuilder' to check for TypeBuilders.
588
589 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
590
591         * class.c (mono_class_layout_fields): Fix calculation of has_references
592         for generic types.
593
594         * class.c (inflate_generic_class): Fix a leak.
595         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
596         for generic types.
597
598 2005-07-11  Martin Baulig  <martin@ximian.com>
599
600         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
601         on error.
602
603 2005-07-11  Martin Baulig  <martin@ximian.com>
604
605         * loader.c (find_method): Also lookup in
606         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
607
608 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
609
610         * appdomain.c (mono_domain_unload): Don't free the error message
611         before passing it to mono_get_exception_...
612
613         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
614         
615 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
616
617         * threads.c: try to better guess an available RT signal (bug #75387).
618
619 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
620
621         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
622         and CACHE_OBJECT.
623
624 2005-07-07  Martin Baulig  <martin@ximian.com>
625
626         * class.c (mono_type_get_name_full): Return NULL for
627         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
628         fixes #75408.
629
630 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
631
632         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
633         exit the appdomain as well being aborted.
634
635         * threadpool.c: Create all threadpool threads inside the root appdomain, and
636         change back to the root domain after calling managed code. This enables
637         appdomains using threadpools to be unloaded.
638
639 2005-07-07  Martin Baulig  <martin@ximian.com>
640
641         * class-internals.h
642         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
643         into `MonoDynamicGenericClass' since we only need it for dynamic
644         types.
645
646         * reflection.c (mono_class_bind_generic_parameters): We don't need
647         to compute the `parent' here.
648
649 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
650
651         * culture-info-table.h : regenerated.
652
653 2005-07-06  Martin Baulig  <martin@ximian.com>
654
655         * icall.c
656         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
657
658         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
659
660 2005-07-06  Martin Baulig  <martin@ximian.com>
661
662         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
663         we're doing a signature-only comparision; fixes #74945.
664
665 2005-07-06  Martin Baulig  <martin@ximian.com>
666
667         * class-internals.h (MonoGenericClass): Moved some things out into
668         a new `MonoInflatedGenericClass' type.  
669         (MonoInflatedGenericClass): New type; the `klass' of a
670         `MonoGenericClass' is now computed lazyly in
671         mono_get_inflated_generic_class().      
672
673         * class.c (mono_get_inflated_generic_class): New public function.
674         (mono_class_inflate_generic_method): Removed the unused
675         `MonoClass *' argument.
676         (setup_generic_vtable): Don't call mono_get_inflated_method() on
677         all the methods.
678         (mono_class_create_generic): Make this static and merge it with
679         mono_class_create_generic_2(); we're now called automatically from
680         mono_get_inflated_generic_class().
681
682         * loader.c (mono_method_signature): Call
683         mono_get_inflated_method() here.
684
685 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
686
687         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
688         type of fields with RVA.
689
690         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
691         for this pseudo class.
692         (my_mono_class_from_generic_parameter): Likewise.
693         (mono_class_init): Allow interfaces to have cctors.
694
695 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
696
697         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
698         lazily for AOT methods.
699
700 2005-07-05  Martin Baulig  <martin@ximian.com>
701
702         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
703         returns FALSE for a successful match, not TRUE.
704
705 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
706
707         * loader.c (mono_method_get_index): Optimize this a bit.
708
709 2005-07-04  Martin Baulig  <martin@ximian.com>
710
711         * class.c
712         (class_compute_field_layout): Move the check for generic type
713         definitions into mono_class_layout_fields().  Fixes #74684.
714         (mono_class_from_generic_parameter): Correctly compute
715         `klass->parent'; fixes #75457.
716
717         * reflection.c (register_assembly, register_module): Make sure
718         `domain->rejobject_hash' is already created.
719
720 2005-07-02  Martin Baulig  <martin@ximian.com>
721
722         * class-internals.h
723         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
724         `MonoDynamicGenericClass'.      
725
726 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
727
728         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
729         returned by a field getter is null, since null is a valid value.
730
731 2005-07-01  Martin Baulig  <martin@ximian.com>
732
733         * reflection.c (mono_reflection_generic_class_initialize): Update
734         the `dgclass->fields [i].parent' to the correct class.
735         (mono_image_get_fieldref_token): Use the declaring type, not the
736         reflected type.
737
738 2005-07-01  Martin Baulig  <martin@ximian.com>
739
740         * loader.c (find_method): Also look in the interfaces; fixes #75429.
741
742 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
743
744         * threads.c (thread_cleanup): assert that thread != NULL
745         (wait_for_tids_or_state_change): We were using the wrong variable
746         when accessing wait->threads. `i' was always out of the bounds of
747         the array.
748
749 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
750
751         * loader.c: map user32 and kernel32 to libMonoSupportW
752
753 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
754
755         * appdomain.c (unload_thread_main): Mark this as WINAPI.
756
757 2005-06-28  Martin Baulig  <martin@ximian.com>
758
759         * loader.c (method_from_methodspec): Fix #75334.
760
761 2005-06-28  Martin Baulig  <martin@ximian.com>
762
763         Fix #74953 - Arrays now implement the generic IList<T> interface
764         on the 2.0 platform.
765
766         * class-internals.h (MonoDefaults): Added `generic_array_class'.
767
768         * reflection.c (mono_class_bind_generic_parameters): New public
769         function; similar to mono_reflection_bind_generic_parameters(),
770         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
771
772         * domain.c (mono_init_internal): Try to initialize.
773         `mono_defaults.generic_array_class' here; this'll only succeed if
774         we're using the 2.0 corlib.
775
776         * icall.c
777         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
778         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
779         (mono_lookup_internal_call): Added support for nested classes.
780
781         * loader.c
782         (mono_get_method_from_token): Set `result->signature->pinvoke' if
783         we're an interncall and have generic arguments.
784
785         * class.c
786         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
787         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
788         instance of System.Array.InternalArray<T> for arrays, so they
789         implement the generic IList<T> interface.
790
791 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
792
793         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
794         (chastamar@yahoo.com). Fixes #75374.    
795
796 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
797
798         * culture-info-table.h: regenerated.
799
800 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
801
802         * icall.c: handle spaces correctly for base64 strings.
803
804 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
805
806         * *.c: Kill some warnings.
807
808 2005-06-23  Duncan Mak  <duncan@novell.com>
809
810         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
811         that this builds on Solaris 10 (x86).
812
813 2005-06-23  Martin Baulig  <martin@ximian.com>
814
815         * class.c
816         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
817         generic type definitions.
818
819 2005-06-23  Martin Baulig  <martin@ximian.com>
820
821         Fix #75331.
822
823         * metadata.c (mono_class_get_overrides): Renamed to
824         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
825         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
826         pass it to mono_get_method_full().
827
828 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
829
830         * reflection.c (mono_reflection_create_runtime_class): take the
831         mono_domain_lock in this method. Prevents deadlocks
832
833 2005-06-22  Martin Baulig  <martin@ximian.com>
834
835         * loader.c (method_from_methodspec): Fix #75330.
836
837 2005-06-22  Martin Baulig  <martin@ximian.com>
838
839         * reflection.c (type_get_qualified_name): Use
840         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
841         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
842         argument; use it if we don't have an assembly name.
843
844 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
845
846         * object.c: In mono_message_init, set "copy out" flag for in
847         parameters with the [Out] flag.
848
849 2005-06-21  Martin Baulig  <martin@ximian.com>
850
851         * class.c
852         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
853         and MONO_TYPE_PTR.
854
855 2005-06-21  Martin Baulig  <martin@ximian.com>
856
857         * class.c (mono_class_init): Don't initialize `class->fields' for
858         generic instances since they're initialized again in
859         compute_field_layout(). 
860         (compute_field_layout): Set the field's `generic_info' here; fix
861         #75320. 
862
863 2005-06-21  Martin Baulig  <martin@ximian.com>
864
865         * class-internals.h
866         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
867
868         * metadata.c (mono_metadata_generic_method_equal): Also
869         distinguish the `generic_class'; fixes #75334.
870
871 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
872
873         * domain.c:
874         * appdomain.c:
875         * domain-internals.h:
876         * reflection.c: 'domain_assemblies' field is now protected by its own
877         lock. Don't call into managed code to run the AssemblyLoad event if we
878         now there are no registered delegates for it.
879
880 2005-06-20  Martin Baulig  <martin@ximian.com>
881
882         * class.c (mono_class_is_assignable_from): Use a custom version of
883         mono_class_has_parent() to make things work for generic instances;
884         fix #75300.
885
886 2005-06-20  Martin Baulig  <martin@ximian.com>
887
888         * loader.c (method_from_methodspec): Apply a patch from
889         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
890
891 2005-06-20  Martin Baulig  <martin@ximian.com>
892
893         * class.c (mono_class_init): Reverted Zoltan's last change; it
894         breaks generics.
895
896 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
897
898         * threads.c (wait_for_tids_or_state_change): Add missing locking.
899
900 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
901
902         * socket-io.c: fix the index in the socket array for writable/error
903         sockets. Fixes bug #75306.
904
905 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
906
907         * class.c (mono_class_init): Allow interfaces to have static ctors.
908
909 2005-06-17  Martin Baulig  <martin@ximian.com>
910
911         * loader.c (method_from_methodspec): Use `context->container' when
912         parsing the `gmethod->inst'.
913
914 2005-06-17  Martin Baulig  <martin@ximian.com>
915
916         * class.c (mono_type_get_name_recurse): Don't add the assembly
917         name for type arguments.
918
919 2005-06-15  Martin Baulig  <martin@ximian.com>
920
921         * reflection.c (mono_image_get_inflated_method_token): Encode
922         correct klass; fixes #75260.
923
924 2005-06-13 Michal Moskal <malekith@nemerle.org>
925
926         * icall.c: Make GetCorrespondingMethod/Constructor take
927         MonoReflectionMethod method not MonoMethod. Removed
928         MonoType.GetCorrespondingField, and make
929         MonoGenericType.GetCorrespondingField take name not
930         MonoClassField.
931
932 2005-06-13  Michal Moskal <malekith@nemerle.org>
933
934         * reflection.c (field_encode_signature, encode_locals):
935          Make sizes of buffers for types larger (for big generic types).
936          (create_generic_typespec,
937          mono_reflection_sighelper_get_signature_local,
938          mono_reflection_sighelper_get_signature_field):
939          Add asserts for too small buffers.
940
941 2005-06-15  Martin Baulig  <martin@ximian.com>
942
943         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
944         if our parent is not a dynamic type.
945
946 2005-06-15  Martin Baulig  <martin@ximian.com>
947
948         * class-internals.h (MonoTypeNameFormat): New enum.
949
950         * class.c
951         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
952         (mono_type_get_full_name): Removed.
953         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
954         argument instead of the boolean's.
955
956         * icall.c (ves_icall_System_MonoType_getFullName):
957         Added `gboolean assembly_qualified'.    
958
959         * reflection.h
960         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
961
962         * reflection.c (mono_reflection_parse_type): Parse the new type
963         name format.
964
965 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
966
967         * icall.c: no need to convert from utf16 to utf8 and then back again
968         after the call to GetLogicalDrives.
969
970 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
971
972         * icall.c: frombase64. Fix problems exposed by new tests.
973
974 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
975
976         * icall.c: added internal calls for converting char [] and strings in
977         base64 into byte [].
978
979 2005-06-10  Martin Baulig  <martin@ximian.com>
980
981         * class.c (mono_class_create_generic_2): Read the nested classes
982         from the metadata rather than from `gklass->nested_classes' since
983         `gklass' might not be initialized yet.
984
985 2005-06-09  Duncan Mak  <duncan@novell.com>
986
987         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
988         all public headers. Fixes #74919.
989
990 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
991
992         * domain.c: The key for proxy_vtable_hash is now a pointer
993         array. Added new GHashFunc and GCompareFunc functions for this.
994
995         * class.h: The list of interfaces in MonoRemoteClass is known in
996         advance and can't grow (we create a new MonoRemoteClass if needed),
997         so now the interface array can be allocated together with
998         MonoRemoteClass.
999         
1000         * object.c: Added a new method create_remote_class_key.
1001         Fixed mono_remote_class so it does not depend on
1002         mono_upgrade_remote_class.
1003         Removed extend_interface_array.
1004         Added new method clone_remote_class(), which makes a copy of a remote
1005         class and adds a new interface or class to it.
1006         mono_upgrade_remote_class() now creates a new remote class (or gets
1007         it from the cache) if an vtable upgrade is needed. In this way
1008         we make sure that other objects sharing the same remote class
1009         don't get the new vtable with unwanted interfaces.
1010         
1011         * object-internals.h:
1012         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
1013         
1014         * marshal.c: Track changes in mono_upgrade_remote_class().
1015
1016 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
1017         * icall.c: Add runtime methods for obtaining members of inflated
1018         class, which were created from supplied non-inflated members. It
1019         is used in internal Get{Method,Constructor,Field} methods in
1020         System.Type
1021
1022 2005-06-09  Martin Baulig  <martin@ximian.com>
1023
1024         * reflection.c
1025         (mono_reflection_bind_generic_method_parameters): Fix #75169.
1026
1027 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1028         * reflection.c (mono_image_basic_init): Define
1029         Version in MonoDynamicAssembly. 
1030         
1031 2005-06-08  Martin Baulig  <martin@ximian.com>
1032
1033         Fix #75136.
1034
1035         * loader.c
1036         (mono_method_signature_full): New public method; takes a
1037         `MonoGenericContext *'.
1038         (find_method): Use mono_method_signature_full() and pass the
1039         klass'es context to it.
1040
1041         * class.c (mono_class_is_inflated_method): Use
1042         mono_method_signature_full() and pass the context to it.
1043
1044 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
1045
1046         * object.c: add proper locking in mono_remote_class_vtable(),
1047         fixes possible memory corruption.
1048
1049 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
1050
1051         * marshal.c (mono_remoting_marshal_init): set
1052         initialized after initialization.
1053
1054 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1055
1056         * locales.c : hush.
1057
1058 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
1059
1060         * object.c (extend_interface_array): fix really silly
1061         memory corrupting / comparison bug.
1062
1063 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1064
1065         * reflection.c: Functions added to support the creation
1066         of CustomAttributeData, which includes Attribute data
1067         used by ReflectionOnly methods.
1068
1069         * reflection.h:  mono_reflection_get_custom_attrs_data and
1070          mono_custom_attrs_data_construct added (functions exposed).
1071
1072          * icall.c: Added mono_reflection_get_custom_attrs_data
1073          as icall.
1074         
1075 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
1076
1077         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
1078         lupus's request.
1079
1080 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
1081
1082         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
1083
1084         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
1085         dynamic DllImportAttribute.
1086
1087         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
1088         dynamic DllImportAttribute.
1089
1090         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
1091         Fixes #75162.
1092
1093 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1094
1095         * threads.c: avoid segfault when an unstarted thread is aborted.
1096
1097 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
1098
1099         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
1100         Returns the name and version of the runtime for reporting.
1101
1102 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1103
1104         * appdomain.c: bump corlib version.
1105         * object-internals.h: new field in MonoReflectionAssembly.
1106
1107 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1108
1109         * object-internals.h: Carlos forgot to add this field.
1110
1111 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1112
1113         * icall.c: Added create_version to create instances
1114         of Version of MonoReflectionAssemblyName. This change helps
1115         the AssemblyName tests to keep running fine.
1116         
1117 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
1118   
1119         * object.c (mono_method_return_message_restore): A somehow less
1120         intrusive fix for #75138.
1121
1122 2005-06-03  Raja R Harinath  <rharinath@novell.com>
1123
1124         * object.c (mono_method_return_message_restore): Fix computation
1125         of expected number of out args.
1126
1127 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
1128
1129         * reflection.c (mono_image_get_method_info): Fix the case when the
1130         charset is empty.
1131
1132 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
1133
1134         * object.c: Added missing null check in
1135           mono_method_return_message_restore.
1136
1137 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
1138
1139         * reflection.c (mono_image_get_method_info): Handle the case when
1140         dllentry is empty.
1141
1142 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
1143
1144         * object.c: When creating the vtable for a proxy, take into account
1145         all inherited interfaces, not only the ones registered in
1146         iclass->interfaces. This fixs bug #74996.
1147         Also, in mono_method_return_message_restore, verify that the array
1148         of out args has the expected lengh.
1149
1150 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1151
1152         * socket-io.c: update the timeout in Poll when the call is interrupte.
1153
1154 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1155
1156         * socket-io.c: support abort/suspend in Select_internal after last
1157         change.
1158
1159 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1160
1161         * threadpool.c: remove warning.
1162
1163 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1164
1165         * icall.c:
1166         * socket-io.[ch]: Select_internal uses poll() now when available, thus
1167         removing the 1024 limit from select(). Runtime part of the fix for
1168         bug #71203.
1169
1170 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1171
1172         * socket-io.c: when resolving the addresses for the same
1173         host returned by gethostname(), get the local IPs from the interface
1174         list. Loopback addresses are discarded if the are interfaces up with
1175         non-loopback ones. Fixes bug #63265.
1176
1177 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
1178
1179         * appdomain.c, verify.c, object-internals.h, reflection.c:
1180         bumped corlib number to 36, and added new extra_flags field
1181         to ReflectionMethodBuilder and friends.  Fixes #75060.
1182
1183 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
1184
1185         * gc.c: register a new weak link only if the object is non-null
1186         (fixes bug#75047).
1187
1188 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1189
1190         * culture-info.h : short time pattern too.
1191
1192 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1193
1194         * culture-info.h : expand long time pattern string length.
1195
1196 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1197
1198         * culture-info-table.h : update (more French date format; #72788).
1199
1200 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
1201
1202         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
1203         the method is static. Fixes #75029.
1204
1205 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
1206
1207         * reflection.c: Update the table_idx field of method builders after
1208         saving the module, since it can change. This is a workaround for
1209         bug #74914. 
1210
1211 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1212
1213         * culture-info-table.h : update (additional French date format).
1214
1215 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
1216
1217         * icall.c (ves_icall_type_Equals): Revert last change.
1218         
1219         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
1220
1221         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
1222
1223 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
1224
1225         * class-internals.h: Added executioncontext_class field to 
1226         MonoDefaults structure.
1227         * domain.c: Cache System.Threading.ExecutionContext class in 
1228         mono_defaults.
1229         * object.c: Capture the ExecutionContext for asynchroneous calls in
1230          mono_async_result_new.
1231         * object-internals.h: Added execution_context and original_context 
1232         fields to MonoAsyncResult. Added execution_context to MonoThread.
1233         * security-manager.c|.h: Added mono_get_context_capture_method to 
1234         return the capture method (if required by the security manager or by
1235         the framework version used).
1236         * threadpool.c: Apply capture (if present) ExecutionContext in 
1237         mono_async_invoke and revert to original context after it completes.
1238
1239 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
1240
1241         * culture-info-table.h : updated (real hacky solution for zh-CHT).
1242
1243 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
1244
1245         * culture-info-table.h : zh-CHT related workaround.
1246
1247 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
1248
1249         * marshal.c (emit_marshal_custom): Add some error checking and call the
1250         methods in the ICustomMarshaler interface. Fixes #74875.
1251         
1252         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
1253         native->managed wrappers.
1254
1255 2005-05-12  Martin Baulig  <martin@ximian.com>
1256
1257         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
1258         here and use the loader lock.
1259
1260         * mono-debug.c: Properly lock when the debugger is not attached.
1261         (mono_debug_init): Release the initial lock if we're not running
1262         in the debugger.
1263
1264 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
1265
1266         * marshal.c (emit_marshal_custom): Pass through NULL values without
1267         calling the custom marshalling routines.
1268
1269         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
1270         conversion in structures. Fixes #74882.
1271
1272 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
1273
1274         * culture-info-table.h : zh-* cultures were missing.
1275
1276 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
1277
1278         * threads.c: Added a new event background_change_event which is signaled
1279         when a thread changes its background mode.
1280         Moved here several checks previously done in managed code. The checks
1281         require the thread lock, and using the thread lock in managed code
1282         can result in deadlocks.
1283         Merged Start_internal and Thread_internal into a single method. Now 
1284         Thread_internal does all work of creating and starting a thread.
1285         Added icalls for setting and getting the state of the object. Moved from
1286         managed code to avoid locking there.
1287         Added wait_for_tids_or_state_change() which is called instad of
1288         wait_for_tids when waiting for non-backround threads to end. This method
1289         will return if one of the threads ends or the background_change_event
1290         is signaled.
1291         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
1292         the background mode. This method signals the background_change_event
1293         event.
1294         * icall.c:
1295         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
1296         removed Start_internal.
1297         
1298 2005-05-11  Martin Baulig  <martin@ximian.com>
1299
1300         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
1301         to order of some fields to get proper alignment on 64-bit machines.
1302
1303 2005-05-11  Martin Baulig  <martin@ximian.com>
1304
1305         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
1306         changes as they're broken and completely fuck up the debugger.
1307
1308         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
1309
1310 2005-05-10  Martin Baulig  <martin@ximian.com>
1311
1312         * reflection.c (mono_reflection_generic_class_initialize): Don't
1313         call mono_class_setup_parent() here.
1314
1315 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1316
1317         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
1318         send/receive timeout use an integer in milliseconds. We were using a
1319         struct timeval.
1320
1321 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1322
1323         * locales.c:
1324         (internal_get_cultures): reserve the first slot of the array for the
1325         InvariantCulture, which will be filled in managed code.
1326
1327 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
1328
1329         * reflection.c (mono_image_fill_module_table): Initialize the
1330         GENERATION field as well.
1331
1332 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1333
1334         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
1335         Monitor.Enter on the object.
1336
1337 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
1338
1339         * threads.c: Enable the wait for running threads when exiting.
1340         * icall.c: Suspend all threads before exiting.
1341
1342 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
1343
1344         * assembly.c (mono_assembly_load_reference): Fix warning.
1345
1346 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1347
1348         * threadpool.c: changed the default number of threads per cpu. From now
1349         on, the default will be 20 + (5 * number of cpus) instead of 50.
1350
1351 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
1352
1353         * loader.c (mono_method_get_signature_full): Add locking here.
1354
1355 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
1356
1357         * appdomain.c: Moved methods for parsing and freeing assembly
1358         names to assembly.c.
1359         * assembly.c, domain-internals.h: Created public methods for parsing
1360         assembly names. Fixed mono_assembly_load_with_partial_name:
1361         it now finds the best match, taking into account the version,
1362         token and culture specified in the partial name. Also return
1363         the latest version if no version information is specified.
1364
1365 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
1366
1367         * threadpool.c: replace check for SocketAsyncCall class.
1368
1369 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1370
1371         * threadpool-internals.h:
1372         * Makefile.am: added threadpool-internals.h
1373
1374         * threadpool.c: call mono_unhandled_exception on exceptions not handled
1375         that happen in threadpool threads (tested on MS).
1376         (mono_thread_pool_remove_socket): new function that dispatch any pending
1377         AIO call on a socket that is closing. By now only epoll really needs it,
1378         as select/poll wake up when the socket closes.
1379
1380
1381         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
1382
1383 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
1384
1385         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
1386
1387 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
1388
1389         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
1390
1391 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
1392
1393         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
1394         has an abort request, convert it into a suspend request.
1395
1396 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
1397
1398         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
1399         warning for the usage of `UnmanagedFunctionPointerAttribute' which
1400         is not supported yet.
1401
1402 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1403
1404         * image.c: register assemblies loaded from data (bundles) in the loaded
1405         assemblies hash. Fixes bug #74772.
1406
1407 2005-04-29  Martin Baulig  <martin@ximian.com>
1408
1409         * class.c (mono_type_get_name_recurse): Update to the new naming
1410         schema from the latest .NET 2.x beta2.
1411         (mono_class_setup_vtable_general): If we're a generic instance,
1412         copy the vtable from our generic type definition and inflate all
1413         the methods in it.
1414
1415         * loader.c (find_method): Update to the new naming schema from the
1416         latest .NET 2.x beta2.
1417
1418 2005-04-29  Raja R Harinath  <harinath@gmail.com>
1419
1420         * class.c (mono_class_init): Add a mono_loader_unlock to the
1421         #74734 fix.
1422
1423 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
1424
1425         * icall.c (ves_icall_System_Environment_Exit): Remove the 
1426         suspend_all_other_threads () call for the time being, since it can hang.
1427
1428         * threads.c (mono_thread_manage): Similarly, disable the waiting for
1429         the background threads to exit, since it can also hang.
1430
1431         * class.c (mono_class_init): Applied patch from Ankit Jain 
1432         (radical@gmail.com). Avoid pending init errors when a field refers
1433         to a nested class using a typeref. Fixes #74734.
1434
1435         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
1436         this for dynamic modules.
1437
1438 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1439
1440         * threads.c: don't wait for threads that are in the process of aborting
1441         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
1442         and waiting for background threads to finish. This makes xsp and
1443         mod-mono-server exit without random length delays and/or hangs.
1444
1445 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1446
1447         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
1448
1449 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
1450
1451         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
1452         dynamic types to prevent infinite loops. Fixes #74727.
1453
1454         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
1455         ..._is_assignable_to.
1456
1457 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
1458
1459         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
1460
1461 2005-04-25  Martin Baulig  <martin@ximian.com>
1462
1463         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
1464
1465         * domain.c
1466         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
1467
1468         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
1469
1470         * reflection.c (build_compressed_metadata): Set metadata header
1471         version to 2.0.
1472
1473 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
1474
1475         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
1476         number into an integral and a decimal part. Fixes #70473.
1477
1478         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
1479
1480 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
1481
1482         * culture-info-table.h : reflected the latest locale-builder output.
1483
1484 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1485
1486         * threadpool.c: check for SuspendRequested too when deciding if
1487         mono_thread_interruption_checkpoint should be called.
1488
1489 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1490
1491         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
1492         * threads.c: remove interruption_mutex and use Interlocked instead. When
1493         suspending all the threads, wait for all the suspended events at once.
1494         If we're shutting down and get an APC that is going to be queued,
1495         call mono_thread_execute_interruption immediately, as the thread might
1496         be sleeping on a pthread condition or mutex.
1497
1498         * icall.c: call mono_runtime_set_shutting_down before suspending the
1499         threads.
1500
1501         Fixes bug #74693. And now xsp is happier when exiting.
1502
1503 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
1504
1505         * loader.c (mono_stack_walk): Fix #74690.
1506
1507 2005-04-22  Martin Baulig  <martin@ximian.com>
1508
1509         * mono-debug.h (MonoDebugMethodJitInfo): Added
1510         `MonoDebugMethodJitInfo *jit'.
1511
1512         * mono-debug.c (mono_debug_read_method): Cache the
1513         MonoDebugMethodJitInfo in `address->jit'.
1514         (mono_debug_free_method_jit_info): New public method.
1515
1516 2005-04-22  Martin Baulig  <martin@ximian.com>
1517
1518         * class.c (mono_class_is_assignable_from): Disallow
1519         type parameter -> interface.
1520
1521 2005-04-21  Dick Porter  <dick@ximian.com>
1522
1523         * threads.c (mono_thread_create): Turn an assertion into an error.
1524
1525 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
1526
1527         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
1528         
1529         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
1530         Fix some gcc 4.0 warnings.
1531
1532 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
1533
1534         * file-io.c: fix alt dir separator char on unix systems
1535         and cleanup (fixes bug #71214).
1536
1537 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
1538
1539         * marshal.c: Use CALLVIRT instead of CALL when dispatching
1540         a call to a remote domain, since the method may be an
1541         interface method in the client domain. This fixes bug #74192.
1542
1543 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1544
1545         * threadpool.c: recv/send are now performed before going back to managed
1546         code to save one transition.
1547
1548 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1549
1550         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
1551
1552         * metadata/threadpool.c: removed hack to workaround the bug above.
1553
1554         Fixes bug #74618.
1555
1556 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
1557
1558         * reflection.c reflection.h: Fix handling of parameter defaults in
1559         dynamic methods. Also fixes handling of parameter attributes.
1560         Fixes #74609.
1561
1562         * mono-debug.c (mono_debug_close_image): Fix warning.
1563
1564 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1565
1566         * socket-io.h: replaced old unused field with new 'blocking'.
1567         * threadpool.c: restore socket blocking state on windows(tm).
1568
1569 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
1570
1571         * icall.c: don't return the codebase in the AssemblyName[] returned by
1572         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
1573         * object-internals.h: Removed FIXME (fields were presents) and fixed
1574         versioncompat declaration.
1575
1576 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1577
1578         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
1579         not closed, so don't cleanup when it happens.
1580
1581 2005-04-13  Chris Toshok  <toshok@ximian.com>
1582
1583         * mono-debug-debugger.h: change prototype for
1584         mono_debugger_lookup_type.
1585
1586         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
1587         this function, although it should probably be named
1588         mono_debugger_init_type.
1589
1590 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1591
1592         * threadpool.c: fix non-AIO case.
1593
1594 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
1595
1596         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
1597         the built-in profiler to measure just JIT compilation times.
1598
1599 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1600
1601         * threadpool.c: the epollfd might be closed by another thread at
1602         any time, so ignore EBADF at treat it as a "we're closing" sign.
1603
1604 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1605
1606         * threadpool.c: release the semaphores with a count equals to the number
1607         of working threads in both IO and regular pools. Fixed typo that messed
1608         up the count of IO pool threads. Don't initialize the pipe handles if
1609         we're using epoll.
1610
1611 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1612
1613         * threadpool.c: some systems don't like a NULL when deleting the socket
1614         from epoll.
1615
1616 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1617
1618         * threadpool.c: fix semaphore allocation.
1619
1620 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1621
1622         * threadpool.c: added epoll() based implementation for asynchronous IO
1623         that is used instead of the default poll() when available.
1624         It can be disabled by setting MONO_DISABLE_AIO.
1625
1626 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1627
1628         * threadpool.c: windows needs 'closesocket' and instead of returning
1629         0 when the stream is closed while in select, it returns -1. Fixes bug
1630         #74573.
1631
1632 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
1633
1634         * class.c (class_compute_field_layout): Fix the regression caused by
1635         the previous try.
1636
1637 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1638
1639         * threadpool.c: separate pool for socket async. IO.
1640         * threadpool.h: mono_max_worker_threads is not a global any more.
1641
1642 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
1643
1644         * class.c (class_compute_field_layout): Fix #74549.
1645
1646 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1647
1648         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
1649         use 2 connected sockets instead.
1650
1651 2005-04-08  Miguel de Icaza  <miguel@novell.com>
1652
1653         * mono-config.c: Add new entry point for mkbundle
1654         mono_config_parse_memory. 
1655
1656 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1657
1658         * threadpool.c: removed another unused function.
1659
1660 2005-04-08  Ankit Jain  <radical@corewars.org>
1661
1662         * reflection.c (get_default_param_value_blobs): Add 'types'
1663         parameter to get the types encoded in the constant table.
1664         (mono_param_get_objects): Use the type from the constant table,
1665         not the type of the parameter, when creating default values.
1666         Handle null default values correctly.
1667
1668 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1669
1670         * file-io.c:
1671         * file-io.h:
1672         * threadpool.c:
1673         * threadpool.h:
1674         * icall.c:
1675         * socket-io.c: removed dead code for async IO.
1676
1677 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1678
1679         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
1680
1681         * threadpool.c: intercept socket async. calls and pass them to a thread
1682         that is polling and dispatching the job items to the threadpool as
1683         socket become ready. Fixes bugs #71217, #71933.
1684
1685         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
1686         between char and short/ushort arrays.
1687
1688         * socket-io.c: remove dead code.
1689
1690 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
1691
1692         * locales.c,
1693           icall.c : removed InternalToUpper_Comp() and
1694           InternalToLower_Comp().
1695
1696 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
1697
1698         * char-conversions.h : The tables were incorrectly generated. Should
1699           be generated against invariant culture.
1700
1701 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
1702
1703         * object.c (mono_runtime_invoke_array): Fix return value when 
1704         passing pre-created valuetype objects to ctors.
1705
1706         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
1707         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
1708         Fixes #74338.
1709
1710 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1711
1712         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
1713         only used with --security and hides the wrong corlib version error.
1714
1715 2005-03-30  Joshua Tauberer  <tauberer@for.net>
1716
1717         * class.c: Changed mono_class_name_from_token so that types
1718         outside of a namespace don't have an initial period.  Improved
1719         the g_warning message used in _mono_class_get when loading
1720         fails.
1721         * assembly.c: In mono_assembly_load_reference, when an assembly
1722         can't be found, "No such file or directory" is misleading and
1723         unhelpful because a few paths were checked for the presence of
1724         the assembly.  When that happens (ENOENT), display a nicer
1725         message indicating the directories that were searched.  In all
1726         cases, the warning is made easier to read for non-hackers.
1727
1728 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
1729
1730         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
1731         project/solution.
1732         * appdomain.h|domain.c: Removed inline from functions.
1733         * appdomain.c: Reduced warnings when compiling on windows.
1734         * icall.c: Fixed output_debug declaration to gunichar2*.
1735         * mono-config.c: Reduced warnings when compiling on windows.
1736         * rand.c: Added missing "windows.h". Added missing return value.
1737         * rawbuffer.c: Added missing winsock2.h for windows.
1738         * sysmath.h: Added mono-compiler.h header to allow/ease 
1739         compilation with non-GCC compilers.
1740         * threads.c: Fixed declarations to compile with VS.NET C compiler.
1741         Removed cast warnings.
1742
1743         Adapted from the work of J Lothian (for VC6).
1744
1745 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
1746
1747         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
1748         from default_path.
1749
1750 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
1751
1752         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
1753         the 2.0 profile.
1754
1755 2005-03-27  Raja R Harinath  <harinath@gmail.com>
1756
1757         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
1758         has to be in $(exec_prefix).  $(prefix) is for arch-independent
1759         stuff, and it would probably use $(prefix)/share rather than
1760         $(prefix)/lib.
1761
1762 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1763
1764         * console-io.c: added 2 includes that might be missing.
1765
1766 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
1767
1768         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
1769         profile.
1770
1771         * reflection.c (create_custom_attr): Allocate the params array using
1772         alloca so it gets GC tracking.
1773
1774 2005-03-23  Chris Toshok  <toshok@ximian.com>
1775
1776         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
1777         out some spew.
1778
1779 2005-03-24  Raja R Harinath  <rharinath@novell.com>
1780
1781         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
1782         changes to pick up any changes in prefix, etc.
1783
1784 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
1785
1786         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
1787         
1788         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
1789         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
1790
1791 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
1792
1793         * class-internals.h object-internals.h class.c reflection.c: Extend the
1794         mono_lookup_dynamic_token () function to return the class of the
1795         token as well. 
1796
1797         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
1798         well. Fixes #73848.
1799
1800 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
1801
1802         * security-manager.c: Skip inheritance checks for intra-corlib
1803         class inheritance and method overrides. This skips a lot of checks
1804         and (anyway) permissions cannot work until corlib is loaded.
1805
1806 2005-03-23  Martin Baulig  <martin@ximian.com>
1807
1808         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
1809         MONO_TYPE_GENERICINST.  
1810
1811 2005-03-23  Martin Baulig  <martin@ximian.com>
1812
1813         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
1814
1815 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1816
1817         * class.c: added locking comments to some functions.
1818         Cache the interface offsets arrays (saves about 20 KB
1819         of runtime memory in a typical app).
1820         Reduce the time overhead in mono_class_setup_supertypes ().
1821
1822 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
1823
1824         * icall.c: speedup and fix leaks in GetMethodsByName and
1825         GetPropertiesByName.
1826
1827 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1828
1829         * reflection.c: some locking fixes.
1830
1831 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1832
1833         * metadata.c: added missing break in case statement.
1834
1835 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
1836
1837         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
1838         typedbyref return values. Fixes #73941.
1839
1840 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
1841
1842         * security-manager.c|h: Added demandunmanaged method and 
1843         suppressunmanagedcodesecurity class to MonoSecurityManager.
1844         Renamed aptc class to allowpartiallytrustedcallers.
1845
1846 2005-03-17  Martin Baulig  <martin@ximian.com>
1847
1848         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
1849
1850 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1851
1852         * file-io.c: disabled file async. IO using aio_*. It uses the
1853         threadpool now. Workaround for bug #73718.
1854
1855 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1856
1857         * assembly.h, mono-config.c: added code to deal with bundled configs
1858         for bundled assemblies.
1859
1860 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
1861
1862         * *.c, private.h: cleanup, removing old private.h header file.
1863
1864 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
1865
1866         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
1867         and throw_on_unmappable_char attributes.
1868
1869 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
1870
1871         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
1872         _ProcessName_internal.
1873
1874 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
1875
1876         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
1877         #73631.
1878
1879         * icall.c threads.c threads-types.h: Remove slothash icalls as they
1880         are no longer used.
1881
1882 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
1883
1884         * object.c (compute_class_bitmap): Add support for generics. Fixes
1885         #73527.
1886
1887 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
1888
1889         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
1890
1891 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1892
1893         * filewatcher.c: commented out the code for windows watcher, as we don't
1894         use it (we use the managed implementation instead).
1895
1896 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
1897
1898         * object-internals.h (MonoThread): Remove 'unused1' field.
1899
1900         * appdomain.c: Bump corlib version.
1901
1902         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
1903
1904         * reflection.c (mono_reflection_create_runtime_class): Remove the
1905         AssemblyBuilder.Save optimization since it causes too many problems.
1906
1907 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
1908
1909         * exception.c|h: Added mono_get_exception_reflection_type_load to
1910         create a ReflectionTypeLoadException object.
1911         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
1912         to return NULL is a InheritanceDemand fails during reflection. Updated
1913         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
1914         ReflectionTypeLoadException if an InheritanceDemand fails during 
1915         reflection. Added icall mapping for GetLinkDemandSecurity.
1916         * security-manager.c|h: Added ves_icall_System_Security_
1917         SecurityManager_GetLinkDemandSecurity internal call to return the
1918         class and methods permissions set for a LinkDemand. Removed unused
1919         fields in MonoSecurityManager.
1920
1921 2005-03-10  Martin Baulig  <martin@ximian.com>
1922
1923         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
1924         it's a generic instance.
1925
1926 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
1927
1928         * reflection.c (mono_get_object_from_blob): Applied patch from
1929         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
1930
1931         * class.c (mono_class_is_assignable_from): Another try at fixing 
1932         #73469 without breaking anything.
1933
1934 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
1935
1936         * class.c: (mono_class_is_assignable_from): Revert the last changes
1937         since they don't work with generics.
1938         
1939         * class.c (mono_class_is_assignable_from): Fix build bustage.
1940
1941         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
1942         the managed IsAssignableFrom method. Fixes #73469.
1943
1944         * reflection.c (mono_reflection_call_is_assignable_from): New helper
1945         function.
1946
1947 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
1948
1949         * object.c (mono_load_remote_field_new): Fix returning uninitialized
1950         memory when the remoting callback does not sets the out arguments.
1951         Fixes #73007.
1952
1953         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
1954         by mistake.
1955
1956         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
1957
1958         * object-internals.h (MonoStackFrame): Sync with managed object layout.
1959
1960         * appdomain.c: Bump corlib version.
1961
1962 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
1963
1964         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
1965         function.
1966
1967         * threads.c (mono_thread_attach): Detect threads which are not started
1968         by the GC pthread wrappers.
1969
1970 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
1971
1972         * icall.c: Added new icall for RNG.
1973         * rand.c|h: Added new icall to open the RNG. This allows to share a 
1974         single handle on Linux to access /dev/urandom and fix #73183.
1975
1976 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
1977
1978         * object.c: setting the new vtable in a transparent proxy object must
1979         not change the GC descriptor.
1980
1981 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1982
1983         * object.c: fixed compilation without GCJ support.
1984         * reflection.c: for runtime-created types ensure klass->has_references
1985         is correct (bug #73215).
1986
1987 2005-03-02  Martin Baulig  <martin@ximian.com>
1988
1989         * class.c (mono_class_is_assignable_from): Make this work if
1990         `oklass' is a generic instance; fixes #72831.
1991
1992 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
1993
1994         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
1995         with hasthis set.
1996         
1997         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
1998
1999         * marshal.c: Reorganize native->managed marshalling code to also use
2000         the emit_marshal_... functions.
2001
2002 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
2003
2004         * object.c: typed allocs have issues with bitmap sizes > 30,
2005         so check for max_set >= 30.
2006
2007 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
2008
2009         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
2010         managed code. Fixes #73012.
2011
2012         * metadata.h (MonoMarshalSpec): Add elem_mult field.
2013
2014         * metadata.c reflection.c: Load/Emit elem_mult as well.
2015         
2016         * metadata.h (MonoMarshalSpec): Add comment.
2017
2018         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
2019
2020         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
2021         num_elem to -1 if not given.
2022
2023         * object-internals.h (MonoReflectionMarshal): Add has_size field.
2024
2025         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
2026         given values.
2027
2028 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
2029
2030         * null-gc.c (mono_gc_free_fixed): Was not compilable.
2031
2032 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
2033
2034         * reflection.c (encode_marshal_blob): Encode param_num field as well.
2035
2036         * object-internals.h (MonoReflectionMarshal): Add param_num field.
2037
2038 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
2039
2040         * object.c: generalized the reference bitmap creation
2041         and added hooks for the new GC.
2042         * class-internals.c: removed the gc_bitmap field from MonoClass.
2043
2044 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
2045
2046         * domain.c: help the compiler to produce better code
2047         in mono_jit_info_table_find ().
2048
2049 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
2050
2051         * object.c: make all allocations look typed.
2052
2053 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
2054
2055         * socket-io.c: load Mono.Posix if it's not loaded already
2056         (fixes bug#73033).
2057
2058 2005-02-24  Martin Baulig  <martin@ximian.com>
2059
2060         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
2061         * reflection.c (dup_type): Likewise.
2062
2063 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
2064
2065         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
2066         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
2067
2068 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
2069
2070         * domain.c, threads.c, object-internals.h: make the critical thread
2071         local vars use the fast access mode (even when we're compiled in
2072         a lib). Provide accessors to be used by the jit during codegen.
2073
2074 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2075
2076         * appdomain.c: Changed hook functios behavior to include
2077         support for the reflection only assemblies. Some icalls were changed
2078         to support the mentioned assemblies too. Signatures of static methods
2079         try_assembly_resolve and real_load now have an additional parameter:
2080         refonly.
2081
2082         * assembly.c: General changes to mono_assembly_ methods to support
2083         reflection only api. Functions mono_assembly_open, mono_assembly_load,
2084         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
2085         suffix, to support an additional gbool parameter to specify whether
2086         the assembli is reflection only or not. Created some new hook functions 
2087         to add support for reflection only assemblies. Signatures of static 
2088         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
2089         have now an additional parameter: refonly.
2090
2091         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
2092         indicating whether the assembly is reflection only or not.
2093
2094         * exception.c: Add mono_get_exception_invalid_operation.
2095
2096         * icall.c: Throw an InvalidOperationException when trying to invoke
2097         a property/method/event, or trying to set/get the value of a field.
2098         Also add an icall to retrieve the ref_only flag to the
2099         MonoReflectionAssembly.
2100
2101 2005-02-23  Chris Toshok  <toshok@ximian.com>
2102
2103         Part of fix for #72827.
2104         * mono-debug.c (mono_debug_add_method): add lexical block data to
2105         the info we write.  Kind of a hack at the moment - we copy the
2106         lexical block info from the MonoDebugMethodInfo to the
2107         MonoDebugMethodJitInfo here, before writing it.
2108         (mono_debug_read_method): read the lexical block info.
2109
2110         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
2111
2112         * debug-mono-symfile.h: add lexical block support.
2113
2114         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
2115         support.
2116
2117 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
2118
2119         * loader.c (mono_lookup_pinvoke_call): Fix warning.
2120
2121         * object.c (mono_runtime_free_method): Call mono_free_method () and
2122         put the TODOs there.
2123
2124         * loader.c (mono_free_method): Free up most memory allocated for 
2125         dynamic methods.
2126
2127 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
2128
2129         * reflection.c: properly flag a Type argument to a
2130         named custom attr value (bug #72248).
2131
2132 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
2133
2134         * reflection.c: reduce code duplication in named custom
2135         attribute encoding.
2136
2137 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
2138
2139         * reflection.c: properly encode custom attrs of type object
2140         (bug #72649).
2141
2142 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
2143
2144         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
2145
2146 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
2147
2148         * socket-io.c: load System.dll if it's not loaded already
2149         (bug #72850 and #70477).
2150
2151 2005-02-21  Martin Baulig  <martin@ximian.com>
2152
2153         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
2154         generic instances.
2155
2156 2005-02-21  Martin Baulig  <martin@ximian.com>
2157
2158         * reflection.c (mono_image_build_metadata): We also need to
2159         "fixup" the MethodImpl table after we computed the final method
2160         indices.  Call fixup_methodimpl() to do that.
2161         (fixup_methodimpl): New private method.
2162
2163 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
2164
2165         * assembly.c: special case mscorlib.dll (bug#72536),
2166         patch from Carlos Alberto Cortez.
2167
2168 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
2169
2170         * threads-types.h threads.c: Fix build bustage.
2171
2172         * threads.c: Use a union for long<->double conversions.
2173
2174         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
2175         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
2176
2177         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
2178         containing the checkpoint call with NOT_TAKEN.
2179         
2180         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
2181         checkpoint before pushing the arguments, so they won't have to be
2182         spilled to stack.
2183
2184 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2185
2186         * domain.c, assembly.c, domain-internals.h: make some data
2187         const and relocation-free.
2188
2189 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
2190
2191         * object.c, appdomain.c, class-internals.h: introduce the
2192         MonoClassRuntimeInfo structure to hold the info needed to
2193         use a class at runtime. Made mono_class_vtable() lock-free
2194         for all the appdomains.
2195
2196 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
2197
2198         * metadata-internals.h, image.c: introduce a per-image mempool to
2199         be used for memory that has the same lifetime as the image.
2200
2201 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
2202
2203         * domain.c: In mono_init_internal(), instead of selecting the first
2204         runtime version supported by an executable, get a list of all
2205         supported versions and select the one for which an mscorlib exists
2206         (since even if the runtime supports a given version, it doesn't mean
2207         that the framework for that version is installed).
2208         Modified get_runtimes_from_exe to support this behavior.
2209         In supported_runtimes, added information about additional system
2210         assembly versions.
2211         
2212         * assembly.c: Added support for more than one system assembly version
2213         per runtime version. Updated the assembly list.
2214         In mono_assembly_remap_version, removed the initial version check,
2215         since we don't know to which version we need to compare until we
2216         get the version set on which the assembly is based.
2217         Moved the code for loading corlib into the new method
2218         mono_assembly_load_corlib(), so it can be used by the initialization
2219         code.
2220         
2221         * domain-internals.h: Updated data structures and added declaration
2222         for mono_assembly_load_corlib.
2223
2224 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
2225
2226         * reflection.c (resolve_object): Fix the creation of the signature in 
2227         the SignatureHelper case.
2228
2229         * assembly.c (mono_assembly_remap_version): Fix binary search.
2230         
2231 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
2232  
2233         * class.c: Added inheritance check when a method is overloaded (from a
2234         virtual method or when implementing an interface) and when a class is
2235         inherited. Added functions to set a failure for a class and to 
2236         retreive the exception from a failure.
2237         * class-internals.h: Added fields to MonoClass to keep the exception
2238         information status for inheritance (or other exceptions) to be thrown
2239         later (i.e. not at load time).
2240         * object.c: Throw the inheritance SecurityException when a type is to 
2241         be created with either class or method inheritance violations.
2242         * reflection.c|h: Fix when getting declsec from a class. Removed 
2243         unrequired code for class. Improved sanity in parameter naming.
2244         * security-manager.c|h: Added functions to check for class and method
2245         inheritance.
2246
2247 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
2248
2249         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
2250         and has_finalize in dynamic types as well.
2251
2252 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
2253
2254         * culture-info-table.h : fixed currency format for en-GB (and so on).
2255
2256 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
2257
2258         * gc.c: ensure the GC handles never have 0 as a value.
2259
2260 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
2261
2262         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
2263         a pointer to a struct to unmanaged code. Fixes #72625.
2264
2265 2005-02-16  Martin Baulig  <martin@ximian.com>
2266
2267         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
2268
2269 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
2270
2271         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
2272
2273 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
2274
2275         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
2276
2277         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
2278         UnmanagedFunctionPointerAttribute, use it for determining calling convention
2279         etc. Fixes #71471.
2280
2281         * reflection.c (mono_custom_attrs_get_attr): New helper function.
2282
2283         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
2284
2285 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
2286
2287         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
2288         changes to make the current context a field in MonoThread.
2289
2290 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
2291
2292         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
2293         the last change.
2294         
2295         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
2296         extracted from mono_marshal_get_native_wrapper.
2297
2298         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
2299         to create wrappers around native functions.
2300
2301         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
2302         delegates for arbitrary function pointers. Fixes #71472.
2303
2304 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
2305
2306         * threads.c: cleaned up the code a little.
2307
2308 2005-02-15  Martin Baulig  <martin@ximian.com>
2309
2310         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
2311         the data table.
2312
2313         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
2314         allocate larger chunks if needed.
2315
2316 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
2317
2318         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
2319         in by mistake.
2320
2321 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
2322
2323         * domain.c: keep the domains in an array and ensure the domain ids
2324         are kept small, so they can be used as indexes to domain-specific data
2325         with a small memory overhead.
2326
2327 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
2328
2329         * icall.c: Handle byref types in Type icalls. Fixes #72544.
2330
2331 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
2332
2333         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
2334
2335 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
2336
2337         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
2338
2339         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
2340         values.
2341
2342         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
2343         
2344 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
2345
2346         * domain-internals.h: add the hashtable here.
2347
2348         * class-internals.h: Remove `info' from MonoMethod
2349
2350         * domain.c: Add a new hashtable, jit_trampoline_hash
2351
2352 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
2353
2354         * object.c: don't set the value of static fields
2355         (fixes bug#72494).
2356
2357 2005-02-11  Martin Baulig  <martin@ximian.com>
2358
2359         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
2360         (mono_debug_add_method): Silently ignore the method if it's too big.
2361         (mono_debug_add_type): Likewise.
2362
2363 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
2364
2365         * threads.c, appdomain.c: remove #ifdefs from the code.
2366
2367 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
2368
2369         * metadata-internals.h: Added flags to MonoAssembly to cache the most
2370         common security informations. This allows us to stay in unmanaged code
2371         when doing LinkDemand and it's special cases (except for the first 
2372         time for initialization). The flags a very much used with --security.
2373         * reflection.c|h: Added code to get declarative security attributes 
2374         for LinkDemand and InheritanceDemand. This required to refactor the
2375         existing code for Demand.
2376         * security-manager.c|h: Added new method fields for the special cases
2377         of LinkDemand.
2378
2379 2005-02-10  Martin Baulig  <martin@ximian.com>
2380
2381         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
2382         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
2383
2384 2005-02-10  Martin Baulig  <martin@ximian.com>
2385
2386         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
2387         debugging code; this is almost a complete rewrite.
2388
2389         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
2390
2391 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
2392
2393         * domain.c, object.h: expose mono_string_equal () and 
2394         mono_string_hash ().
2395         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
2396         it's implemented in managed code.
2397
2398 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2399
2400         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
2401         lo leak objects between appdomains.
2402
2403 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2404
2405         * assembly.c: old compilers compilation fix from 
2406         robertj@gmx.net (Robert Jordan).
2407
2408 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
2409
2410         * class-internals.h: Little reminder for the future.
2411
2412         * debug-helpers.c: Fix up wrapper_type_names
2413
2414 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2415
2416         * image.c, metadata-internals.h: when loading an image from a file,
2417         mmap all of it and use the same codepaths as when using a
2418         in-memory image: the code is simpler and we use less memory
2419         (both writable and readonly).
2420
2421 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
2422
2423         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
2424         API to alloc runtime data structures that need to be tracked by the
2425         GC and contain pointers.
2426         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
2427         make the code more readable and eventually use a different GC.
2428
2429 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
2430
2431         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
2432         for out arguments.
2433         
2434 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
2435
2436         * object.c: In release_type_locks(), don't release the cctor lock
2437         if it has already been released. This fixes a crash in the
2438         thread5 test.
2439
2440 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
2441
2442         * gc.c, marshal.c, icall.c: register a delegate for finalization
2443         only when the native function pointer has been allocated for it.
2444
2445 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2446
2447         * object.c: cleaned up some code, allocate objects that are
2448         pointer free with the atomic malloc variant. Allocate memory
2449         for static data from the mempool if it's pointer-free.
2450         Allocate the bounds array at the end of the array data, when needed.
2451         * object-internals.h, object.h: move a private function in a private
2452         header.
2453         * class.c: handle missing case in tracking references in fields.
2454
2455 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
2456
2457         * class.c, class-internals.h: keep track if a type has
2458         reference fields in either the instance or static fields.
2459
2460 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
2461
2462         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
2463         and renamed to MonoRuntimeInfo. Added fields to store the expected
2464         framework assembly version. Changed mono_get_framework_version and
2465         mono_get_runtime_version for a single mono_get_runtime_info method.
2466         
2467         * assembly.c: Added method to remap system assembly versions to the
2468         current executing runtime version. Removed old mapping code.
2469         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
2470         
2471         * icall.c, reflection.c: Track api changes.
2472
2473 2005-02-06  Miguel de Icaza  <miguel@novell.com>
2474
2475         * loader.c (method_from_memberref): Improve error reporting,
2476         produce the class name instead of the typeref/typedef index. 
2477
2478 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
2479
2480         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
2481
2482 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2483
2484         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
2485         stdcall and charset name mangling.  Reorganize the code and add
2486         some tracing stuff.
2487
2488 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
2489
2490         * monodiet.c: More iters!
2491
2492         * marshal.c: Iter usage.
2493
2494         * icall.c: Iter usage.
2495
2496         * object.c: Use iters.
2497
2498         * debug-helpers.c: More iters
2499
2500 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2501
2502         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
2503         under win32.
2504
2505 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
2506
2507         * mono-debug-debugger.c: use iters
2508
2509         * class.c, class-internals.h: mono_class_setup_events is static
2510         now
2511
2512         * All callers: use iters
2513
2514 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2515
2516         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
2517         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
2518
2519 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
2520
2521         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
2522
2523         * marshal.h: Add prototypes for ldfld/stfld_remote.
2524
2525         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
2526         this is called during startup.
2527         
2528 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
2529
2530         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
2531         MonoThreadsSync struct private in monitor.c. Changed the way
2532         MonoThreadsSync is allocated so it's faster and there is no
2533         need to keep track of it with a finalizer and it uses less memory.
2534         This also finally allows us to allocate mono objects as ptrfree when
2535         there are no reference fields.
2536
2537 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
2538
2539         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
2540         disappearing link to the GC interface and use them to simplify
2541         the gchandles code.
2542
2543 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
2544
2545         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
2546         stfld_remote which call mono_load/store_field_new. This allows methods
2547         calling ldfld/stfld wrappers to be AOTed.
2548
2549         * console-io.c: Include sys/filio.h under solaris.
2550         
2551         * console-io.c: Include curses.h if needed correctly.
2552
2553 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
2554         
2555         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
2556         method->klass as well.
2557
2558         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
2559
2560         * class.c (mono_class_init): Switch on lazy initialization of 
2561         methods.
2562
2563         * class.c (mono_class_get_finalizer): Handle the case when the 
2564         finalizer is inherited.
2565
2566 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2567
2568         * console-io.c: <curses.h> is needed by term.h on solaris.
2569
2570 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
2571
2572         * icall.c, class-internals.h, monodiet.c, class.c: Remove
2573         mono_class_setup_properties where possible. Remove this ftn from
2574         the header file, and make it static.
2575
2576 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
2577
2578         * loader.c: Add missing setup_... call.
2579
2580         * class.c: Add missing setup_... calls.
2581
2582         * class.c (mono_class_init): Switch on lazy initialization of 
2583         the generic vtable.
2584         
2585         * class.c (mono_class_init): Fix generics broken by the recent changes.
2586
2587         * monodiet.c (handle_type): Add missing setup_... calls.
2588
2589         * class.c: Back out garbage in previous patch.
2590         
2591         * class.c: Add missing setup_... calls.
2592
2593         * class.c (mono_class_get_method_from_name_flags): Avoid calling
2594         mono_class_setup_methods () if possible.
2595
2596         * class-internals.h (MonoClass): Add 'has_cctor' flag.
2597
2598         * class-internals.h (MonoCachedClassInfo): New structure.
2599
2600         * class.c: Initialize properties and events fields of MonoClass lazily.
2601
2602         * class.c: Add infrastructure for lazily initializing the methods and
2603         vtable fields of MonoClass. Not yet used.
2604
2605         * class.c (mono_class_get_finalizer): New helper function.
2606
2607         * class.c: Add infrastructure for loading some class related data from
2608         an AOT file.
2609
2610         * object.c: Add infrastructure for initializing the vtable from data
2611         in the AOT file.
2612
2613         * gc.c (run_finalize): Use mono_class_get_finalizer ().
2614
2615         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
2616         appropriate initialization function before accessing parts of the
2617         MonoClass structure.
2618
2619         * marshal.c: Fix warnings.
2620         
2621         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
2622
2623         * mono-debug-debugger.c (get_exception_message): Use 
2624         mono_class_get_method_from_name_flags ().
2625
2626 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
2627
2628         * reflection.c, appdomain.c: Replace a few manual searches that
2629         Zoltan missed. (Paolo approved this part of my initial patch).
2630
2631 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
2632
2633         * profiler.c: disable recording statistical events at report time.
2634
2635 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2636
2637         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
2638         to byteswap arrays of enum values, too (bug #72080).
2639
2640 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
2641
2642         * appdomain.c (set_domain_search_path): Allow this to be called if
2643         domain->setup is not yet set.
2644
2645         * loader.c (mono_method_get_index): New helper function.
2646
2647         * loader.c reflection.c: Use mono_method_get_index ().
2648
2649         * class.c (mono_class_get_method_from_name_flags): New helper method.
2650
2651         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
2652         this.
2653
2654         * class.c (mono_class_get_cctor): New helper method.
2655
2656         * string-icalls.c object.c class.c marshal.c reflection.c: Use
2657         mono_class_get_method () to look up methods.
2658
2659 2005-02-01  Miguel de Icaza  <miguel@novell.com>
2660
2661         * console-io.c: Fix the build, this should work on Windows.
2662
2663 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
2664
2665         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
2666         be set to null to keep things valid
2667
2668 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2669
2670         * icall.c: added Console 2.0 icalls.
2671         * Makefile.am: added console-io.[ch]
2672         * console-io.[ch]: internal calls for Console 2.0 API.
2673
2674 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2675
2676         * class.c: make sure we consider all the interfaces
2677         when calculating max_interface_id (bug found by
2678         Jeroen Frijters running ikvm).
2679
2680 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
2681
2682         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
2683         valuetype fields to null.
2684
2685         * object.c (set_value): Ditto. Fixes #71669.    
2686
2687 2005-01-31  Martin Baulig  <martin@ximian.com>
2688
2689         * metadata.c (mono_metadata_has_generic_params): New public
2690         function; checks whether something is a generic method.
2691
2692 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
2693
2694         * appdomain.c: fix infinite recursion when adding assemblies.
2695
2696 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
2697
2698         * object.c: Fix small typo to return all items for Environment.
2699         GetCommandLineArgs.
2700
2701 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
2702
2703         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
2704         reflection.c: more domain and assembly-unload related fixes
2705         and memory leaks plugs.
2706
2707 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
2708
2709         * 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.
2710
2711 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
2712
2713         * loader.c (mono_method_signature): Make this method lazy
2714         (mono_get_method_from_token): Don't computate the signature here.
2715
2716         Doing this saves quite a bit of memory. I got 90 kb on starting up
2717         monodoc. It should also save some disk reads on startup.
2718
2719         * *: MonoMethod->signature might be NULL now. You *MUST* use
2720         mono_method_signature.
2721
2722 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
2723
2724         * object.c (mono_runtime_get_main_args): Return an array from the
2725         current domain here. Fixes #71938.
2726
2727 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
2728
2729         * monitor.c: formatting changes to comply with the
2730         mono coding style and remove #ifdefs from the code.
2731
2732 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
2733
2734         * metadata.c, private.h: remove some unneeded data
2735         and use a more compact representation for table schemas.
2736
2737 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
2738
2739         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
2740         to get a better distribution in hash tables.
2741         * *.c: use mono_aligned_addr_hash() where appropriate.
2742         * assembly.c: make var static.
2743
2744 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
2745
2746         * domain-internals.h: Put MonoJitInfo on a diet.
2747
2748         * domain.c: Fix a warning.
2749
2750 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2751
2752         * gc.c: rework the gc handles code to reuse handles
2753         when freed.
2754
2755 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
2756
2757         * domain.c: fixed long standing bug in mono_string_equal() which
2758         was brought to light with the ldstr changes.
2759
2760 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
2761
2762         * reflection.c: Remove warning by adding missing include for marshal.h
2763
2764 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2765
2766         * domain.c, object.c: change the ldstr_table to hold
2767         MonoString* as keys: makes the runtime isinterned lookup
2768         faster and simplifies memory management.
2769
2770 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
2771  
2772         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
2773         possible to add imperative security checks before calling the icall.
2774         * reflection.c: Return security attributes on the original MonoMethod
2775         (and not the wrapped one). This fix permissions on icalls.
2776
2777 2005-01-25  Dick Porter  <dick@ximian.com>
2778
2779         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
2780         the check for mktime() support actually test the mktime() return
2781         value.  "Fixes" bug 71682, though the output is still different to
2782         MS.
2783
2784 2005-01-25  Martin Baulig  <martin@ximian.com>
2785
2786         * class.c (mono_class_is_assignable_from): Make this work for
2787         generic instances.
2788
2789 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
2790
2791         * marshal.c (mono_string_utf8_to_builder)
2792         (mono_string_builder_to_utf16): We might not have ownership of the
2793         string. In thise case, we need to create a new buffer.
2794
2795         * object-internals.h (mono_stringbuilder_capacity): sb->str might
2796         be null, in which case, use the default capacity.
2797
2798 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2799
2800         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
2801         GC events to the profiler.
2802
2803 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
2804
2805         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
2806         if you don't want the GC to run.
2807
2808 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
2809
2810         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
2811         start providing a GC API and keeping different implementations in
2812         their own file.
2813         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
2814
2815 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
2816
2817         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
2818         mmap rather than allocating a huge buffer.
2819         (mono_debug_close_mono_symbol_file): Free the buffer allocated
2820         above.
2821
2822 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
2823
2824         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
2825         and CheckExecutionRights.
2826         * reflection.c|h: Keep the index of the declarative security to be 
2827         used, instead of the pointer, when AOT compiler is used. Also add 
2828         class initialization when requesting demands.
2829         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
2830         CheckExecutionRights. Both properties are now FALSE by default, and
2831         unmodifiable, unless the --security option is used.
2832
2833 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2834
2835         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
2836         reflection.c: properly refcount images and assemblies, many leaks fixed.
2837
2838 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2839
2840         * threadpool.c: increase the timeout for threads in the thread pool to
2841         10s.  Fixes bug #67159.
2842
2843 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
2844
2845         * class-internals.h: Sun's compiler insists on explicit
2846         signed on bit fields to handle then correctly.
2847
2848 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
2849
2850         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
2851         Make the size of the array fit only the number of invalid path
2852         chars that we have.
2853
2854         * class.c (_mono_class_get): Improve the error reporting when a
2855         class referenced is not found, to assist debugging. 
2856
2857 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
2858
2859         * threads.c: fix off-by-one error.
2860         * domain.c: free data allocated in the domain.
2861
2862 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
2863
2864         * reflection.c (mono_method_body_get_object): Fill out exception info
2865         as well.
2866
2867         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
2868         structure.
2869         
2870 2005-01-19  Martin Baulig  <martin@ximian.com>
2871
2872         * loader.c (mono_get_method_constrained): Make this work again.
2873
2874 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
2875
2876         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
2877         guint16 to match the managed side.
2878
2879         * reflection.c (mono_reflection_body_get_object): Fill out local
2880         variables array.
2881
2882         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
2883         as well.
2884
2885         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
2886         'local_var_sig_token'.
2887
2888 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
2889
2890         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
2891         System.Drawing.
2892
2893         * reflection.c (mono_method_body_get_object): Handle abstract and
2894         runtime methods.
2895
2896 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
2897
2898         * marshal.c, loader.c, class-internals.h, reflection.c:
2899         store the emthod data for a wrapper in an array instead of a list.
2900
2901 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
2902
2903         * marshal.c: change the code to allocate memory more
2904         conservatively for method wrappers.
2905
2906 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
2907
2908         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
2909         fields from MonoClass to the marshal info structure where they belong.
2910
2911 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2912
2913         * class.c, object.c, class-internals.h, marshal.c: rearrange
2914         some fields and tweak some types to lower memory usage.
2915
2916 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
2917
2918         * threads.c (signal_thread_state_change): Handle the case when the
2919         target thread is the current thread.
2920
2921         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
2922
2923         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
2924         emit_ptr_to_object_conv. 
2925
2926         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
2927         marshalling. Fixes #71352.
2928
2929 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
2930
2931         * metadata.h, blob.h: move table enum to blob.h so it can be included
2932         in any header.
2933         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
2934         cut the size of MonoImage/MonoDynamicImage.
2935
2936 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
2937
2938         * profiler.c (mono_profiler_install_simple): Fix default arguments.
2939
2940 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
2941
2942         * reflection.c, reflection.h, icall.c: add a function to check
2943         if an attribute type is defined for a metadata object.
2944
2945 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
2946
2947         * object-internals.h: Added some needed fields from StringBuilder class.
2948         * marshal.c: Set the maxCapacity when creating a StringBuilder.
2949
2950 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
2951
2952         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
2953         threads before shutting down the runtime.
2954
2955         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
2956
2957 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
2958
2959         * object-internal.h, threads.c: implement stacksize and 
2960         parameterized thread start functionality (requires
2961         matching corlib). Marked broken code for later removal.
2962
2963 2005-01-12  Martin Baulig  <martin@ximian.com>
2964
2965         * class-internals.h (MonoGenericClass): Moved the `initialized'
2966         flag to MonoDynamicGenericClass, removed `init_pending'.
2967         (MonoGenericInst): Added `is_reference' flag.
2968
2969 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
2970
2971         * reflection.c (mono_image_create_pefile): Only set the pe_offset
2972         inside the MSDOS header. Fixes #71201.
2973
2974         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
2975         gc thread.
2976         (mono_domain_finalize): Ditto.
2977
2978 2005-01-12  Martin Baulig  <martin@ximian.com>
2979
2980         * class.c (mono_get_shared_generic_class): Use the cache for
2981         non-dynamic generic classes.
2982
2983         * class-internals.h (mono_class_create_generic_2): Removed
2984         function prototype, this function is now static inside class.c.
2985
2986         * class.c (mono_class_create_generic_2): Made this static, only
2987         call it from mono_class_init() and mono_class_setup_parent().
2988         (collect_implemented_interfaces_aux): Call mono_class_init() on
2989         the interfaces we collect.
2990         (mono_class_setup_vtable): Call mono_class_init (class->parent).
2991
2992 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
2993
2994         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
2995         it a real thread handle.
2996
2997         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
2998         MonoJitExceptionInfo, since each catch clause needs its own variable.
2999         
3000 2005-01-11  Dick Porter  <dick@ximian.com>
3001
3002         * image.c (mono_pe_file_open): New variant on mono_image_open()
3003         that does not set up the CLI metadata; used for FileVersionInfo so
3004         it can get the data for windows binaries too.
3005         
3006         * process.c (process_read_string_block): Don't read off the end of
3007         the StringTable block.
3008
3009         These both fix bug 70766.
3010
3011 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
3012
3013         * gc.c: set some fields to NULL at GC cleanup time.
3014         * threads.c: if we quit the main thread, call exit ().
3015
3016 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
3017
3018         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
3019
3020 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
3021
3022         * threads.h, threads.c, object.c: added accessor and settor for
3023         main_thread. Handle it specially when exiting from it: wait
3024         for other foreground threads to exit.
3025
3026 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
3027
3028         * process.c, verify.c: remove some bloat.
3029
3030 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
3031
3032         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
3033         the calling convention to cdecl under win32.
3034
3035 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
3036
3037         * object.c (mono_object_get_size): New function to get the size of
3038         an object instance.
3039
3040         * profiler.c (simple_allocation): Use above.
3041
3042 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
3043
3044         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
3045         ves_icall_System_AppDomain_getRootDomain (as it's not required to
3046         get an appdomain by it's id and we can't assume the root's id is 0).
3047         * domain-internals.h: Change the function prototype to match.
3048         * icall.c: Change the icall table for AppDomain.
3049
3050 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
3051
3052         * locales.c (string_invariant_compare_char): Only compute
3053         GUnicodeTypes in the case where we need them.  Test for ordinality
3054         first and return if so.
3055
3056         From the commit:
3057
3058                 /*
3059                  * FIXME: here we must use the information from c1type and c2type
3060                  * to find out the proper collation, even on the InvariantCulture, the
3061                  * sorting is not done by computing the unicode values, but their
3062                  * actual sort order.
3063                  */
3064
3065 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
3066
3067         * loader.c: for P/Invoke methods, allow the "Internal" shared
3068         library name to refer to the calling process symbol namespace.
3069
3070 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
3071
3072         * Makefile.am: Add the security manager to the build.
3073         * security-manager.c|h: New. Initialization of the security manager.
3074
3075 2005-01-07  Dick Porter  <dick@ximian.com>
3076
3077         * threads.c: 
3078         * monitor.c: Update thread state during Monitor and WaitHandle
3079         waits.  Fixes bug 71031.
3080
3081 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
3082
3083         * reflection.c (property_encode_signature): Correctly handle when the
3084         property has no methods.
3085
3086 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
3087
3088         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
3089         
3090         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
3091         fields from mb, not rmb. Fixes #71017.
3092
3093         * marshal.c (emit_ptr_to_str_conv): Add support for 
3094         ByValTStr -> string conversion. Fixes #71015.
3095
3096         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
3097
3098         * mempool.c (mono_mempool_contains_addr): New helper function.
3099
3100 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
3101
3102         * metadata.c (mono_metadata_compute_size): Fix size calculation of
3103         HasSematics encoded fields.
3104         
3105         * metadata.c (mono_type_to_unmanaged): Improve error message for 
3106         invalid string marshalling.
3107
3108         * metadata.c: Fix warnings.
3109         
3110 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
3111
3112         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
3113         profiler support.
3114
3115 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
3116
3117         * domain.c object.c domain-internals.h: Revert part of r38077 since the
3118         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
3119         tests.
3120
3121 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
3122
3123         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
3124         so methods containing these can be AOTed.
3125
3126 2005-01-03  Martin Baulig  <martin@ximian.com>
3127
3128         * loader.c (find_method): Removed the hack for generic instances.
3129         (method_from_memberref): If our parent is a generic instance, pass
3130         its generic type definition to find_method() and then inflate the
3131         method.
3132         (mono_get_method_constrained): Pass the generic type definition to
3133         find_method() and inflate the method later.
3134
3135         * class-internals.h (MonoStats): Added `generic_class_count'.
3136
3137         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
3138         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
3139
3140         * reflection.c (mono_custom_attrs_from_params): Don't ignore
3141         generic type definitions.
3142
3143 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
3144
3145         * loader.c icall.c: Fix warnings.
3146
3147 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
3148
3149         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
3150         blittable types. Fixes #70864.
3151
3152 2004-12-29  Martin Baulig  <martin@ximian.com>
3153
3154         * icall.c
3155         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
3156
3157         * reflection.c (mono_method_get_object): Create a
3158         "System.Reflection.MonoGenericMethod" for inflated methods; don't
3159         call mono_get_inflated_method().
3160
3161         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
3162
3163 2004-12-27  Martin Baulig  <martin@ximian.com>
3164
3165         * class-internals.h (MonoMethod): Added `is_inflated' flag.
3166         (MonoMethodInflated): Added `inflated' field.
3167
3168         * class.c (mono_class_inflate_generic_method): Don't really
3169         inflate the method here; just set the `is_inflated' flag in the
3170         MonoMethod.
3171         (mono_class_get_inflated_method): Actually inflate the method here
3172         if it's not already inflated; we use the MonoMethodInflated's new
3173         `inflated' field as a cache.
3174
3175 2004-12-26  Martin Baulig  <martin@ximian.com>
3176
3177         * class.c
3178         (inflate_generic_class): Moved some code out of inflate_generic_type().
3179         (mono_class_inflate_generic_method): If we're already inflated,
3180         inflate the context and use the declaring method; ie. make sure
3181         the declaring method of an inflated method is always the generic
3182         method definition.
3183         (mono_class_create_from_typedef): Create
3184         `class->generic_container->context->gclass'.
3185
3186 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
3187
3188         * metadata-internals.h, marshal.c, reflection.c: More
3189         MonoGHashTable->GHashTable.
3190
3191         * domain-internals.h, class.c: Change MonoGHashTable's into
3192         GHashTables for some cases where no gc stuff is used
3193
3194         All users: update apis
3195
3196 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
3197
3198         * metadata.c (builtin_types): Make this `const'. Makes this get
3199         put into the shareable section.
3200         (mono_metadata_init): Casts to make gcc happy.
3201
3202 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
3203
3204         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
3205
3206 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
3207
3208         * icall.c: Added an internal call to retrieve the position and length
3209         of assembly-level declarative security attributes (RequestMinimum, 
3210         RequestOptional and RequestRefuse). This is used by the Assembly class
3211         to re-create the corresponding permission sets.
3212
3213 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
3214
3215         * marshal.c: fix the stelemref wrapper to be type correct
3216         (and faster).
3217
3218 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
3219
3220         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
3221         to do key & 0x7fffffff. Hashtable already does this. It just
3222         results in longer code.
3223
3224 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
3225
3226         * appdomain.c: Bump corlib version.
3227         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
3228         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
3229         * reflection.c|h: Add functions to get declarative security infos
3230         (blob position and length) for assemblies, classes and methods.
3231
3232 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
3233
3234         * reflection.c: sort the constant table (bug #70693).
3235
3236 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
3237
3238         * object-internals.h, threads.c, domain.c: add accessors for
3239         the MonoThread and MonoDomain tls keys.
3240
3241 2004-12-18  Martin Baulig  <martin@ximian.com>
3242
3243         * class.c (inflate_generic_type): If we're inflating a generic
3244         instance, set `ngclass->context->container = context->container';
3245         ie. the container we inflated into.
3246
3247         * metadata.c (mono_metadata_parse_generic_param): Reflect above
3248         inflate_generic_type() changes.
3249
3250 2004-12-17  Martin Baulig  <martin@ximian.com>
3251
3252         * class-internals.h
3253         (MonoGenericClass): Replaced `MonoType *generic_type' with
3254         `MonoClass *generic_class'.  Removed `dynamic_info'; if
3255         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
3256         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
3257
3258 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
3259
3260         * exception.c (mono_exception_from_token): New helper function.
3261
3262 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
3263
3264         * assembly.c (mono_assembly_load_with_partial_name): Call 
3265         mono_assembly_loaded before invoking the preload hooks. Fixes
3266         #70564.
3267
3268         * object-internals.h (MonoThread): Change culture_info and 
3269         ui_culture_info into an array.
3270
3271         * threads.c: Cache culture info objects from more than one appdomain.
3272
3273         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
3274         current UI culture.
3275
3276 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
3277
3278         * threads.h threads.c appdomain.c: Clear the culture_info field of
3279         all threads during unloading if they point to an object in the dying
3280         appdomain.
3281
3282 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
3283
3284         * culture-info.h (TextInfoEntry): New struct
3285         * object-internals.h: sync with managed
3286         * locales.c: fill the `text_info_data' field
3287         * culture-info-tables.h: update
3288
3289 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
3290
3291         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
3292         collector.
3293
3294 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
3295
3296         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
3297         (ves_icall_ModuleBuilder_getMethodToken): Ditto
3298
3299 2004-12-12  Martin Baulig  <martin@ximian.com>
3300
3301         * mono-debug-debugger.c (write_type): If we're an enum and the
3302         builtin types have already been initialized, call mono_class_init().
3303
3304 2004-12-11  Martin Baulig  <martin@ximian.com>
3305
3306         * metadata.c (mono_metadata_load_generic_params): Added
3307         `MonoGenericContainer *parent_container' argument; automatically
3308         compute `container->is_method'; pass the correct owner to
3309         get_constraints().      
3310
3311         * reflection.c (compare_genericparam): Sort the GenericParam table
3312         according to increasing owners. 
3313
3314 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
3315
3316         * profiler.c: allow disabling the default profiler.
3317
3318 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
3319
3320         * decimal.c, icall.c: allow disabling System.Decimal support.
3321
3322 2004-12-09  Marek Safar <marek.safar@seznam.cz>
3323
3324         * reflection.c: Add support for null attribute arguments.
3325
3326 2004-12-09  Martin Baulig  <martin@ximian.com>
3327
3328         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
3329         names to get rid of compiler warnings.
3330
3331 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
3332
3333         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
3334         mono_marshal_load_type_info (). Fixes #69625.
3335         (mono_marshal_get_ptr_to_struct): Likewise.
3336
3337 2004-12-08  Martin Baulig  <martin@ximian.com>
3338
3339         * mono-debug.h: Bumped version number to 47.
3340
3341         * mono-debug-debugger.c
3342         (mono_debugger_event_handler, mono_debugger_event): Take two
3343         guint64 arguments insteed of a gpointer and a guint32.  
3344
3345 2004-12-08  Martin Baulig  <martin@ximian.com>
3346
3347         * debug-mono-symfile.h
3348         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
3349         `address' to `native_offset'.
3350
3351 2004-12-08  Martin Baulig  <martin@ximian.com>
3352
3353         * class.c (mono_class_create_from_typespec): Only inflate if we
3354         either have `context->gclass' or `context->gmethod'.
3355
3356 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
3357
3358         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
3359
3360         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
3361
3362         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
3363
3364         * reflection.c (mono_assembly_get_object): Remove the workaround put
3365         in for the release.
3366         
3367         * appdomain.c: Use the corlib_internal field from MonoAssembly.
3368
3369         * appdomain.c: Bump corlib version.
3370
3371         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
3372         be visible in other appdomains.
3373
3374 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
3375
3376         * threads.c: Interlocked inc and dec for longs were messed up,
3377         use a KISS based impl for this. Fixes 70234
3378
3379 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
3380
3381         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
3382
3383 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3384
3385         * icall.c: fix to follow policy not to allow struct
3386         arguments in icalls.
3387
3388 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3389
3390         * process.c: make the patch that handles spaces in file paths work
3391         on mono/windows too.
3392
3393 2004-12-06  Martin Baulig  <martin@ximian.com>
3394
3395         * class.c (mono_class_create_generic): Call
3396         mono_class_setup_supertypes() if we're dynamic.
3397         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
3398
3399 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
3400
3401         * object-internals.h: Add new fields to MonoThread.
3402
3403         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3404
3405         * icall.c threads-types.h threads.c: Add new icalls.
3406
3407         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
3408
3409         * object-internals.h (MonoReflectionAssembly): Sync object layout with
3410         managed side.
3411
3412         * appdomain.c: Bump corlib version.
3413
3414         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
3415         internal assemblies. Fixes #69181.
3416
3417 2004-12-05  Martin Baulig  <martin@ximian.com>
3418
3419         * class.c (mono_class_inflate_generic_signature): Make this a
3420         no-op if `context' is NULL or we don't have any type parameters;
3421         also copy `sentinelpos'.        
3422
3423 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
3424
3425         * image.c: Add unbox_wrapper_cache.
3426
3427         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
3428
3429         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
3430         function generator.
3431         
3432         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
3433         Fixes #70173.
3434
3435         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
3436         
3437 2004-12-04  Martin Baulig  <martin@ximian.com>
3438
3439         * loader.c (mono_method_get_signature_full): New public function;
3440         like mono_method_get_signature(), but with an additional
3441         `MonoGenericContext *' argument.
3442
3443         * class.c (mono_class_inflate_generic_signature): Formerly known
3444         as inflate_generic_signature(); make this public.
3445
3446 2004-12-04  Martin Baulig  <martin@ximian.com>
3447
3448         * metadata.c
3449         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
3450         instead of a `MonoGenericContainer *'.  
3451         (mono_metadata_parse_array_full): Likewise.
3452         (mono_metadata_parse_signature_full): Likewise.
3453         (mono_metadata_parse_method_signature_full): Likewise.
3454         (mono_metadata_parse_generic_inst): Likewise.
3455         (mono_metadata_parse_generic_param): Likewise.
3456         (mono_metadata_parse_mh_full): Likewise.
3457         (mono_type_create_from_typespec_full): Likewise.
3458
3459 2004-12-03  Martin Baulig  <martin@ximian.com>
3460
3461         * class-internals.h (MonoGenericContainer): Replaced the
3462         `MonoGenericContext * pointer with a `MonoGenericContext'
3463         structure and made it the first element.
3464
3465 2004-12-03  Martin Baulig  <martin@ximian.com>
3466
3467         * class.c
3468         (inflate_generic_type): Set the `context->container' when creating
3469         a new MonoGenericContext.
3470         (mono_class_inflate_generic_method): Likewise.
3471         (mono_class_create_from_typespec): Just use `context->container'
3472         to get the container.
3473
3474         * loader.c (method_from_methodspec): Set `context->parent' from
3475         `context->container' - and if that's a method container, use its
3476         parent.  Also set the `context->container' when creating a new
3477         MonoGenericContext.
3478         (mono_get_method_from_token): Use just `context->container' to get
3479         the container.
3480
3481         * metadata.c (do_mono_metadata_parse_generic_class): Also set
3482         `gclass->context->container'.
3483
3484         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
3485         the `context->container' when creating a new MonoGenericContext.
3486
3487 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
3488
3489         * reflection.c (compare_genericparam): Sort params with identical
3490         owner by their number. Fixes gen-111 on sparc.
3491
3492 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
3493
3494         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
3495         around the domain changes.
3496
3497         * appdomain.c (mono_domain_unload): Handle the case when the thread
3498         calling Unload is itself being aborted during unloading. Fixes #70022.
3499
3500         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
3501
3502         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
3503         checkpoint_func as an icall so it gets a wrapper.
3504         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
3505         in the cross-appdomain wrappers too.
3506
3507         * threads.c (mono_thread_has_appdomain_ref): Make this public.
3508
3509         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
3510
3511         * reflection.c: Fix some memory leaks.
3512         
3513 2004-12-02  Martin Baulig  <martin@ximian.com>
3514
3515         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
3516
3517         * metadata.c (generic_class_cache): New static hashtable.
3518         (mono_metadata_lookup_generic_class): New public method.
3519
3520 2004-12-02  Martin Baulig  <martin@ximian.com>
3521
3522         * class.c (mono_class_create_from_typedef): Call
3523         mono_class_setup_parent() and mono_class_create_mono_type() before
3524         parsing the interfaces.
3525
3526 2004-12-02  Martin Baulig  <martin@ximian.com>
3527
3528         * metadata.c (generic_inst_cache): New static hashtable.
3529         (mono_metadata_lookup_generic_inst): New public function.
3530         (mono_metadata_inflate_generic_inst): New public function.
3531         (mono_metadata_parse_generic_inst): New public function.
3532         (do_mono_metadata_parse_generic_class): Use the new
3533         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
3534         since this'll also use the cache.
3535
3536         * reflection.c (mono_reflection_bind_generic_method_parameters):
3537         Use mono_metadata_lookup_generic_inst() to use the new cache.
3538
3539         * class.c (inflate_mono_type): Use
3540         mono_metadata_inflate_generic_inst() to inflate a generic
3541         instance; this'll also use the new cache.
3542
3543         * loader.c (method_from_methodspec): Use
3544         mono_metadata_parse_generic_inst() and
3545         mono_metadata_inflate_generic_inst() rather than parsing it
3546         manually, so we can use the new cache.
3547
3548 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
3549
3550         * threads.c (wait_for_tids): Do not incorrectly free threads when 
3551         the wait times out.
3552
3553 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
3554
3555         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
3556         iter->args based on whether parameters are passed in registers (i.e.
3557         MONO_ARCH_REGPARMS is defined)
3558
3559 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
3560
3561         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
3562         the exception message. Fixes #70070.
3563         (method_from_methodspec): Fix warnings.
3564
3565 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3566
3567         * process.c: (complete_path) return the path quoted
3568
3569 2004-12-01  Martin Baulig  <martin@ximian.com>
3570
3571         * class-internals.h (MonoGenericInst): New structure.
3572         (MonoGenericClass): Replaced `type_argc', `type_argv' and
3573         `is_open' with `MonoGenericInst *inst'.
3574         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
3575         `is_open' with `MonoGenericInst *inst'.
3576
3577 2004-11-30  Martin Baulig  <martin@ximian.com>
3578
3579         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
3580
3581         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
3582         to `generic_class_cache'.
3583
3584         * metadata.c
3585         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
3586         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
3587         (mono_generic_inst_is_valuetype): Renamed to
3588         mono_generic_class_is_valuetype().
3589
3590         * class-internals.h
3591         (MonoGenericInst): Renamed to MonoGenericClass.
3592         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
3593         (MonoClass): Renamed `generic_inst' to `generic_class'.
3594         (MonoGenericContext): Renamed `ginst' to `gclass'.
3595
3596         * object-internals.h
3597         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
3598
3599         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
3600         mono_reflection_generic_class_initialize().
3601
3602         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
3603         now known as "System.Reflection.MonoGenericClass".
3604         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
3605
3606 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
3607
3608         * class-internals.h: Added a flag field to MonoClass to cache the
3609         declarative security attributes actions associated with the class.
3610         * domain-internals.h: Added booleans to MonoJitInfo to cache the
3611         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
3612         applicable to the JITted method.
3613         * reflection.c|h: Added functions to extract (as flags) which security
3614         actions are available (declaratively) for a method, class or assembly.
3615         * metadata.c|h: Added functions to search the declarative security
3616         table in the metadata.
3617         
3618 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
3619
3620         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
3621         EXPORTEDTYPES are already in the class name cache, so there is no
3622         need to add extra code here to look at them. Just removes a bit of
3623         cruft.
3624
3625         (ves_icall_System_Environment_get_TickCount): No need for #if
3626         WINDOWS. We already have the code in io-layer.
3627
3628 2004-11-28  Martin Baulig  <martin@ximian.com>
3629
3630         * loader.c
3631         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
3632         Fixes gen-112.cs.
3633
3634 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
3635
3636         * assembly.c (do_mono_assembly_open): Instead of having a
3637         conditional WITH_BUNDLE, incorporate support for bundles here, by
3638         having a global `bundles' variable holding a pointer to the actual
3639         bundles. 
3640
3641         (mono_register_bundled_assemblies): New API call used by the
3642         bundle code. 
3643
3644         See mkbundle.1 for details.
3645         
3646 2004-11-27  Martin Baulig  <martin@ximian.com>
3647
3648         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
3649         the vtable for generic methods.
3650
3651 2004-11-26  Martin Baulig  <martin@ximian.com>
3652
3653         * metadata.c
3654         (mono_metadata_generic_method_hash): New public function.
3655         (mono_metadata_generic_method_equal): Likewise.
3656
3657         * class-internals.h
3658         (MonoGenericContainer): Added `GHashTable *method_hash'.
3659
3660         * reflection.c (ReflectionMethodBuilder): Added
3661         `MonoGenericContainer *generic_container'.
3662         (reflection_methodbuilder_to_mono_method): Don't create a new
3663         MonoGenericContainer each time we're called.
3664         (mono_reflection_bind_generic_method_parameters): Use
3665         `container->method_hash' to cache the results so we don't create a
3666         different method if we're called several times with the same
3667         arguments.
3668
3669         * loader.c (method_from_methodspec): Use the new
3670         `container->method_hash' here, too.
3671
3672 2004-11-26  Martin Baulig  <martin@ximian.com>
3673
3674         * class.c (inflate_generic_signature): Correctly compute
3675         `res->has_type_parameters'.
3676         (mono_class_vtable): Use the `has_type_parameters' flag to
3677         determine whether we're a generic method.
3678
3679         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
3680
3681 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
3682
3683         * object.c (mono_runtime_run_main): Fix a small memory leak.
3684
3685 2004-11-25  Martin Baulig  <martin@ximian.com>
3686
3687         * class.c (set_generic_param_owner): Fixed the loop.
3688
3689 2004-11-25  Martin Baulig  <martin@ximian.com>
3690
3691         * object.c (mono_class_vtable): Don't create any JIT wrappers for
3692         generic methods.
3693
3694 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
3695
3696         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
3697         names. Fixes #69787.
3698
3699 2004-11-24  Martin Baulig  <martin@ximian.com>
3700
3701         * class.c (mono_class_create_generic_2): If we don't have a
3702         `ginst->parent', inflate `gklass->parent' to get our parent.
3703
3704 2004-11-24  Martin Baulig  <martin@ximian.com>
3705
3706         * reflection.c (compare_genericparam): Correctly sort the
3707         GenericParam table; fixes #69779.
3708
3709 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
3710
3711         * reflection.c: When writing a PE file, don't create a huge
3712         buffer in memory. Just write the arrays we have to the file.
3713         This reduces memory usage.
3714
3715         * metadata-internals.h: MonoDynamicStream pefile is no longer used
3716         globally.
3717
3718 2004-11-17  Martin Baulig  <martin@ximian.com>
3719
3720         * class.c (mono_class_init): Don't setup `class->parent' for
3721         dynamic instances; moved this to mono_class_generic_2().
3722         (mono_class_create_generic): Also set `klass->inited' for dynamic
3723         generic instances.
3724         (mono_class_create_generic_2): Don't do anything for dynamic
3725         generic instances.  Set `klass->parent' here and also call
3726         mono_class_setup_parent() here. 
3727
3728         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
3729         `MonoType *parent' argument; set `ginst->parent' before calling
3730         mono_class_create_generic_2(), so we set the correct parent.
3731
3732 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
3733
3734         * reflection.c: allow getting attributes from ModuleBuilder
3735         (used by ikvm).
3736
3737 2004-11-17  Martin Baulig  <martin@ximian.com>
3738
3739         * class.c (mono_class_create_from_typedef): If a type parameter is
3740         inherited from an outer class, set its owner to that class.
3741
3742 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
3743
3744         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
3745           for (int*) written size. This fixes bug #69592.
3746
3747 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
3748
3749         * icall.c: Added IsAuthenticodePresnet internal call.
3750         * image.c|h: New function that check a MonoImage for an Authenticode
3751         signature in the certificate PE data directory.
3752         * security.c|h: New internal call to ask the runtime if an 
3753         Authenticode signature seems referenced in the PE header.
3754
3755 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
3756
3757         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
3758
3759         * reflection.c (mono_image_create_pefile): Free the assembly streams
3760         after writing out the assembly file.
3761
3762         * object.c (mono_runtime_run_main): Fix small memory leak.
3763
3764         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
3765         property access modifiers. Fixes #69389.
3766
3767 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
3768
3769         * domain.c, object.c, object-internals.h, domain-internals.h,
3770         object.h, marshal.c: keep dynamic code info per domain.
3771
3772 2004-11-15  Martin Baulig  <martin@ximian.com>
3773
3774         * class.c (mono_type_get_name_recurse): Put type arguments in
3775         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
3776         see bug #68387.
3777
3778 2004-11-15  Martin Baulig  <martin@ximian.com>
3779
3780         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
3781         (mono_class_setup_vtable): When computing `the_cname' for a
3782         generic instance, don't include the namespace since we'd otherwise
3783         add it twice.
3784
3785 2004-11-15  Martin Baulig  <martin@ximian.com>
3786
3787         * class.c (mono_class_create_generic): Changed return type to void.
3788         (mono_class_create_generic_2): New public function; setup
3789         `class->method', `class->field' and `class->interfaces' here
3790         instead of in mono_class_init().
3791
3792         * class.h (mono_class_create_generic): Moved to class-internals.h.
3793
3794 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
3795
3796         * reflection.c (mono_image_create_pefile): take a file HANDLE.
3797         rather than writing to memory, write to this file. Right now,
3798         we are just writting into a buffer, and copying that. However
3799         we can avoid the buffer later.
3800
3801         (mono_dynamic_stream_reset): new function
3802
3803         * icall.c, object-internals.h: update for the above.
3804
3805 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
3806
3807         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
3808         have been using gc'd memory. First it is slower, unlikely
3809         the comment in the source code said, secondly, it increases
3810         our footprint to do it in the gc.
3811
3812         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
3813         the method so that it does not have to copy to managed code.
3814
3815 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
3816
3817         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
3818
3819 2004-11-12  Martin Baulig  <martin@localhost>
3820
3821         * reflection.c (mono_image_create_token): Allow generic method
3822         definitions here, since they may appear in an `.override'; see
3823         gen-98/gen-99 for an example.
3824
3825 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
3826
3827         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
3828         #69365.
3829
3830         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
3831         descriptive.
3832
3833 2004-11-11  Martin Baulig  <martin@ximian.com>
3834
3835         * class.c (mono_class_setup_vtable): In an explicit interface
3836         implementation, the method name now includes the arity.
3837
3838 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
3839
3840         * object.c (mono_array_full_copy): Fix warning.
3841
3842 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
3843
3844         * appdomain.c: Removed look_for_method_by_name(). Use the new method
3845         mono_class_get_method_from_name() instead.
3846         
3847         * class-internals.h: Added two new types of wrappers. 
3848         Added MonoRemotingTarget enum. Added new trampoline function type, which
3849         takes an additional MonoRemotingTarget value as parameter, so it is
3850         possible to request a trampoline for a specific target.
3851         
3852         * class.c: Added new mono_class_get_method_from_name() method.
3853         
3854         * class.h: In MonoRemoteClass, we can have now to vtables, one for
3855         general remoting sinks and one specific for cross domain calls.
3856         
3857         * debug-helpers.c: Added new wrapper names.
3858         
3859         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
3860         of a remote class.
3861         
3862         * image.c: Porperly delete value objects form the remoting invoke hashtable.
3863         
3864         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
3865         with several other methods (mono_marshal_get_xappdomain_dispatch,
3866         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
3867         and others) can generate a fast remoting wrapper for cross domain calls.
3868         More information can be found in docs/remoting.
3869         Other changes: Removed mono_find_method_by_name, and used
3870         mono_class_get_method_from_name instead.
3871         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
3872         is stored in the remoting invoke hashtable.
3873         
3874         * marshal.h: published the new method for getting the xdomain wrapper,
3875         and also added a method for getting the adequate wrapper for a given
3876         method and target.
3877         
3878         * object-internals.h, object.c: Added a couple of methods for capying and
3879         cloning arrays.
3880         Modified mono_install_remoting_trampoline, which takes the new remoting
3881         trampoline that has a remoting target as parameter.
3882         mono_class_proxy_vtable now also takes a remoting target as parameter, and
3883         will return the most suitable vtable for the target.
3884         Added mono_remote_class_vtable, which returns the vtable of a remote class
3885         (which can be the normal remoting vtable or the xdomain vtable).
3886         
3887         * threads.c: the xdomain invoke and dispatch wrappers must also be
3888         protected against interruptions.
3889
3890 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3891
3892         * icall.c: use memmove in BlockCopyInternal when the source and
3893         destination arrays are the same.
3894
3895 2004-11-09  Martin Baulig  <martin@ximian.com>
3896
3897         * class-internals.h (MonoGenericContainer): Removed `method' and
3898         `signature', replaced them with `is_method' and `is_signature'
3899         flags.  Added `context'.
3900
3901         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
3902         instead of a `MonoGenericContainer *'.
3903
3904         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
3905         for dynamic type parameters.
3906         (mono_metadata_load_generic_params): Setup `container->context'.
3907
3908         * reflection.c (mono_reflection_setup_generic_class): Setup
3909         `tb->generic_container->context'.
3910         (do_mono_reflection_bind_generic_parameters): Use
3911         mono_class_inflate_generic_type() to correctly inflate types,
3912         rather than using our own hack just for MONO_TYPE_VAR.
3913
3914 2004-11-09  Martin Baulig  <martin@ximian.com>
3915
3916         * class.c (mono_class_inflate_generic_method): Small fix; don't
3917         crash here.
3918
3919         * icall.c
3920         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
3921         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
3922         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
3923         (ves_icall_Type_BindGenericParameters): Likewise.
3924         (ves_icall_Type_get_IsGenericInstance): Likewise.
3925         (ves_icall_Type_GetGenericParameterPosition): Likewise.
3926         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
3927         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3928         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3929
3930 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
3931
3932         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
3933         assembly versions and public key tokens. Fixes #69113.
3934
3935 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
3936
3937         * metadata.c: fix bug introduced with the type cache changes
3938         on 2004-11-06.
3939
3940 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
3941
3942         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
3943         the MonoClass pointer instead of the token in exception clauses.
3944         * reflection.c: updates for the above and make the code not depend
3945         on the structure of MonoExceptionClause.
3946
3947 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
3948
3949         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3950         Add support for dynamic assemblies. Fixes #69114.
3951
3952         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
3953
3954 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
3955
3956         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
3957         since most only those methods use it. the code member of
3958         MonoMethodPInvoke was dead, so that can be removed too. Also,
3959         remove inline_count (again, not used), and move slot so that it
3960         can share bits with some other flags. This saves 8 bytes in the
3961         structure and gives us about 50 kb back for mcs helloworld.cs
3962
3963         * *.[ch]: Do naming changes for the above.
3964
3965         * loader.c (mono_method_get_header): Lazily init the header
3966         on first access.
3967         (mono_get_method_from_token): don't init the header here
3968         (mono_free_method): the header may never be allocated
3969
3970         Overall, this saves 150 kb of unmanaged allocations
3971         for mcs helloworld.cs. That accounts for 10% of the unmanaged
3972         memory at runtime.
3973         
3974         * loader.c, loader.h (mono_method_get_header): new accessor.
3975
3976         * *.[ch]: use the above method. Prepares us to lazily load
3977         the header.
3978
3979         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
3980         three warnings, which are actual bugs (see 69206).
3981
3982         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
3983         unused. Saves a cool 4 bytes / method.
3984
3985 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
3986
3987         * metadata.c (builtin_types): Add types for System.Object here.
3988         (mono_metadata_parse_type_full): Cache MonoType*'s that are
3989         for a class or valuetype from klass->this_arg or klass->byval_arg.
3990
3991         On mcs for a hello world, this gets us down from 21836 MonoType's
3992         to 14560.
3993
3994         (mono_metadata_free_type): Account for the above change.
3995
3996 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
3997
3998         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
3999         exception instead of asserting if name is null.
4000         (ves_icall_System_AppDomain_GetData): Ditto.
4001
4002 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
4003
4004         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
4005         EnumBuilder.
4006
4007         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
4008         Return NULL when the domain does not have entry_assembly set.
4009
4010         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
4011         Add a 'resource_modules' argument.
4012         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
4013
4014         * reflection.c (mono_reflection_create_runtime_class): Move setting
4015         of wastypebuilder here, so mono_get_type_object () returns a MonoType
4016         for enums too.
4017
4018         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
4019         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
4020         Throw an ArgumentNullException if 'ptr' is null.
4021
4022         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
4023         assemblies here. Fixes #69020.
4024
4025 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
4026
4027         * reflection.c (build_compressed_metadata): Fix the previous patch for
4028         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
4029         the stack.
4030
4031 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
4032
4033         * assembly.c (mono_assembly_names_equal): Allow a match if one of
4034         the cultures is false. Fixes #69090.
4035
4036         * reflection.c (build_compressed_metadata): Fix invalid memory read 
4037         detected by valgrind.
4038         
4039         * reflection.c (mono_reflection_get_type): Avoid triggering a 
4040         TypeResolve multiple times for the same type. Fixes #65577.
4041
4042 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
4043
4044         * marshal.c: Avoid using ldftn to call managed functions. It is
4045         much slower than just a call.
4046
4047         * reflection.c (mono_module_get_object): free the basename we
4048         allocate here from glib.
4049         
4050         * reflection.c (ensure_runtime_vtable): make sure to free
4051         overrides.  Also, we were allocating an array of MonoMethod not an
4052         array of MonoMethod*.
4053
4054         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
4055
4056         * image.c (mono_image_close): free image->guid here.
4057
4058 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
4059
4060         * reflection.c: Fix some spec conformance issues with the PE file
4061         structures so mcs compiled apps run on the Net 2.0 beta.
4062
4063 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
4064
4065         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
4066         Implement this. Fixes #67264.
4067
4068         * debug-helpers.h debug-helpers.c marshal.c: Move 
4069         mono_find_method_by_name to debug-helpers.c.
4070
4071 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
4072
4073         * object.c (mono_release_type_locks): type_initialization_hash is
4074         a GHashTable.
4075
4076         * reflection.c object.c object-internals.h: Fix warnings.
4077
4078         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
4079         without accessors. Fixes #61561.
4080
4081         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
4082         application base from the root domain if not set. Fixes #65641.
4083         (mono_runtime_init): Fix warning.
4084
4085 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4086
4087         * appdomain.c: call mono_thread_pool_init.
4088         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
4089         of worker threads based on the number of CPUs and the environment
4090         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
4091         for non-windows (windows) systems.
4092
4093 2004-10-27  Chris Toshok  <toshok@ximian.com>
4094
4095         * mono-debug-debugger.c (write_class): don't call mono_class_init
4096         here, as even with the check for (!klass->init_pending), we get
4097         into a situation where we're hitting cycles in class
4098         initialization.  Fixes #68816.
4099
4100 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
4101
4102         * image.c: Avoid overwriting values in the loaded_images_hash when an
4103         assembly is loaded multiple times. Fixes #61152.
4104
4105         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
4106         so multiple satellite assemblies for the same name can be loaded.
4107         Fixes #68259.
4108
4109         * mono_domain_assembly_preload: Actually return the loaded assembly, 
4110         not NULL.
4111
4112         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
4113         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
4114
4115         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
4116         pending finalizers are not invoked after the appdomain has been 
4117         unloaded. Fixes #67862.
4118
4119 2004-10-22  Martin Baulig  <martin@ximian.com>
4120
4121         * mono-debug-debugger.c
4122         (mono_debugger_runtime_invoke): Don't box valuetypes.
4123
4124 2004-10-22  Chris Toshok  <toshok@ximian.com>
4125
4126         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
4127         don't hide private methods.
4128
4129 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
4130
4131         * icall.c: Allows the runtime to "share" (when known) the public key
4132         token of an assembly. This avoid the need to recalculate the token 
4133         (from the public key) in managed code.
4134
4135 2004-10-21  Chris Toshok  <toshok@ximian.com>
4136
4137         * debug-helpers.c (append_class_name): argh, revert last patch.
4138         
4139 2004-10-21  Chris Toshok  <toshok@ximian.com>
4140
4141         * debug-helpers.c (append_class_name): use '+' as the delimiter,
4142         not '/', so that it matches what the debugger uses to look up
4143         methods.
4144
4145 2004-10-21  Martin Baulig  <martin@ximian.com>
4146
4147         * mono-debug-debugger.c (mono_debugger_throw_exception): New
4148         public method; this is called each time an exception is thrown and
4149         allows the debugger to use exception catch points.
4150
4151 2004-10-21  Martin Baulig  <martin@ximian.com>
4152
4153         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
4154         the stack pointer and the exception object in some struct and pass
4155         that to the debugger.
4156
4157 2004-10-21  Chris Toshok  <toshok@ximian.com>
4158
4159         * mono-debug-debugger.c (do_write_class): add instance/static
4160         event support.  We don't expose "raise" or "other" yet.
4161         (event_is_static): new method.
4162
4163 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
4164
4165         * mono-debug-debugger.c
4166         (mono_debugger_handle_exception): Remove
4167         bogus return value for fussy compilers.
4168
4169 2004-10-20  Martin Baulig  <martin@ximian.com>
4170
4171         * mono-debug-debugger.c
4172         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
4173         (mono_debugger_handled_exception): Likewise.
4174
4175 2004-10-20  Martin Baulig  <martin@ximian.com>
4176
4177         * mono-debug-debugger.h (MonoDebuggerEvent): Added
4178         MONO_DEBUGGER_EVENT_EXCEPTION.
4179
4180         * mono-debug-debugger.c (mono_debugger_handle_exception): New
4181         public function to send the debugger a notification for an
4182         exception and inform it about a catch/finally clause.
4183
4184 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
4185
4186         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
4187         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
4188         fix 2.95 build. 
4189
4190         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
4191
4192 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
4193
4194         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
4195         marshalled as [In,Out]. Fixes #58325.
4196
4197 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
4198
4199         * reflection.c (mono_method_body_get_object): Implement some fields.
4200
4201 2004-10-12  Martin Baulig  <martin@ximian.com>
4202
4203         * reflection.c (mono_reflection_bind_generic_parameters): Small
4204         fix, correctly retrieve our parent from a generic instance.
4205
4206 2004-10-12  Martin Baulig  <martin@ximian.com>
4207
4208         * metadata.c (mono_metadata_generic_param_equal): We always have
4209         an owner.
4210
4211         * class.c
4212         (mono_class_from_generic_parameter): We need to have an owner.
4213         (my_mono_class_from_generic_parameter): Likewise.
4214
4215         * reflection.c (mono_reflection_setup_generic_class): Renamed to
4216         mono_reflection_create_generic_class() and added a new
4217         mono_reflection_setup_generic_class().  
4218         (mono_reflection_initialize_generic_param): If we're a nested
4219         generic type and inherited from the containing class, set our
4220         owner to the outer class.
4221
4222 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
4223
4224         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
4225
4226         * reflection.c (mono_method_body_get_object): New function to create
4227         a MethodBody object.
4228
4229         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
4230
4231 2004-10-11  Martin Baulig  <martin@ximian.com>
4232
4233         * metadata.c (_mono_metadata_type_equal): Renamed to
4234         do_mono_metadata_type_equal() and made static.
4235
4236 2004-10-11  Martin Baulig  <martin@ximian.com>
4237
4238         * appdomain.c: Bump corlib version number to 28.
4239
4240 2004-10-10  Martin Baulig  <martin@ximian.com>
4241
4242         * class-internals.h
4243         (MonoGenericInst): Added `MonoGenericContainer *container'.
4244         (MonoGenericMethod): Likewise.
4245         (MonoGenericContext): Likewise.
4246         (MonoGenericParam): Added `MonoGenericContainer *owner'.
4247
4248         * metadata.c
4249         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
4250         (do_mono_metadata_parse_generic_inst): Likewise.
4251         (mono_metadata_parse_type_full): New public method.  This is the actual
4252         mono_metadata_parse_type() implementation - with an additional
4253         `MonoGenericContainer *' argument.
4254         (mono_metadata_parse_array_full): Likewise.
4255         (mono_metadata_parse_signature_full): Likewise.
4256         (mono_metadata_parse_method_signature_full): Likewise.
4257         (mono_metadata_parse_mh_full): Likewise.
4258         (mono_type_create_from_typespec): Likewise.
4259         (mono_metadata_interfaces_from_typedef_full): New public method;
4260         this is similar to the other _full() methods, but we take a
4261         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
4262         (mono_metadata_parse_generic_param): Take an additional
4263         `MonoGenericContainer *' argument and lookup the MonoGenericParam
4264         from that container.
4265         (mono_metadata_generic_param_equal): New static method to compare
4266         two type parameters.
4267         (_mono_metadata_type_equal): New static method; takes an
4268         additional `gboolean signature_only' argument - if true, we don't
4269         compare the owners of generic parameters.
4270         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
4271         with a TRUE argument - do a signature-only comparision.
4272
4273         * loader.c: Use the new _full() methods and pass the
4274         MonoGenericContainer to them.
4275
4276         * object-internals.h (MonoReflectionTypeBuilder): Added
4277         `MonoGenericContainer *generic_container' field.
4278         (MonoReflectionMethodBuilder): Likewise.
4279
4280 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
4281
4282         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
4283         case initial images of dynamic assemblies.
4284
4285         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
4286
4287         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
4288
4289         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
4290         length of event->other array.
4291         (typebuilder_setup_events): Ditto.
4292
4293         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
4294         'assembly_by_name' and add an 'assemblies' list.
4295
4296         * assembly.h assembly.c: Add a new search hook for determining whenever
4297         an assembly is already loaded. Use this instead of searching in the
4298         loaded_assemblies list.
4299
4300         * domain.c appdomain.c: Implement the new search hook so loaded 
4301         assemblies are now scoped by appdomain. Fixes #67727.
4302
4303 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
4304
4305         * threads.c (mono_thread_attach): Initialize synch_lock field so
4306         mono_thread_detach works again.
4307
4308         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
4309         'lib' too. Fixes #63130.
4310
4311 2004-10-06  Jackson Harper  <jackson@ximian.com>
4312
4313         * culture-info-tables.h: regenerated.
4314
4315 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
4316
4317         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
4318         implemented by other interfaces in the result. Fixes #65764.
4319         
4320         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4321         Handle unloadable modules without crashing.
4322
4323         * image.c (load_modules): Revert the previous patch since modules must
4324         have a fixed index inside the array.
4325         
4326         * image.c (load_modules): Don't include native modules in the modules
4327         array.
4328
4329 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
4330
4331         * reflection.h: Add param_defaults field.
4332
4333         * reflection.c: Add support for parameter defaults in dynamic methods.
4334         Fixes #64595.
4335
4336         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
4337         an empty string when a type has no namespace. Fixes #64230.
4338
4339 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
4340
4341         * tabledefs.h: Added "internal" security actions to support non-CAS
4342         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
4343         Note: they do not seems to be used anymore in 2.0 (new metadata format)
4344
4345 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
4346
4347         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
4348         constructor of abstract class. Fixes #61689.
4349
4350 2004-10-04  Martin Baulig  <martin@ximian.com>
4351
4352         * class-internals.h (MonoGenericContainer): New type.
4353         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
4354         `MonoGenericContainer *generic_container'.
4355         (MonoClass): Replaced `gen_params' and `num_gen_params' with
4356         `MonoGenericContainer *generic_container'.
4357
4358         * metadata.c (mono_metadata_load_generic_params): Return a
4359         `MonoGenericContainer *' instead of a `MonoGenericParam *';
4360         removed the `num' argument.
4361
4362 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
4363
4364         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
4365         for dynamic images.
4366
4367         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
4368         machine fields.
4369
4370         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
4371
4372         * reflection.c: Save pe_kind and machine values into the generated
4373         image file.
4374
4375         * appdomain.c: Bump corlib version number.
4376
4377         * object-internals.h: Reorganize layout of LocalBuilder.
4378
4379         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
4380         New helper function.
4381
4382         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
4383         created MonoType for dynamic types. Fixes #66180.
4384
4385 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
4386
4387         * threadpool.c: the ares hashtable needs a critical section around it.
4388         this prevents some nasty segfaults
4389
4390 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
4391
4392         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
4393         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
4394         bug 67324).
4395         
4396 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
4397
4398         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
4399         
4400 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
4401
4402         * image.c: Always canonicalize image file names, to avoid loading
4403         the same assembly twice when referenced using a relative path.
4404
4405 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
4406
4407         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
4408
4409         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
4410
4411         * marshal.c: Fix warnings.
4412
4413 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
4414
4415         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
4416         attempting to marshal the delegate_trampoline as the method_addr.
4417         This patch has a static hashtable of marshalled delegates so that 
4418         we can map delegate_trampoline addresses back to delegates.  This
4419         allows a delegate passed to managed code to be passed back into native
4420         code.  Fixes #67039
4421
4422 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
4423
4424         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
4425
4426         * reflection.c (method_encode_code): Align method headers properly.
4427         Fixes #66025.
4428
4429 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
4430
4431         * marshal.c: In the runtime invoke wrapper, reset the abort
4432         exception if it is cached. This avoids the automatic rethrowal of 
4433         the exception after the catch of the wrapper. Also check for pending
4434         interruptions before calling the managed method. This is done using
4435         the new method emit_thread_force_interrupt_checkpoint, since the
4436         normal checkpoint method is ignored when running the invoke wrapper.
4437         * object.c: If the abort exception is rethrown, set the abort_exc
4438         field of the thread, so it will be rethrown aftere every catch.
4439         * threadpool.c: Only run an interruption checkpoint if what has been
4440         requested is a stop of the thread (aborts will be ignored).
4441         * threads.c: By default, a thread will now never be interrumped while
4442         running the runtime invoke wrapper (this ensures that runtime_invoke
4443         will always return to the caller if an exception pointer is provided).
4444         There is a new special method mono_thread_force_interruption_checkpoint()
4445         to force an interruption checkpoint even if running a protected
4446         wrapper, which is used by the same runtime invoke wrapper to do a check
4447         at a safe point.
4448
4449 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
4450
4451         * object.c, object-internals.h: Implemented mono_release_type_locks,
4452         which releases the cctor locks held by a thread.
4453         * threads.c, threads.h: In thread_cleanup, release cctor locks held
4454         by a thread. Added mono_thread_exit() method to be used to safely stop
4455         a thread.
4456
4457 2004-09-28  Raja R Harinath  <rharinath@novell.com>
4458
4459         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4460         Move null check before dereference.  Avoid indexing beyond the end
4461         of the 'modules' array.
4462
4463 2004-09-28  Raja R Harinath  <rharinath@novell.com>
4464
4465         * metadata-internals.h (MonoImage): Add module_count field.
4466         * image.c (load_modules): Set image->module_count.
4467         (mono_image_load_file_for_image): Use image->module_count.
4468         * reflection.c (mono_image_load_module): Append to image->modules array 
4469         of dynamic assembly.
4470         (mono_module_get_object): Fix loop to actually increment index.
4471         Use image->module_count.
4472         * assembly.c (mono_assembly_load_references): Use image->module_count.
4473         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
4474         Likewise.
4475
4476 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
4477
4478         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
4479         Avoid assert on generic types.
4480
4481 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
4482
4483         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
4484
4485         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
4486
4487         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
4488         function to convert a MarshalSpec structure to its managed counterpart.
4489
4490         * reflection.c: Fix warnings.
4491         
4492         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
4493         field.
4494
4495         * icall.c (mono_create_icall_signature): Fix build.
4496
4497 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
4498
4499         * icall.c: Add MakePointType icall.
4500
4501         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
4502         warnings.
4503
4504 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4505
4506         * threadpool.c: reuse allocated slots in the queue.
4507
4508 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
4509
4510         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
4511
4512         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
4513
4514         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
4515         previous change.
4516
4517         * tabledefs.h: Add constants for pinvoke attributes BestFit and
4518         ThrowOnUnmappableChar.
4519
4520         * icall.c (ves_icall_Type_GetPacking): New icall.
4521
4522 2004-09-24  Martin Baulig  <martin@ximian.com>
4523
4524         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
4525
4526 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4527
4528         * appdomain.c:
4529         (mono_domain_set): allow setting a domain that is being unloaded.
4530         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
4531         being unloaded.
4532
4533 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4534
4535         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
4536         the GetCustomAttributes icall.
4537
4538 2004-09-23  Martin Baulig  <martin@ximian.com>
4539
4540         * object-internals.h (MonoReflectionGenericParam): Replaced
4541         'has_ctor_constraint', `has_reference_type' and `has_value_type'
4542         with `guint32 attrs'.
4543
4544 2004-09-23  Martin Baulig  <martin@ximian.com>
4545
4546         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
4547
4548 2004-09-23  Martin Baulig  <martin@ximian.com>
4549
4550         * object-internals.h (GenericParameterAttributes): New enum.
4551
4552 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4553
4554         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
4555         
4556         * class.c (init_events): Fill out event->other field.
4557
4558         * class.c: Fix warnings.
4559
4560         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
4561
4562 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
4563
4564         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
4565         walk which doesn't supply the IL offset.
4566
4567 2004-09-22  Martin Baulig  <martin@ximian.com>
4568
4569         * reflection.c (mono_reflection_setup_internal_class): If we're
4570         System.ValueType, System.Object or System.Enum, set
4571         `klass->instance_size' and create the vtable.
4572         (mono_reflection_create_internal_class): If we're an enum type,
4573         get the base class from our current corlib.
4574
4575 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
4576
4577         * reflection.h (MonoResolveTokenError): New type.
4578
4579         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
4580         icall.
4581
4582         * icall.c: Add an 'error' argument to the ResolveToken icalls.
4583
4584 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
4585
4586         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
4587         Support also calling constructors, but only for already allocated objects.
4588
4589 2004-09-17  Geoff Norton <gnorton@customerdna.com>
4590
4591         * reflection.c (type_get_qualified_name): If the klass is null
4592         return the typename to avoid a NullRefEx.
4593         (encode_cattr_value): Get the qualified name of the boxed type,
4594         not the underlying enumtype.  Fixes #62984.
4595
4596 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
4597
4598         * marshal.c: Fix problems with previous checkin.
4599
4600 2004-09-21    <vargaz@freemail.hu>
4601
4602         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
4603         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
4604
4605         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
4606
4607 2004-09-21  Geoff Norton <gnorton@customerdna.com>
4608
4609         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
4610         should only return a type for pointers, arrays, and passbyref types.
4611         Fixes bug #63841.
4612
4613 2004-09-21  Martin Baulig  <martin@ximian.com>
4614
4615         * domain.c (mono_debugger_check_runtime_version): New public
4616         function.
4617
4618         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
4619
4620 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
4621
4622         * reflection.c: Added missing sort to the declarative security 
4623         attributes table. MS implementation stops seeing the attributes if the
4624         token number regress in the table (as shown by ildasm and permview).
4625
4626 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
4627
4628         * object-internals.h (MonoReflectionModule): Add 'token' field.
4629         
4630         * reflection.c (mono_reflection_get_token): Add support for Module
4631         and Assembly.
4632         (mono_module_get_object): Set 'token' field.
4633         (mono_module_file_get_object): Set 'token' field.
4634
4635         * icall.c: Add new Assembly and Module icalls.
4636
4637         * appdomain.c: Bump corlib version.
4638
4639 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
4640
4641         * loader.h loader.c class.h class.c: Add helper functions for obtaining
4642         tokens of metadata objects.
4643
4644         * reflection.h reflection.c (mono_reflection_get_token): New function
4645         to obtain the token of a metadata object.
4646
4647         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
4648
4649 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
4650
4651         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
4652         
4653         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
4654
4655 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
4656
4657         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
4658         * object-internals.h: Added 3 MonoArray* members to MonoReflection
4659         AssemblyBuilder to access the permissions set in the class lib.
4660         * reflection.c: Added security attributes encoding step in 
4661         mono_image_build_metadata.
4662         * tabledefs.h: Added new security actions defined in 2.0:
4663         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
4664
4665 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
4666
4667         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
4668         macro parameter.
4669
4670 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
4671  
4672         * locales.c: nullify the ICU_collator member of CompareInfo when it is
4673           finalized. There where random SIGSEVs at program termination, when
4674           an object being finalized was trying to do a string comparison and
4675           the current culture was already finalized.
4676  
4677 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4678
4679         * threads.c: call thread_cleanup before finishing the thread if we get
4680         there.
4681
4682 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
4683
4684         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
4685         assemblies from the parent. Fixes #65665.
4686
4687 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
4688
4689         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
4690         modifiers.
4691
4692 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
4693
4694         * reflection.h: add prototype for mono_get_dbnull_object
4695         * reflection.c: add prototypes for get_default_param_value_blobs 
4696         and mono_get_object_from_blob for fussier compilers
4697
4698 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
4699  
4700         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
4701         false deadlock checks in class initialization.
4702  
4703 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
4704
4705         * image.c (mono_image_addref): Fix comment.
4706
4707         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
4708         possible.
4709
4710 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
4711
4712         * reflection.c (mono_param_get_objects): Modified to return
4713         ParameterInfo.DefaultValue object.
4714
4715         (get_default_param_value_blobs):
4716         (mono_get_object_from_blob):
4717         (mono_get_dbnull_object): New helper routines. 
4718
4719         * object.c (mono_get_constant_value_from_blob): New helper routine
4720         carved out from get_default_field_value ()
4721
4722         * object-internals.h (mono_get_constant_value_from_blob): Added
4723         function declaration.
4724
4725 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
4726
4727         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
4728         referenced assemblies. Fixes #62135.
4729
4730         * exception.h exception.c (mono_get_exception_file_not_found2): New
4731         helper function.
4732
4733 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
4734
4735         * class.h class.c: Add mono_type_get_underlying_type ().
4736
4737 2004-09-09  Geoff Norton <gnorton@customerndna.com>
4738
4739         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
4740         Fix GetTypes() to support dynamically created assemblies.
4741
4742 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
4743
4744         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
4745         
4746         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
4747         previous patch.
4748
4749         * reflection.h reflection.c loader.c: Allow dynamic construction of
4750         pinvoke methods. Fixes #65571.
4751         
4752         * reflection.c (mono_reflection_get_type): Revert previous change since
4753         it causes regressions.
4754
4755 2004-09-08  Martin Baulig  <martin@ximian.com>
4756
4757         * class.c (class_compute_field_layout): Don't call
4758         mono_class_layout_fields() for open generic instances.
4759
4760 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
4761         * threads.c appdomain.c: fix typo in GC macro
4762
4763 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4764
4765         * threads.c: don't call mono_thread_detach() in start_wrapper(),
4766         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
4767
4768 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
4769
4770         * image.c (mono_image_close): Applied patch from 
4771         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
4772         assembly is loaded multiple times from data.
4773         
4774         * image.c (mono_image_open): Fix warning.
4775
4776 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4777
4778         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
4779         once. Fixes #58334.
4780         
4781         * reflection.c (mono_reflection_create_runtime_class): Initialize
4782         klass->nested_classes. Fixes #61224.
4783
4784 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
4785
4786         * threads.c: sched_yield() on exit, to allow threads to quit.
4787
4788 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4789
4790         * object.c (mono_unhandled_exception): Remove leftover debug code.
4791
4792 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
4793
4794         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
4795
4796 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4797
4798         * marshal.c (emit_marshal_array): Really null terminate string arrays.
4799         
4800         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
4801
4802 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4803
4804         * marshal.c (emit_marshal_array): Null terminate string arrays.
4805         
4806         * marshal.c (raise_auto_layout_exception): Fix warning.
4807
4808         * reflection.c (mono_param_get_objects): Initialize the default value
4809         with DBNull.Value, not null. Fixes #62123.
4810
4811 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
4812
4813         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
4814         throw an exception with a cute explanation.
4815
4816 2004-09-06  Dick Porter  <dick@ximian.com>
4817
4818         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
4819         Close the new process's thread handle, as we don't use it.  The
4820         handle stays around forever otherwise.
4821
4822 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4823
4824         * object.c (arith_overflow): Fix warning.
4825
4826         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
4827         calling conventions in method refs. Fixes #65352.
4828
4829         * reflection.c: Fix warnings.
4830
4831 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4832
4833         * icall.c: Add a new icall for Array.Clear
4834
4835 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4836
4837         * object.c: When allocating an array, we have to throw
4838         an overflow exception if any of the lengths are < 0.
4839
4840 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4841
4842         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
4843         properly. Also move implementation of string array marshalling to 
4844         managed code. Fixes #42316.
4845
4846 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4847
4848         * assembly.c: provide more information when loading an assembly fails.
4849
4850 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4851
4852         * filewatcher.c: don't expect the development fam package to be
4853         installed.
4854
4855 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
4856
4857         * marshal.c: Make a copy of the signature cookie since it will be
4858         freed by the caller.
4859         
4860         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
4861
4862         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
4863
4864         * metadata.c (mono_metadata_free_marshal_spec): New function to free
4865         marshal specs.
4866
4867         * marshal.c: More refactoring.
4868         
4869         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
4870         smaller functions.
4871
4872 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
4873
4874         * object.c: In mono_message_invoke, fill the output parameter array after
4875           calling the managed method (it was done before the call). This fixes
4876           bug #59299.
4877
4878 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4879
4880         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
4881         as well.
4882
4883 2004-09-02  Martin Baulig  <martin@ximian.com>
4884
4885         * class.c (mono_class_instance_size): Don't allow generic type
4886         definitions or open generic instances.
4887         (mono_class_array_element_size): If we're a value type, call
4888         mono_class_instance_size() on the original class.
4889
4890         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
4891         handle generic instances.
4892
4893         * mono-debug-debugger.c (write_type): Handle generic instances
4894         like classes.
4895
4896 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4897
4898         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
4899         the allocation request fails. Fixes #65089.
4900
4901         * object.c (mono_runtime_free_method): Do not call mono_free_method.
4902         
4903         * object.c (mono_runtime_free_method): New function to free a dynamic
4904         method.
4905
4906         * marshal.c (mono_delegate_free_ftnptr): New function to free the
4907         delegate trampoline.
4908
4909         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
4910         with hasthis as dynamic,
4911
4912         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
4913
4914         * domain.c (mono_jit_info_table_remove): New function to remove an
4915         entry from the jit info table.
4916
4917         * class-internals.h (MonoMethod): Add 'dynamic' field.
4918
4919         * loader.c: Fix warnings.
4920
4921 2004-09-01  Martin Baulig  <martin@ximian.com>
4922
4923         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
4924         instead of mono_debugger_lock() because the latter one is a no-op
4925         unless running in the debugger.
4926
4927 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
4928
4929         * class.c (class_compute_field_layout): Classes with auto-layout or
4930         reference fields are not blittable.
4931         
4932 2004-09-01  Dick Porter  <dick@ximian.com>
4933
4934         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
4935         mono_image_get_filename() to get the assembly location.
4936
4937         * icall.c:
4938         * metadata.h: Fix compile warnings
4939
4940 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
4941
4942         * class.c (class_compute_field_layout): System.Object is blittable.
4943
4944         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
4945         as in/out. Fixes #59909.
4946
4947 2004-09-01  Martin Baulig  <martin@ximian.com>
4948
4949         * metadata.h (MONO_TYPE_ISREFERENCE): Call
4950         mono_metadata_generic_inst_is_valuetype() if we're a generic
4951         instance to check whether our underlying type is a reference type.
4952
4953 2004-09-01  Martin Baulig  <martin@ximian.com>
4954
4955         * metadata.c (mono_type_size): If we're a generic instance, call
4956         mono_class_value_size() for value types.
4957
4958 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
4959
4960         * marshal.c: Implement more custom marshalling functionality. Fixes
4961         #64915.
4962
4963 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
4964
4965         * mono-debug.c, debug-mono-symfile.c: add some locking love.
4966
4967 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
4968
4969         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
4970
4971         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
4972
4973         * icall.c: Fix some warnings.
4974
4975         * threads.c (abort_appdomain_thread): Fix unref errors.
4976         (mono_thread_current): Fix THREAD_DEBUG define.
4977
4978 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
4979
4980         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
4981
4982         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
4983
4984 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
4985
4986         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
4987         string arrays.
4988
4989 2004-08-28  Martin Baulig  <martin@ximian.com>
4990
4991         * metadata.c
4992         (mono_metadata_generic_inst_is_valuetype): New public function.
4993
4994         * metadata.h (MONO_TYPE_ISSTRUCT): Call
4995         mono_metadata_generic_inst_is_valuetype() if we're a generic
4996         instance to check whether our underlying type is a valuetype.
4997
4998 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
4999
5000         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
5001         #63768.
5002
5003 2004-08-25  Martin Baulig  <martin@ximian.com>
5004
5005         * loader.c (mono_get_method_from_token): Abstract methods can also
5006         be generic and thus have type parameters.
5007
5008         * metadata-internals.h
5009         (MonoDynamicImage): Added `GPtrArray *gen_params'.
5010
5011         * reflection.c (mono_image_get_generic_param_info): Don't create a
5012         metadata row, just add an entry to the `gen_params' array.
5013         (build_compressed_metadata): Sort the `gen_params' array and then
5014         actually create the metadata.
5015
5016 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5017
5018         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
5019
5020 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
5021
5022         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
5023
5024 2004-08-24  Martin Baulig  <martin@ximian.com>
5025
5026         * class.cs (mono_class_is_subclass_of): Like an interface, a
5027         generic instance also derives from System.Object.
5028
5029 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
5030
5031         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
5032         custom modifiers to be in any order. Fixes #61990.
5033
5034 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
5035
5036         * object.c: Register mono_object_new_fast icall.
5037         
5038         * object.c (mono_class_get_allocation_ftn): Return to calling
5039         mono_object_new_fast, since it seems faster to compute the object 
5040         size in unmanaged code than passing it as a parameter.
5041
5042         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
5043
5044         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
5045         this function with Boehm as the oom handler, so we don't have to check
5046         the result of GC_malloc.
5047
5048         * object.c: Remove checks for oom.
5049
5050         * object.h object.c (mono_class_get_allocation_ftn): New function to
5051         return the icall which can be used to allocate an instance of a given
5052         class. 
5053
5054         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
5055
5056         * class-internals.h: Add 'enabled' field.
5057
5058 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
5059
5060         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
5061
5062 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
5063         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
5064         value 0x0010.
5065
5066 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
5067
5068         * appdomain.c: use the Tls function for appdomain too,
5069         at Zoltan's request. Actually return in mono_context_get
5070
5071         * appdomain.c, profiler.c, threads.c: use __thread
5072
5073 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
5074
5075         * appdomain.c threads.c: Call GC_CreateThread on windows.
5076
5077         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
5078         multiple libraries since this don't work on windows.
5079
5080 2004-08-18  Martin Baulig  <martin@ximian.com>
5081
5082         * class-internals.h
5083         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
5084         MonoMethodHeader.
5085
5086         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
5087         MonoMethodNormal since we also need it for abstract and interface
5088         methods.
5089
5090         * reflection.c
5091         (build_compressed_metadata): Sort the GenericParam table.
5092         (mono_image_create_token): Added `gboolean create_methodspec'
5093         argument; this is false when generating a MethodImpl token.
5094         (reflection_methodbuilder_to_mono_method): Abstract and interface
5095         methods may also have generic parameters.
5096
5097 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
5098
5099         * appdomain.c: thread local alloc
5100
5101 2004-08-17  Martin Baulig  <martin@ximian.com>
5102
5103         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
5104
5105         * icall.c
5106         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
5107         argument.
5108
5109         * class.c (mono_type_get_full_name): New public function.
5110         (mono_type_get_name): Don't include the type arguments.
5111
5112 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
5113
5114         * Makefile.am: Build static versions of libmetadata and libmonoruntime
5115         for inclusion into the mono executable.
5116
5117 2004-08-16  Martin Baulig  <martin@ximian.com>
5118
5119         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
5120         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
5121
5122 2004-08-14  Martin Baulig  <martin@ximian.com>
5123
5124         * class.c (dup_type): Also copy the `byref' field.
5125
5126 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
5127
5128         * reflection.c (create_dynamic_mono_image): Revert the last change 
5129         since it breaks bootstrap.
5130
5131 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
5132
5133         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
5134
5135         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
5136         not free them with g_free.
5137
5138 2004-08-11  Martin Baulig  <martin@ximian.com>
5139
5140         * reflection.c (mono_reflection_setup_internal_class): Also call
5141         mono_class_setup_mono_type() if we already have a `tb->type.type'.
5142
5143 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
5144
5145         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
5146         called during default (first) AppDomain creation. Keep track of
5147         Evidence when loading assemblies.
5148
5149 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
5150
5151         * opcodes.c, opcodes.h: reduce runtime relocations.
5152
5153 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
5154
5155         * culture-info.h, locales.c: fixes and chages to sue the new
5156         optimized format of the locale data.
5157         * culture-info-tables.h: regenerated.
5158
5159 2004-08-06  Geoff Norton <gnorton@customerdna.com>
5160         
5161         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
5162
5163 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
5164
5165         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
5166         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
5167         * domain-internals.h: icall declaration.
5168         * icall.c: icall registration.
5169         * object-internals.h: New fields in MonoAssembly for CAS.
5170
5171 2004-08-05  Duncan Mak  <duncan@ximian.com>
5172
5173         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
5174         CEE_LDELEM_ANY.
5175
5176 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
5177
5178         * reflection.c: fix to deal with object[] arrays in custom ctors
5179         (bug #62550).
5180
5181 2004-08-05  Martin Baulig  <martin@ximian.com>
5182
5183         * class.c (mono_class_array_element_size): Added support for
5184         generic instances and correctly handle "recursive" types.
5185
5186 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
5187
5188         * assembly.c: Fix warnings.
5189
5190 2004-08-04  Martin Baulig  <martin@ximian.com>
5191
5192         * class.c
5193         (mono_type_get_name_recurse): Added `gboolean include_arity'
5194         argument specifying whether or not we should include the generic
5195         arity in the type name.
5196         (_mono_type_get_name): New static function.
5197         (mono_class_setup_vtable): If we're a generic instance, don't
5198         include the generic arity in the names of explicit method
5199         implementations.        
5200
5201 2004-08-03  Martin Baulig  <martin@ximian.com>
5202
5203         * class.c (mono_type_get_name_recurse): Enclose the generic type
5204         arguments in `<', '>'.
5205
5206 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5207
5208         * gc.c: make GC warning messages use the trace API, they are just
5209         noise to most of the users.
5210
5211 2004-08-03  Martin Baulig  <martin@ximian.com>
5212
5213         * debug-mono-symfile.c (read_string): Correctly read the string.
5214
5215 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
5216
5217         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
5218         
5219         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
5220         icalls.
5221         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
5222
5223 2004-07-30  Martin Baulig  <martin@ximian.com>
5224
5225         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
5226         Reflect latest symbol writer changes.   
5227
5228 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
5229
5230         * object.c: always create an object if null is passed
5231         to Invoke() where a valuetype is expected.
5232
5233 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
5234
5235         * marshal.c (mono_marshal_init): make managed
5236         signatures match native ones better for 64bits.
5237
5238 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5239
5240         * appdomain.c: hack to build correctly the private bin path on windows.
5241         Fixes bug #61991.
5242
5243 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
5244
5245         * assembly.c: Load mscorlib from the correct framework directory
5246           (mono/<version>/mscorlib.dll).
5247         * appdomain.h: Added prototypes for new functions.
5248         * internals.h: Added some prototypes.
5249         * domain.c: When initializing the runtime, get from the executable and
5250           the configuration files the runtime version that the app supports.
5251           Added support methods for reading app.exe.config. Added list of versions
5252           supported by the JIT. Added two new methods: mono_init_from_assembly,
5253           which initializes the runtime and determines the required version from
5254           the provided exe file, and mono_init_version, which initializes
5255           the runtime using the provided version.
5256         * icall.c: Get machine.config from version-specific directory.
5257         * reflection.c: When generating an image, embed the version number
5258           of the current runtime.
5259
5260 2004-07-28  Dick Porter  <dick@ximian.com>
5261
5262         * socket-io.c
5263         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
5264         returned sockaddr size before creating the remote address object.
5265         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
5266         61608.
5267
5268 2004-07-28  Dick Porter  <dick@ximian.com>
5269
5270         * locales.c (string_invariant_compare_char): Fix invariant char
5271         compares between upper and lower cases.  Fixes bug 61458.
5272
5273 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
5274         
5275         * marshal.c: actually cache stelem.ref wrappers.
5276         
5277 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
5278
5279         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
5280         sections and remove the mono_cli_rva_map () function.
5281
5282 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
5283
5284         * debug-mono-symfile.c: fix one more endianess issue, from a patch
5285         by Geoff Norton (<gnorton@customerdna.com>).
5286
5287 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5288
5289         * class.c: fix class loads for pointer types (typeof(int) !=
5290         typeof(int*)).
5291
5292 2004-07-27  Martin Baulig  <martin@ximian.com>
5293
5294         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
5295         reading the debugging information from an external ".mdb" file.
5296
5297 2004-07-24  Martin Baulig  <martin@ximian.com>
5298
5299         * reflection.c (mono_image_get_type_info): Only write a class
5300         layout entry if we actually have a size or a packing size.
5301
5302 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
5303
5304         * reflection.c (type_get_fully_qualified_name): 
5305         insert cast to get type checking of ?: with non-gcc compilers
5306
5307 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
5308
5309         * rand.c: use g_getenv for both lookups of
5310         MONO_EGD_SOCKET
5311
5312 2004-07-17  Martin Baulig  <martin@ximian.com>
5313
5314         * reflection.c (mono_reflection_bind_generic_method_parameters):
5315         Set `gmethod->reflection_info'.
5316
5317 2004-07-17  Martin Baulig  <martin@ximian.com>
5318
5319         * class.c (mono_class_create_from_typedef): Insert the newly
5320         created class into the hash table before computing the interfaces
5321         since we could be called recursively.
5322
5323 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
5324
5325         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
5326         function to implement stelem.ref in managed code
5327         * class-internals.h, debug-helpers.c: a new wrapper type
5328         for the above.
5329
5330 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
5331
5332         * gc.c: allow GC handles to work even when no GC is compiled in.
5333         Fix part of bug #61134 (GetAddrOfPinnedObject).
5334
5335 2004-07-13  Peter Williams  <peter@newton.cx>
5336  
5337         * process.c (complete_path): Make sure we don't attempt to execute
5338         directories.
5339  
5340 2004-07-12  Geoff Norton <gnorton@customerdna.com>
5341
5342         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
5343           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
5344           and will add/subtract the hour if needed
5345
5346 2004-07-12  Martin Baulig  <martin@ximian.com>
5347
5348         * reflection.c (mono_field_get_object): If we have
5349         `field->generic_info', take the attributes from
5350         `field->generic_info->generic_type'.    
5351
5352 2004-07-12  Martin Baulig  <martin@ximian.com>
5353
5354         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
5355         This function must be called before initializing the runtime.
5356         (mono_debug_init_1): New function; call this after initializing
5357         the runtime, but before loading the assembly.  It tells the
5358         debugger to load corlib and the builtin types.
5359
5360         * mono-debug-debugger.c: Did some larger changes in the debugging
5361         code; support recursive class declarations, make sure we actually
5362         add all classes.
5363
5364 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5365
5366         * debug-helpers.c: undo my previous patch and fixed the real issue in
5367         ../mini/exceptions-x86.c
5368
5369 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5370
5371         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
5372         when no HOME env. variable was set and a NullRef was thrown in a .cctor
5373         called from other .cctors.
5374
5375 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
5376
5377         * loader.c: Removed the mono_loader_wine_init hack now that we are
5378         doing a managed version of Windows.Forms.
5379
5380 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
5381
5382         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
5383         threadpool.c, threads.c: remove static data from rootset.
5384
5385 2004-07-09  Dick Porter  <dick@ximian.com>
5386
5387         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
5388         Don't do any more processing if the matched length was 0.  It was
5389         increasing the size of the string before.  Fixes bug 61167.
5390
5391 2004-07-09  Dick Porter  <dick@ximian.com>
5392
5393         * socket-io.h:
5394         * socket-io.c
5395         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5396         Add support for SO_PEERCRED if its available.
5397
5398 2004-07-09  Peter Bartok <pbartok@novell.com>
5399         * loader.c: winelib.exe.so error message is now only displayed if
5400         MONO_DEBUG is set. To help us avoid questions when people are trying
5401         out the new Managed.Windows.Forms.
5402
5403 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
5404
5405         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
5406         for isinst and castclass wrappers.
5407
5408         * class-internals.h icall.c: Move registration and lookup of JIT icalls
5409         to libmetadata from the JIT, so they could be used by the marshalling
5410         code and the interpreter.
5411
5412         * marshal.c: Register marshalling related JIT icalls here instead of
5413         in mini.c. Use CEE_MONO_ICALL instead of the family of 
5414         CEE_MONO_PROC<x> opcodes to call marshalling functions.
5415
5416         * metadata.h: Remove unneeded marshalling conversions.
5417
5418         * opcodes.c: Update for new opcodes.
5419         
5420 2004-07-08  Martin Baulig  <martin@ximian.com>
5421
5422         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
5423         (mono_debug_get_domain_data): Make this function static.
5424
5425 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
5426
5427         * gc.c, object.h: add nice GC handle API for embedders.
5428
5429 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
5430
5431         * reflection.c: more changes for the new api
5432
5433         * object.c: When we reflect on a field w/ a constant value, it
5434         will not have a memory location, so we must access metadata. Also,
5435         allow easier reading of strings so that we can read them from
5436         the constant data.
5437
5438         * class.c (mono_class_layout_fields): no need for literal fields here.
5439
5440         * class-internals.h: api changes for const fields
5441
5442         * icall.c (ves_icall_get_enum_info): use new apis for const fields
5443
5444 2004-07-06  Martin Baulig  <martin@ximian.com>
5445
5446         * mono-debug.h: Increment version number to 44.
5447
5448         * mono-debug.c (mono_debug_add_wrapper): The second argument is
5449         now a gpointer, rewrote this whole method.
5450
5451         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
5452         function.  Add information about the wrapper in a new "misc table".
5453
5454         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
5455         for the new misc table.
5456
5457 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
5458
5459         * metadata-internals.h image.c: Add a cache for helper signatures.
5460
5461         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
5462
5463 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
5464
5465         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
5466         delegates from a delegate. Fixes #61033.
5467         
5468         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
5469         marshalling of stringbuilder arrays. Fixes #59900.
5470
5471 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
5472
5473         * icall.c: Add EnumBuilder:setup_enum_type icall.
5474
5475 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
5476
5477         * icall.c: Added a new icall for the property version of
5478         OffsetOfStringData.
5479
5480 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
5481
5482         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
5483         it has a constant size across platforms.
5484
5485         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
5486         stack trace.
5487
5488 2004-06-29  Martin Baulig  <martin@ximian.com>
5489
5490         * mono-debug.c (mono_debug_add_method): Protect the whole function
5491         in mono_debugger_lock(), not just parts of it.
5492
5493 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
5494
5495         * reflection.c: make sure padding bytes in heaps are zeroed.
5496
5497 2004-06-24  David Waite  <mass@akuma.org>
5498
5499         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
5500         image.c, loader.c, locales.c, marshal.c, metadata.c,
5501         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
5502         string-icalls.c, threads.c: change to C90-style comments from C99 /
5503         C++ -style
5504
5505 2004-06-24  Dick Porter  <dick@ximian.com>
5506
5507         * threads.c
5508         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
5509         return createdNew.  Fixes bug 60412.
5510
5511         * threads-types.h: 
5512         * icall.c: Add createdNew parameter to CreateMutex icall
5513
5514 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
5515
5516         * reflection.c, object-internals.h: save default value in params.
5517
5518 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5519
5520         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
5521         no need to build a new path combining that with the application base.
5522         Fixes bug #60442.
5523
5524 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
5525
5526         * reflection.c: fixed minor standard compliance issues.
5527
5528 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
5529
5530         * reflection.c: fixed issue with encoding some custom attributes
5531         (arrays in properties and fields, bug #60411).
5532
5533 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5534
5535         * reflection.c: fix start address when copying the public key token.
5536
5537 2004-06-23  Martin Baulig  <martin@ximian.com>
5538
5539         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
5540         the `exc' object in a static object to put it into the GC's root set.
5541
5542 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
5543
5544         * reflection.c: make mono_reflection_setup_internal_class ()
5545         callable a second time to setup a new parent class.
5546
5547 2004-06-23  Dick Porter  <dick@ximian.com>
5548
5549         * threads.c: Check for WAIT_IO_COMPLETION return values.
5550
5551 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
5552
5553         * appdomain.c: Removed the g_free on the public key token. Now copy 
5554         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
5555         * assembly.c: Added public key token string value when loading 
5556         assemblies. Fix bug #60439.
5557         * icall.c: Added missing informations (like public key) in 
5558         GetReferencedAssemblies. Fix #60519.
5559         * image.h: Changed definition for public key token from const char*
5560         public_tok_value to guchar public_key_token [17];
5561         * reflection.c: Updated for changes to public key token.
5562
5563 2004-06-22  Lluis Sanchez Gual
5564
5565         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
5566         for the field in base classes.
5567
5568 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
5569
5570         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
5571         mark headers as not supported, they are installed only for use by the
5572         debugger.
5573
5574 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
5575
5576         * *.c, *.h: avoid namespace pollution in public headers.
5577
5578 2004-06-21  Martin Baulig  <martin@ximian.com>
5579
5580         * exception.c (mono_get_exception_security): It's in
5581         "System.Security", not in "System".
5582
5583         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
5584         the exception classes.
5585
5586 2004-06-21  Martin Baulig  <martin@ximian.com>
5587
5588         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
5589         Protect the exception object from being finalized.
5590
5591 2004-06-21  Martin Baulig  <martin@ximian.com>
5592
5593         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
5594         public function.
5595
5596 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
5597
5598         * reflection.c: Load the assembly in mono_reflection_type_from_name,
5599         if it was not loaded before. Fix parts of #60439.
5600
5601 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
5602
5603         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
5604         code that was broken since Ben's change: wrappers are now
5605         dependent on the method signature only again.
5606
5607 2004-06-21  Martin Baulig  <martin@ximian.com>
5608
5609         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
5610         added interface support.
5611
5612 2004-06-21  Martin Baulig  <martin@ximian.com>
5613
5614         * class.c (mono_vtable_get_static_field_data): New public method.
5615
5616 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
5617
5618         * filewatcher.c : Windows build fix to be compliant with API changes.
5619
5620 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
5621
5622         * class.h, class.c: more accessors.
5623         * metadata.h, metadata.c: prepare for hiding MonoType and
5624         MonoMethodSignature: people should use the accessors from now on
5625         outside of the tree.
5626
5627 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
5628
5629         * *.c, *.h: more API cleanups.
5630
5631 2004-06-18  Jackson Harper  <jackson@ximian.com>
5632
5633         * assembly.c: Trace loading assemblies.
5634         * loader.c: Trace loading native libraries.
5635         * mono-config.c: Trace loading config files.
5636         
5637 2004-06-18  Dick Porter  <dick@ximian.com>
5638
5639         * locales.c: Tell ICU the lengths of strings, it can cope with
5640         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
5641
5642 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
5643
5644         * image.c: swapped name/filename;
5645
5646 2004-06-18  Martin Baulig  <martin@ximian.com>
5647
5648         * mono-debug-debugger.c (write_class): Write the parent class at
5649         the end of the header.
5650
5651 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
5652
5653         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
5654
5655 2004-06-17  Raja R Harinath  <rharinath@novell.com>
5656
5657         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
5658         (bundle_obj): New conditional define.
5659         (BUILT_SOURCES): Remove.
5660         ($(bundle_srcs)): Make parallel-make safe.
5661         (libmonoruntime_la_LIBADD): Make unconditional.
5662         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
5663         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
5664
5665 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
5666
5667         * culture-info-tables.h: It was inconsistent with the latest
5668           supp info files.
5669
5670 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
5671
5672         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
5673         be loaded.
5674
5675         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
5676         with gcc 2.95.
5677
5678 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
5679
5680         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
5681         cleaned up public header threads.h.
5682
5683 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
5684
5685         * Makefile.am, *.c, *.h: more API cleanups.
5686
5687 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
5688
5689         * Makefile.am: removed monosn from compilation.
5690         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
5691         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
5692         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
5693         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
5694         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
5695         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
5696
5697 2004-06-15  Jackson Harper  <jackson@ximian.com>
5698
5699         * assembly.c: Make locales lower case when searching the GAC for
5700         assemblies. gacutil will always make locales lowercase when
5701         installing so this effectively makes them case insensitive.
5702         
5703 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
5704
5705         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
5706         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
5707           parameter which allows to choose whether the wait can be interrupted or 
5708           not. Also added the method mono_monitor_enter(), which locks the monitor
5709           using an infinite wait and without allowing interruption.
5710           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
5711           interrupted.
5712         * object.h: Added new fields in MonoThread. suspend_event holds the event
5713           used to susped/resume the thread. synch_lock is the lock object to use for
5714           modifying the thread state.
5715         * threads.c: Use the new synch_lock object for locking, instead of "this",
5716           which can generate deadlocks.
5717           Moved thread state change in Thread.Sleep and Thread.Join from managed
5718           to unmanaged code. This avoids a deadlock when the thread was suspended
5719           just after acquiring the thread lock.
5720           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
5721           Implemented Thread.Suspend using an event instead of ThreadSuspend,
5722           which is not fully implemented in the io-layer.
5723         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
5724
5725 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
5726
5727         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
5728         threads-types.h: more API cleanups.
5729
5730 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
5731
5732         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
5733         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
5734         threadpool.c, threads.c: first pass at the exported API cleanup.
5735
5736 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
5737
5738         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
5739
5740 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5741
5742         * icall.c: added internalGetHome.
5743
5744 2004-06-14  Dick Porter  <dick@ximian.com>
5745
5746         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
5747         possible to return successfully when '.' or '..' were the only
5748         entries in a directory, but were skipped.  The MonoIOStat was not
5749         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
5750         Fixes bug 59574.
5751
5752 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
5753
5754         * reflection.c: make binaries run on .Net 1.1 by default.
5755
5756 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
5757
5758         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
5759
5760 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
5761
5762         * marshal.c: keep track of struct size with explicit layout
5763         (bug #59979).
5764
5765 2004-06-12  Martin Baulig  <martin@ximian.com>
5766
5767         * mono-debug-debugger.c: Comment out a debugging g_message().
5768
5769 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
5770
5771         * reflection.c, reflection.h: do not free custom attrs that are cached.
5772         * icall.c: use braces to make code clearer.
5773
5774 2004-06-11  Martin Baulig  <martin@ximian.com>
5775
5776         * class.h (MonoInflatedField): New type.
5777         (MonoClassField): Replaced `MonoType *generic_type' with
5778         `MonoInflatedField *generic_info'.
5779
5780         * icall.c
5781         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
5782
5783 2004-06-11  Martin Baulig  <martin@ximian.com>
5784
5785         * reflection.c (mono_image_create_method_token): Correctly encode
5786         varargs methods.
5787
5788 2004-06-11  Martin Baulig  <martin@ximian.com>
5789
5790         * metadata.c (mono_metadata_parse_method_signature): When parsing
5791         a MethodDef which has VarArgs, also set sentinelpos if we don't
5792         have any parameters.
5793
5794 2004-06-11  Martin Baulig  <martin@ximian.com>
5795
5796         * verify.c (mono_method_verify): In CEE_CALL, use
5797         mono_method_get_signature() to get the method's signature, unless
5798         we're a PInvoke method.
5799
5800 2004-06-10  Jackson Harper  <jackson@ximian.com>
5801
5802         * assembly.c: Use <path>/lib/mono/gac for the extra paths
5803         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
5804         logical name as the supplied path is just a prefix to the gac not
5805         the direct path to it.
5806         
5807 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
5808
5809         * reflection.c: make the token for a created method match
5810         the token of the MethodBuilder it was created from
5811         (IKVM requires this behaviour now).
5812
5813 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
5814
5815         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
5816         reflection.c, socket-io.c: leak fixes.
5817
5818 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
5819
5820         * icall.c: handle sentinel pos in vararg methods in position different
5821         from 0.
5822
5823 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5824
5825         * culture-info-tables.h: freshly generated.
5826
5827 2004-06-09  Martin Baulig  <martin@ximian.com>
5828
5829         * loader.c (mono_get_method_constrained): Call `mono_class_init
5830         (constrained_class)'.   
5831
5832 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
5833
5834         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
5835         any methods. Fixes #59629.
5836
5837 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5838
5839         * culture-info-tables.h: reflecting locale-builder updates.
5840
5841 2004-06-08  Dick Porter  <dick@ximian.com>
5842
5843         * object.h:
5844         * locales.c: Fixed compile warnings, including a real bug in
5845         CompareInfo_internal_compare.
5846         
5847 2004-06-08  Dick Porter  <dick@ximian.com>
5848
5849         * locales.c
5850         (ves_icall_System_Globalization_CompareInfo_internal_index):
5851         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
5852         Double-check the resuls of usearches, because ICU currently
5853         ignores most of the collator settings here.  Fixes bug 59720.
5854         
5855 2004-06-08  Dick Porter  <dick@ximian.com>
5856
5857         * locales.c
5858         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
5859         Fix memory leak and segfault-causing typo.  No idea how this one
5860         lasted so long without being noticed.
5861
5862 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
5863
5864         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
5865         any methods. Fixes #59629.
5866
5867 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5868
5869         * assembly.c:
5870         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
5871         own the critical section before). Removed dead code (that's done
5872         in the preload hook).
5873
5874         (mono_assembly_load_with_partial_name): call the preload hook.
5875
5876 2004-06-08  Martin Baulig  <martin@ximian.com>
5877
5878         * metadata.c (mono_metadata_signature_alloc): Default
5879         `sentinelpos' to -1.
5880
5881         * reflection.c (mono_image_get_array_token): Likewise.
5882
5883 2004-06-08  Martin Baulig  <martin@ximian.com>
5884
5885         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
5886
5887         * metadata.c (mono_metadata_parse_method_signature): When parsing
5888         a MethodDef which has VarArgs, set sentinelpos.
5889
5890         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
5891         `gint16' since we're using -1 for non-varargs methods.
5892
5893         * reflection.c
5894         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
5895         (method_encode_signature): Added varargs support.
5896         (method_builder_encode_signature): Likewise.
5897         (mono_image_get_varargs_method_token): New static method.
5898         (mono_image_create_method_token): New public method; this is
5899         called via an icall instead of mono_image_create_token() when
5900         calling a varargs method.       
5901
5902 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
5903
5904         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
5905
5906 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5907
5908         * culture-info-tables.h : Reflecting the latest locale-builder that
5909           fixed empty array representation ({} to {0}).
5910
5911 2004-06-07  Jackson Harper  <jackson@ximian.com>
5912
5913         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
5914         looking up extra gac paths. This allows MONO_GAC_PATH to act
5915         exactly like a prefix.
5916         
5917 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
5918
5919         * reflection.c (mono_reflection_type_from_name): Make a copy of the
5920         type name before modifying it. Fixes #59405.
5921
5922 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5923
5924         * culture-info.h: added fields for "all datetime patterns".
5925         * locales.c: (  ves_icall_System_Globalization_CultureInfo
5926           _construct_datetime_format ()): fill xxx_patterns fields.
5927         * object.h: added fields for "all datetime patterns" to
5928           MonoDateTimeFormatInfo.
5929         * culture-info-tables.h: reflecting locale-builder updates.
5930
5931 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
5932
5933         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
5934         the event has no add and remove methods. Fixes #59629.
5935
5936 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
5937
5938         * object.c: Fixed possible integer overflow when allocating large
5939         strings.
5940
5941 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
5942
5943         * culture-info-tables.h: reflecting locale-builder updates.
5944
5945 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
5946
5947         * culture-info-tables.h: reflecting locale-builder updates.
5948
5949 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
5950
5951         * culture-info-tables.h: reflecting locale-builder updates.
5952
5953 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
5954
5955         * threads.c: Made Thread.Sleep abortable.
5956
5957 2004-06-02  Martin Baulig  <martin@ximian.com>
5958
5959         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
5960
5961         * debug-mono-symfile.h: Bumped symbol file version number to 37.
5962
5963 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
5964
5965         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
5966
5967 2004-05-30  Jackson Harper  <jackson@ximian.com>
5968
5969         * reflection.c: Do not hardcode assembly versions or public key
5970         tokens anymore. All of this except the corlib section was dead
5971         code anyways.
5972         
5973 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
5974
5975         * object.c (mono_runtime_invoke_array): Automatically create boxed
5976         objects for byref valuetypes if needed. Fixes #59300.
5977         
5978         * object.c (mono_method_return_message_restore): Handle 
5979         MONO_TYPE_OBJECT as well.
5980
5981 2004-05-28  Jackson Harper  <jackson@ximian.com>
5982
5983         * reflection.c: The modified type encoding was causing build
5984         problems. Reverted for now.
5985         
5986 2004-05-28  Jackson Harper  <jackson@ximian.com>
5987
5988         * reflection.c/h: Take an assembly ref so that we dont create
5989         fully qualified names when encoding types in the same assembly as
5990         the custom attribute being emitted.
5991         * appdomain.c: Increment version number.
5992         
5993 2004-05-26  Duncan Mak  <duncan@ximian.com>
5994
5995         * icall.c
5996         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5997         Set the full version number (major, minor, build, revision).
5998
5999 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
6000
6001         * marshal.c (emit_struct_conv): increment src/dst after blit
6002         (mono_marshal_get_managed_wrapper,
6003         mono_marshal_get_native_wrapper): make sure we have marshalling
6004         info before marshalling params (info computation affects
6005         blittable)
6006
6007         * class.c (class_compute_field_layout): correctly deal with
6008         blittable
6009         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
6010         value types (as per what windows dows by default)
6011         (mono_class_setup_mono_type): System.ValueType is blittable
6012         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
6013         blittable
6014
6015         * marshal.c (mono_marshal_load_type_info): flag types  as
6016         non-blittable if the native layout doesn't match the managed
6017         layout
6018
6019 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6020
6021         * appdomain.c: don't add stuff in the private search path that is
6022         above the application base. If application base is not set, there's
6023         no private search path.
6024
6025 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
6026
6027         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
6028         byref struct arguments in native->managed marshalling.
6029
6030 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
6031
6032         * marshal.c (mono_marshal_get_runtime_invoke): correctly
6033         cache methods using signature (special case for methods
6034         that are value type or string class)
6035         
6036         * image.c (mono_image_close): clean up allocated GSList's
6037         in runtime_invoke_cache.
6038
6039 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6040
6041         * mono-config.c: set the correct path for mono_cfg_dir on windows when
6042         there's no MONO_CFG_DIR environment variable defined.
6043
6044 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6045
6046         * threads.c: windows version must be >= 0x0500 to include OpenThread.
6047
6048 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
6049
6050         * threadpool.c: Really wait for 500ms after the async call, even if the wait
6051           is interrumped.
6052         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
6053           before waiting for it, and call CloseHandle after the wait to unref it.
6054           This will make sure that handles are not disposed too early.
6055
6056 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6057
6058         * appdomain.c:
6059         * appdomain.h:
6060         * icall.c: removed
6061         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
6062         needed now.
6063
6064         * object.c: se the application_base only for the domain that runs
6065         Main. Fixes bug #59216,
6066
6067 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6068
6069         * appdomain.c:
6070         * object.c: only the domain in which Main is run have
6071         SetupInformation.ConfigurationFile set, so moved a few lines from
6072         appdomain.c to object.c.
6073
6074 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6075
6076         * appdomain.c: we tried to load [name].(dll|exe), but according
6077         to bug #57710, we must also try [culture]/[name].(dll|exe) and
6078         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
6079         There's a test case attached to bug #58922.
6080
6081 2004-05-27  Dick Porter  <dick@ximian.com>
6082
6083         * icall.c:
6084         * file-io.c: Implemented icalls for locking and unlocking regions
6085         in a file.
6086         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
6087         FALSE on error (fixes both compiler warning and real bug.)
6088
6089 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
6090
6091         * culture-info-tables.h: reflecting locale-builder updates.
6092
6093           (Added missing ChangeLog entry for 05/26)
6094
6095 2004-05-27  Jackson Harper  <jackson@ximian.com>
6096
6097         * locales.c: Fix some cut and paste errors.
6098         
6099 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6100
6101         * mono-config.c: set the correct path for config. directory on windows.
6102
6103 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6104
6105         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
6106           on win32.
6107
6108 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
6109
6110         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
6111         from pinvoke functions.
6112         
6113         * marshal.c (mono_ftnptr_to_delegate): Implement this.
6114
6115 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6116
6117         * culture-info-tables.h: reflecting locale-builder updates.
6118
6119 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
6120
6121         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
6122         #59086.
6123
6124 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
6125
6126         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
6127         * icall.c: Modified icalls for RNG.
6128         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
6129         Windows (CryptoAPI).
6130
6131 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
6132
6133         * locales.c: Fix build.
6134
6135 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6136
6137         * culture-info-tables.h: reflecting locale-builder updates.
6138
6139 2004-05-25  Jackson Harper  <jackson@ximian.com>
6140
6141         * locales.c: When creating the current culture use the $LANGs
6142         specific culture. So DateTimeFormat and NumberFormat entries are created.
6143         
6144 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
6145
6146         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
6147         a char array as parameter.
6148
6149 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
6150
6151         * image.c: In mono_image_open(), always use an absolute path name to
6152           look for already loaded images.
6153
6154 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
6155
6156         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
6157         missing in the windows build (like older cygwin include files).
6158
6159 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
6160
6161         * icall.c: Fixed check for possible integer overflow in Buffer_
6162         BlockCopy icall. Replaced comments style // by /* */.
6163
6164 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
6165
6166         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
6167         
6168         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
6169         check after MONO_VTADDR. Fixes pinvoke2.exe.
6170
6171         * marshal.h marshal.c metadata.h: Add beginnings of support for
6172         ftnptr -> delegate marshalling.
6173
6174 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
6175
6176         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
6177         * threads.c: Fix warnings.
6178
6179 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
6180
6181         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
6182         * icall.c: Registered icalls for Suspend and Resume.
6183         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
6184           Thread.Abort.
6185         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
6186         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
6187         * process.c: Use WaitForSingleObjectEx.
6188         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
6189           checkpoints.
6190         * threads.c, threads.h: Make use of new Ex wait methods. Improved
6191           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
6192           for Suspend and Resume. Added new mono_thread_stop, used for stoping
6193           background threads. Added basic support for Abort in Windows.
6194           Start new threads using a managed delegate invoke wrapper. This wrapper
6195           has an interruption checkpoint that is needed since an interruption
6196           can be requested before the thread leaves the unmanaged code that starts 
6197           the thread.
6198         * marshal.c: Added interruption checkpoint after every native call, and
6199           also before managed calls for wrappers called from unmanaged code to
6200           go into managed code.
6201         * object.h: Added new field in MonoThread to keep track of interruption
6202           requests.
6203
6204 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
6205
6206         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
6207         calls.
6208
6209 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6210
6211         * appdomain.c:
6212         * assembly.c:
6213         * gc.c:
6214         * locales.c:
6215         * mono-config.c:
6216         * rand.c: getenv -> g_getenv (windows!)
6217
6218         * process.c: complete_path is also used on non-windows platforms.
6219
6220 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6221
6222         * icall.c: new signature for Process_Start.
6223
6224         * process.[ch]: new signature for Process_Start. If we're on windows
6225         and UseShellExecute is false, we have to search for the program by
6226         ourselves if we don't get a full path.
6227
6228 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
6229
6230         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
6231         marshalling and call CleanUpNativeData if needed. Fixes #58646.
6232
6233 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6234
6235         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
6236         Fixes bug #58373.
6237
6238 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6239
6240         * process.c: use double quotes to quote program name and arguments on
6241         windows. Fixes bug #58575.
6242
6243 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6244
6245         * file-io.c: don't return "." and ".." when using windows Find*File.
6246
6247 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
6248
6249         * marshal.c: Don't pass wrappers to message init because method 
6250         addressed used to lookup metadata. part of remoting[2|3] fix.
6251
6252 2004-05-15  Jackson Harper  <jackson@ximian.com>
6253
6254         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
6255         path is essentially the same as MONO_PATH except that it points to
6256         GACs instead of lib directories.
6257         * loader.h: The user gac is gone so we dont need function to
6258         enable/disable it.
6259         * mono-config.c: user gac option is now gone.
6260         
6261 2004-05-15  Jackson Harper  <jackson@ximian.com>
6262
6263         * culture-info.h: Make defines more consistent, add calendar data
6264         to the culture info table.
6265         * culture-info-tables.h: Add basic calendar data. Basically
6266         everyone gets default gregorian until all the data is
6267         updated.
6268         * locales.c: Use the new consistent defines. Set calendar data for
6269         culture info objects.
6270         * object.h: add a field for calendar data to CultureInfo
6271         
6272 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
6273
6274         * image.c: image->runtime_invoke_cache is keyed on signatures now.
6275         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
6276         a signature.
6277         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
6278         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
6279         an extra param that is the pointer of the method to invoke. The IL for
6280         the invoke method is no longer specific to the method, but to the
6281         signature of the method. Thus, we can share the same code for multiple
6282         methods. This reduces the number of methods that have to be compiled.
6283
6284 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
6285
6286         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
6287
6288         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6289
6290         * icall.c: Optimize Buffer.BlockCopy.
6291
6292 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6293
6294         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
6295         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
6296         quote). Changed them to "MMMM yyyy".
6297
6298 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
6299
6300         * rand.c
6301         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
6302
6303 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
6304
6305         * reflection.h: Updated after changes to managed structures.
6306
6307         * appdomain.c: Bump corlib version.
6308
6309 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6310
6311         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
6312         windows.
6313
6314 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6315
6316         * Makefile.am: link to ../os/libmonoos.la on windows.
6317
6318         * assembly.c:
6319                 -If MONO_DEBUG, warn about non-existing directories in
6320                 MONO_PATH.
6321                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
6322                 compile time variable.
6323                 -Removed init_default_path and call mono_set_rootdir from
6324                 libmonoos.a instead (windows only).
6325
6326         * assembly.h: declare mono_assembly_getrootdir().
6327
6328         * domain.c:
6329         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
6330
6331         * loader.c: s/getenv/g_getenv/
6332
6333 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
6334
6335         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
6336
6337         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
6338
6339         * metadata.h: Add new marshalling conversions.
6340
6341         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
6342         function.
6343
6344         * reflection.c (mono_reflection_get_type): Lookup the type in all
6345         modules of a multi-module assembly. Fixes #58291.
6346
6347 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
6348
6349         * threads.c: Before aborting a background, set the StopRequested
6350         state.  This avoids throwing the Abort exception.
6351         In mono_thread_manage, don't continue with the shutdown until all
6352         aborted threads have actually stopped.
6353
6354 2004-05-10  Jackson Harper  <jackson@ximian.com>
6355
6356         * locales.c: Remove the modifier from culture names.
6357         
6358 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6359
6360         * Makefile.am: monosn is not installed any more. It has been deprecated
6361         in favor of sn.
6362
6363 2004-05-07  Jackson Harper  <jackson@ximian.com>
6364
6365         * locales.c
6366         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
6367         Fix array construction, add bailout if the length is 0.
6368
6369 2004-05-07  Dick Porter  <dick@ximian.com>
6370
6371         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
6372         machine doesn't have a DNS entry.  Patch by Urs Muff
6373         (umuff@quark.com), fixes bug 57928.
6374
6375 2004-05-06  Jackson Harper  <jackson@ximian.com>
6376
6377         * reflection.c: Handle null PublicTokens properly. alloc mem for
6378         assembly names culture so we dont crash when freeing it.
6379         
6380 2004-05-06  Jackson Harper  <jackson@ximian.com>
6381
6382         * assembly.c: Check the usergac when loading with partial names.
6383         
6384 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
6385
6386         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
6387         does nothing for now (not required for Linux/Windows) but the class
6388         library can call it (and a newer or modified runtime could need it).
6389         * icall.c: Registred icall.
6390
6391 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6392
6393         * loader.c: prints a message on module loading error we set MONO_DEBUG
6394         environment variable.
6395
6396 2004-05-05  Jackson Harper  <jackson@ximian.com>
6397
6398         * appdomain.c: Handle PublicKeyToken=null properly.
6399         
6400 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
6401
6402         * environment.c|h: Added icall ves_icall_System_Environment_
6403         GetOSVersionString to get the current OS version as a string.
6404         * icall.c: Registred icall.
6405
6406 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
6407
6408         * object.c: in mono_object_get_virtual_method(), take into account that
6409         non-virtual methods don't have a slot in the vtable. Check needed when
6410         the object is a proxy.
6411
6412 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
6413
6414         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
6415         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
6416
6417         * object.c (mono_class_compute_gc_descriptor): Fix warning.
6418
6419         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
6420         passed when a valuetype is expected.
6421
6422         * object.c (mono_unhandled_exception): Only set the exit code if the
6423         exception happens in the main thread. Fixes thread5.exe.
6424
6425         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
6426         invalid names. Fixes #58047.
6427
6428 2004-05-03  Jackson Harper  <jackson@ximian.com>
6429
6430         * assembly.c: This line was committed accidently and is unneeded.
6431         
6432 2004-05-03  Jackson Harper  <jackson@ximian.com>
6433
6434         * icall.c: Add new icall for Assembly::LoadWithPartialName
6435         * assembly.c/.h: new function that probes the GAC to load partial
6436         assembly names by Paolo Molaro.
6437         
6438 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6439
6440         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
6441         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
6442         (type_get_fully_qualified_name): Added PublicKeyToken when building a
6443         full type name.
6444
6445 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6446
6447         * appdomain.c: fixed check for 'neutral' culture and removed warning.
6448         * reflection.c: fix bug when parsing a full type name and Version is not
6449         the last thing in the string.
6450
6451 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
6452
6453         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
6454         crashes when it is freed.
6455
6456 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6457
6458         * assembly.c: print the compat warning to stderr.
6459
6460 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
6461
6462         * assembly.c (mono_assembly_load_references): Add a compatibility
6463         hack to run old applications that might be still referencing the
6464         3300-based assemblies, only do this for System.xxx.
6465
6466 2004-05-01  Jackson Harper  <jackson@ximian.com>
6467
6468         * appdomain.c: If the culture is neutral we set it to "".
6469         
6470 2004-04-29  Jackson Harper  <jackson@ximian.com>
6471
6472         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
6473
6474 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
6475  
6476         * string-icalls.c: added low overhead function for copying chars
6477         * icall.c: added needed icall for the above function
6478  
6479 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6480
6481         * icall.c: fix return value of get_global_assembly_cache.  Implemented
6482         Environment.GetLogicalDrives.
6483
6484 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
6485
6486         * rand.c: try and talk to egd or prngd
6487         for random bytes if opening devices fail.
6488
6489 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
6490
6491         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
6492         alignment for the type using the native alignment of its members 
6493         instead of using klass->min_align.
6494
6495         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
6496
6497 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6498
6499         * file-io.c:
6500         * socket-io.c: added check for sys/aio.h.
6501
6502 2004-04-28  Dick Porter  <dick@ximian.com>
6503
6504         * threads.c: Don't abort a thread thats already aborting, when
6505         terminating everything.
6506
6507 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6508
6509         * icall.c: added 2 new async calls for Socket.
6510
6511         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
6512         IO on *nix systems.
6513
6514         * threadpool.c: removed unused variable.
6515
6516 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
6517
6518         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
6519
6520 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
6521
6522         * locales.c: put back string_invariant_tolower () and
6523         string_invariant_toupper ().
6524
6525 2004-04-26 David Waite <mass@akuma.org>
6526
6527         * file-io.h:
6528         * socket-io.h:
6529         * threads.h:
6530         * unicode.h: remove comma from end of enumeration declarations
6531
6532 2004-04-26 David Waite <mass@akuma.org>
6533
6534         * debug-mono-symfile.h:
6535         * decimal.c:
6536         * mono_debug.h:
6537         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
6538
6539
6540 2004-04-26  Jackson Harper  <jackson@ximian.com>
6541
6542         * appdomain.c: Increment version number.
6543         
6544 2004-04-26  Jackson Harper  <jackson@ximian.com>
6545
6546         * appdomain.c: Set assembly references public token value when
6547         PublicKeyToken is specified, not the hash_value. Free public token
6548         values when free assembly name data. Previously the public key
6549         token was hex decoded, however we are using hex encoded public key
6550         tokens, so this is not neccasary.
6551         * assembly.c: Lookup assemblies in the gac if their public token
6552         value is set. Add function to allow enabling user gac
6553         lookups. Specify whether or not the assembly was loaded from the
6554         GAC. Compare full assembly names when checking the cache for
6555         assemblies (Temporarily disabled see comment in code). Remove
6556         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
6557         specifies trace-loader they get extra info to stdout on the
6558         loading of assemblies.
6559         * image.h: Add a field for an assembly references public token
6560         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
6561         whether an assembly has been loaded from the GAC.
6562         * image.c: Remove a corlib -> mscorlib name mapping.
6563         * loader.h: Add function to enable/disable the user gac.
6564         * mono-config.c: Check if the usergac is enabled in the config
6565         file.
6566         * icall.c: New icall to determine whether or not an assembly has
6567         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
6568         * tabldefs.h: Add constant for assemblyref flag that specifies a
6569         full public key is used instead of a public token.
6570         * reflection.c: Remove mscorlib -> corlib mappings. Set
6571         PublicTokenValue instead of hash value. This value is a hex
6572         string so it does not need to be expanded.
6573
6574 2004-04-26  Martin Baulig  <martin@ximian.com>
6575
6576         * mono-debug-debugger.c (mono_debugger_initialize): Set
6577         `mono_debugger_initialized' before calling mono_debug_lock().
6578
6579 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
6580
6581         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
6582           InternalToUpper/InternalToLower.
6583         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
6584           removed invariant culture shortcut.  This is now done in managed code.
6585         * locales.c: (string_invariant_toupper/tolower) removed.
6586
6587 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6588
6589         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
6590         Added Poll internal call.
6591
6592         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
6593         call for Poll. Select was too heavy for polling a single socket.
6594
6595         * threadpool.[ch]: added mono_threadpool_cleanup.
6596         * threads.c: use it. Don't use Thread_Abort on windows.
6597
6598 2004-04-23  Martin Baulig  <martin@ximian.com>
6599
6600         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
6601
6602 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
6603
6604         * icall.c: Registred new icalls for key pair protection and added an
6605         icall for Environment.GetFolderPath on Windows.
6606         * security.c|h: Added new icalls for key pair protection.
6607
6608 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6609
6610         * socket-io.c: don't display the non-supported family warning for known
6611         families. Now this is not displayed on windows when checking support
6612         for IPv4/IPv6.
6613
6614 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6615
6616         * class.c: don't display the layout warning for static fields.
6617
6618 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
6619
6620         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
6621         * locales.c, locales.h: Added new icalls for culture-specific
6622         Char.ToLower and Char.ToUpper.
6623
6624 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6625
6626         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
6627         by David Waite.
6628
6629 2004-04-20  Martin Baulig  <martin@ximian.com>
6630
6631         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
6632         of the type name before passing it to mono_reflection_type_from_name().
6633
6634 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
6635
6636         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
6637         encodings here. Fixes #56965.
6638
6639 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
6640
6641         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
6642         fix test on strstr result not that I can see anything that
6643         relies on the result.
6644
6645 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
6646
6647         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
6648         Fixes #57081.
6649
6650         * marshal.c (mono_marshal_get_string_encoding): New helper function.
6651
6652         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
6653         function to determine which marshalling to use for strings. Fixes
6654         #56965.
6655
6656         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
6657
6658         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
6659
6660 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
6661
6662         * icall.c: #include mono-config.h
6663
6664 2004-04-15  Jackson Harper  <jackson@ximian.com>
6665
6666         * culture-info-tables.h: Fix date formats for en-US culture.
6667         
6668 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
6669
6670         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
6671         ThreadPool.SetMinThreads.
6672         * threadpool.c: Implemented ThreadPool.GetMinThreads and
6673         ThreadPool.SetMinThreads.
6674
6675 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
6676
6677         * mono-config.c: also load the .config file in the directory
6678         where the assembly was found.
6679
6680 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
6681
6682         * assembly.c: load per-assembly config files.
6683         * icall.c: decrapified code to get the config dir and moved to
6684         mono-config.c.
6685         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
6686         per-assembly config files. When doing a dll map lookup give precedence
6687         to the per-assembly data.
6688
6689 2004-04-14  Martin Baulig  <martin@ximian.com>
6690
6691         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
6692         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
6693         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
6694
6695         * mono-debugger-debugger.c: While the debugger is locked, remember
6696         whether the symbol tables have changes and send one single
6697         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
6698
6699 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
6700
6701         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
6702
6703         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
6704         function.
6705
6706         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
6707         account when marshalling string arrays. Fixes #56965.
6708
6709 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
6710
6711         * icall.c: Add new icalls mapping for security.
6712         * security.c|h: Add internal calls for WindowsIdentity,
6713         WindowsImpersonationContext and WindowsPrincipal.
6714
6715 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
6716
6717         * class.c: Added comment to ensure the System.MonoDummy class
6718         is removed when no longer necessary
6719
6720 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
6721
6722         * appdomain.c: Pass arguments to the bootstraping exceptions to
6723         minimize JITed methods at boot
6724
6725         * metadata.c (mono_exception_from_name_two_strings): Allow for the
6726         second string to be null.
6727
6728         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
6729         Change the protocol to minimize the JIT methods at startup.  Now
6730         it Returns the internal codepage, if the value of "int_code_page"
6731         is 1 at entry, and we can not compute a suitable code page
6732         number, returns the code page as a string.
6733
6734 2004-04-13  Jackson Harper  <jackson@ximian.com>
6735
6736         * culture-info-tables.h: Fix number of decimal digits for all
6737         english locales.
6738
6739 2004-04-13  Jackson Harper  <jackson@ximian.com>
6740
6741         * icall.c: Clairfy out of sync error message. It is not always
6742         your corlib that is out of sync.
6743
6744 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
6745
6746         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
6747         properties when only the set accessor is overriden. Fixes #55874.
6748
6749 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
6750
6751         * assembly.c (mono_assembly_load_references): Make this thread safe.
6752         Fixes #56327.
6753
6754 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
6755
6756         * monosn.c: Add missing initialization calls.
6757
6758 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
6759
6760         * locales.c:
6761         ves_icall_System_Globalization_CultureInfo_construct_number_format
6762         Fix g_assert so it compiles on fussier compilers re int/ptr
6763         mismatch
6764
6765 2004-04-08  Dick Porter  <dick@ximian.com>
6766
6767         * socket-io.h:
6768         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
6769         53992.  Also rearrange the code so that the internal calls return
6770         an error value and exceptions are thrown from managed code.
6771
6772         * icall.c: Add type info to the socket icalls.
6773
6774 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6775
6776         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
6777         owes me a beer.
6778
6779 2004-04-07  Martin Baulig  <martin@ximian.com>
6780
6781         * class.c (mono_class_from_generic_parameter): Don't default
6782         `klass->parent' to `mono_defaults.object_type'.
6783
6784 2004-04-07  Martin Baulig  <martin@ximian.com>
6785
6786         * reflection.c (mono_reflection_initialize_generic_parameter): Set
6787         `param->pklass->reflection_info'.       
6788
6789 2004-04-07  Jackson Harper  <jackson@ximian.com>
6790
6791         * culture-info-tables.h: Fix date separator symbol.
6792         
6793 2004-04-07  Martin Baulig  <martin@ximian.com>
6794
6795         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
6796         from System.Type to System.MonoType.
6797
6798 2004-04-07  Martin Baulig  <martin@ximian.com>
6799
6800         * reflection.h
6801         (MonoReflectionGenericParam): Added `has_reference_type' and
6802         `has_value_type' fields.
6803
6804         * reflection.c (mono_image_get_generic_param_info): Encode the
6805         correct flags if we have the `class' or `struct' constraint.
6806
6807 2004-04-07  Martin Baulig  <martin@ximian.com>
6808
6809         * reflection.h
6810         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
6811
6812 2004-04-07  Jackson Harper  <jackson@ximian.com>
6813
6814         * appdomain.c: Revert extra patches, just wanted to bump the
6815         version number.
6816         
6817 2004-04-07  Jackson Harper  <jackson@ximian.com>
6818
6819         * Makefile.am: Add culture-info private headers.
6820         * icall.c: Add new icalls for contructing locales.
6821         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
6822         * locales.h: Declare new culture info construction methods.
6823         * object.h: Add new fields used to avoid the CultureMap to
6824         MonoCultureInfo.
6825         * culture-info.h: Definition of structs used in the culture info
6826         tables.
6827         * culture-info-tables.h: Autogenerated tables that contain culture
6828         info data. This file was generated with the locale-builder tool.
6829         * appdomain.c: Incement corlib version number.
6830         
6831 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
6832
6833         * appdomain.c: (mono_runtime_init) move mono_thread_init
6834         to before mono_object_new calls so critical sections
6835         are initialized before use.
6836
6837 2004-04-07  Martin Baulig  <martin@ximian.com>
6838
6839         * icall.c
6840         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
6841         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
6842         (ves_icall_MonoGenericParam_initialize): Removed.
6843         (monogenericparam_icalls): Removed.
6844         (generictypeparambuilder_icalls): Added new table for
6845         System.Reflection.Emit.GenericTypeParameterBuilder.
6846
6847         * reflection.c
6848         (mono_reflection_define_generic_parameter): Removed.
6849         (mono_reflection_initialize_generic_parameter): This is now called
6850         from GenericTypeParameterBuilder's .ctor.
6851
6852 2004-04-06  Martin Baulig  <martin@ximian.com>
6853
6854         * class.c (mono_class_init): Don't inflate nested classes in a
6855         generic instance.
6856         (mono_type_get_name_recurse): Include the generic arguments for
6857         generic instances and generic type declarations.
6858         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
6859         (_mono_class_get_instantiation_name): Removed.
6860         (mono_class_create_generic): Always use `gklass->name' as our name.
6861
6862         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
6863
6864         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
6865         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
6866         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
6867         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
6868         closed generic methods here.
6869
6870         * reflection.c
6871         (mono_reflection_generic_inst_get_nested_types): Removed.
6872         (inflate_mono_method): Copy the generic parameters from the
6873         MonoMethodHeader into out MonoGenericMethod.
6874
6875 2004-04-06  Martin Baulig  <martin@ximian.com>
6876
6877         * row-indexes.h
6878         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
6879
6880         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
6881
6882         * reflection.c (build_compressed_metadata): If we have any entries
6883         in the GenericParam, MethodSpec or GenericParamConstraint tables,
6884         set the header version to 1.1.
6885
6886 2004-04-06  Martin Baulig  <martin@ximian.com>
6887
6888         * class.c (mono_class_init): If we're a generic instance,
6889         initialize our nested classes, too.
6890         (_mono_class_get_instantiation_name): Deal with the new `!%d'
6891         suffix. 
6892
6893 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6894
6895         * process.c: quote the argument passed to the shell on windows.
6896
6897 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
6898
6899         * threads.c (mono_alloc_special_static_data): Allow this to be
6900         called during startup.
6901
6902 2004-04-02  Martin Baulig  <martin@ximian.com>
6903
6904         * icall.c
6905         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
6906
6907 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
6908
6909         * icall.c: Fix build.
6910
6911 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6912
6913         * Makefile.am: Added security.c|h.
6914         * icall.c: Added icall for get_UserName;
6915         * security.c: New file for security related icalls. Added function
6916         get_UserName for System.Environment (fix #56144).
6917         * security.h: New. Header file for security.c
6918
6919 2004-04-02  Dick Porter  <dick@ximian.com>
6920
6921         * icall.c: Deleted the icalls that were obsoleted some time ago
6922         by the ICU string code, and which were mixed into the icall
6923         rearranging.  Fixes bug 55969.
6924
6925         * string-icalls.h: 
6926         * string-icalls.c: Deleted the code that those icalls reference.
6927
6928 2004-04-01  Martin Baulig  <martin@ximian.com>
6929
6930         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
6931
6932         * class.c (mono_class_from_generic_parameter): Don't set 
6933         TYPE_ATTRIBUTE_INTERFACE.
6934         (my_mono_class_from_generic_parameter): Likewise.
6935
6936 2004-04-01  Martin Baulig  <martin@ximian.com>
6937
6938         * loader.c (find_method): Added an optional `MonoClass *ic'
6939         argument to search in a specific interface.
6940         (mono_get_method_constrained): New public function.
6941
6942 2004-04-01  Martin Baulig  <martin@ximian.com>
6943
6944         * reflection.c (mono_image_get_generic_field_token): Use the
6945         `handleref' cache here.
6946
6947 2004-04-01  Martin Baulig  <martin@ximian.com>
6948
6949         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
6950
6951         * reflection.c (create_generic_typespec): Use the `typespec' hash
6952         here, not the `typeref' one.    
6953
6954 2004-04-01  Martin Baulig  <martin@ximian.com>
6955
6956         * class.c (mono_class_inflate_generic_type): Moved the
6957         functionality into a new static inflate_generic_type() which
6958         returns NULL if it didn't do anything.  Only increment the
6959         `mono_stats.inflated_type_count' if we actually inflated
6960         something.
6961         (mono_class_get_full): Check the classes type to see whether we
6962         need to inflate it; also inflate MONO_TYPE_(M)VAR.
6963
6964 2004-04-01  Jackson Harper  <jackson@ximian.com>
6965
6966         * reflection.c: Set culture for assembly references.
6967         
6968 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
6969
6970         * reflection.[ch], icall.[ch], Fix support for pinning variables.
6971
6972 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6973
6974         * assembly.c:
6975         (do_mono_assembly_open): the critical section also covers
6976         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
6977
6978 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6979
6980         * threads.c:
6981         (mono_manage_threads): abort the background threads when finishing.
6982         Fixes bug #47232.
6983
6984 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6985
6986         * gc.c: only close the done_event handle if there was no timeout.
6987         C-ified comments.
6988
6989 2004-03-30  Martin Baulig  <martin@ximian.com>
6990
6991         * icall.c (icall_entries): It's called "System.Activator", not
6992         "System.Activation".    
6993
6994 2004-03-30  Martin Baulig  <martin@ximian.com>
6995
6996         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
6997         (mono_class_create_from_typespec): Likewise.
6998
6999 2004-03-30  Martin Baulig  <martin@ximian.com>
7000
7001         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
7002         `has_ctor_constraint' and `initialized'.
7003
7004 2004-03-30  Martin Baulig  <martin@ximian.com>
7005
7006         * reflection.c (encode_new_constraint): New static function to add
7007         the constructor constraint attribute to a type parameter.
7008         (encode_constraints): Call encode_new_constraint() if necessary.
7009
7010         * reflection.h
7011         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
7012
7013         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
7014         
7015 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
7016
7017         * reflection.c, icall.c: add support for pinning variables. 
7018
7019 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
7020
7021         * marshal.c (mono_marshal_get_managed_wrapper):
7022         init bool local with zero rather than null.
7023
7024 2004-03-29  Martin Baulig  <martin@ximian.com>
7025
7026         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
7027         the "official" behavior here.
7028         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
7029
7030 2004-03-29  Martin Baulig  <martin@ximian.com>
7031
7032         * icall.c: Reflect latest API changes.
7033
7034 2004-03-29  Martin Baulig  <martin@ximian.com>
7035
7036         * loader.c (mono_get_method_from_token): Also call
7037         mono_metadata_load_generic_params () for abstract and interface
7038         methods; replace the type arguments in the method signature with
7039         the ones which are loaded from the metadata.
7040
7041 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
7042
7043         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
7044         of the lock is not the current thread. MS.NET don't do it, in spite of
7045         what the documentation says. See bug #56157.
7046
7047 2004-03-28  Martin Baulig  <martin@ximian.com>
7048
7049         * class.c (mono_class_init): Don't call init_properties() and
7050         init_events() for generic instances; set `prop->parent' when
7051         inflating properties.
7052
7053         * reflection.c (mono_generic_inst_get_object): Call
7054         `mono_class_init (ginst->klass)'.
7055         (mono_type_get_object): Only create a MonoGenericInst if your
7056         generic type is a TypeBuilder.
7057         (do_mono_reflection_bind_generic_parameters): Only set
7058         `ginst->is_dynamic' if our generic type is a TypeBuilder.
7059
7060 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
7061
7062         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
7063         Fixes #56091.
7064
7065 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7066
7067         * icall.c: added Kill_internal icall.
7068         * process.[ch]: added Kill_internal icall.
7069
7070 2004-03-25  Martin Baulig  <martin@ximian.com>
7071
7072         * class.h (MonoStats): Added `generic_instance_count',
7073         `inflated_method_count', `inflated_type_count' and
7074         `generics_metadata_size'.       
7075
7076 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7077
7078         * reflection.c: no warnings now.
7079
7080 2004-03-25  Martin Baulig  <martin@ximian.com>
7081
7082         * class.c (mono_class_get_full): New public function; does a
7083         mono_class_get(), but also takes a `MonoGenericContext *'.
7084
7085         * loader.c (mono_field_from_memberref): Renamed to
7086         `field_from_memberref', made static and added `MonoGenericContext *'
7087         argument.
7088         (mono_field_from_token): Added `MonoGenericInst *' argument.
7089         (method_from_memberef): Likewise.
7090         (mono_get_method_from_token): Likewise.
7091         (mono_get_method_full): New public function; does a
7092         mono_get_method(), but also takes a `MonoGenericContext *'.
7093
7094         * verify.c (mono_method_verify): Get the method's generic context
7095         and pass it to mono_field_from_token(), mono_get_method_full() and
7096         mono_class_get_full().
7097
7098 2004-03-25  Martin Baulig  <martin@ximian.com>
7099
7100         * class.c (mono_class_inflate_generic_type): Take a
7101         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
7102         `MonoGenericMethod *'.
7103
7104 2004-03-25  Martin Baulig  <martin@ximian.com>
7105
7106         * loader.h (MonoMethodInflated): Store the MonoGenericContext
7107         instead of the MonoGenericMethod here.
7108
7109 2004-03-25  Martin Baulig  <martin@ximian.com>
7110
7111         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
7112         each time we create a new MonoGenericInst, we also create a new
7113         context which points back to us.
7114
7115         * class.c (inflate_method): Use `ginst->context' instead of
7116         creating a new context.
7117
7118         * loader.c (method_from_memberref): Use
7119         `klass->generic_inst->context' instead of creating a new context.
7120
7121 2004-03-25  Martin Baulig  <martin@ximian.com>
7122
7123         * class.h (MonoGenericContext): New struct.
7124         (MonoGenericMethod): Removed `generic_inst'.
7125
7126         * class.c (mono_class_inflate_generic_method): Take a
7127         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
7128
7129 2004-03-25  Martin Baulig  <martin@ximian.com>
7130
7131         * loader.h (MonoMethodInflated): New typedef.
7132
7133         * metadata.h (MonoMethodSignature): Removed `gen_method', make
7134         `generic_param_count' consume just 30 bits, added `is_inflated'
7135         and `has_type_parameters' flags (one bit each).
7136
7137         * class.c (mono_class_inflate_generic_method): Create a
7138         MonoMethodInflated instead of a MonoMethodNormal and set
7139         `is_inflated' in the method signature.
7140
7141         * class.h (MonoGenericMethod): Removed `generic_method'.
7142
7143 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
7144
7145         * image.c: Make sure the name of a MonoImage is always an absolute path.
7146           This fixes bug #54415.
7147
7148 2004-03-24  Martin Baulig  <martin@ximian.com>
7149
7150         * class.c (mono_class_setup_vtable): If we're a generic instance,
7151         use our generic type's vtable size.
7152
7153 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
7154
7155         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
7156         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
7157         problems.
7158
7159 2004-03-23  Martin Baulig  <martin@ximian.com>
7160
7161         * class.h (MonoDynamicGenericInst): Added `int count_events' and
7162         `MonoEvent *events'.
7163
7164         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
7165         (typebuilder_icalls): Added "get_event_info"; calls
7166         mono_reflection_event_builder_get_event_info(). 
7167
7168         * reflection.c (mono_reflection_generic_inst_initialize): Added
7169         `MonoArray *events'.
7170         (mono_reflection_event_builder_get_event_info): New function.
7171
7172 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
7173
7174         * object.h: add mono_type_initialization_init
7175
7176         * object.c (mono_runtime_class_init): 
7177         implement class constructor synchronization rules
7178         to cope with threading issues.  
7179         add mono_type_initialization_init
7180
7181         * appdomain.c (mono_runtime_init): call 
7182         mono_type_initialization_init
7183
7184         * class.h: removing initializing field from MonoVTable
7185
7186 2004-03-23  Martin Baulig  <martin@ximian.com>
7187
7188         * class.c (my_mono_class_from_generic_parameter): Use
7189         `param->name' if it's not NULL. 
7190
7191 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
7192
7193         * class.c: do not insert non-virtual methods in the vtable.
7194         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
7195         that means the method is non-virtual. This never would have
7196         happened before.
7197
7198 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
7199
7200         * profiler.c: Added lock for accessing coverage_hash.
7201
7202 2004-03-22  Martin Baulig  <martin@ximian.com>
7203
7204         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
7205         `method->method->signature->generic_param_count != 0' to make it
7206         work for interface methods.
7207
7208 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7209
7210         * process.c: quote the string passed to the shell using g_shell_quote.
7211
7212 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7213
7214         * threads.c:
7215         (mono_threads_manage): don't remove the finalizer thread and self
7216         from the threads hash table so that mono_thread_manage can be called
7217         more than once.
7218
7219 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7220
7221         * process.c: quote the arguments when UseShellExecute is true. Fixes
7222         bug #55790.
7223
7224 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7225
7226         * threads.c: set mono_thread_detach as a cleanup routine for every
7227         thread. This way it's always executed upon thread termination, either
7228         aborted or finished normally. No more xsp hangs!
7229
7230 2004-03-17  Martin Baulig  <martin@ximian.com>
7231
7232         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
7233         `int count_nested' and a `MonoType **nested'.
7234
7235         * reflection.c (mono_reflection_bind_generic_parameters): Moved
7236         most of the functionality into a new static
7237         do_mono_reflection_bind_generic_parameters() and don't take a
7238         `MonoType *nested_in' argument any more.  Don't compute nested
7239         types here.
7240         (mono_reflection_generic_inst_get_nested_types): New public method
7241         to get nested types.
7242
7243         * class.c (mono_class_create_generic): Set `klass->nested_in' if
7244         we're a nested class.
7245
7246         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
7247         mono_reflection_generic_inst_get_nested_types() to compute the
7248         nested types.
7249
7250 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
7251
7252         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
7253         descriptive error message under windows.
7254         
7255 2004-03-17  Martin Baulig  <martin@ximian.com>
7256
7257         * class.c (dup_type): Added `const MonoType *original' argument;
7258         copy the attrs from the original type.
7259
7260 2004-03-17  Martin Baulig  <martin@ximian.com>
7261
7262         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
7263         `m->generic_inst_cache' here.
7264
7265 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
7266
7267         * exception.h exception.c: Add stack_overflow_exception.
7268
7269 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7270
7271         * threadpool.c:
7272         (overlapped_callback): call SetEvent *after* invoking the callback.
7273         No need to call CloseHandle.
7274
7275 2004-03-16  Martin Baulig  <martin@ximian.com>
7276
7277         * reflection.c (mono_image_get_fieldref_token): Take a
7278         `MonoReflectionField *' instead of a `MonoClassField *' and a
7279         `MonoClass *'; store the `MonoReflectionField *' in the hash.
7280
7281 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7282
7283         * appdomain.c: don't add the culture to the filename we're looking for
7284         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
7285
7286 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7287
7288         * locales.c: don't ignore symbols when doing case insensitive compares.
7289         Thanks Dick! Fixes bug #54046.
7290
7291         * threads.c: surround 'threads' usage with enter/leave in
7292         mono_thread_manage.
7293
7294 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
7295
7296         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
7297         implicitly marshalled as [Out]. Fixes #55450.
7298
7299         (mono_marshal_get_runtime_invoke): Zero out the result if there is
7300         an exception.
7301
7302 2004-03-16  Martin Baulig  <martin@ximian.com>
7303
7304         * class.c (mono_class_from_generic_parameter): Use the actual
7305         parameter name. 
7306
7307 2004-03-16  Martin Baulig  <martin@ximian.com>
7308
7309         * reflection.c (type_get_signature_size): New static function.
7310         Compues the size of the type in a method signature.
7311         (method_get_signature_size): New static function; calls
7312         type_get_signature_size() to compute the actual size of the
7313         method's signature.
7314         (method_encode_signature): Use method_get_signature_size() to get
7315         the signature's size rather than using `nparams * 10'.
7316
7317 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7318
7319         * file-io.h: define here WapiOverlapped on windows. I don't want the
7320         regular OVERLAPPED one.
7321
7322         * file-io.c:
7323         * threadpool.c: somehow, BindIoCompletionCallback is not found.
7324         Disabling AIO on windows.
7325
7326 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7327
7328         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
7329         bug #55385.
7330
7331 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7332
7333         * appdomain.c: upgraded corlib version.
7334
7335         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
7336         and BeginWrite. Allow opening files for asynchrnous operations.
7337
7338         * file-io.h: new struct that maps FileStreamAsyncResult.
7339         * icall.c: added new icalls.
7340         * process.[ch]: support setting child process environment variables
7341         and use the SHELL or COMSPEC when UseShellExecute is true.
7342
7343         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
7344         callback for async. IO is here and also BindHandle.
7345
7346         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
7347         from here.
7348
7349 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
7350
7351         * reflection.c (create_custom_attr): Allow len == 0.
7352
7353         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
7354         computation on big-endian machines.
7355
7356 2004-03-13  Martin Baulig  <martin@ximian.com>
7357
7358         * class.h (MonoGenericInst): Added `int count_ifaces'.
7359
7360         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
7361         `ginst->count_ifaces' instead `klass->interface_count' since we
7362         may get called before the vtable is created.
7363
7364         * loader.c (mono_method_get_param_names): If we're a generic
7365         instance, return and don't initialize the class.
7366
7367         * reflection.c (mono_reflection_setup_generic_class): Don't call
7368         ensure_runtime_vtable().
7369         (mono_reflection_bind_generic_parameters): Set
7370         `ginst->count_ifaces'.
7371
7372 2004-03-11  Jackson Harper <jackson@ximian.com>
7373
7374         * icall.c:
7375         * unicode.c:
7376         * unicode.h: Remove unused System.Char icalls.
7377         
7378 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
7379
7380         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
7381         code when we P/Invoke the first library in Windows.Forms, instead
7382         of when we first open the assembly.
7383
7384         * assembly.c: Drop the lookup from here.
7385
7386 2004-03-10  Martin Baulig  <martin@ximian.com>
7387
7388         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
7389         class for properties, fields and events.  Finally fixes #54945.
7390
7391 2004-03-10  Martin Baulig  <martin@ximian.com>
7392
7393         * metadata.c (mono_metadata_class_equal): New static function;
7394         checks whether two generic instances or two generic parameters are
7395         equal.
7396         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
7397         compare classes.        
7398
7399 2004-03-10  Martin Baulig  <martin@ximian.com>
7400
7401         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
7402
7403         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
7404         argument and write it into the `reflection_info' field.
7405
7406         * icall.c
7407         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
7408         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
7409
7410 2004-03-09  Jackson Harper  <jackson@ximian.com>
7411
7412         * char-conversions.h: use 8 bits for numeric data its all we need
7413         * icall.c: numeric data is only 8 bits now.
7414
7415 2004-03-09  Martin Baulig  <martin@ximian.com>
7416
7417         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
7418
7419         * class.c (init_properties, init_events): Initialize the new
7420         `parent' field.
7421
7422         * reflection.c (typebuilder_setup_properties): Likewise.
7423         (typebuilder_setup_events): Likewise.
7424
7425         * reflection.h (MonoEventInfo): Replaced `parent with
7426         `declaring_type' and `reflected_type'.
7427
7428         * icall.c (ves_icall_get_property_info): Distinguish between
7429         declaring and reflected type.
7430         (ves_icall_get_event_info): Likewise.
7431
7432 2004-03-09  Martin Baulig  <martin@ximian.com>
7433
7434         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
7435         (ves_icall_Type_GetField): Correctly set field->klass.
7436
7437 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
7438
7439         * loader.h: Fix warning.
7440
7441 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
7442
7443         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
7444         library routine if present.  Notice that it will still continue
7445         executing even if its missing, for those working on the Gtk#
7446         edition of Windows.Forms.
7447
7448         * assembly.c (do_mono_assembly_open): If loading the
7449         System.Windows.Forms call mono_loader_wini_init.
7450
7451 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
7452
7453         * class.h: Added MonoRemoteClass struct.
7454         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
7455         function for MonoStrings.
7456         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
7457         Added internal call for getting the proxy type.
7458         * marshal.c: Get the type of transparent proxies from its remote_class.
7459         Added methods that generate the IL for type checks and casts:
7460         mono_marshal_get_isinst, mono_marshal_get_castclass, 
7461         mono_marshal_get_proxy_cancast.
7462         * marshal.h: Declaration of the previous new methods.
7463         * object.c: Added new moethods for creating and updating MonoRemoteClass
7464         instances: mono_remote_class, mono_upgrade_remote_class, 
7465         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
7466         * verify.c: FIx transparent_proxy_fields layout.
7467         * appdomain.c: Bump corlib version.
7468
7469 2004-03-04  Jackson Harper  <jackson@ximian.com>
7470
7471         * icall.c: Add icall to access char conversion tables.
7472         * char-conversions.h: Character conversion tables.
7473         * Makefile.am: Add char-conversions.h private header file.
7474         
7475 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
7476
7477         * appdomain.c (unload_thread_main): Increase unloading timeout to
7478         10 sec as a temporary workaround for Nant problems.
7479
7480 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
7481
7482         * gc.c: Add checks for GC_enable and GC_disable.
7483
7484         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
7485         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
7486         (bug #54988).
7487         
7488 2004-02-27  Martin Baulig  <martin@ximian.com>
7489
7490         * reflection.c (mono_reflection_bind_generic_parameters): Take a
7491         `MonoReflectionType *' instead of a `MonoType *'.
7492
7493 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
7494
7495         * gc.c (run_finalize): Avoid finalizing the object representing the
7496         finalizer thread.
7497         (finalizer_thread): Fix warning.
7498
7499 2004-02-25  Martin Baulig  <martin@ximian.com>
7500
7501         * class.c (_mono_class_get_instantiation_name): Added `int offset'
7502         argument for nested types.
7503         (mono_class_create_generic): Added support for nested generictypes.
7504
7505         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
7506         `GList *nested'.
7507
7508         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
7509
7510         * reflection.c (method_encode_signature): Increase the minimum
7511         value of `size' from 10 to 11.
7512         (mono_reflection_bind_generic_parameters): Take `int type_argc'
7513         and `MonoType **types' arguments instead of the `MonoArray
7514         *types'; added `MonoType *nested_in'.  Recursively instantiate
7515         nested classes. 
7516
7517 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
7518
7519         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
7520         stack_overflow_ex members which are used by exception handling.
7521
7522         * appdomain.c (mono_runtime_init): Initialize the new members.
7523
7524         * gc.c (mono_gc_enable): New helper function.
7525         * gc.c (mono_gc_disable): New helper function.
7526
7527 2004-02-23  Martin Baulig  <martin@ximian.com>
7528
7529         * icall.c: I must have been really stupid - make it actually work
7530         this time ;-)
7531
7532 2004-02-23  Martin Baulig  <martin@ximian.com>
7533
7534         * loader.c (method_from_memberref): Only inflate the method if
7535         it's in another klass.
7536
7537 2004-02-23  Martin Baulig  <martin@ximian.com>
7538
7539         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
7540         (mono_class_init): If we're a generic instance and an interface,
7541         compute `class->interface_id'; also create `class->interfaces'
7542         here and inflate them.
7543
7544         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
7545         `ginst->is_open'.
7546         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
7547
7548         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
7549
7550 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
7551
7552         * reflection.c (method_encode_code): Improved the error message
7553         generated by the exception.
7554
7555 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7556
7557         * icall.c: Martin did not do what he said in the ChangeLog for
7558         2004-02-18, but put back the changes for properties and events.
7559         Commenting those changes out again and adding comment to bug #54518.
7560         
7561         * process.c: removed warning.
7562
7563 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
7564
7565         * marshal.c (emit_struct_conv): Print an error message instead of
7566         asserting when a type does not have the StructLayout attribute.
7567
7568 2004-02-20  Martin Baulig  <martin@ximian.com>
7569
7570         * reflection.c (mono_type_get_object): Also use the cache for
7571         generic instances.
7572         (mono_reflection_bind_generic_parameters): Always compute
7573         `ginst->ifaces'.        
7574
7575 2004-02-20  Martin Baulig  <martin@ximian.com>
7576
7577         * class.h (MonoGenericMethod): Removed `klass'.
7578
7579         * class.c (mono_class_inflate_generic_method): Added `MonoClass
7580         *klass' argument.
7581
7582 2004-02-20  Martin Baulig  <martin@ximian.com>
7583
7584         * reflection.c (method_encode_methodspec): Actually use the
7585         uninflated signature for the memberref.
7586
7587 2004-02-20  Martin Baulig  <martin@ximian.com>
7588
7589         * class.h (MonoGenericMethod): Removed `declaring'.
7590
7591         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
7592         is NULL, compute it here.
7593
7594 2004-02-20  Martin Baulig  <martin@ximian.com>
7595
7596         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
7597
7598         * metadata.c (mono_metadata_generic_inst_hash): New method.
7599         (mono_metadata_generic_inst_equal): New method.
7600
7601         * reflection.c (mono_reflection_bind_generic_parameters): Use the
7602         `klass->image->generic_inst_cache' cache to avoid creating
7603         duplicate MonoGenericInst's.
7604
7605         * class.c (mono_class_inflate_generic_type): Use the cache.
7606
7607 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7608
7609         * object.c: fixed gc descriptor calculation for embedded valuetypes.
7610
7611 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7612
7613         * icall.c: added Socket.WSAIoctl icall.
7614
7615         * socket-io.[ch]: implemented
7616         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
7617
7618 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
7619
7620         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
7621
7622 2004-02-18  Urs C Muff  <umuff@quark.com>
7623
7624         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
7625         this work on PPC and other big-endian architectures.
7626
7627         * debug-mono-symfile.h: Prepended the names of all the `guint32'
7628         fields with an underscore to make sure they're only accessed by
7629         the read32() macro.
7630
7631 2004-02-18  Martin Baulig  <martin@ximian.com>
7632
7633         * icall.c: Put the klass->refclass changes back for methods and
7634         fields, but not for properties and events.  We're currently not
7635         distinguishing between DeclaringType and ReflectedType for
7636         properties and events, that's what caused the regressions.
7637
7638 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7639
7640         * object.c:
7641         (mono_async_result_new): the handle can be NULL.
7642
7643         * threadpool.c: Use an event instead of a semaphore, don't initialize
7644         it until needed. This saves quite a few semaphores from being created
7645         when using the threadpool.
7646
7647 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
7648
7649         * object.c (mono_string_is_interned_lookup): Fix interning of long
7650         strings. Fixes #54473.
7651
7652         * domain.c (ldstr_equal): Optimize if the two strings are equal.
7653
7654         * icall.c: Revert the klass->refclass changes since they introduce
7655         regressions (bug #54518).
7656
7657 2004-02-18  Martin Baulig  <martin@ximian.com>
7658
7659         * class.c (mono_class_init): If we're a generic instance and don't
7660         come from a TypeBuilder, inflate our members here.
7661         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
7662         (mono_class_create_generic): New public method.
7663         (mono_class_initialize_generic): Removed.
7664         (get_instantiation_name): Renamed to
7665         _mono_class_get_instantiation_name() and made it public.
7666
7667 2004-02-18  Martin Baulig  <martin@ximian.com>
7668
7669         * class.c (mono_class_inflate_generic_type): Clear the new
7670         instance's `nginst->klass' when inflating a generic instance.
7671         (mono_class_is_subclass_of): Added (basic) support for generic
7672         instances.
7673
7674 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
7675
7676         * appdomain.h, domain.c: use a MonoCodeManager instead of a
7677         MonoMempool to hold compiled native code.
7678
7679 2004-02-17  Martin Baulig  <martin@ximian.com>
7680
7681         * class.h (MonoDynamicGenericInst): Added `count_properties' and
7682         `properties'.
7683
7684         * reflection.c (mono_reflection_generic_inst_initialize): Added
7685         `MonoArray *properties' argument.
7686
7687         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
7688
7689 2004-02-17  Martin Baulig  <martin@ximian.com>
7690
7691         * icall.c (ves_icall_Type_GetFields): Renamed to
7692         ves_icall_Type_GetFields_internal() and added a
7693         `MonoReflectionType *rtype' argument; pass it to
7694         mono_field_get_object() to set the field's "reflected" type.
7695         (ves_icall_Type_GetConstructors): Likewise.
7696         (ves_icall_Type_GetEvents): Likewise.
7697         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
7698         argument; pass it to mono_method_get_object() to set the method's
7699         "reflected" type.       
7700
7701 2004-02-17  Martin Baulig  <martin@ximian.com>
7702
7703         * class.h (MonoDynamicGenericInst): New type.
7704         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
7705
7706         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
7707         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
7708         (ves_icall_MonoGenericInst_GetFields): New interncall.
7709
7710         * class.c (mono_class_from_generic): Don't call
7711         mono_class_initialize_generic() if this is a dynamic instance;
7712         ie. it's being created from a TypeBuilder.
7713         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
7714         `class->byval_arg.type'.
7715
7716         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
7717         to `inflate_method' and made static.
7718         (mono_reflection_inflate_field): Removed.
7719         (mono_reflection_generic_inst_initialize): New public method.
7720
7721         * reflection.h (MonoReflectionGenericInst): Removed `methods',
7722         `ctors' and `fields'; added `initialized'.
7723
7724 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
7725
7726         * debug-helpers.c (mono_method_full_name): Fix output for empty
7727         namespaces.
7728
7729 2004-02-12  Martin Baulig  <martin@ximian.com>
7730
7731         * class.h (MonoClassField): Added `MonoType *generic_type'.
7732
7733         * reflection.c (mono_image_get_fieldref_token): Added support for
7734         instantiated generic types.
7735         (field_encode_inflated_field): Removed.
7736         (mono_image_get_inflated_field_token): Removed.
7737         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
7738
7739         * reflection.h (MonoReflectionInflatedField): Removed.
7740
7741 2004-02-12  Martin Baulig  <martin@ximian.com>
7742
7743         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
7744         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
7745
7746         * reflection.c (mono_image_get_methodspec_token): Take a
7747         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
7748         (mono_image_create_token): Check whether we have a
7749         `method->signature->gen_method' and call
7750         mono_image_get_methodspec_token() if appropriate.
7751         (inflated_method_get_object): Removed.
7752         (mono_reflection_bind_generic_method_parameters): Return a
7753         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
7754         (mono_reflection_inflate_method_or_ctor): Likewise.
7755
7756         * reflection.h (MonoReflectionInflatedMethod): Removed.
7757
7758 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
7759
7760         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
7761         for custom valuetype marshalling.
7762
7763         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
7764
7765 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7766
7767         * icall.c: fixed WSAGetLastError_internal name.
7768
7769 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
7770
7771         * threads.c (mono_thread_attach): Allow this to be called multiple
7772         times for a thread.
7773         
7774         * threads.c (build_wait_tids): Do not wait for ourselves.
7775
7776         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
7777         appdomain list is empty.
7778
7779         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
7780         memory returned by mono_string_builder_to_utf16, since it points into
7781         managed memory. Thanks to Bernie Solomon for noticing this.
7782
7783         * icall.c: Add AppDomainSetup icalls.
7784
7785         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
7786
7787         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
7788         types.
7789
7790         * reflection.c (reflection_methodbuilder_to_mono_method): Save
7791         custom attributes to the method_aux struct. Also fix array indexes etc.
7792
7793         * loader.c (mono_method_get_param_names): Make dynamic case work again.
7794         
7795 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
7796
7797         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
7798         (both static and runtime) and reduce startup time.
7799
7800 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
7801
7802         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
7803         AsAny marshalling conversion instead of crashing.
7804
7805         * marshal.c: Fix warnings.
7806
7807 2004-02-09  Martin Baulig  <martin@ximian.com>
7808
7809         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
7810
7811         * reflection.h (MonoReflectionInflatedMethod): Removed the
7812         `declaring' field, it's now in the unmanaged MonoGenericMethod.
7813
7814         * reflection.c (method_encode_methodspec): Removed the `method'
7815         argument; we get it from `gmethod->declaring'.
7816         (inflated_method_get_object): Removed the `declaring' argument.
7817
7818 2004-02-09  Martin Baulig  <martin@ximian.com>
7819
7820         * class.h (MonoGenericMethod): New type.
7821         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
7822         `generic_method'.
7823
7824         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
7825         a `MonoGenericMethod *gen_method' one.
7826
7827         * class.c (mono_class_inflate_generic_type): Take an additional
7828         `MonoGenericMethod * argument.  This is only non-NULL if we're
7829         inflating types for a generic method.   
7830         (mono_class_inflate_generic_signature): Renamed to
7831         inflate_generic_signature() and made static; take a
7832         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
7833         (inflate_generic_header): Take a `MonoGenericMethod *' argument
7834         instead of a `MonoGenericInst *' one.
7835         (mono_class_inflate_generic_method): Likewise.
7836
7837         * reflection.c (encode_generic_method_sig): Take a
7838         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
7839         (method_encode_methodspec): Likewise.
7840         (inflated_method_get_object): Likewise. 
7841
7842         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
7843         field with a `MonoGenericMethod *gmethod' one.  
7844
7845 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
7846
7847         * class.h (mono_class_has_parent): add parens to expansion
7848         so you can ! this.
7849
7850 2004-02-08  Martin Baulig  <martin@ximian.com>
7851
7852         * image.h (MonoImage): Removed `generics_cache'.
7853
7854         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
7855         instead of a `MonoType *' argument; removed the `inflate_methods'
7856         argument.  Don't inflate methods here.
7857
7858         * loader.c (find_method): If it's a generic instance, call
7859         mono_class_init() on the `sclass->generic_inst->generic_type'.
7860
7861         * metadata.c (mono_type_size): Make this work on uninitialized
7862         generic instances; call it on the `ginst->generic_type's class.
7863
7864         * reflection.c (mono_reflection_bind_generic_parameters): Call
7865         mono_class_from_generic() to create the `ginst->klass'.
7866
7867 2004-02-08  Martin Baulig  <martin@ximian.com>
7868
7869         * class.h (MonoClass): Changed type of `generic_inst' from
7870         `MonoType *' to `MonoGenericInst *'.
7871
7872 2004-02-08  Martin Baulig  <martin@ximian.com>
7873
7874         * icall.c (ves_icall_Type_BindGenericParameters): Just call
7875         mono_type_get_object(), this is now creating a `MonoGenericInst'
7876         for MONO_TYPE_GENERICINST.
7877         (ves_icall_MonoGenericInst_GetParentType): Likewise.
7878         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
7879
7880         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
7881         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
7882         (inflated_method_get_object): Added `MonoClass *refclass' argument.
7883         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
7884         and reflected type.
7885
7886         * reflection.h (MonoReflectionInflatedMethod): Removed
7887         `declaring_type' and `reflected_type'.
7888
7889 2004-02-08  Martin Baulig  <martin@ximian.com>
7890
7891         * class.h (MonoGenericInst): Added `MonoType *parent' and
7892         `MonoType **ifaces'.
7893
7894         * reflection.h (MonoReflectionGenericInst): Removed `klass',
7895         `parent' and `interfaces'.
7896
7897         * reflection.c (mono_reflection_bind_generic_parameters): Take a
7898         `MonoType *' argument and return a `MonoType *'.
7899
7900         * icall.c
7901         (ves_icall_MonoGenericInst_GetParentType): New interncall.
7902         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
7903
7904 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
7905
7906         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
7907         valuetype marshalling.
7908
7909 2004-02-06  Martin Baulig  <martin@ximian.com>
7910
7911         * class.c
7912         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
7913         (my_mono_class_from_generic_parameter): Likewise.
7914
7915 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
7916
7917         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
7918         contents of the symbol files lazily.
7919
7920         * object.h (MonoThread): Add 'name' and 'name_len' fields.
7921
7922         * threads.h threads.c icall.c: New icalls for getting and setting the
7923         threads name.
7924
7925 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
7926
7927         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
7928         Raise an exception when the domain is not found.
7929
7930 2004-02-03  Martin Baulig  <martin@ximian.com>
7931
7932         * reflection.c (mono_image_get_methodspec_token): Use the
7933         uninflated signature; fixes gen-33.
7934
7935 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
7936
7937         * gc.c threads.c: Make the finalizer thread a normal managed thread so
7938         the finalizer code can use thread functionality.
7939
7940         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
7941         the finalizer thread.
7942
7943         * threads.c: Make some functions more robust.
7944
7945         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
7946
7947         * metadata.h: Add new marshalling conventions.
7948
7949         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
7950         stringbuilder marshalling. Fixes #53700.
7951
7952         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
7953
7954         * reflection.c (mono_image_get_type_info): Save declarative security
7955         info.
7956
7957         * reflection.c (mono_image_get_field_info): Handle uninitialized 
7958         unmanaged fields as well.
7959
7960         * appdomain.c: Bump corlib version.
7961
7962 2004-02-01  Martin Baulig  <martin@ximian.com>
7963
7964         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
7965         method type arguments.  
7966
7967 2004-01-30  Duncan Mak  <duncan@ximian.com>
7968
7969         * marshal.h: Add prototype for
7970         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
7971         and
7972         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
7973         fix the build.
7974
7975 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
7976
7977         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
7978         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
7979
7980 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
7981
7982         * marshal.c (mono_marshal_get_native_wrapper): Add support for
7983         custom marshalling of valuetypes.
7984
7985         * marshal.c: Fix some warnings.
7986
7987 2004-01-29  Martin Baulig  <martin@ximian.com>
7988
7989         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
7990         for generic method parameters.
7991
7992         * reflection.c (method_encode_methodspec): Write the uninflated
7993         signature into the methodspec table.
7994         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
7995         is always the uninflated method.
7996         (reflection_methodbuilder_to_mono_method): Copy the generic
7997         parameters from the MethodBuilder into `header->gen_params'.
7998
7999 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
8000
8001         * class.c (mono_class_from_generic_parameter): Fix warning.
8002
8003 2004-01-27  Martin Baulig  <martin@ximian.com>
8004
8005         * class.c (mono_class_from_generic_parameter): Don't create
8006         `klass->methods' here.  
8007
8008 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
8009
8010         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
8011         extension since it does not work with libraries named lib<FOO>.dll.so.
8012
8013 2004-01-25  Martin Baulig  <martin@ximian.com>
8014
8015         * class.c (mono_class_inflate_generic_type): Added support for
8016         MONO_TYPE_GENERICINST.
8017
8018         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
8019         inflate methods on open constructed types.      
8020
8021 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8022
8023         * object.c: fire ProcessExit event in the root AppDomain after running
8024         Main. Fixes bug #53299.
8025
8026 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
8027
8028         * socket-io.c: include the new socket-wrappers.h header.
8029         Use the wrappers instead of the unix socket functions to make the code
8030         more clear.
8031
8032 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
8033
8034         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
8035
8036         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
8037         Fixes #22532.
8038
8039 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
8040
8041         * reflection.c (mono_image_create_pefile): Handle the case when the
8042         entry point is not a MethodBuilder.
8043
8044         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
8045         field to ReflectionMethod since it is not allways a builder.
8046
8047         * reflection.c (type_get_fully_qualified_name): New helper function to
8048         return the fully qualified name of a type.
8049
8050         * reflection.c (encode_marshal_blob): Always emit the fully qualified
8051         type name for custom marshallers.
8052
8053         * reflection.c (mono_marshal_spec_from_builder): Ditto.
8054
8055         * class.c (mono_class_setup_vtable): If a parent class already 
8056         implements an interface, use the implementing methods from that class.
8057         Fixes #53148.
8058
8059 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8060
8061         * threadpool.c: just return instead of ExitThread to allow for thread
8062         clean up earlier.
8063
8064 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
8065
8066         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
8067         when closing resource modules.
8068
8069         * reflection.c (mono_image_create_pefile): Handle the case when the
8070         entry point is not a MethodBuilder.
8071
8072         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
8073         field to ReflectionMethod since it is not allways a builder.
8074
8075 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8076
8077         * marshal.c (mono_marshal_get_managed_wrapper): 
8078         mono_marshal_alloc takes native int so CONV_I
8079         the arg for 64bits.
8080
8081 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
8082
8083         * reflection.c (fixup_cattrs): New function to fixup the methoddef
8084         tokens in the cattr table. Fixes #53108.
8085
8086 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8087
8088         * loader.c: don't trim ".dll" before looking up in the config file.
8089         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
8090
8091 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
8092
8093         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
8094         Return the module which contains the resource as well.
8095         (ves_icall_System_Reflection_Module_Close): New icall.
8096
8097         * appdomain.c: Bump corlib version number.
8098
8099         * image.c (mono_image_addref): New public function.
8100
8101         * assembly.c: Call mono_image_addref.
8102
8103         * reflection.c (mono_module_get_object): Increase reference count of 
8104         the image.
8105
8106         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
8107         Fixes #22532.
8108
8109         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
8110         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
8111         proper exceptions on DllImport problems.
8112
8113 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
8114
8115         * class.c, metadata.c: eliminate CSIZE macro.
8116
8117 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
8118
8119         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
8120         * object.h: Added async_callback field in MonoAsyncResult.
8121         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
8122         * verify.c: Added async_callback in MonoAsyncResult layout.
8123
8124 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
8125
8126         * reflection.c (mono_reflection_get_custom_attrs): Add support
8127         for Modules.
8128
8129 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
8130
8131         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
8132         marshalling.
8133         (mono_marshal_method_from_wrapper): Add null pointer check.
8134
8135 2004-01-16  Martin Baulig  <martin@ximian.com>
8136
8137         * debug-mono-symfile.h: Set version number to 36 and reflect
8138         latest symbol writer changes.
8139
8140 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
8141
8142         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
8143         multi-dimensional arrays.
8144         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
8145         (mono_class_from_mono_type): Use bounded_array_class_get.
8146         
8147         * class.c (mono_bounded_array_class_get): New function which takes
8148         a 'bounded' bool argument to distinguish vectors from one dimensional
8149         arrays.
8150
8151         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
8152         bounded_array_class_get if the array has bounds.
8153
8154         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
8155         Search modules loaded using AssemblyBuilder:AddModule as well.
8156
8157 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8158
8159         * appdomain.c: increased corlib version.
8160         * filewatcher.c: removed g_print.
8161         * icall.c:
8162         (get_property_info): only allocate what is actually requested.
8163         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
8164
8165 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8166
8167         * Makefile.am: added filewatcher.[ch]
8168         * filewatcher.[ch]: FileSystemWatcher runtime support.
8169         * icall.c: added new FSW icalls.
8170
8171 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
8172
8173         * string-icalls.c: fix stringbuilder regression as suggested by
8174         Iain McCoy <iain@mccoy.id.au>.
8175
8176 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
8177
8178         * process.c (process_read_stringtable_block): Recognize '007f' as
8179         a language neutral stringtable block.
8180
8181 2004-01-12  Patrik Torstensson
8182
8183         * object.h (MonoStringBuilder) : Changed layout to support our
8184         new stringbuilder class.
8185         * marshal.c: Change marshalling to support the new layout of 
8186         string builder.
8187         * appdomain.c: increased version number because new layout of
8188         string builder.
8189
8190 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
8191
8192         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
8193         assembly name as an string instead of an AssemblyName, since it is
8194         easier to extract info from it.
8195
8196         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
8197         the culture subdirectories too. Fixes #52231.
8198
8199 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8200
8201         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
8202         It takes 2 new parameters with an optional name for the method to look
8203         for and case ignoring info.
8204
8205         * threadpool.c: removed unused variable.
8206
8207 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8208
8209         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
8210         It takes 2 new parameters with an optional name for the property to look
8211         for and case ignoring info.
8212         Fixes bug #52753.
8213
8214 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
8215
8216         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
8217         Fix #52451.
8218
8219 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8220
8221         * appdomain.c:
8222         * assembly.c: escape the uri before passing it to g_filename_from_uri.
8223         Fixes bug #52630.
8224
8225 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
8226
8227         * reflection.c: Add support for more than one unmanaged resource.
8228
8229         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
8230         in field->def_value, as done in all other cases.
8231
8232         * reflection.c (mono_reflection_get_custom_attrs): Add support for
8233         TypeBuilders.
8234
8235         * reflection.c (mono_reflection_create_runtime_class): Remove 
8236         errorneous assignment to klass->element_class, since it is already
8237         done in mono_reflection_setup_internal_class.
8238
8239 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8240
8241         * gc.c: added missing LeaveCriticalSection.
8242         * icall.c: indented a couple of lines.
8243         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
8244         if we call EndInvoke inside a callback. Fixes bug #52601.
8245
8246 2004-01-07  Martin Baulig  <martin@ximian.com>
8247
8248         * mono-debug-debugger.h
8249         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
8250
8251 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
8252
8253         * appdomain.c: Use messages in NotImplementedException.
8254
8255         * exception.c (mono_get_exception_not_implemented): Now this takes
8256         a message argument.
8257
8258         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
8259         exception instead of g_asserting an aborting when something is not
8260         implemented.
8261
8262         Add some inline docs.
8263
8264 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
8265
8266         * reflection.h: Update after changes to object layout.
8267
8268         * reflection.c: Implement saving of unmanaged aka win32 resources.
8269
8270         * appdomain.c: Bump version number.
8271
8272         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
8273         Handle missing domains gracefully.
8274
8275 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
8276
8277         * file-io.c : On Windows, there are much more invalid_path_chars.
8278
8279 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
8280
8281         * class.h, object.c: prepare for GetType () speedup.
8282
8283 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
8284
8285         * profiler.c: workaround for --profile null reference exception on
8286           cygwin. Patch by Patrik Torstensson.
8287
8288 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
8289
8290         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
8291         make work for unaligned access.
8292
8293 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
8294
8295         * class.c: small cleanup (class->fields [i] -> field).
8296         * image.c: check address of metadata is valid.
8297
8298 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
8299
8300         * assembly.h assembly.c (mono_assembly_loaded): New public function to
8301         search the list of loaded assemblies.
8302
8303         * reflection.c (mono_reflection_type_from_name): Use 
8304         mono_assembly_loaded instead of mono_image_loaded.
8305
8306         * reflection.c: Fix warnings.
8307
8308 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
8309
8310         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
8311         is dynamic. This is needed since an assembly can contain both dynamic and
8312         non-dynamic images.
8313
8314         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
8315         assembly->dynamic.
8316
8317         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
8318
8319         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
8320         to store modules loaded using AddModule.
8321
8322         * reflection.c (mono_image_fill_file_table): Generalize this so it works
8323         on Modules.
8324
8325         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
8326
8327         * reflection.c (mono_image_fill_export_table_from_module): New function to
8328         fill out the EXPORTEDTYPES table from a module.
8329
8330         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
8331         into a separate function. Also handle loaded non-dynamic modules.
8332
8333         * reflection.c (mono_image_basic_init): Fix memory allocation.
8334
8335         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8336
8337         * assembly.c (mono_assembly_load_references): Make this public.
8338
8339 2003-12-19  Martin Baulig  <martin@ximian.com>
8340
8341         * class.c (mono_class_initialize_generic): Made this static, take
8342         a `MonoGenericInst *' instead of a `MonoClass *'.
8343         (mono_class_from_generic): Call mono_class_initialize_generic()
8344         unless we're already initialized or being called from
8345         do_mono_metadata_parse_generic_inst().
8346
8347         * class.h (MonoGenericInst): Added `initialized' and
8348         `init_pending' flags.
8349
8350         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
8351         `mono_class_init (gklass)' or mono_class_initialize_generic()
8352         here; set `generic_inst->init_pending' while parsing the
8353         `type_argv'.
8354
8355 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
8356
8357         * locales.c: include string.h for memxxx prototypes
8358
8359 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
8360
8361         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
8362         constructor when accessing literal fields.
8363
8364 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
8365
8366         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8367
8368         * reflection.c (assembly_add_resource_manifest): New function to fill
8369         the MANIFESTRESOURCE table.
8370
8371         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
8372
8373         * reflection.h: Update to changes in class layout.
8374
8375         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
8376         Reenable call to mono_runtime_is_shutting_down ().
8377
8378         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
8379         determine if the runtime is shutting down.
8380
8381 2003-12-16  Jackson Harper <jackson@ximian.com>
8382
8383         * icall.c: comment out call to mono_runtime_is_shutting_down to
8384         fix build.
8385         
8386 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
8387
8388         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
8389         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
8390
8391 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
8392
8393         * reflection.c: move definition of swap_with_size
8394         to before its first call
8395
8396 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
8397
8398         * appdomain.c (mono_runtime_is_shutting_down): New public function.
8399
8400         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
8401         icall.
8402
8403         * object.c: Fix warnings.
8404
8405         * icall.c (ves_icall_Type_Get...): Only consider inherited static
8406         members if FlattenHierarchy is set.
8407
8408         * reflection.c (mono_image_add_decl_security): New function to emit
8409         declarative security.
8410
8411         * reflection.h reflection.c: Add support for declarative security.
8412
8413         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
8414         
8415 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
8416
8417         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
8418         
8419         * appdomain.c verify.c: Moved corlib version checking into its own
8420         function in appdomain.c since it needs to create vtables etc.
8421
8422 2003-12-13  Patrik Torstensson <p@rxc.se>
8423
8424         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
8425         instead of unwrapped server.
8426
8427 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
8428
8429         * verify.c (check_corlib): Fix field index.
8430
8431 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
8432
8433         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
8434         GetGacPath icall.
8435
8436 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
8437
8438         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
8439         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
8440         cope with sizeof(size_t) != sizeof(guint32).
8441
8442 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8443
8444         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
8445         in case of failure.
8446
8447 2003-12-10  Mark Crichton <crichton@gimp.org>
8448
8449         * icall.c: removed the GetNonZeroBytes.  We now handle this case
8450         in managed code.
8451
8452         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
8453
8454 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
8455
8456         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
8457         marked as deleted.
8458
8459 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
8460
8461         * verify.c (check_corlib): Handle the case when the version field is 
8462         initialized by a static constructor.
8463
8464 2003-12-08  Patrik Torstensson  <p@rxc.se>
8465
8466     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
8467
8468 2003-12-08  Martin Baulig  <martin@ximian.com>
8469
8470         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
8471         a MonoReflectionGenericParameter, also take the parameter index
8472         and name as arguments.
8473         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
8474         (ves_icall_MonoGenericParam_initialize): New interncall.
8475         (ves_icall_Type_make_byref_type): New interncall.
8476
8477         * reflection.h (MonoReflectionGenericParam): Derive from
8478         MonoReflectionType, not just from MonoObject.  Added `refobj' and
8479         `index' fields.
8480
8481         * reflection.c (mono_reflection_define_generic_parameter): Create
8482         and return a new MonoReflectionGenericParam; don't initialize the
8483         constraints here.
8484         (mono_reflection_initialize_generic_parameter): New public method;
8485         initializes the constraints and creates the `param->pklass'.
8486
8487 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
8488
8489         * reflection.h reflection.c: Use the new fields 'num_types', 
8490         'num_fields' and 'num_methods' to track the number of types etc.
8491
8492         * verify.c (check_corlib): Check corlib version number.
8493
8494 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
8495
8496         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
8497         function works on all methods.
8498
8499 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
8500
8501         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
8502         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
8503         the custom_type_info flag of the transparent proxy.
8504         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
8505         objects that supports IRemotingTypeInfo.
8506         * object.h: Added custom_type_info field in transparent proxy.
8507
8508 2003-12-06  Martin Baulig  <martin@ximian.com>
8509
8510         * class.c (mono_class_create_from_generic): Removed.
8511         (mono_class_from_generic): Check `ginst->klass' before doing
8512         anything else.  This is important to fully support "recursive"
8513         generic types.
8514
8515         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
8516         empty `generic_inst->klass' before doing anything else.
8517
8518 2003-12-06  Dick Porter  <dick@ximian.com>
8519
8520         * verify.c: 
8521         * object.h:
8522         * icall.c:
8523         * locales.c: Use C structs to access class fields.  Don't do a
8524         conversion between MonoString and UChar because both are
8525         platform-endian UTF-16.  Compare now takes startindex and count
8526         parameters.  Add a char overload for IndexOf.  Speed up the
8527         invariant string IndexOf.
8528
8529 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
8530
8531         * Makefile.am (monosn_LDADD): Fix parallel build.
8532
8533 2003-12-04  Martin Baulig  <martin@ximian.com>
8534
8535         * icall.c
8536         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8537         (ves_icall_Type_make_array_type): New interncall.       
8538
8539 2003-12-04  Martin Baulig  <martin@ximian.com>
8540
8541         * locales.c: also change it in the !HAVE_ICU case.
8542
8543 2003-12-04  Dick Porter  <dick@ximian.com>
8544
8545         * icall.c:
8546         * locales.c: construct_compareinfo is now in CompareInfo, not
8547         CultureInfo.
8548
8549 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
8550
8551         * image.c (mono_image_load_file_for_image): Cache loaded images in the
8552         image->files array.
8553
8554         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
8555         table as well.
8556
8557         * assembly.c (mono_assembly_load_references): Only load references
8558         once.
8559
8560         * class.c (mono_class_from_name): Avoid linear search of the 
8561         EXPORTEDTYPE table.
8562
8563         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
8564
8565 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
8566
8567         * image.h (MonoImage): Add 'field_cache' field.
8568
8569         * loader.c (mono_field_from_token): Cache field lookups.
8570         
8571         * reflection.c (mono_module_get_object): Fix name property.
8572
8573         * icall.c (ves_icall_get_enum_info): Update after changes to 
8574         mono_metadata_get_constant_index ().
8575
8576         * icall.c: Get rid of get_type_info icall, use a separate icall for
8577         each type property to avoid needless memory allocations. Fixes #51514.
8578
8579         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
8580         to avoid needless binary searches.
8581
8582         * class.c (class_compute_field_layout): Move the initialization of
8583         field->def_value to mono_class_vtable ().
8584
8585         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
8586         non-corlib types.
8587
8588         * object.c (mono_object_allocate): Make it inline.
8589
8590         * object.c (mono_object_allocate_spec): Make it inline.
8591         
8592 2003-12-02  Dick Porter  <dick@ximian.com>
8593
8594         * locales.c (create_NumberFormat): NumberFormatInfo construction.
8595         Patch by Mohammad DAMT (mdamt@cdl2000.com).
8596
8597 2003-12-01  Dick Porter  <dick@ximian.com>
8598
8599         * threads.c: Fix signature and call in CreateMutex and
8600         CreateEvent.
8601
8602 2003-12-01  Dick Porter  <dick@ximian.com>
8603
8604         * icall.c: 
8605         * locales.c: Implement string compares and searching
8606
8607         * object.h: Add extra Thread field
8608
8609 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
8610
8611         * reflection.c (fixup_method): Add support for MonoCMethod.
8612
8613 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
8614
8615         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
8616
8617         * reflection.c (assembly_name_to_aname): Allow extra characters in
8618         assembly names. Fixes #51468.
8619
8620 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
8621
8622         * exception.c (mono_exception_from_name_domain): New helper function.
8623
8624         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
8625         exception object in the correct domain.
8626
8627         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
8628         formatting + make a copy a the input data.
8629
8630         * loader.c (mono_get_method_from_token): Methods which contain
8631         native code do not have entries in the ImplMap.
8632
8633         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
8634         Thanks to Gonzalo for spotting this.
8635         
8636         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
8637         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
8638
8639         * assembly.h (mono_assembly_load_from): Split the second part of 
8640         assembly loading into a new public function.
8641
8642         * exception.h (mono_get_exception_bad_image_format): New function.
8643
8644 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
8645
8646         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
8647         Enumerate all modules inside a dynamic assembly. Fixes #51293.
8648         
8649         * icall.c: Add new icall for creating dynamic methods.
8650
8651         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
8652
8653         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
8654
8655         * reflection.c (mono_reflection_create_dynamic_method): New icall to
8656         create a dynamic method.
8657
8658         * reflection.c (resolve_object): New helper function.
8659
8660         * reflection.c: Generalize ReflectionMethodBuilder and the functions
8661         which manipulate it so they can also work on dynamic methods.
8662
8663         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
8664         creating the MonoReflectionMethodAux structure if it is not needed.
8665         
8666         * reflection.h verify.c: Update after changes to object layout.
8667
8668         * reflection.c (method_builder_encode_signature): Fix compilation on
8669         gcc 2.95.x.
8670
8671 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
8672
8673         * appdomain.h: Added support for context static fields. Added static_data
8674           field to MonoAppContext and renamed thread_static_fields to a more
8675           generic special_static_fields in MonoAppDomain, since it can now contain
8676           context static fields.
8677         * domain.c: Updated hashtable name.
8678         * object.c: Replaced field_is_thread_static() for a more generic
8679           field_is_special_static() which also checks for context static attribute.
8680           In mono_class_vtable(), added support for static context fields.
8681         * threads.c: Changed methods that manage thread static fields to more
8682           generic methods so they can be reused both for thread and context static
8683           data.
8684         * threads.h: Declared some new methods.
8685
8686 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
8687
8688         * reflection.h: Update after changes to the managed types.
8689
8690         * reflection.c (encode_custom_modifiers): New helper function.
8691
8692         * reflection.c (method_encode_signature): Emit custom modifiers.
8693
8694         * reflection.c (field_encode_signature): Emit custom modifiers.
8695
8696 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
8697
8698         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
8699
8700         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
8701         implementation.
8702
8703         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
8704         icall.
8705
8706         * object.c (mono_field_get_value_object): New function.
8707
8708         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
8709         specific.
8710
8711 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
8712
8713         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
8714         return a preallocated out-of-memory exception instance.
8715
8716         * object.c (out_of_memory): Use the new function.
8717
8718         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
8719         flag is before the custom modifiers. Fixes #49802.
8720
8721 2003-11-16  Martin Baulig  <martin@ximian.com>
8722
8723         * class.c (mono_class_is_open_constructed_type): Implemented the
8724         MONO_TYPE_GENERICINST case.
8725
8726 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
8727
8728         * assembly.c (mono_assembly_fill_assembly_name): New function to
8729         fill out the MonoAssemblyName structure.
8730         (mono_assembly_open): Use the new function.
8731
8732         * icall.c (fill_reflection_assembly_name): New helper function.
8733
8734         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
8735         new function.
8736
8737         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
8738
8739 2003-11-15  Martin Baulig  <martin@ximian.com>
8740
8741         * class.c (mono_class_is_open_constructed_type): New public
8742         function; checks whether a type is an open constructed type,
8743         ie. whether it still contains type parameters.
8744         (mono_class_inflate_generic_type): If we're a type parameter and
8745         the inflated type is also a MONO_TYPE_(M)VAR, return the original
8746         type.
8747
8748         * class.h (MonoGenericInst): Added `guint32 is_open'.
8749
8750         * loader.c (method_from_methodspec): Check whether we're an open
8751         or closed constructed type and set `ginst->is_open'.
8752
8753         * reflection.c (mono_reflection_bind_generic_parameters): Check
8754         whether we're an open or closed constructed type and set
8755         `ginst->is_open'.
8756         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
8757         from open constructed types.
8758
8759 2003-11-15  Martin Baulig  <martin@ximian.com>
8760
8761         * reflection.c (mono_reflection_bind_generic_parameters): If we're
8762         a generic instance (instead of a generic type declaration) with
8763         unbound generic parameters, bind them to our actual types.
8764
8765 2003-11-14  Martin Baulig  <martin@ximian.com>
8766
8767         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
8768
8769         * reflection.c (mono_reflection_bind_generic_parameters): If we're
8770         an interface type, populate `res->interfaces' with instantiated
8771         versions of all the interfaces we inherit.
8772
8773 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
8774
8775         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
8776         when MONO_PATH is set but doesn't contain the install dir.
8777
8778 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8779
8780         * icall.c:
8781         (ves_icall_Type_GetInterfaces): don't return an interface twice when
8782         it's also implemented in base classes. Fixes bug #50927.
8783
8784 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
8785
8786         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
8787         if this method is called from a finalizer. Fixes #50913.
8788
8789 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
8790
8791         * threads.c: Implement VolatileRead/VolatileWrite
8792
8793         * icall.c: Add new icalls for VolatileRead/VolatileWrite
8794
8795 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8796
8797         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
8798         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
8799         2.95.3.
8800
8801         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
8802         from Peter Ross (pro@missioncriticalit.com).
8803         
8804 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
8805
8806         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
8807
8808 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8809
8810         * assembly.c (mono_assembly_load_references): Disable check because it
8811         triggers on older corlibs which lots of people have.
8812
8813 2003-11-12  Jackson Harper  <jackson@ximian.com>
8814
8815         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
8816         load corlib.dll if mscorlib.dll is not found.
8817         * assembly.h: Remove corlib name define.
8818         * class.c:
8819         * domain.c:
8820         * image.c: Change corlib name to mscorlib.
8821         
8822 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8823
8824         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
8825
8826 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
8827
8828         * appdomain.h: Added loader_optimization here to sync with the C#
8829         code, and add disallow_binding_redirects field.
8830
8831 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
8832
8833         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
8834
8835         * reflection.c (mono_image_build_metadata): Fix crash on modules
8836         with no types.
8837
8838         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
8839
8840         * icall.c (ves_icall_get_method_info): Return callingConvention as
8841         well.
8842
8843         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
8844         namespaces from the EXPORTEDTYPE table as well.
8845
8846         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
8847         from all modules inside the assembly.
8848         
8849 2003-11-11  Martin Baulig  <martin@ximian.com>
8850
8851         * reflection.c (mono_reflection_bind_generic_parameters): Make
8852         this work for interfaces.
8853
8854 2003-11-11  Martin Baulig  <martin@ximian.com>
8855
8856         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
8857
8858 2003-11-11  Martin Baulig  <martin@ximian.com>
8859
8860         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
8861         "MonoInflatedMethod" and "MonoInflatedCtor".
8862
8863 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
8864
8865         * reflection.c (resolution_scope_from_image): Use the assembly table
8866         from the manifest module, since other modules don't have it.
8867
8868         * debug-helpers.c (mono_type_full_name): New helper function.
8869
8870         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
8871
8872         * image.c (mono_image_load_file_for_image): New public function which
8873         is a replacement for the load_file_for_image in class.c.
8874
8875         * assembly.c (mono_assembly_load_module): A wrapper for the function
8876         above which does assembly association and reference loading too.
8877
8878         * class.c (mono_class_from_name): Call mono_assembly_load_module.
8879
8880 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8881
8882         * appdomain.c: not all of the attributes for the full assembly name
8883         are required and the order doesn't matter. Fixes bug #50787.
8884
8885 2003-11-10  Dick Porter  <dick@ximian.com>
8886
8887         * locales.c: Use platform-endian UTF16
8888
8889 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
8890
8891         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
8892         
8893 2003-11-10  Martin Baulig  <martin@ximian.com>
8894
8895         * metadata.c
8896         (mono_metadata_load_generic_params): Make this actually work.
8897
8898         * reflection.c (mono_reflection_bind_generic_parameters): If our
8899         parent is a generic instance, pass all the `types' to it, no
8900         matter whether it has the same number of type parameters or not.
8901
8902 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
8903
8904         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
8905
8906         * assembly.c (mono_assembly_load_references): Move the image<->assembly
8907         assignment code to this function so it gets called recursively for all
8908         modules.
8909
8910         * image.c (load_modules): Remove the assembly assignment since it is
8911         now done by mono_assembly_load_references.
8912         
8913         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
8914         Add 'module' argument.
8915         (mono_module_get_types): New helper function.
8916         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
8917
8918 2003-11-08  Martin Baulig  <martin@ximian.com>
8919
8920         * class.c (mono_class_inflate_generic_method): Interface method
8921         don't have a header.
8922
8923         * reflection.c (mono_image_get_methodspec_token): Take an
8924         additional `MonoGenericInst *' argument instead of reading it from
8925         the header; this is necessary to support interfaces.
8926         (mono_image_create_token): Pass the `MonoGenericInst *' from the
8927         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
8928         (inflated_method_get_object): Take an additional `MonoGenericInst *'
8929         argument.
8930
8931         * reflection.h (MonoReflectionInflatedMethod): Added
8932         `MonoGenericInst *ginst'.
8933
8934 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
8935
8936         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
8937
8938 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
8939
8940         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
8941
8942 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
8943
8944         * reflection.c 
8945         (reflection_methodbuilder_from_method_builder):
8946         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
8947         initialize a ReflectionMethodBuilder structure.
8948         (mono_image_get_methodbuilder_token):
8949         (mono_image_get_ctorbuilder_token): New functions to emit memberref
8950         tokens which point to types in another module inside the same assembly.
8951
8952         * reflection.c: Use the new helper functions.
8953         
8954         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
8955
8956         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
8957         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
8958
8959         * reflection.c (resolution_scope_from_image): Emit a moduleref if
8960         neccesary.
8961
8962         * reflection.c (mono_image_build_metadata): Emit metadata only for the
8963         current module. Emit the manifest only for the main module.
8964
8965         * reflection.c (mono_image_create_token): Add assertion when a 
8966         memberref needs to be created.
8967
8968         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
8969
8970         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
8971         larger buffer for the custom attribute blob. Fixes #50637.
8972         
8973 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8974
8975         * threadpool.c: notify listener on async processing handles after
8976         invoking the async callback. Thanks to Zoltan.
8977
8978 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
8979
8980         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
8981         avoid code duplication.
8982
8983         * reflection.h (MonoDynamicImage): New type which is currently unused,
8984         but will be used through the ref.emit code in place of 
8985         MonoDynamicAssembly.
8986
8987         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
8988         object layout.
8989
8990         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
8991         a MonoDynamicImage instead of just a MonoImage.
8992         
8993         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
8994         icalls to ModuleBuilder but keep their semantics, so they will work
8995         with moduleb->assemblyb. This will change later.
8996         
8997 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
8998
8999         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
9000         object layout.
9001
9002         * reflection.c (mono_image_build_metadata): Avoid creation of a default
9003         main module, since it is now done by the managed code.
9004
9005 2003-11-03  Martin Baulig  <martin@ximian.com>
9006
9007         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
9008         `ginst->klass' here.
9009         (method_encode_methodspec): Don't use the `ginst->generic_method's
9010         klass if it's a generic instance, use `ginst->klass' in this case.
9011
9012 2003-11-03  Martin Baulig  <martin@ximian.com>
9013
9014         * reflection.c (mono_image_get_generic_method_param_info):
9015         Removed, use mono_image_get_generic_param_info() instead.
9016         (mono_image_get_type_info): Write the GenericParam table before
9017         the Method table.  This is neccessary because in the GenericParam
9018         table, type parameters of the class (ie. '!0' etc.) must come
9019         before the ones from its generic methods (ie. '!!0' etc).
9020
9021 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
9022
9023         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
9024
9025 2003-11-02  Martin Baulig  <martin@ximian.com>
9026
9027         * reflection.c (create_generic_typespec): Take a
9028         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
9029         the generic parameters from it.
9030
9031 2003-11-02  Martin Baulig  <martin@ximian.com>
9032
9033         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
9034         instead of a `MonoClassField *' since we just need the type.
9035         (create_generic_typespec): New static function.  Creates a
9036         TypeSpec token for a generic type declaration.
9037         (mono_image_get_generic_field_token): New static function.
9038         (mono_image_create_token): If we're a FieldBuilder in a generic
9039         type declaration, call mono_image_get_generic_field_token() to get
9040         the token.
9041
9042 2003-11-02  Martin Baulig  <martin@ximian.com>
9043
9044         * reflection.h
9045         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
9046         `MonoReflectionGenericInst *declaring_type' and
9047         `MonoReflectionGenericInst *reflected_type' fields.
9048
9049         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
9050         `MonoReflectionGenericInst *declaring_type' and a
9051         `MonoReflectionGenericInst *reflected_type' argument instead of a
9052         single `MonoReflectionGenericInst *type' one.  Set
9053         `res->declaring_type' and `res->reflected_type' from them.
9054         (mono_reflection_inflate_field): Likewise.      
9055
9056 2003-11-02  Martin Baulig  <martin@ximian.com>
9057
9058         * class.c (mono_class_setup_vtable): Don't store generic methods
9059         in the vtable.  
9060
9061 2003-11-02  Martin Baulig  <martin@ximian.com>
9062
9063         * reflection.h (MonoReflectionGenericInst): Added
9064         `MonoReflectionType *declaring_type'.
9065
9066         * reflection.c (mono_reflection_bind_generic_parameters): Use
9067         `if (tb->parent)' instead of `klass->parent'.
9068
9069 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
9070
9071         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
9072         with an empty ASSEMBLY table.
9073
9074         * reflection.c (mono_image_build_metadata): Avoid using the same loop
9075         variable in the inner and outer loops.
9076
9077 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
9078
9079         * metadata.h (mono_metadata_make_token): Put parentheses around macro
9080         argument.
9081
9082         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
9083         
9084         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
9085         icalls. Instead, do everything in managed code. This is needed since
9086         it is hard to restore the original domain etc. in unmanaged code in the
9087         presence of undeniable exceptions.
9088
9089         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
9090         New icalls to push and pop appdomain refs.
9091
9092 2003-10-31  Martin Baulig  <martin@ximian.com>
9093
9094         * class.c (inflate_generic_type): Renamed to
9095         mono_class_inflate_generic_type() and made it public.
9096
9097         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
9098         New interncall.
9099
9100         * loader.c (mono_field_from_memberref): Also set the retklass for
9101         typespecs.
9102
9103         * fielder.c (mono_image_get_inflated_field_token): New static
9104         method; creates a metadata token for an inflated field.
9105         (mono_image_create_token, fixup_method): Added support for
9106         "MonoInflatedField".
9107         (fieldbuilder_to_mono_class_field): New static function.
9108         (mono_reflection_inflate_field): New public function.
9109
9110         * reflection.h
9111         (MonoReflectionGenericInst): Added `MonoArray *fields'.
9112         (MonoReflectionInflatedField): New typedef.     
9113
9114 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
9115
9116         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
9117         for Solaris and other platforms without s6_addr16
9118
9119 2003-10-30  Martin Baulig  <martin@ximian.com>
9120
9121         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
9122         argument instead of two.
9123         (mono_class_inflate_generic_signature): Likewise.
9124         (inflate_generic_header): Likewise.
9125         (mono_class_inflate_generic_method): Likewise.  In addition, if
9126         `ginst->klass' is set, it becomes the new `method->klass'.
9127
9128         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
9129         field.
9130
9131         * reflection.c (encode_generic_method_sig): Write a 0xa as the
9132         first byte. [FIXME]
9133         (method_encode_methodspec): If we have generic parameters, create
9134         a MethodSpec instead of a MethodRef.
9135         (fixup_method): Added support for "MonoInflatedMethod" and
9136         "MonoInflatedCtor".
9137         (mono_image_create_token): Added support for "MonoInflatedMethod"
9138         and "MonoInflatedCtor".
9139         (inflated_method_get_object): New static function; returns a
9140         managed "System.Reflection.MonoInflatedMethod" object.
9141         (mono_reflection_bind_generic_method_parameters): Return a
9142         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
9143         (mono_reflection_inflate_method_or_ctor): Likewise.
9144         (mono_image_get_generic_method_param_info): Initialize unused
9145         fields to zero.
9146         (mono_image_get_generic_param_info): Likewise.
9147
9148         * reflection.h (MonoReflectionInflatedMethod): New public
9149         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
9150         "S.R.MonoInflatedCtor" classes.
9151
9152         * loader.c (method_from_memberref): If we're a TypeSpec and it
9153         resolves to a generic instance, inflate the method.
9154
9155 2003-10-28  Dick Porter  <dick@ximian.com>
9156
9157         * object.c (mono_runtime_run_main): Convert command-line arguments
9158         into utf8, falling back to the user's locale encoding to do so.
9159
9160 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
9161
9162         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
9163         at this time.
9164
9165         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
9166
9167         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
9168         up icalls at method definition time. Partially fixes #33569.
9169
9170 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
9171
9172         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
9173         marshalling of arrays. Fixes #50116.
9174
9175         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
9176
9177         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
9178         points to a vtable in the dying appdomain.
9179
9180         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
9181         listeners into unmanaged code inside the lock.
9182
9183         * object.c (mono_class_vtable): Turn off typed allocation in non-root
9184         domains and add some comments.
9185
9186 2003-10-25  Martin Baulig  <martin@ximian.com>
9187
9188         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
9189
9190         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
9191
9192         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
9193         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
9194         currently parsing.  Create the generic class and store it in
9195         `generic_inst->klass' before parsing the type arguments.  This is
9196         required to support "recursive" definitions; see mcs/tests/gen-23.cs
9197         for an example.
9198         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
9199         to support recursive typespec entries.
9200
9201         * class.c (mono_class_setup_parent): If our parent is a generic
9202         instance, we may get called before it has its name set.
9203         (mono_class_from_generic): Splitted into
9204         mono_class_create_from_generic() and mono_class_initialize_generic().
9205
9206 2003-10-25  Martin Baulig  <martin@ximian.com>
9207
9208         * icall.c (ves_icall_Type_BindGenericParameters): Return a
9209         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
9210         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
9211         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
9212
9213         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
9214         (create_typespec): Likewise.
9215         (mono_reflection_bind_generic_parameters): Return a
9216         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
9217         (mono_reflection_inflate_method_or_ctor): New public function.
9218
9219         * reflection.h (MonoReflectionGenericInst): New typedef.        
9220
9221 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
9222
9223         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
9224         inside the domain lock. Fixes #49993.
9225         
9226         * object.c (mono_class_vtable): When typed allocation is used, 
9227         allocate vtables in the GC heap instead of in the mempool, since the
9228         vtables contain GC descriptors which are used by the collector even
9229         after the domain owning the mempool is unloaded.
9230
9231         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
9232
9233         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
9234         reflect what it does. Also invalidate mempools instead of freeing
9235         them if a define is set.
9236
9237         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
9238         of the appdomain.
9239         
9240         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
9241         hold the finalizable objects in this domain.
9242
9243         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
9244         appdomain.
9245
9246         * appdomain.c (mono_domain_set): New function to set the current
9247         appdomain, but only if it is not being unloaded.
9248
9249         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
9250         appdomain which is being unloaded.
9251         
9252         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
9253         unloading of the root appdomain.
9254
9255         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
9256         icall to execute a method in another appdomain. Intended as a 
9257         replacement for InternalSetDomain, which can confuse the code 
9258         generation in the JIT.
9259
9260         * appdomain.c (mono_domain_is_unloading): New function to determine
9261         whenever an appdomain is unloading.
9262
9263         * appdomain.c (mono_domain_unload): New function to correctly unload
9264         an appdomain.
9265
9266         * assembly.c (mono_assembly_load_references): Check that an assembly
9267         does not references itself.
9268
9269         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
9270         domain manually, it asks the finalizer thread to do it, then waits for
9271         the result. Also added a timeout.
9272
9273         * icall.c: Register the new icalls.
9274
9275         * threads.h threads.c: Export the mono_gc_stop_world and 
9276         mono_gc_start_world functions.
9277         
9278         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
9279         function to fill out the mempool with 0x2a.
9280
9281 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
9282
9283         * reflection.h (MonoReflectionMethodAux): New structure to store
9284         information which is rarely used, thus is not in the MonoMethod
9285         structure.
9286
9287         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
9288         store the aux info.
9289
9290         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
9291         and marshalling info into the aux structure.
9292
9293         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
9294         from the aux structure.
9295
9296         * loader.c (mono_method_get_param_names): Retrieve the param names from
9297         the aux structure.
9298         
9299 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
9300
9301         * exception.h exception.c: Add AppDomainUnloadedException && fix 
9302         warning.
9303
9304 2003-10-21  Dick Porter  <dick@ximian.com>
9305
9306         * socket-io.c
9307         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
9308         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
9309
9310 2003-10-21  Martin Baulig  <martin@ximian.com>
9311
9312         * reflection.c (mono_reflection_bind_generic_parameters):
9313         `klass->parent' is NULL for interfaces.
9314
9315 2003-10-21  Martin Baulig  <martin@ximian.com>
9316
9317         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
9318
9319 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
9320
9321         * exception.c (mono_exception_from_name_msg): New helper function for
9322         creating exceptions and initializing their message field.
9323
9324         * exception.c: Simplify functions using the new helper.
9325
9326         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
9327         New function.
9328
9329         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
9330         mono_raise_exception, since otherwise gcc doesn't generate the function
9331         epilog for raise_exception, confusing the stack unwinding in the JIT.
9332         Fixes #45043.
9333
9334         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
9335         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
9336         Fixes #49499.
9337
9338 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9339
9340         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
9341         utf8.
9342
9343 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
9344
9345         * icall.c: Removed GetUninitializedObject method because
9346           AllocateUninitializedClassInstance does the same.
9347
9348 2003-10-18  Martin Baulig  <martin@ximian.com>
9349
9350         * class.c (inflate_generic_signature): Renamed to
9351         mono_class_inflate_generic_signature() and made it public.
9352         (my_mono_class_from_generic_parameter): New static function; if we
9353         don't already have the generic parameter's MonoClass, create a
9354         very simple one which is just used internally in the runtime and
9355         not passed back to managed code.
9356
9357         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
9358
9359         * metadata.h (MonoMethodSignature): Moved the
9360         `MonoGenericParam *gen_params' to the MonoMethodHeader.
9361         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
9362
9363         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
9364         ves_icall_MonoMethod_GetGenericArguments(); this is now an
9365         interncall on the MonoMethod class, not on MethodInfo.
9366         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
9367         calling mono_reflection_bind_generic_method_parameters() directly.
9368
9369         * loader.c (mono_method_get_signature): If this is a MethodSpec;
9370         return the already computed `method->signature'.
9371         (method_from_methodspec): New static function to load a method
9372         from a MethodSpec entry.
9373         (mono_get_method_from_token): Call the new method_from_methodspec()
9374         for MethodSpec tokens.  
9375         (mono_get_method_from_token): If we're a generic method, load the
9376         type parameters.
9377
9378         * reflection.c (mono_image_get_memberref_token): Allow
9379         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
9380         table.
9381         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
9382         (mono_image_create_token): First check whether it's a generic
9383         method (so we'd need to create a MethodSpec), then do the other
9384         two alternatives.
9385         (mono_reflection_bind_generic_method_parameters): Return a
9386         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
9387         called directly from the interncall.
9388
9389 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
9390
9391         * reflection.c (load_public_key): Move loading of the public key
9392         into managed code.
9393
9394         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
9395
9396         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
9397         fields.
9398
9399         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
9400         culture, hash_alg and public_key. Fixes #49555.
9401
9402 2003-10-17  Martin Baulig  <martin@ximian.com>
9403
9404         * class.h (MonoGenericInst): Moved this declaration here and added
9405         `MonoMethod *generic_method'.
9406
9407         * icall.c
9408         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
9409         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
9410
9411         * metadata.c (mono_metadata_type_equal): Two types of
9412         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
9413         index; ie. don't compare the address of the `MonoGenericParam'
9414         structure.
9415         (mono_metadata_load_generic_params): Removed the `MonoMethod
9416         *method' argument.
9417
9418         * metadata.h (MonoGenericInst): Moved declaration to class.h.
9419         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
9420
9421         * reflection.c (method_encode_signature): Encode the number of
9422         generic parameters.
9423         (encode_generic_method_sig): New static function.
9424         (method_encode_methodspec): New static function; creates an entry
9425         in the MethodSpec table for a generic method.
9426         (mono_image_get_methodspec_token): New static function.
9427         (mono_image_create_token): Call mono_image_get_methodspec_token()
9428         for generic methods.
9429         (mono_reflection_bind_generic_method_parameters): New public
9430         function.  Instantiates a generic method.
9431
9432 2003-10-16  Martin Baulig  <martin@ximian.com>
9433
9434         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
9435         *gen_params' here from MonoMethodHeader.
9436
9437         * metadata.c (mono_metadata_parse_method_signature): If we have
9438         generic parameters, initialize `method->gen_params' and then set
9439         the correct `type->data.generic_param' in all the parameters.
9440
9441 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
9442
9443         * threads.c (mono_threads_get_default_stacksize): New function to 
9444         return the default stacksize.
9445
9446         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
9447         termination of the finalizer thread, since the previous method had
9448         race conditions. Fixes #49628.
9449
9450         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
9451         as for the other managed threads.
9452
9453 2003-10-16  Martin Baulig  <martin@ximian.com>
9454
9455         * class.c (inflate_generic_signature): Copy `generic_param_count'
9456         and `gen_params'.
9457
9458         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
9459         New interncall.
9460
9461         * metadata.c (mono_metadata_parse_method_signature): Actually set
9462         the `method->generic_param_count' here.
9463         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
9464
9465 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
9466
9467         * object.h: Add a new field to TypedRef to simplify the implementation
9468         of the REFANY opcodes in the JIT.
9469
9470         * icall.c: Make use of the new field.
9471
9472         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
9473         dynamically.
9474
9475 2003-10-15  Martin Baulig  <martin@ximian.com>
9476
9477         * class.c (mono_class_from_gen_param): Renamed to
9478         mono_class_from_generic_parameter() and moved most of the
9479         functionality from mono_reflection_define_generic_parameter()
9480         here; ie. we create a "real" class here.
9481         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
9482         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
9483         previously been called.
9484
9485         * class.h (MonoGenericParam): Moved the declaration of this struct
9486         here from metadata.h and added `MonoMethod *method'.
9487
9488         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
9489         interncall.
9490
9491         * loader.c (mono_get_method_from_token): If we have any generic
9492         parameters, call mono_metadata_load_generic_params() to read them
9493         from the MONO_TABLE_GENERICPAR.
9494
9495         * metadata.c (mono_metadata_load_generic_params): Added
9496         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
9497
9498         * metadata.h (MonoMethodSignature): Replaced
9499         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
9500         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
9501
9502         * reflection.c (mono_reflection_define_generic_parameter): Moved
9503         most of the functionality into the new
9504         mono_class_from_generic_parameter(); set the `method' field if
9505         we're a method parameter.       
9506
9507 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
9508
9509         * marshal.c (emit_struct_conv): if native size is 0
9510         emit no code.
9511
9512 2003-10-14  Martin Baulig  <martin@ximian.com>
9513
9514         * icall.c: The generics API has changed in the spec since it was
9515         added to System.Type; these modifications make it match the spec
9516         again.
9517         (ves_icall_Type_GetGenericParameters): Renamed to
9518         `ves_icall_Type_GetGenericArguments'.
9519         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
9520         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
9521         `ves_icall_MonoType_get_HasGenericArguments'.
9522         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
9523         `ves_icall_MonoType_get_IsGenericParameter'.
9524         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
9525         this is no interncall anymore.
9526         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
9527         `ves_icall_TypeBuilder_get_IsGenericParameter'.
9528
9529 2003-10-14  Martin Baulig  <martin@ximian.com>
9530
9531         * reflection.c (mono_reflection_bind_generic_parameters): Also
9532         inflate generic methods if we're reading the class from IL.
9533
9534 2003-10-13  Martin Baulig  <martin@ximian.com>
9535
9536         * reflection.c (mono_reflection_define_generic_parameter): This
9537         method isn't called directly from the icall anymore; take a
9538         `MonoReflectionAssemblyBuilder *' so we can use this for type and
9539         method generic parameters.
9540         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
9541         (method_builder_encode_signature): Encode generic parameters.
9542         (mono_image_get_method_info): Write generic params to the
9543         MONO_TABLE_GENERICPARAM table.
9544
9545         * reflection.h (MonoReflectionMethodBuilder): Added
9546         `MonoArray *generic_params'.
9547
9548         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
9549
9550         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
9551         wrapper for mono_reflection_define_generic_parameter().
9552         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
9553
9554 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
9555
9556         * marshal.h: Add missing function to fix build.
9557
9558         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
9559         the SetLastError pinvoke attribute.
9560
9561         * marshal.c (mono_marshal_set_last_error): New helper function called
9562         by the generated code.
9563         
9564         * marshal.c (mono_mb_emit_branch): New helper function.
9565
9566         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
9567
9568         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
9569         classes as parameters and return values of delegates. Fixes #29256. 
9570
9571 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
9572
9573         * locales.c: use gint32 in non HAVE_ICU case
9574
9575 2003-10-11  Martin Baulig  <martin@ximian.com>
9576
9577         * mono-debug.c (mono_debug_add_method): Added a workaround for
9578         bug #48591.
9579
9580 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
9581
9582         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
9583         delegates passed to native code must use the STDCALL calling 
9584         convention. Fixes #35987.
9585
9586 2003-10-10  Martin Baulig  <martin@ximian.com>
9587
9588         * class.c (inflate_generic_type): If we're inflating for a generic
9589         type instance (and not for a generic method), return
9590         MONO_TYPE_MVAR unchanged.
9591
9592 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9593
9594         * string-icalls.c: Join ignores null strings in the source array.
9595         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
9596         * threads.c: GetAvailableTheads is slightly more accurate.
9597
9598 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
9599
9600         * threads.h threads.c : add mono_threads_set_default_stacksize
9601         and pass default to CreateThread calls.
9602
9603 2003-10-09  Dick Porter  <dick@ximian.com>
9604
9605         * icall.c:
9606         * locales.h:
9607         * locales.c: Internal calls for constructing CultureInfo and
9608         related objects from libicu (if its available.)
9609
9610 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
9611
9612         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
9613
9614 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9615
9616         * threadpool.c: added an argument to async_invoke_thread that is the
9617         item to process, pass the MonoAsyncResult to the thread start function
9618         when creating a new thread. This way we don't need to acquire any lock
9619         when we're creating a new thread. Readded a semaphore for faster
9620         response times (instead of that Sleep i added).
9621
9622 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
9623
9624         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
9625         get daylight change dates better on Windows, fix handling
9626         of platforms without tm_gmtoff.
9627
9628 2003-10-06  Martin Baulig  <martin@ximian.com>
9629
9630         * class.c (inflate_generic_method): Renamed to
9631         mono_class_inflate_generic_method() and made public.
9632         (mono_class_init): Don't inflate the generic methods here.
9633         (mono_class_from_generic): Added `gboolean inflate_methods'
9634         argument.  Inflate the methods here.
9635
9636         * loader.c (mono_method_get_param_names): Ignore instances of
9637         generic types for the moment.
9638
9639         * reflection.c (fixup_method): Added support for inflated methods.
9640         (mono_image_create_token): Use mono_image_get_methodref_token()
9641         for inflated methods.
9642         (mono_custom_attrs_from_param): Ignore instances of generic types
9643         for the moment.
9644         (mono_reflection_bind_generic_parameters): New public function.
9645         Moved all the functionality from
9646         ves_icall_Type_BindGenericParameters() here and added support for
9647         dynamic types.
9648         (mono_reflection_define_generic_parameter): Initialize
9649         `klass->methods' here.
9650
9651         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
9652         functionality into mono_reflection_define_generic_parameter().
9653         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
9654         TypeBuilder, return that TypeBuilder.
9655
9656 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9657
9658         * appdomain.c: removed mono_delegate_semaphore.
9659
9660         * threadpool.c:
9661         (mono_thread_pool_add): moved hash table creation inside and the thread 
9662         creation outside of the critical region.
9663         (mono_thread_pool_finish): removed obsolete code.
9664         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
9665         continue or exit the thread depending on the queue.
9666
9667 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
9668
9669         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
9670         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
9671         handle more bool marshalling options
9672
9673 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
9674
9675         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
9676         arrays of structs. Also add a more descriptive error message when
9677         a structure member is marshalled as LPArray.
9678
9679 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
9680
9681         * marshal.c (mono_marshal_get_native_wrapper): Add support for
9682         marshalling arrays of complex types. Fixes #29098. Also remove an
9683         usused and incomplete function.
9684
9685 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
9686
9687         * gc.c: report heap_size - free_bytes as total memory allocated
9688         (bug#49362).
9689
9690 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
9691
9692         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
9693         fix timezone handling problems on Windows.
9694         
9695         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
9696         asserts when the year is outside the range handled by ms the functions.
9697
9698         * class.c (setup_interface_offsets): If the class is an interface,
9699         fill out its interface_offsets slot.
9700
9701 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9702
9703         * threadpool.c: mark threadpool threads as background.
9704
9705 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
9706
9707         * decimal.c - define DECINLINE to nothing if not using GCC
9708
9709 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
9710
9711         * assembly.c: More refcount fixes.
9712
9713 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9714
9715         * string-icalls.c: if we're not trimming, return the same string.
9716         When not splitting, don't create a new string.
9717
9718 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9719
9720         * image.c:
9721         (mono_image_open): increment the ref_count inside the critical section.
9722
9723 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
9724
9725         * image.c (mono_image_open): Fix reference counting bug.
9726
9727 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
9728
9729         * marshal.c (mono_marshal_type_size) struct alignment changed for 
9730         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
9731         64bits. Avoid leak in mono_marshal_get_native_wrapper when
9732         mono_lookup_pinvoke_call throws.        
9733
9734 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
9735
9736         * reflection.c (mono_reflection_parse_type): Fix #49114.
9737
9738         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
9739         temporary workaround for cygwin header problem.
9740
9741         * object.c (mono_object_isinst): Synchronize this with the code
9742         generated by the JIT for casts.
9743
9744 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
9745
9746         * reflection.c (encode_type): Fix #38332.
9747
9748 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
9749
9750         * marshal.c (mono_marshal_method_from_wrapper): New function to return
9751         the original method from the wrapper method.
9752
9753 2003-09-25  Martin Baulig  <martin@ximian.com>
9754
9755         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
9756         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
9757         (ves_icall_Type_get_IsGenericInstance): New interncall.
9758
9759 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
9760
9761         * object.c: fix cast warning in big endian code.
9762
9763 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
9764
9765         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
9766         
9767 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9768
9769         * assembly.c: don't call check_env from mono_assembly_load. It's
9770         already done once in mono_assemblies_init and may cause headaches when
9771         multiple threads are loading assemblies.
9772
9773 2003-09-19  Martin Baulig  <martin@ximian.com>
9774
9775         * reflection.c (mono_reflection_define_generic_parameter): Don't
9776         allocate `klass->methods', set `klass->flags' to
9777         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
9778
9779 2003-09-18  Martin Baulig  <martin@ximian.com>
9780
9781         * class.c (mono_class_init): Don't create `class->methods' if it's
9782         already initialized.
9783
9784         * metadata.c (mono_metadata_load_generic_params): Make this
9785         actually work.
9786
9787         * reflection.c (mono_reflection_define_generic_parameter): Set
9788         parent class and interfaces from the constraints.
9789
9790         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
9791         to keep this struct in sync with the declaration in TypeBuilder.cs.
9792
9793 2003-09-17  Martin Baulig  <martin@ximian.com>
9794
9795         * metadata.h (MonoType): Replaced the data's `int type_param'
9796         field with `MonoGenericParam *generic_param'.
9797         (MonoGenericParam): Added `MonoClass *klass'.
9798
9799         * class.c (mono_class_from_gen_param): Removed the
9800         `MonoImage *image' and `int type_num' arguments.
9801
9802         * metadata.c (mono_metadata_parse_generic_param): New static
9803         method; creates a MonoGenericParam which just contains the index.
9804         (do_mono_metadata_parse_type): Call
9805         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
9806         MONO_TYPE_MVAR.
9807
9808         * reflection.c (mono_image_typedef_or_ref): Generic type
9809         parameters may be in the same assembly, but never use a typedef
9810         for them.
9811         (mono_reflection_define_generic_parameter): We're now creating a
9812         "real" class for the type parameter; it's now safe to call
9813         mono_class_from_mono_type() on the class'es type, it'll do the
9814         right thing.
9815
9816 2003-09-16  Martin Baulig  <martin@ximian.com>
9817
9818         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
9819         `symfile->range_entry_size' and `symfile->class_entry_size' here;
9820         the `symfile' data structure must be fully initialized before it
9821         gets added to the table.
9822
9823 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
9824
9825         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
9826
9827         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
9828         class init trampolines.
9829
9830 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
9831
9832         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
9833         to the built-in profiler to turn off time and allocation profiling
9834         respectively.
9835
9836 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
9837
9838         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
9839         g_direct_equal.
9840
9841         * debug-helpers.c (mono_method_full_name): Print the wrapper type
9842         in human readable form.
9843
9844 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
9845
9846         * reflection.c icall.c: Fixed warnings.
9847
9848         * image.c (load_class_names): Use a temporary hash table to hold the
9849         namespaces in order to avoid doing many string comparisons.
9850
9851         * image.h: Fix typo.
9852
9853         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
9854         Pass NULL instead of g_direct_equal to the GHashTable constructor 
9855         since the NULL case is short-circuited inside g_hash_table_lookup, 
9856         leading to better performance.  
9857
9858         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
9859         obtain the first custom attribute for a given index. Depends on the
9860         CustomAttribute table being sorted by the parent field.
9861
9862         * reflection.c (mono_custom_attrs_from_index): Use the new function 
9863         for better performance.
9864
9865 2003-09-07  Martin Baulig  <martin@ximian.com>
9866
9867         * class.c (mono_class_init): If we're a generic instance, inflate
9868         all our methods instead of loading them from the image.
9869         (mono_class_from_generic): Set `class->methods = gklass->methods'.
9870
9871 2003-09-07  Martin Baulig  <martin@ximian.com>
9872
9873         * mono-debug-debugger.c: Added support for constructors.
9874
9875 2003-09-06  Martin Baulig  <martin@ximian.com>
9876
9877         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
9878         New interncall.
9879
9880         * reflection.c (mono_reflection_setup_generic_class): Call
9881         ensure_runtime_vtable() to create the vtable.
9882
9883 2003-09-05  Martin Baulig  <martin@ximian.com>
9884
9885         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
9886         MONO_TYPE_MVAR.
9887
9888 2003-09-04  Martin Baulig  <martin@ximian.com>
9889
9890         * reflection.c (mono_reflection_define_generic_parameter): Generic
9891         parameters start with zero.
9892
9893 2003-09-04  Martin Baulig  <martin@ximian.com>
9894
9895         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
9896
9897         * reflection.h (MonoReflectionGenericParam): New typedef.
9898         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
9899         the generic parameters from the managed TypeBuilder.
9900
9901         * reflection.c (mono_reflection_define_generic_parameter): New function.
9902         (mono_reflection_create_runtime_class): Encode generic parameters.
9903         (mono_reflection_setup_generic_class): New function; this is
9904         called after adding adding all generic params to the TypeBuilder.
9905         (encode_type): Added MONO_TYPE_VAR.
9906
9907 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
9908
9909         * class.h class.c (mono_class_needs_cctor_run): Moved this method
9910         here from the JIT.
9911
9912         * assembly.h assembly.c: Moved the AOT loading code into an assembly
9913         load hook.
9914
9915 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
9916
9917         * reflection.h reflection.c class.h class.c: Delete duplicate 
9918         definition of mono_type_get_name () from reflection.c and export the
9919         one in class.c.
9920
9921         * class.c: Class loading fixes from Bernie Solomon 
9922         (bernard@ugsolutions.com).
9923
9924         * reflection.c: Endianness fixes from Bernie Solomon 
9925         (bernard@ugsolutions.com).
9926         
9927 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
9928
9929         * assembly.h assembly.c: Define a file format version for AOT
9930         libraries.
9931         
9932         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
9933
9934         * appdomain.h (MonoJitInfo): New field to determine whenever the
9935         code is domain neutral.
9936         
9937 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
9938
9939         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
9940
9941 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
9942
9943         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
9944         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
9945         Avoid caching the result since strings must be domain specific. Fixes
9946         #48050.
9947
9948 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
9949
9950         * marshal.c (mono_marshal_init): Make this callable multiple times
9951         since it is hard to find a correct place to call it.
9952
9953         * object.c (mono_runtime_class_init): Execute static constructors in
9954         the correct appdomain.
9955
9956         * image.c (build_guid_table): Handle the case when multiple images have
9957         the same GUID.
9958
9959 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9960
9961         * icall.c: added a couple of icalls for System.Web.
9962
9963 2003-08-28  Martin Baulig  <martin@ximian.com>
9964
9965         * icall.c (ves_icall_Type_BindGenericParameters): Use
9966         `klass->generic_inst' instead of `&klass->byval_arg' in the
9967         mono_type_get_object() call.  The returned type must be
9968         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
9969
9970 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
9971
9972         * NOTES: New file.
9973
9974         * object.c (mono_class_proxy_vtable): Make it thread safe.
9975
9976         * pedump.c: Fix warning.
9977
9978         * object.c appdomain.h: Get rid of metadata_section. 
9979         It is no longer needed and it was causing deadlocks with domain->lock.
9980
9981         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
9982
9983 2003-08-26  Martin Baulig  <martin@ximian.com>
9984
9985         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
9986
9987 2003-08-26  Martin Baulig  <martin@ximian.com>
9988
9989         * pedump.c (main): Call mono_metadata_init(),
9990         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
9991         and mono_loader_init().
9992
9993 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
9994
9995         * loader.h: Add missing include to fix build.
9996
9997         * image.h: mono_image_load_references is no more.
9998
9999         * assembly.c: Reworked assembly loading to make it really thread safe.
10000         After these changes, the assembly returned by mono_assembly_open is
10001         fully initialized, i.e. all its references assemblies are loaded.
10002
10003         * assembly.c (mono_image_load_references): Renamed to 
10004         mono_assembly_load_references, and made private, since clients no
10005         longer need to call it.
10006
10007         * class.c: Removed calls to mono_assembly_load_references, since it was
10008         a source of deadlocks.
10009
10010         * loader.h loader.c class.h class.c: Protect data structures using a 
10011         new lock, the loader lock.
10012
10013         * class.c (mono_class_setup_vtable): Create temporary hash tables and
10014         GPtrArrays only when needed.
10015
10016         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
10017         into empty structures by mcs. Fixes pinvoke7.cs.
10018         
10019         * domain.c (mono_init): Call a new initialization function.
10020
10021         * appdomain.c (mono_runtime_init): Call the new initializer function
10022         of the marshal module.
10023
10024         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
10025         inserted into empty structures by mcs. Fixes pinvoke7.cs.
10026
10027         * marshal.h marshal.c: Added locks around the wrapper caches to make
10028         this module thread safe.
10029
10030         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
10031         this argument. Fixes pinvoke1.exe.
10032
10033 2003-08-25  Lluis Sanchez <lluis@ximian.com>
10034
10035         * object.h: Added call_type field to MonoMethodMessage and the corresponding
10036         enumeration of values. Removed fields to store remote call output values in
10037         MonoAsyncResult. Not needed any more.
10038         * object.c: Initialize call_type and async_result fields in mono_message_init.
10039         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
10040         dispatching the message.
10041         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
10042         async call to finish. To do it use a message with EndInvoke call type.
10043
10044 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
10045
10046         * loader.h loader.c (mono_method_hash_marhal_info): New function which
10047         determines whenever a method has marshalling info.
10048
10049 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10050
10051         * assembly.c: fix the build on windows.
10052
10053 2003-08-22 Lluis Sanchez <lluis@ximian.com>
10054
10055         * object.cs: Fixed bug #47785.
10056
10057 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
10058
10059         * string-icalls.c (StringReplace): If their are no occurances of
10060         the old string found return a reference to the supplied
10061         string. This saves some memory and matches MS behavoir.
10062         
10063 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10064
10065         * socket-io.c: fixed compilation for systems that define AF_INET6
10066         and don't define SOL_IP/SOL_IPV6.
10067
10068 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
10069
10070         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
10071         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
10072
10073         * rawbuffer.c rawbuffer.h: Make this module thread safe.
10074
10075         * domain.c: Make this module thread safe.
10076
10077         * domain.c (mono_init): Call new initialization function.
10078
10079         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
10080         reference types too. Fixes #38812.
10081
10082         * image.c (mono_image_init): Fixed warnings.
10083
10084         * class.c (mono_class_from_typeref): Handle assembly load failure
10085         correctly.
10086
10087         * appdomain.c (add_assemblies_to_domain): Handle the case when
10088         the references of an assembly are not yet loaded.
10089
10090         * metadata.c image.c assembly.c: Moved initialization of global
10091         variables to a separate function called at startup since lazy 
10092         initialization of these variables is not thread safe.
10093         
10094         * image.c assembly.c: Made this module thread safe by adding locks in 
10095         the appropriate places.
10096
10097         * domain.c (mono_init): Call the new initialization functions of the
10098         three modules.
10099
10100 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
10101
10102         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
10103           make a direct call. It is proxy's work to make the call asynchronous.
10104           mono_delegate_end_invoke(): If the targe is a proxy, just collect
10105           the return values.
10106         * object.cs: mono_method_call_message_new(): read AsyncResult and
10107           state object from parameters list, if this info is requested.
10108         * object.h: Added fields to store remote call output values in
10109           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
10110
10111 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
10112
10113         * object.h: add needed fields to MonoThread.
10114         * threads.c, threads.h: allow registering a function to cleanup data
10115         allocated per thread by the JIT.
10116
10117 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10118
10119         * loader.h: portability fix by Bernie Solomon
10120         * <bernard@ugsolutions.com>.
10121
10122 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
10123
10124         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
10125         return a MonoArray. This simplifies the code and also ensures that
10126         the cache allways contains an object reference as a value.
10127
10128         * icall.c (ves_icall_get_parameter_info): Simplified using the new
10129         function.
10130
10131 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10132
10133         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
10134         fixes a problem with byte ordering when getting the address family for
10135         a socket.
10136
10137 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
10138
10139         * .cvsignore: Added monosn.
10140
10141         * reflection.h reflection.c loader.c: Added support for parameter
10142         marshalling to dynamically created types. Fixes #47295.
10143
10144 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
10145
10146         * rand.c: remove useless warnings.
10147
10148 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
10149
10150         * class.c: implemented ldtoken for methods and fieldrefs.
10151
10152 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10153
10154         * threadpool.c: when mono_async_invoke was called, no one took care of
10155         monitoring the queue. So if the method invoked took some time and we
10156         got new async invoke requests after 500 ms (the thread created waited
10157         that long in WaitForSingleObject), the new async invoke was not called
10158         until the previous one finished.
10159
10160         This is fixed now. Thanks to Totte for helping with it.
10161
10162 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10163
10164         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
10165
10166 2003-08-11  Martin Baulig  <martin@ximian.com>
10167
10168         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
10169
10170 2003-08-06  Martin Baulig  <martin@ximian.com>
10171
10172         * mono-debug-debugger.c: Added support for static fields,
10173         properties and methods.
10174
10175 2003-08-06  Martin Baulig  <martin@ximian.com>
10176
10177         * mono-debug-debugger.c: Don't store the MonoString's vtable to
10178         make this work for applications with multiple application domains.
10179
10180 2003-08-04  Martin Baulig  <martin@ximian.com>
10181
10182         * mono-debug-debugger.c: Completely reworked the type support; the
10183         most important thing is that we're now just using one single
10184         `MonoType' instance per type.
10185
10186 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
10187
10188         * mono-endian.h, mono-endian.c, icall.c: Added icall
10189         ves_icall_System_Double_AssertEndianity to assert double word endianity
10190         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
10191
10192 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
10193
10194         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
10195         support, icalls and fixes.
10196
10197 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
10198
10199         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
10200         classes that are a punctuation character in .NET is not the same a
10201         g_unichar_ispunct.
10202
10203 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10204
10205         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
10206
10207 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
10208
10209         * icall.c: Add new MemCopy internalcall.
10210         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
10211         Simplified code; It is not necessary to handle all the cases here,
10212         as the C# code takes care of it.  Only handle the case of the name
10213         resource embedded into the assembly.
10214
10215         Changed signature to return the data pointer and the size of the
10216         data. 
10217
10218 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
10219
10220         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
10221         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
10222
10223 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
10224
10225         * socket-io.c: ignore EINTR error in select.
10226
10227 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
10228
10229         * class.h, class.c: removed unused subclasses field in MonoClass.
10230
10231 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
10232
10233         * icall.c: improve fix of get_base_definition(). If the parent class
10234           doesn't have the mehod, look at the parent of the parent.
10235         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
10236           to check if a parameter is an in or out parameter
10237           (PARAM_ATTRIBUTE_IN is not set by default).
10238           mono_method_return_message_restore(): Use mono_class_value_size to
10239           get the size of a value type. mono_type_stack_size (parameterType)
10240           does not return the correct value if parameterType is byRef.
10241           mono_load_remote_field(), mono_load_remote_field_new(),
10242           mono_store_remote_field(), mono_store_remote_field_new():
10243           raise exception if the remote call returns an exception.
10244
10245 2003-07-28  Martin Baulig  <martin@ximian.com>
10246
10247         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
10248         method.  This is a wrapper around mono_runtime_invoke() which
10249         boxes the instance object if neccessary.
10250
10251 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
10252
10253         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
10254         metadata.h, row-indexes.h, verify.c: first cut of generics support.
10255
10256 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10257
10258         * icall.c: disable mcs bug workaround.
10259
10260 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
10261
10262         * object.c (mono_runtime_class_init): Take the metadata_section
10263         mutex before obtaining the domain mutex.
10264
10265         * appdomain.h: Added definition of metadata_section mutex here. 
10266
10267         * object.c: define metadata_mutex here.
10268
10269 2003-07-24  Ravi Pratap  <ravi@ximian.com>
10270
10271         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
10272         fixed.
10273
10274 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
10275
10276         * reflection.c: Fix bug #46669
10277
10278 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10279
10280         * exception.c:
10281         * exception.h:
10282         * icall.c:
10283         * object.h: fill in the type name for TypeLoadException.
10284
10285 2003-07-23  Ravi Pratap  <ravi@ximian.com>
10286
10287         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
10288         relationship between TypeBuilders while compiling corlib) and bug
10289         45993 (Array types returned from the runtime while compiling
10290         corlib were from the loaded corlib).
10291
10292 2003-07-22  Martin Baulig  <martin@ximian.com>
10293
10294         * mono-debug-debugger.c: Reworked the type support a bit more;
10295         distinguish between types and classes.
10296
10297 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
10298
10299         * icall.c: add IsArrayImpl icall.
10300
10301 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
10302
10303         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
10304         initializing real_size only once. Also fix bug #46602.
10305
10306 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
10307
10308         * object.c: Renamed mono_metadata_section to metadata_section.
10309
10310 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
10311
10312         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
10313           empty array if the type is an array. Fixed.
10314           ves_icall_MonoMethod_get_base_definition: if the base method
10315           is abstract, get the MethodInfo from the list of methods of
10316           the class.
10317         * reflection.c: ParameterInfo.PositionImpl should be zero-based
10318           and it was 1-based. Fixed in mono_param_get_objects.
10319
10320 2003-07-20  Martin Baulig  <martin@ximian.com>
10321
10322         * mono-debug.h: Set version number to 31.
10323         (mono_debug_init): Added `MonoDomain *' argument.
10324
10325         * mono-debug-debugger.c: Reworked the type support; explicitly
10326         tell the debugger about builtin types; pass the `klass' address to
10327         the debugger.
10328
10329 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
10330
10331         * image.c: Allow new metadata tables to be loaded without a
10332         warning. Also update the warning message to give the new constant value.
10333                 
10334 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
10335
10336         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
10337         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
10338         array type representation changes.
10339
10340 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
10341
10342         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
10343         on Environment.Exit () call.
10344
10345 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
10346
10347         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
10348         requires a matching corlib.
10349
10350 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
10351
10352         * Changelog: My editor decided to add a CR to each line. Sorry about that.
10353           Committed again without the CRs.
10354         
10355 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
10356
10357         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
10358           getting it from the "this" socket instance. Did not work
10359           if the socket is a subclass of Socket.
10360           Also fixed bug #35371.
10361
10362 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
10363
10364         * metadata.c: fixed size for TypedByRef.
10365         * loader.c: when searching for a method, consider the vararg amrker.
10366         * unicode.c, decimal.c: constify some arrays.
10367
10368 2003-07-15  Dick Porter  <dick@ximian.com>
10369
10370         * socket-io.c: Fixed compilation for gcc < 3.2.
10371
10372         Fixed compilation for machines that don't have AF_INET6 (thanks to
10373         Bernie Solomon <bernard@ugsolutions.com> for that part.)
10374
10375         Fixed compile warnings.
10376         
10377         Fixed formatting and line endings.
10378
10379 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
10380
10381         * socket-io.h:
10382         * socket-io.c: Added IPv6 support.
10383
10384 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
10385
10386         * class.c (mono_class_is_assignable_from): New function to implement
10387         the is_assignable_from logic. Used by mono_object_isinst, 
10388         Type::IsAssignableFrom () and the interpreter.
10389
10390         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
10391         Object, even interfaces.
10392         
10393         * object.c (mono_object_isinst): Implement in terms of 
10394         is_assignable_from.
10395
10396         * icall.c (ves_icall_type_is_assignable_from): New icall.
10397
10398 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
10399
10400         * domain.c (foreach_domain): fix compiler warning.
10401
10402 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
10403
10404         * image.c (load_metadata_ptrs): use g_strndup because strndup is
10405         not available on all plattforms
10406
10407 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
10408
10409         * image.h image.c: Store the metadata version string in MonoImage.
10410         * icall.c: New icall to retrieve the image version.
10411         * reflection.c (create_dynamic_image): Fill in the image version field
10412         * reflection.c (build_compressed_metadata): Use the image version
10413         from the image structure.
10414
10415 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10416
10417         * appdomain.c: modified comment.
10418         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
10419         That will be its last iteration when mono_gc_cleanup is called from
10420         mono_runtime_cleanup and before the domain is unloaded.
10421
10422         Fixes bug #45962.
10423
10424 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
10425
10426         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
10427         attributes.
10428
10429 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10430
10431         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
10432         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
10433         Bernie Solomon <bernard@ugsolutions.com>.
10434
10435 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10436
10437         * object.c, object.h: provide mono_object_new_fast() for faster
10438         allocation in some special cases.
10439
10440 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
10441
10442         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
10443         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
10444
10445 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
10446
10447         * threadpool.c: fix leaks.
10448
10449 2003-07-01  Dick Porter  <dick@ximian.com>
10450
10451         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
10452         using MonoGHashTables.  Fixes threadpool bug posted to list.
10453
10454 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
10455
10456         * image.h, image.c: added support to load an assembly from a byte array.
10457         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
10458         assembly bundle support.
10459
10460 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
10461
10462         * threadpool.c (mono_thread_pool_add): keep a reference to the
10463         AsyncResult to prevent GC
10464
10465 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
10466
10467         * class.c: leak fix.
10468
10469 2003-06-25  Dick Porter  <dick@ximian.com>
10470
10471         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
10472         for the async object, the WaitHandle object will close the handle.
10473         Fixes bug 45321.
10474
10475 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
10476
10477         * class.c: in mono_array_class_get (), lookup from the hash with the
10478         same type we insert: this works around a bug in
10479         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
10480         lluis. The real fix will have to wait for after the release.
10481
10482 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10483
10484         * icall.c: fix memory leak when getting type members.
10485
10486 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
10487
10488         * reflection.c: added more pubtoken special cases.
10489
10490 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
10491
10492         * class.c: handle field offset correctly when class size
10493         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
10494
10495 2003-06-20  Martin Baulig  <martin@ximian.com>
10496
10497         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
10498         *image' field.
10499
10500 2003-06-20  Martin Baulig  <martin@ximian.com>
10501
10502         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
10503
10504 2003-06-20  Martin Baulig  <martin@ximian.com>
10505
10506         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
10507         just distinguish between variables in registers and variables at
10508         an offset relative to a register.
10509
10510 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10511
10512         * icall.c: #ifdef out latest changes until mcs is fixed.
10513
10514 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
10515
10516         * icall.c: return members in metadata order.
10517
10518 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
10519
10520         * icall.c: avoid infinite loop in GetTimeZoneData.
10521
10522 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
10523
10524         * icall.c: added Marshal.Prelink/All icalls.
10525
10526 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
10527
10528         * object.c, object.h: fix warnings and do some overflow checking
10529         when creating arrays.
10530
10531 2003-06-17  Dick Porter  <dick@ximian.com>
10532
10533         * file-io.h:
10534         * file-io.c: File attributes need to be tweaked slightly when
10535         passed from the managed to the w32 world.
10536
10537 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10538         * profiler.h profiler-private.h profiler.c: Rework last patch
10539         based on suggestion by Paolo.
10540         
10541 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10542
10543         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
10544         instruction level coverage data collection.
10545         * profiler.h profiler.c (: Added new callback function which can be
10546         used by the profiler to limit which functions should have coverage
10547         instrumentation.
10548         * profiler.c (mono_profiler_load): Call g_module_build_path to
10549         generate the file name of the profiler library.
10550
10551 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
10552
10553         * profiler.c, profiler.h, profiler-private.h: added basic block 
10554         coverage profiling API.
10555
10556 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
10557
10558         * reflection.c (mono_reflection_create_runtime_class): Add support
10559         for events in dynamically generated code.
10560
10561         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
10562         not allocated.
10563
10564 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
10565
10566         * icall.c: when getting timezone info, return reasonable values if we
10567         can't get the actual data.
10568
10569 2003-06-14  Dick Porter  <dick@ximian.com>
10570
10571         * threads.c (start_wrapper): Remove the reference to the thread
10572         object in the TLS data, so the thread object can be finalized.
10573         This won't be reached if the thread threw an uncaught exception,
10574         so those thread handles will stay referenced :-( (This is due to
10575         missing support for scanning thread-specific data in the Boehm GC
10576         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
10577
10578 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
10579
10580         * reflection.c: ensure streams and tables are first allocated with
10581         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
10582
10583 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10584
10585         * icall.c: fixed GetElementType for byrefs (bug# 44792).
10586
10587 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
10588
10589         * reflection.c (mono_reflection_create_runtime_class): Add support for
10590         properties to dynamically created classes.
10591         * reflection.c: Fix a few places where non-MonoObjects were inserted
10592         into the tokens hashtable.
10593
10594 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10595
10596         * object.c: some support to handle out of memory exceptions.
10597
10598 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
10599
10600         * marshal.c (mono_marshal_get_native_wrapper): support reference
10601         return types
10602
10603 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
10604
10605         * object.h, object.c: more portability stuff from Bernie Solomon.
10606         Unexport mono_object_allocate(). Added mono_object_unbox ().
10607         Set exitcode when an unhandled exception is thrown.
10608
10609 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
10610
10611         * marshal.c (mono_marshal_get_native_wrapper): use custom
10612         marshaler for return types.
10613
10614 2003-06-10  Dick Porter  <dick@ximian.com>
10615
10616         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
10617         ip_mreq is available
10618
10619 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
10620
10621         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
10622         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
10623         by Bernie Solomon <bernard@ugsolutions.com>.
10624
10625 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
10626
10627         * gc.c (mono_gc_init): Avoid error message on shutdown when
10628         GC_DONT_GC=1 is used.
10629
10630         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
10631         New icall to return the GUID of a module.
10632
10633 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
10634
10635         * class.c: ensure instance size always includes the parent's size
10636         even whem class size is set explicitly (fixes bug#44294).
10637
10638 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
10639
10640         * profiler.h, profiler.c: made the simple profiler thread-safe,
10641         get more accurate timing info. Allow the loading of an
10642         externally-developed profiler module.
10643
10644 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
10645
10646         * marshal.c (mono_marshal_get_native_wrapper): improved
10647         class/byref arguments.
10648         (mono_marshal_get_native_wrapper): better string marshaling support.
10649
10650 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
10651
10652         * class.c: ensure .pack and .size are handled correctly and
10653         simplified layout of static fields.
10654
10655 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
10656
10657         * appdomain.c
10658         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
10659
10660         * loader.c (mono_lookup_pinvoke_call): look for modules in the
10661         current directory (fix bug 44008)
10662
10663 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
10664
10665         * marshal.c (mono_marshal_get_native_wrapper): started support for
10666         custom marshalers.
10667         (mono_delegate_to_ftnptr): consider marshalling specifications
10668
10669 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
10670
10671         * reflection.c, reflection.h: emit custom marshal info.
10672
10673 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10674
10675         * object.c: free the GError.
10676         * icall.c: added CloseEvent_internal.
10677         * threads.[ch]:
10678         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
10679         call.
10680
10681 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
10682
10683         * loader.c (mono_method_get_signature): Add support for dynamic
10684         assemblies.
10685
10686 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
10687
10688         * reflection.c: fixed bug #43905.
10689
10690 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
10691
10692         * class.c, domain.c, icall.c, metadata.h, object.h: support for
10693         handling TypedReference and ArgIterator.
10694         * loader.c, loader.h: added function to get signature at call site.
10695
10696 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10697
10698         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
10699         data readonly. Buglets and warning fixes. Some MethodSpec support.
10700
10701 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10702
10703         * class.h, class.c, object.c: remove relative numbering support.
10704
10705 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
10706
10707         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
10708         free the string, until we get a chance to fix Gtk#
10709
10710 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10711
10712         * marshal.c: revert last patch.
10713
10714 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
10715
10716         * icall.c: updates for new mono_class_vtable() not calling
10717         the type constructor anymore.
10718
10719 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
10720
10721         * object.h, object.c: separate vtable creation from type
10722         initialization. Make running the .cctor thread safe.
10723
10724 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
10725
10726         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
10727
10728 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
10729
10730         * loader.c (mono_get_method): consider calling convention
10731
10732 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
10733
10734         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
10735         to return the invisible global type for a module.
10736
10737         * reflection.c (mono_image_build_metadata): Emit global fields too.
10738
10739 2003-05-20  Peter Williams  <peterw@ximian.com>
10740
10741         * loader.c (mono_lookup_internal_call): Add a few newlines.
10742
10743 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
10744
10745         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
10746         literal strings.
10747
10748         * appdomain.c (set_domain_search_path): Recalculate search path when
10749         AppDomainSetup.PrivateBinPath changes.
10750
10751         * object.c (mono_class_compute_gc_descriptor): It turns out some
10752         parts of the class libs (like System.Thread) holds pointers to
10753         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
10754         to treat native int a pointer type here.
10755         
10756 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
10757
10758         * appdomain.h, domain.c: add hashtable for jump target resolution.
10759
10760 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
10761
10762         * reflection.h reflection.c icall.c: Added new icalls 
10763         GetManifestResourceInfoInternal, GetModulesInternal and support
10764         infrastructure.
10765
10766 2003-05-16  Dick Porter  <dick@ximian.com>
10767
10768         * icall.c:
10769         * file-io.h:
10770         * file-io.c: Implement System.IO.MonoIO::GetTempPath
10771
10772 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
10773
10774         * object.c: mono_store_remote_field: little fix to previous patch.
10775
10776 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
10777
10778         * class.c: add constructors to array classes.
10779         * icall.c: special case array construction for InternalInvoke (),
10780
10781 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
10782
10783         * class.h class.c reflection.c object.c: Added support for field
10784         defaults in dynamically generated classes.
10785
10786 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
10787
10788         * reflection.c: properly encode charset for ddlimport.
10789
10790 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
10791
10792         * threads.c: allow compiling without GC.
10793
10794 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
10795
10796         * appdomain.h, object.c, object.h, threads.c, threads.h: added
10797         handling of thread static data.
10798
10799 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10800
10801         * reflection.h, reflection.c: added mono_custom_attrs_free ().
10802
10803 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
10804
10805         * class.c (mono_array_class_get): always set the serializable flags
10806         (mono_array_class_get): always set the SEALED attribute for array types
10807
10808 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
10809
10810         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
10811         attributes (fix for bug 42021).
10812
10813 2003-05-12  Dick Porter  <dick@ximian.com>
10814
10815         * gc.c: Don't run finalizers when the finalizer thread is
10816         finishing up, because the default domain has already been
10817         destroyed.
10818
10819 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
10820
10821         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
10822         value is null, we should throw an exception.   This is slightly
10823         different than the other conventions used for the constructor.
10824
10825 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10826
10827         * socket-io.c: fixed windows build.
10828
10829 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10830
10831         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
10832
10833 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
10834
10835         * object.c (mono_string_new_wrapper): Compatibility fix for MS
10836         compilers.
10837
10838 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
10839
10840         * class.c (mono_class_layout_fields): Add experimental GC aware
10841         auto layout facility. Requires class library changes to work correctly.
10842
10843         (mono_class_setup_vtable): Avoid overriding explicit interface
10844         method implementations. Fixes iface3.exe test.
10845
10846         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
10847         object reference.
10848         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
10849         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
10850
10851         * metadata.h: Add new type classification macro which determines
10852         whenever the type holds an object reference.
10853
10854 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
10855
10856         * marshal.c (mono_marshal_get_native_wrapper): cleanups
10857
10858 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
10859
10860         * gc.c (finalizer_thread): Work around a GC bug.
10861
10862 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
10863
10864         * marshal.c (emit_struct_conv): allow unions
10865
10866         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
10867
10868 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
10869
10870         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
10871
10872 2003-05-06  Martin Baulig  <martin@ximian.com>
10873
10874         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
10875
10876 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10877
10878         * socket-io.c:
10879         (Select_internal): allow NULLs, don't create arrays if not needed.
10880         Coupled with Socket.cs changes.
10881
10882         * threadpool.c:
10883         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
10884         register a finalizer for it that will close the semaphore handle. This
10885         fixes the leak and make Lupus' test run with > 4080 loops.
10886
10887 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
10888
10889         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
10890         Jerome Laban (bug #42287)
10891
10892 2003-05-02  Martin Baulig  <martin@ximian.com>
10893
10894         * debug-mono-symfile.h
10895         (MonoSymbolFile): Moved declaration into mono-debug.h.
10896         (MonoDebugMethodJitInfo): Likewise.
10897         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
10898         argument.
10899         (_mono_debug_address_from_il_offset): Take a
10900         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
10901
10902         * mono-debug.h
10903         (MonoDebugDomainData): New struct.
10904         (mono_debug_get_domain_data): New function.
10905         (mono_debug_add_method): Take an additional `MonoDomain *'
10906         argument.
10907         (mono_debug_source_location_from_address): Likewise.
10908         (mono_debug_il_offset_from_address): Likewise.
10909         (mono_debug_address_from_il_offset): Likewise.
10910
10911 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
10912
10913         * reflection.c: one more check for null type in custom attrs.
10914
10915 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10916
10917         * reflection.c: avoid warning (comparison is always false due to limited
10918         range of data type).
10919
10920 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10921
10922         * icall.c: throw an exception in Type.GetField if the argument 'name'
10923         is NULL.
10924
10925 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
10926
10927         * reflection.c: fixed handling of enums in named arguments to custom
10928         attributes (bug #42123).
10929
10930 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10931
10932         * reflection.c: use the right array element type and handle
10933         a null for a Type argument, too.
10934
10935 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
10936
10937         * reflection.c: handle arrays as arguments to custom attributes.
10938
10939 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
10940
10941         * reflection.c: handle a string value in a custom attr
10942         ctor that takes an object.
10943
10944 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
10945
10946         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
10947         (fix bug #42063)
10948
10949 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
10950
10951         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
10952
10953 2003-04-27  Martin Baulig  <martin@ximian.com>
10954
10955         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
10956         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
10957         MONO_DEBUGGER_EVENT_BREAKPOINT.
10958         (mono_breakpoint_trampoline_code): Removed.
10959         (mono_debugger_event_handler): The last argument is now a
10960         `guint32'.
10961         (mono_debugger_insert_breakpoint_full): Removed the
10962         `use_trampoline' argument.
10963         (mono_debugger_method_has_breakpoint): Likewise.
10964         (mono_debugger_trampoline_breakpoint_callback): Renamed to
10965         mono_debugger_breakpoint_callback(); take the method and
10966         breakpoint number as arguments.
10967
10968 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
10969
10970         * metadata.c: fix off by one when loading parameters attributes.
10971
10972 2003-04-24  Martin Baulig  <martin@ximian.com>
10973
10974         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
10975
10976 2003-04-24  Martin Baulig  <martin@ximian.com>
10977
10978         * mono-debug-debugger.c: Moved all code which interacts with the
10979         Mono Debugger here.
10980
10981         * debug-mono-symfile.c: This code now just deals with the symbol
10982         file itself, the debugger code is now in mono-debug-debugger.c.
10983
10984 2003-04-23  Martin Baulig  <martin@ximian.com>
10985
10986         * mono-debug.c (mono_debug_source_location_from_il_offset):
10987         New method; like mono_debug_source_location_from_address(), but
10988         takes an IL offset instead of a machine address.
10989
10990 2003-04-23  Martin Baulig  <martin@ximian.com>
10991
10992         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
10993         `line' field; this is now computed by the debugger.
10994
10995 2003-04-23  Martin Baulig  <martin@ximian.com>
10996
10997         * mono-debug.[ch]: New files.  This is the new debugging interface.
10998
10999         * mono-debug-debugger.[ch]: New files.  Moved all code which
11000         interacts with the Mono Debugger here.
11001
11002 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
11003
11004         * domain.c (mono_init): initialize mono_defaults.monitor_class
11005
11006 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
11007
11008         * reflection.c (method_encode_code): Add a spicy exception to help
11009         future compiler authors.
11010
11011 2003-04-21  Martin Baulig  <martin@ximian.com>
11012
11013         * icall.c
11014         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11015         Make this work with relative pathnames; g_filename_to_uri() needs
11016         an absolute filename.
11017
11018 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
11019
11020         * icall.c: Track name changes in Object and ValueType.
11021
11022 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
11023
11024         * metadata.c (mono_type_stack_size): size should be a multiple of
11025         sizeof (gpointer)
11026
11027 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11028
11029         * gc.c:
11030         (internal_domain_finalize): moved into mono_domain_finalize. No need
11031         to create another thread because the finalizers will be run in the
11032         finalizer thread.
11033         
11034         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
11035         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
11036         to be run (MS does this too).
11037
11038 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
11039
11040         * object.c (mono_class_compute_gc_descriptor): Update comment.
11041
11042         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
11043
11044         * image.h: Add synchronized wrapper cache.
11045
11046         * image.c (do_mono_image_open): Initialize cache.
11047
11048         * reflection.c (create_dynamic_mono_image): Initialize cache.
11049
11050 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11051
11052         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
11053         ves_icall_System_Buffer_ByteLengthInternal.
11054
11055 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
11056
11057         * reflection.c: setup klass->nested_in earlier. Allow
11058         a dash in the assembly name.
11059
11060 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
11061
11062         * metadata.c (mono_type_to_unmanaged): dont access
11063         type->data.klass for MONO_TYPE_OBJECT
11064         (mono_type_to_unmanaged): consider System.Delegate class
11065
11066 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
11067
11068         * class.c: just setup supertypes in the proper place instead of
11069         initializing the full element class for arrays.
11070
11071 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
11072
11073         * class.c: ensure the element class of arrays is initialized.
11074         Setup the supertype info for array classes, too.
11075
11076 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
11077
11078         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
11079
11080 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11081
11082         * Makefile.am: re-added -m option when running cygpath. This way,
11083         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
11084         separator.
11085         * mono-config.c: same codepath for locating mono config file for WIN32
11086         and the rest.
11087         * assembly.c: if mono_assembly_setrootdir is called, don't override
11088         the value set.
11089
11090 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11091
11092         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
11093         MONO_ASSEMBLIES variable.
11094
11095 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
11096
11097         * icall.c: added Assembly::GetNamespaces() icall.
11098
11099 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11100
11101         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
11102
11103 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
11104
11105         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
11106         * object.c: fixed bug in the construction of vtable for proxies
11107
11108 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
11109
11110         * object.c (mono_array_new): Mark mono_array_new as an icall.
11111
11112 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11113
11114         * class.c: fixed test for public method when overriding interfaces.
11115         Closes bug #40970.
11116
11117 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
11118
11119         * appdomain.h, domain.c: added mono_domain_foreach() to
11120         be able to access the currently loaded appdomains.
11121         * object.c: make string interning work across sppdomains.
11122         Mark some functions for use as icalls.
11123
11124 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
11125
11126         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
11127
11128         * reflection.h reflection.c: Allocate long living data using 
11129         GC_MALLOC_ATOMIC so the collector does not need to scan it.
11130
11131         * reflection.c: Double the allocation size in streams instead of
11132         increasing it, to prevent unneccesary copying on large assemblies.
11133         
11134         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
11135         creation if the assembly does not have the Run flag set.
11136
11137 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
11138
11139         * class.h: avoid the C++ keywords in header files (Jerome Laban
11140         spotted and fixed this).
11141
11142 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11143
11144         * object.c:
11145         (mono_unhandled_exception): fill in the arguments for the
11146         UnhandledException event. Only trigger that event for the default
11147         domain (as MS does).
11148
11149 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
11150
11151         * object.c: Improve typed allocation stuff based on suggestions from
11152         Paolo. Also turn it on if the GC library supports it.
11153
11154 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
11155
11156         * object.c object.h class.h: Added experimental typed allocation
11157         facility using the interfaces in gc_gcj.h.
11158
11159         * os/gc_wrapper.h: Added new include files.
11160         
11161 2003-04-03  Martin Baulig  <martin@ximian.com>
11162
11163         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
11164         which is not yet enabled by default.
11165
11166         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
11167         functions.
11168         (mono_gc_lock, mono_gc_unlock): New static functions.
11169
11170         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
11171         functions; stop/start the world for the garbage collector.  This
11172         is using the windows API; we need to complete the SuspendThread()/
11173         ResumeThread() implementation in the io-layer to make this work on Unix.
11174         (mono_gc_push_all_stacks): New public function; tells the garbage
11175         collector about the stack pointers from all managed threads.
11176
11177 2003-04-03  Martin Baulig  <martin@ximian.com>
11178
11179         * object.h (MonoThread): Added `gpointer stack_ptr'.
11180
11181         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
11182
11183 2003-04-03  Martin Baulig  <martin@ximian.com>
11184
11185         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
11186
11187 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
11188
11189         * reflection.c (typebuilder_setup_fields): Initialize field.first and
11190         field.last.
11191
11192 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
11193
11194         * loader.c (mono_lookup_internal_call): Report the corlib that is
11195         out of sync.
11196
11197 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
11198
11199         * icall.c (ves_icall_type_GetTypeCode): fixed check for
11200         System.DBNull (it's class not valuetype).
11201
11202 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
11203
11204         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
11205         if the array method was already assigned a token (fixes bug#40646).
11206
11207 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
11208
11209         * reflection.c (mono_reflection_get_type): Attempt type resolve even
11210         if no assembly is given.
11211
11212 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
11213
11214         * metadata.h: Added the new tables.
11215
11216         * row-indexes.h: Added definitions for new tables.
11217
11218         * metadata.c: Add schemas for new tables, and add support for
11219         computing the sizes of them.
11220
11221         * class.c: Update for handling the new type cases.
11222
11223 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
11224
11225         * metadata.h (MONO_TYPE_IS_VOID): new macro
11226
11227 2003-03-31  Martin Baulig  <martin@ximian.com>
11228
11229         * threads.h (MonoThreadCallbacks): Added `thread_created'.
11230
11231         * threads.c (mono_thread_new_init): Call `thread_created' in the
11232         mono_thread_callbacks.
11233
11234 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
11235
11236         * loader.h: added marshalbyrefobject_class to mono_defaults
11237         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
11238         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
11239           generation of output parameters.
11240           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
11241         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
11242           contextbound and the target object belongs to the context of the caller.
11243         * object.h: added context and unwrapped_server variables in MonoRealProxy.
11244         * object.c: Implemented support for interfaces and abstract classes
11245           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
11246           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
11247
11248 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
11249
11250         * class.h class.c (mono_class_is_subclass_of): New function.
11251         
11252         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
11253         routines for most common case (calls from ArrayList::ToArray).
11254
11255         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
11256         routine so programs which call Environment::Exit() can be profiled.
11257
11258         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
11259         Added MONO_ARCH_SAVE_REGS.
11260
11261         * icall.c (ves_icall_type_is_subtype_of): Use new function.
11262
11263 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
11264
11265         * blob.h: Add a couple of new MonoType types definitions.
11266
11267         * tabledefs.h: Add a couple of new call convs.
11268
11269 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
11270
11271         * reflection.h (MonoReflectionDynamicAssembly): track changes in
11272         the layout of the class.
11273
11274         * reflection.c (alloc_table): double the size on overflow to avoid
11275         unnecessary copying.
11276
11277         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
11278         avoid filling out metadata tables and blobs. Also set mb->ilgen to
11279         null so it can be garbage collected.
11280         
11281 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
11282
11283         * reflection.c (mono_reflection_get_type): Return the resolved type
11284         only if it is in the assembly we searched.
11285
11286         * reflection.c (ensure_runtime_vtable): Initialize method slots.
11287
11288         * class.c (mono_class_setup_vtable): Set the slot of the overriding
11289         method.
11290
11291 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11292
11293         * appdomain.c:
11294         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
11295         the right one is 'file:///blah', but MS allows it.
11296         * assembly.c:
11297         (mono_assembly_open): allow 'file://blah'
11298
11299         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
11300
11301 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
11302
11303         * socket-io.c: fixes bug #40310.
11304
11305 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
11306
11307         * reflection.c (mono_reflection_parse_type): handle deeply nested
11308         types correctly.
11309
11310         * reflection.c (mono_image_create_token): Use unique token values
11311         since they will be put into a hash table.
11312
11313         * class.c (mono_class_setup_vtable): If a method occurs in more than
11314         one place in the vtable, and it gets overriden, then change the
11315         other occurances too.
11316
11317         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
11318         object as return type.
11319
11320 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11321
11322         * icall.c: Deleted "ToString" implementation for double and float
11323         because they are full implemented in managed code.
11324
11325 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11326
11327         * reflection.c, reflection.h: implemented and exported functions
11328         to retrieve info about custom attributes.
11329
11330 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11331
11332         * appdomain.c: moved Uri handling to assembly.c
11333         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
11334         work when using a file Uri in *nix and windows.
11335
11336         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
11337         GetReferencedAssemblies.
11338
11339 2003-03-18  Dick Porter  <dick@ximian.com>
11340
11341         * icall.c: Rename a couple of internal calls
11342
11343         * threads.c: Set the thread state to Stopped when a thread exits.
11344         Fixes bug 39377.
11345
11346 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
11347
11348         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
11349         New icall.
11350
11351         * object.c (mono_class_vtable): fix warning.
11352
11353 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
11354
11355         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
11356
11357         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
11358         memory.
11359         (method_encode_clauses): Create exception info structures in the right
11360         order.
11361         (mono_reflection_setup_internal_class): Initialize supertypes field.
11362
11363         * class.c object.c: Handle interfaces which implement other interfaces 
11364         correctly.
11365
11366         * class.h class.c: Move the supertypes array initialization code into 
11367         a separate function so it can be used for dynamic types too. Also call
11368         it earlier, in mono_class_init(), since it can be used before the
11369         type is initialized.
11370
11371 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11372
11373         * Makefile.am:
11374         * assembly.c:
11375         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
11376
11377         * appdomain.c:
11378         * appdomain.h:
11379         * marshal.c:
11380         * object.c: remove warnings.
11381
11382 2003-03-13  Martin Baulig  <martin@ximian.com>
11383
11384         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
11385         (MonoDebugLexicalBlockEntry): New types.
11386
11387         * debug-mono-symfile.c
11388         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
11389
11390 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11391
11392         * process.c: ret can be any non-zero value accroding to MS doc.
11393
11394 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
11395
11396         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
11397         fixing a warning for a miss-used prototype, would have cause
11398         random memory corruption.
11399
11400 2003-03-07  Martin Baulig  <martin@ximian.com>
11401
11402         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
11403         getting really annoying ....
11404
11405 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
11406
11407         * reflection.c (fixup_method): added support for array methods.
11408
11409 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
11410
11411         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
11412         (pointed out by Michael Adams).
11413
11414 2003-03-04  Dick Porter  <dick@ximian.com>
11415
11416         * icall.c: Temporarily reverted the Double and Single ToString()
11417         change, because it broke nunit.
11418
11419 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
11420
11421         * object.h, threads.h: make include files compatible with C++
11422         (patch by Jerome Laban <jlaban@wanadoo.fr>).
11423
11424 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11425
11426         * icall.c: Erased ToString helper functions for Double and Single.
11427         Now, that implementations ar all in managed code (Double and Single
11428         Formatters).
11429
11430 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
11431
11432         * appdomain.c: Added method for initializing the default context of
11433         a domain. Added internal call for getting the default context.
11434         * appdomain.h: Added context variable in MonoDomain struct.
11435         * domain.c: mono_domain_set also sets the default context of the domain
11436         * icall.c: Mapped internal method InternalGetDefaultContext.
11437         * object.c: mono_object_get_virtual_method returns always a remoting
11438         wrapper if the object is a transparent proxy.
11439         mono_runtime_invoke_array: when creating an object by calling the
11440         constructor, if the created object is a proxy, then the constructor should
11441         be called using the a remoting wrapper.
11442
11443 2003-03-03  Dick Porter  <dick@ximian.com>
11444
11445         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
11446         variable so it compiles on solaris.  Problem spotted by
11447         Christopher Taylor <ct@cs.clemson.edu>
11448
11449 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11450
11451         * appdomain.c:
11452         (get_info_from_assembly_name): don't leak value.
11453
11454         * icall.c:
11455         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
11456         result.
11457
11458 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
11459
11460         * assembly.c: export mono_image_load_references ().
11461         * class.c: handle function pointers. mono_class_from_name() now
11462         supports nested type names directly.
11463
11464 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
11465
11466         * reflection.h reflection.c: Encode already created dynamic methods 
11467         and fields correctly as a DEF instead of a REF.
11468
11469         * reflection.c: Get rid of the force_ref argument to 
11470         mono_image_typedef_or_ref since it was wrong in the first place.
11471
11472         * string-icalls.c: add error checking to string constructors according
11473         to the MSDN docs.
11474
11475         * reflection.c: Emit types in the order their TypeBuilders were 
11476         created. Previously, a new table index was assigned to each type before
11477         the tables were emitted. This was wrong because the signature blob
11478         might already refer to a type by its original table index.
11479
11480 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
11481
11482         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
11483         change.
11484         
11485 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11486
11487         * Makefile.am: make assemblies dir have \ instead of / on windows.
11488
11489 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
11490
11491         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
11492         iterate over the NESTEDCLASS table using a linear search since the
11493         table is not guaranteed to be sorted by the secondary key.
11494
11495         * class.c (mono_class_create_from_typedef): fixed up call to
11496         mono_metadata_nesting_typedef.
11497         
11498 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
11499
11500         * marshal.c (mono_string_to_byvalstr): clear the memory as
11501         suggested by Jerome Laban <jlaban@wanadoo.fr>
11502
11503 2003-02-26  Dick Porter  <dick@ximian.com>
11504
11505         * process.c: Cope with padding in .rsrc blocks
11506
11507 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
11508
11509         * metadata.h: reverted the filter_len change, it breaks reflection
11510         
11511 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
11512
11513         * metadata.h: added a new field to store the filter_len
11514         
11515
11516 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
11517
11518         * reflection.c: handle custom attributes for types and members
11519         created with Reflection.Emit (bug#38422).
11520
11521 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
11522
11523         * reflection.c: define RTSpecialName automatically for constructors for
11524         compatibility with MS.NET.
11525
11526         * reflection.c (mono_reflection_create_runtime_class): initialize
11527         nested_in field of dynamically created classes.
11528
11529 2003-02-22  Martin Baulig  <martin@ximian.com>
11530
11531         * debug-mono-symfile.h: Incremented version number.
11532
11533 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
11534
11535         * object.h icall.c process.c: fix warnings.
11536
11537 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
11538
11539         * appdomain.h appdomain.c:
11540         (mono_domain_try_type_resolve): split the 
11541         name_or_tb argument into a name and a tb argument.
11542         (mono_domain_has_type_resolve): new function to check whenever the
11543         application has registered a TypeResolve event handler.
11544         
11545         * icall.c reflection.h reflection.c: move the type resolve logic into
11546         mono_reflection_get_type () so it will be invoked when 
11547         Assembly::GetType () is called.
11548
11549         * reflection.c:
11550         (mono_reflection_get_type): renamed to get_type_internal.
11551         (mono_reflection_get_type): fixed type name generation so it works 
11552         for nested types too.
11553         (mono_reflection_get_type): call has_type_resolve () to avoid the 
11554         costly type name generation if there is no resolve event handler.
11555
11556 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11557
11558         * class.c, image.c: load exported types from file references.
11559
11560 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
11561
11562         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
11563           used to cache the managed methods used to create proxies and make 
11564           remote invocation of methods.
11565         * class.h: Added in MonoVTable a flag to indicate that a class needs 
11566           to be remotely created.
11567         * object.c: Modified the method mono_class_vtable(). It now initializes 
11568           the remote flag of the vtable. Modified mono_object_new_specific(), 
11569           so now it checks the remote flag.
11570         * icall.c: Added a couple of internal methods, one for enabling instance 
11571           creation interception for a type, and one for creating objects bypassing
11572           the remote check.
11573
11574 2003-02-18  Martin Baulig  <martin@ximian.com>
11575
11576         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
11577         New interncall to get a method's metadata token.
11578
11579         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
11580         New interncall for the debugger.
11581
11582 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
11583
11584         * class.c (mono_class_setup_vtable): allocate supertype array
11585
11586 2003-02-18  Martin Baulig  <martin@ximian.com>
11587
11588         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
11589
11590 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11591
11592         * reflection.c:
11593         (assembly_name_to_aname): jump over unknown properties (i've found
11594         something like: 'type, assembly, version=xxx, custom=null, public...',
11595         so now will ignore custom=null and still get the rest of the values).
11596
11597 2003-02-17  Dick Porter  <dick@ximian.com>
11598
11599         * threads.c: Have Thread.Start() wait for a semaphore to signal
11600         that the thread has set up all its local data.  This fixes bug
11601         34323, where Abort() raced the new thread's TLS data.
11602
11603         Also removes the handle_store() call from start_wrapper, because
11604         threads are now always created suspended and there is no longer a
11605         race between the parent and child threads to store the info.
11606
11607 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
11608
11609         * image.c: explain the #- heap issue in a message, hopefully
11610         avoiding FAQs on mono-list.
11611
11612 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11613
11614         * icall.c:
11615         (GetEntryAssembly): if the domain has not invoked
11616         AppDomain.ExecuteAssembly yet, return the assembly of the default
11617         AppDomain.
11618
11619 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
11620
11621         * class.c (mono_ldtoken): make it work in dynamic assemblies.
11622
11623 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
11624
11625         * metadata.c, reflection.c: simple speedup to type hash
11626         and equals code.
11627
11628 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
11629
11630         * image.c, image.h, class.c, assembly.c: move module loading
11631         to MonoImage. When loading metadata, consider alignemnet from
11632         the start of metadata, not from the metadata address in memory.
11633
11634 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
11635
11636         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
11637         AssemblyBuilder objects. Factored out custom attribute creation into
11638         a separate function.
11639         (create_custom_attr): new function to create custom attributes.
11640
11641 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
11642
11643         * Makefile.am: Got tired of typing the full pathname to pedump.
11644         Until there is another option, am installing this.
11645
11646 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
11647
11648         * class.c (class_compute_field_layout): always set field->parent 
11649         (mono_ldtoken): use mono_defaults.fieldhandle_class;
11650
11651 2003-02-11  Dick Porter  <dick@ximian.com>
11652
11653         * threads-types.h:
11654         * monitor.c: Rewrote Monitor, making lock much faster and
11655         Pulse/Wait work as specified.  Also uses much fewer handles, and only
11656         creates them as needed.
11657
11658         * exception.c: Added SynchronizationLockException
11659
11660         * threads.c: Deleted old Monitor implementation.  The new one is
11661         in a new file.
11662
11663 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
11664
11665         * class.c: handled TypedReference type code. Set the correct size for
11666         class data. Setup interface_offsets for interface classes, too.
11667
11668 2003-02-09  Martin Baulig  <martin@ximian.com>
11669
11670         * debug-mono-symfile.h: Reflect latest symbol writer changes.
11671
11672 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
11673
11674         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
11675         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
11676         * object.c: fixed mono_object_get_virtual_method () for interfaces.
11677         * verify.c: check for code that runs after the end of the method.
11678
11679 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11680
11681         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
11682         "System.Math::Round2".
11683         * sysmath.h: Added Floor, Round and Round2 definitions.
11684         * sysmath.c: Modified certain functions that were not 100% compliant
11685         with MS.NET (math precision) and added the implementation of Floor,
11686         Round and Round2.
11687
11688 2003-02-07  Martin Baulig  <martin@ximian.com>
11689
11690         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
11691
11692 2003-02-07  Martin Baulig  <martin@ximian.com>
11693
11694         * debug-mono-symfile.c: Reflected latest symwriter changes.
11695         (mono_debug_create_mono_symbol_file): Removed.
11696         (mono_debug_open_mono_symbol_file): Take an argument which
11697         specifies whether to create a dynamic symbol file.
11698
11699 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
11700
11701         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
11702
11703 2003-02-05  Martin Baulig  <martin@ximian.com>
11704
11705         * reflection.c (mono_image_build_metadata): Make this public,
11706         protect it against being called multiple times, don't create
11707         resources and don't build the compressed metadata here.
11708         (mono_image_create_pefile): Do this here.
11709
11710         * icall.c
11711         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
11712
11713 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11714
11715         * socket-io.c: fixed bug #36322.
11716
11717 2003-02-06  Piers Haken <piersh@friskit.com>
11718
11719         * appdomain.[ch]:
11720         * class.h:
11721         * debug-mono-symfile.c:
11722         * icall.c:
11723         * loader.c:
11724         * mono-config.c:
11725         * monosn.c:
11726         * reflection.c:
11727         * socket-io.c: warning cleanups
11728
11729 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
11730
11731         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
11732         function. works like remoting invoke, but does a check for the Proxy first.
11733
11734 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
11735
11736         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
11737
11738 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
11739
11740         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
11741         array of pointers.
11742         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
11743         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
11744
11745         * object.c (mono_store_remote_field_new): used by the new jit
11746         instead of mono_store_remote_field
11747         (mono_load_remote_field_new): used by the new jit
11748         instead of mono_load_remote_field
11749
11750 2003-02-05  Patrik Torstensson
11751
11752         * appdomain.c: changed unload to take the domain id instead
11753         of domain
11754         
11755         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
11756
11757
11758 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11759
11760         * appdomain.c: don't look for assemblies in ApplicationBase if
11761         PrivateBinPathProbe is set.
11762
11763 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11764
11765         * object.c: make the first argument in main_args contain the absolute
11766         path to the assembly. Fixes bug #37511.
11767
11768 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11769
11770         * icall.c: get correct UTC offset for countries not using daylight
11771         time saving. Fixes bug #30030.
11772
11773 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11774
11775         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
11776         and 1 are the family).
11777
11778 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
11779
11780         * icall.c (ves_icall_InternalExecute): removed wrong assertion
11781
11782         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
11783
11784 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
11785
11786         * reflection.c: added support for SignatureHelper tokens, which is
11787         needed by the Calli opcode.
11788
11789         * reflection.h: track changes to SignatureHelper class.
11790
11791         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
11792
11793 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11794
11795         * appdomain.c: fixed loading assemblies from PrivateBinPath.
11796
11797 2003-02-03  Patrik Torstensson
11798         * appdomain.[c|h], domain.c : 
11799          - Added support for getting a domain via domain id
11800          - Support for setting and getting domain from System.AppDomain 
11801            (used in cross appdomain channel)
11802          - Added support for get/set for a MonoAppContext on a thread 
11803            (Context class in System.Runtime.Remoting.Contexts),
11804          - Removed hack in Get/SetData and ExecuteAssembly.
11805         
11806         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
11807         the managed world to get control when a proxy is created.
11808
11809         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
11810         
11811 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
11812
11813         * icall.c
11814         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11815         Populate the codebase field as well.
11816
11817 2003-02-02  Martin Baulig  <martin@ximian.com>
11818
11819         * debug-mono-symfile.c
11820         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
11821         (mono_debug_symfile_add_method): Allow interncalls.
11822
11823 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11824
11825         * icall.c: throw parse exception if strtod fails or the string is empty.
11826
11827 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
11828
11829         * marshal.c: handle object type separately from defined
11830         class types.
11831
11832 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
11833
11834         * marshal.c: handle NATIVE_LPSTR for strings when it's
11835         explicitly specified.
11836
11837 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
11838
11839         * reflection.c, reflection.h, icall.c: setup the reflection
11840         handle cache for ModuleBuilders and AssemblyBuilders.
11841
11842 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
11843
11844         * reflection.c (reflection_methodbuilder_to_mono_method): set
11845         pinvoke flag
11846
11847 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11848
11849         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
11850
11851 2003-01-29  Dick Porter  <dick@ximian.com>
11852
11853         * threads.c: No need for the fake_thread kludge now that Thread
11854         doesn't run a class constructor
11855         
11856 2003-01-29  Dick Porter  <dick@ximian.com>
11857
11858         * threads.c: Use g_direct_hash instead of the rather bogus
11859         g_int_hash
11860
11861 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
11862
11863         * marshal.c (mono_marshal_get_native_wrapper): add check for null
11864         (fix pinvoke12.exe)
11865         (mono_marshal_get_struct_to_ptr): generate valid IL code
11866         (mono_marshal_get_ptr_to_struct): generate valid IL code
11867         (*): correctly set sig->pinvoke, we need to memdup the signature
11868         to do that
11869
11870 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11871
11872         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
11873         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
11874
11875 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
11876
11877         * profiler.c: provide more callers information.
11878
11879 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
11880
11881         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
11882
11883         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
11884
11885         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
11886
11887 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11888
11889         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
11890         exception instead of going into an infinite loop on dates which it 
11891         can't yet handle.
11892
11893         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
11894         out-of-range exception if needed.
11895
11896         * class.c (mono_class_setup_vtable): allow a virtual method to provide
11897         an implementation for an interface method and to override an inherited
11898         method at the same time. 
11899         Imagine a scenario when a virtual method is used to override a
11900         virtual abstract method in a parent class, and this same method 
11901         provides an implementation for an method inherited from an interface. 
11902         In this case, the interface resolution code will set im->slot, which 
11903         means that the virtual method override pass will skip this method 
11904         which means a pointer to the abstract method inherited from the parent
11905         will remain in the vtable of this non-abstract class.
11906
11907         * class.c: (mono_class_setup_vtable): continue search for a real 
11908         method if only an abstract method is found.     
11909
11910 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
11911
11912         * reflection.c: add size to encoding for ByValStr and ByValArray
11913         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
11914
11915 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11916
11917         * class.c (mono_class_setup_vtable): pass the override info as an
11918         argument.
11919
11920         * class.c (mono_class_setup_vtable): set the slot of overriding methods
11921         correctly.
11922         
11923         * reflection.c (ensure_runtime_vtable); add support for method 
11924         overrides.
11925         
11926 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11927
11928         * reflection.c (resolution_scope_from_image): Hack to work to work with
11929         dynamic assemblies.
11930
11931         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
11932         added a 'force_ref' argument to force this function to allways return 
11933         a TypeRef. This is needed by mono_image_get_memberref_token ().
11934         
11935 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11936
11937         * reflection.c (mono_image_get_type_info): interfaces really don't have
11938         a parent.
11939
11940         * reflection.c (mono_image_basic_init): fill out missing fields of
11941         image structure.
11942
11943         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
11944         dynamic assemblies. This is required so dynamic assemblies show up in
11945         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
11946         Type::GetType() etc. This is consistent with MS behaviour.
11947
11948         * image.c image.h reflection.c: add newly created classes to the name 
11949         cache so mono_class_get () will find them.      
11950
11951 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11952
11953         First part of changes to get IKVM.NET running under mono.
11954         
11955         * appdomain.h, appdomain.c: added new function 
11956         mono_domain_try_type_resolve() which will emit TypeResolve events. 
11957         This function will call AppDomain::DoTypeResolve to do the actual work.
11958
11959         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
11960         moved existing code dealing with dynamic tokens to a new function 
11961         called mono_reflection_lookup_dynamic_token (). This function will 
11962         raise TypeResolve events when appropriate. Since reflection.c is not 
11963         part of libmetadata, a new hook function called 
11964         mono_lookup_dynamic_token() is added to class.c which will call this.
11965
11966         * assembly.h assembly.c: make the invoke_load_hook function public,
11967         so it can be called for dynamic assemblies.
11968
11969         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
11970
11971         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
11972         type isn't found.
11973
11974         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
11975         MonoGHashTable, since it contains pointers to objects which the GC 
11976         needs to track.
11977
11978         * assembly.c (search_loaded): remove unused variable.
11979         
11980 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
11981
11982         * object.c: fixed issue exposed by gcc-generated IL programs
11983         that use RVA data for pointers.
11984
11985 2003-01-25  Martin Baulig  <martin@ximian.com>
11986
11987         * threads.c (start_wrapper): Moved the initialization of
11988         `start_func' above the mono_new_thread_init() call to which we
11989         pass it as argument.
11990
11991 2003-01-24  Martin Baulig  <martin@ximian.com>
11992
11993         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
11994         the MonoThread pointer.
11995
11996 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
11997
11998         * icall.c: Rename `PowImpl' to Pow.
11999
12000 2003-01-23  Dick Porter  <dick@ximian.com>
12001
12002         * threads.c (start_wrapper): Create a Thread object if needed, so
12003         the Main() thread can do the class initialisation in a subthread
12004         that has been set up to allow managed code execution.
12005
12006         Pass the thread ID instead of the MonoThread pointer to the thread
12007         start and attach callbacks.  This change is required, because the
12008         jit thread start callback must be called _before_ the Thread
12009         object can be created.
12010         
12011         (mono_thread_init): Removed much object creation code that is no
12012         longer needed.  No managed code is called from here now.
12013
12014         * object.c (mono_runtime_exec_managed_code): Create a subthread
12015         for Main, and call back to the runtime to use it.
12016         Set the exit code when Main exits.
12017
12018         * gc.c: Make sure domain finalisation happens in a subthread.
12019         Re-enable threaded GC, fixing bug 31333 (again).
12020
12021         * environment.c: System.Environment internall calls (so far just
12022         ExitCode is here, the others are still in icall.c)
12023
12024         * appdomain.c (mono_runtime_cleanup): All threads running managed
12025         code should have finished before mono_runtime_cleanup() is
12026         reached, so no need to clean up threads.
12027
12028 2003-01-22  Martin Baulig  <martin@ximian.com>
12029
12030         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
12031         `gpointer func' arguments.      
12032         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
12033         but added `MonoThread *thread' argument.
12034         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
12035
12036         * threads.c (mono_new_thread_init): Added `gpointer func' argument
12037         and pass it to the mono_thread_start_cb callback.
12038         (mono_install_thread_callbacks): New public function to install a
12039         set of callbacks which are set by the debugger.
12040         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
12041
12042 2003-01-22  Martin Baulig  <martin@ximian.com>
12043
12044         * Makefile.am: Install debug-mono-symfile.h.
12045
12046 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
12047
12048         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
12049
12050 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
12051
12052         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
12053         * class.c (mono_ptr_class_get): correctly set access levels of pointers
12054         (mono_array_class_get): correctly set access levels of arrays
12055
12056 2003-01-20      Patrik Torstensson
12057         * image.h (MonoAssemblyName): changed major, minor, build, revision
12058         from signed to unsigned.
12059
12060 2003-01-20  sean kasun <skasun@azstarnet.com>
12061
12062         * reflection.c (load_cattr_value): Now this handles
12063         MONO_TYPE_SZARRAY.  Fixes bug #35629
12064
12065 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
12066
12067         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
12068         integer value
12069
12070 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12071
12072         * decimal.c: fixed bug #26056.
12073
12074 2003-01-17  Martin Baulig  <martin@ximian.com>
12075
12076         * gc.c: Raise an ExecutionEngineException instead of using g_error().
12077
12078 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12079
12080         * exception.[ch]:
12081         (mono_get_exception_type_initialization): new function.
12082
12083         * object.c: throw a TypeInitializationException when an exception is
12084         thrown invoking the class constructor.
12085
12086 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12087
12088         * reflection.c: fixed attribute reading.
12089
12090 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12091
12092         * icall.c:
12093         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
12094         provided, look for the type in the calling assembly and then in
12095         mscorlib; if the assembly name is provided, only try that one.
12096
12097 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
12098
12099         * object.c: register the vtable before there is a chance it's
12100         queried again recursively.
12101
12102 2003-01-13  Duncan Mak  <duncan@ximian.com>
12103
12104         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
12105         gc-internal.h. 
12106         
12107 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
12108
12109         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
12110
12111 2003-01-11  Martin Baulig  <martin@ximian.com>
12112
12113         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
12114         this to 20 for the release.
12115
12116 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
12117
12118         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
12119
12120         * loader.c (mono_method_get_marshal_info): bug fix
12121
12122         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
12123         structures with explicit layout
12124
12125 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
12126
12127         * profiler.c: made the output more readable (and sorted). 
12128         Added caller information for the allocation profiler.
12129
12130 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
12131
12132         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
12133
12134 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12135
12136         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
12137         to get value types.
12138         
12139 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
12140
12141         * object.c, profiler.h, profiler.c, profiler-private.h:
12142         Added object allocation profiler.
12143
12144 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
12145
12146         * reflection.h, reflection.c: handle global methods.
12147         Compress blob entries.
12148
12149 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
12150
12151         * marshal.c: fix compilation.
12152
12153 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
12154
12155         * loader.c (mono_method_get_marshal_info): impl.
12156
12157         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
12158
12159 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12160
12161         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
12162         for reference types.
12163
12164 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
12165
12166         * loader.c: fixed off by one error in loaded parameter names.
12167
12168 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
12169
12170         * marshal.c (mono_marshal_get_icall_wrapper): like
12171         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
12172         instead of a MonoMethod.
12173
12174 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12175
12176         * decimal.c: fixed bug #36537.
12177
12178 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
12179
12180         * marshal.c: throw a missing method exception if a
12181         P/Invoke method is not found.
12182
12183 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
12184
12185         * icall.c: allow a null this for constructors.
12186
12187 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
12188
12189         * icall.c: raise the proper exceptions if the arguments to the
12190         internal Invoke are incorrect.
12191
12192 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
12193
12194         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
12195
12196 2003-01-03  Martin Baulig  <martin@ximian.com>
12197
12198         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
12199
12200 2002-12-31  Martin Baulig  <martin@ximian.com>
12201
12202         * debug-mono-symfile.c: Completely rewrote the type section.
12203         Instead of using individual malloc()ed fields, we use one big
12204         continuous memory area and offsets into this area.
12205         See the comments in the source code for details.
12206
12207 2002-12-30  Martin Baulig  <martin@ximian.com>
12208
12209         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
12210
12211 2002-12-30  Martin Baulig  <martin@ximian.com>
12212
12213         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
12214         line number table in this data blob instead of using an external
12215         pointer.
12216
12217 2002-12-28  Martin Baulig  <martin@ximian.com>
12218
12219         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
12220
12221 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
12222
12223         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
12224         as a boxed return type.
12225
12226 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
12227
12228         * appdomain.c
12229         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
12230         g_build_filename to properly get separators on the filename created.
12231
12232         * object.h: Small change, introduce MonoMarshalByRefObject to
12233         track the layout of that structure in the C# universe as we make
12234         changes there.
12235
12236 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
12237
12238         * object.c: removed assert to allow static fields on interfaces.
12239         * loader.c: a TypeSpec may be used for any type, not just arrays.
12240
12241 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12242
12243         * class.c, class.h: added mono_class_array_element_size ().
12244         Ignore static methods in interfaces.
12245
12246 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12247
12248         * threads.c: fixed the build under cygwin.
12249
12250 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12251
12252         * reflection.c: handle nullref constants. Allocate keys for
12253         reflection handles with the GC.
12254
12255 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12256
12257         * threads.c, threads.h: added mono_thread_get_abort_signal()
12258         to get a suitable signal for thread abort.
12259
12260 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12261
12262         * metadata.c: fix handling of ExportedType table.
12263
12264 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12265
12266         * icall.c: added WriteWindowsDebugString internal call.
12267
12268 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12269
12270         * reflection.h: added fields to match C# implementation.
12271
12272 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12273
12274         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
12275
12276 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
12277
12278         * gc.h, gc-internal.h: Rename header for GC internal calls to
12279         gc-internal.h from gc.h as to not clash with Boehm GC having its
12280         header installed as <gc.h> in outside include paths.
12281         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
12282         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
12283
12284 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12285
12286         * icall.c: assign minor, build and revision in FillName.
12287
12288 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
12289
12290         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
12291         Added support for running code generated by Reflection.Emit.
12292
12293 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12294
12295         * appdomain.c: check for NULL argument in LoadFrom.
12296
12297 2002-12-10  Dick Porter  <dick@ximian.com>
12298
12299         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
12300
12301 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12302
12303         * appdomain.c: fix buglet when building exe file name.  Handle full
12304         assembly name (needed after latest changes to AssemblyName).
12305         * image.c:
12306         (mono_image_close): free some hashtables.
12307
12308 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
12309
12310         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
12311         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
12312         on some systems (redhat 7.3) 
12313
12314 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
12315
12316         * threads.c: delete the critical section of a sync block,
12317         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
12318
12319 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
12320
12321         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
12322
12323 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12324
12325         * appdomain.[ch]: handle the assembly preload event to try loading the
12326         assemblies using the paths we have in the current domain.
12327
12328         * assembly.[ch]: created an assembly preload hook that is called to try
12329         loading the assembly by other means that the ones provided here.
12330
12331         * domain.c: initialize the domain search path.
12332
12333         From now on, assemblies (TODO: except corlib and System) are loaded
12334         according to these rules when using mono_assembly_load ():
12335
12336                 1. It tries to load the assembly from the ApplicationBase
12337                 of the current domain appending .dll and .exe (TODO: have to
12338                 try loading from name/name.dll and name/name.exe).
12339
12340                 2. It tries the search path specified in PrivateBinPath for the
12341                 current domain (if any).
12342
12343                 3. Previous behavior.
12344
12345 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
12346
12347         * icall.c: implemented GetInterfaceMap() related icall.
12348         * domain.c, loader.h: load MethodInfo in mono_defaults.
12349
12350 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12351
12352         * gc.c: disable the finalizer thread for now, untill all the issues
12353         with it are resolved.
12354
12355 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12356
12357         * string-icalls.c: handle embedded nulls in string ctor when the
12358         length is specified.
12359
12360 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12361
12362         * class.c: look for explicit interface implementation in parent
12363         classes, too.
12364
12365 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
12366
12367         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
12368
12369 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12370
12371         * gc.c: protect handles with a critical section.
12372
12373 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12374
12375         * icall.c:
12376         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
12377         parameters. If no assembly specified, try getting the type from all
12378         the assemblies in the current domain, else, load the assembly and get
12379         the type from it.
12380
12381 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12382
12383         * marshal.c: applied patch from Aleksey Demakov that fixes
12384         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
12385
12386 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12387
12388         * icall.c: fixed get_location.
12389
12390 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
12391
12392         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
12393         declarations to make it work with older gcc. 
12394
12395         * loader.c (mono_get_method): set signature->pinvoke for native calls
12396
12397 2002-11-20  Dick Porter  <dick@ximian.com>
12398
12399         * threads.c (mono_thread_init): Set the main thread's handle
12400
12401 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12402
12403         * gc.c: allow compilation without GC support. Changed to match the
12404         mono coding style.
12405
12406 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12407
12408         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
12409
12410 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
12411
12412         * reflection.c: set a public key token on the core assemblies.
12413
12414 2002-11-18  Dick Porter  <dick@ximian.com>
12415
12416         * threads.c: Split out some thread initialisation so that other
12417         files can set the start callback function.
12418
12419         * gc.c: Run finalisers in a separate thread, to avoid stack
12420         overflow.  Fixes bug 31333.
12421
12422         * appdomain.c: Set up GC finalisation thread.
12423
12424         * reflection.c: 
12425         * object.c: 
12426         * domain.c: Use gc.h macros for GC_malloc
12427         
12428 2002-11-15  Dick Porter  <dick@ximian.com>
12429
12430         * threadpool.c: 
12431         * threads.c:
12432         * appdomain.c: Removed mono_runtime_init_with_attach(),
12433         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
12434         merging the extra parameter with the existing function.  Removed
12435         unneeded code in mono_thread_attach().
12436
12437 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
12438
12439         * image.c (mono_image_loaded_by_guid): a method to get loaded
12440         images by guid. 
12441         (load_metadata_ptrs): we store the guid as string.
12442
12443 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
12444
12445         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
12446
12447         * metadata.c (mono_guid_to_string): imported method form Zoltan
12448         Varga (slightly modified)
12449
12450         * assembly.c (mono_assembly_open): load precompiled code
12451
12452         * loader.h (MonoMethod): we store the method token for use in the
12453         aot compiler. 
12454
12455 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12456
12457         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
12458         the hook function called when an assembly is loaded.
12459         
12460         * domain.c: Modified file.
12461         (mono_domain_assembly_load): removed hash table insertion of assemblies.
12462
12463         Fixes bug #33196.
12464
12465 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
12466
12467         * reflection.c: Map PEFileKind to the value expected by the WinNT
12468         image loader. 
12469
12470 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12471
12472         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
12473         Read until the buffer is filled completely.
12474
12475 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12476
12477         * icall.c: implemented MonoType.InternalGetEvent ().
12478
12479 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12480
12481         * appdomain.c: implemented InitAppDomainSetup. Delayed
12482         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
12483         the entry_assembly.
12484
12485         * assembly.c: base_dir is now an absolute path ending with
12486         G_DIR_SEPARATOR.
12487
12488         * icall.c: modified get_location according to the above changes.
12489
12490         * object.c: init AppDomain.SetupInformation for the default domain after
12491         we have the entry assembly.
12492
12493         * domain.c: when unloading a domain, setup = NULL.
12494
12495 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
12496
12497         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
12498
12499 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
12500
12501         * object.h, object.c: introduced mono_object_get_virtual_method ()
12502         to lookup the method invoked on an object when a callvirt is done on
12503         a method.
12504         * icall.c: make MethodInfo::Invoke() always do a virtual call.
12505
12506 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12507
12508         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
12509         current domain when loaded an assembly and failed to load it.
12510
12511         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
12512
12513 2002-10-31  Dick Porter  <dick@ximian.com>
12514
12515         * icall.c: 
12516         * file-io.h: 
12517         * file-io.c: Return the error status in a parameter, as the
12518         GetLastError() value has long since been blown away if we try and
12519         look it up in a subsequent internal call invocation.  Delete the
12520         GetLastError() internal call, because it's useless.
12521
12522 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
12523
12524         * class.[ch]: added cast_class to fix bug 29517
12525
12526 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
12527
12528         * marshal.c: create valid IL code in the filter clause:
12529         the new JIT is less forgiving:-)
12530
12531 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12532
12533         * icall.c: removed get_property internal call.
12534
12535 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
12536
12537         * appdomain.h domain.c: Added an ID to appdomains.
12538         
12539         * threads.c threads.h icall.c: Implement icall
12540         Thread:GetDomainID(), and remove unused icall 
12541         CurrentThreadDomain_internal.
12542
12543 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12544
12545         * icall.c: Don't recurse through the base types in GetConstructor.
12546         Fixes bug #32063. 
12547
12548 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
12549
12550         * mempool.h, mempool.c: added mono_mempool_empty() and
12551         mono_mempool_stats().
12552
12553 2002-10-23  Dick Porter  <dick@ximian.com>
12554
12555         * file-io.c: 
12556         * file-io.h: 
12557         * icall.c: Added MonoIO.GetFileType internal call
12558
12559 2002-10-17  Dick Porter  <dick@ximian.com>
12560
12561         * appdomain.c (mono_runtime_cleanup): Don't signal the async
12562         delegate semaphore before waiting for all threads to finish,
12563         because new threads can also call async delegates.  Fixes bug
12564         32004.
12565
12566         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
12567         of 3 seconds, in case another async job is queued.  (This part is
12568         needed because the bug fix reintroduced the 3s exit lag.)  This
12569         makes the mono_runtime_shutdown flag superfluous.
12570
12571 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
12572
12573         * reflection.c: include ehader size in method section headers.
12574         Really check for suplicated modules entries.
12575
12576 2002-10-17  Martin Baulig  <martin@gnome.org>
12577
12578         * debug-mono-symfile.c: Added back support for locals.
12579
12580 2002-10-14  Martin Baulig  <martin@gnome.org>
12581
12582         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
12583         MONO_TYPE_VOID.
12584
12585 2002-10-14  Martin Baulig  <martin@gnome.org>
12586
12587         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
12588         mono_class_get() instead of looking in the class cache. 
12589
12590 2002-10-13  Martin Baulig  <martin@gnome.org>
12591
12592         * debug-mono-symfile.c: Set version number to 28, include the
12593         signature in method names.
12594
12595 2002-10-13  Martin Baulig  <martin@gnome.org>
12596
12597         * debug-mono-symfile.h: Set version number to 27.
12598
12599 2002-10-11  Martin Baulig  <martin@gnome.org>
12600
12601         * gc.c: Don't register/unregister NULL pointers as disappearing links.
12602
12603 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12604
12605         * metadata.c, metadata.h: added helper function to allocate signatures.
12606
12607 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12608
12609         * icall.c: added internal call to get the location of machine.config.
12610
12611 2002-10-08  Martin Baulig  <martin@gnome.org>
12612
12613         * debug-mono-symfile.c: Ignore classes with a pending init for the
12614         moment.
12615
12616 2002-10-03  Dick Porter  <dick@ximian.com>
12617
12618         * threads.c: Freebsd pthread_t is a pointer
12619
12620 2002-10-03  Dick Porter  <dick@ximian.com>
12621
12622         * socket-io.c: Implemented GetHostName_internal
12623
12624 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12625
12626         * mono-config.c:
12627         (mono_config_parse_file): don't leak the text.
12628
12629 2002-10-02  Martin Baulig  <martin@gnome.org>
12630
12631         * debug-mono-symfile.c: Added support for methods.
12632
12633 2002-10-01  Martin Baulig  <martin@gnome.org>
12634
12635         * debug-mono-symfile.c: Don't emit methods and line numbers for
12636         the dynamic symbol file, just write the type table.  We can easily
12637         have an external helper program which creates a symbol file for an
12638         IL file.        
12639
12640 2002-10-01  Dick Porter  <dick@ximian.com>
12641
12642         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
12643         Only add the handle to the cleanup array when we're about to
12644         launch the thread.  Bug 31425 deadlocked when the test was run on
12645         mono under w32.
12646
12647 2002-10-01  Martin Baulig  <martin@gnome.org>
12648
12649         * debug-mono-symfile.c: Added support for properties.
12650
12651 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12652
12653         * reflection.c: unaligned store fix from Mark Crichton
12654         <crichton@gimp.org>.
12655
12656 2002-09-27  Martin Baulig  <martin@gnome.org>
12657
12658         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
12659         New interncall.
12660
12661 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
12662
12663         * assembly.h, assembly.c: use a sane API to hook into the assembly
12664         loading process instead of a useless special-purpouse hack
12665         (ngen needs a hook, too, for example).
12666
12667 2002-09-27  Dick Porter  <dick@ximian.com>
12668
12669         * threads.c (mono_thread_init): Call GetCurrentProcess() so
12670         io-layer can set up some process handle info.  Not needed on w32,
12671         but doesn't hurt either.
12672
12673         * process.c: Pass the program name in the second parameter to
12674         CreateProcess, so the path is searched.  Include the working
12675         directory. Implemented process name, process enumeration, and some
12676         process detail internal calls.
12677         
12678         * icall.c: Added internal calls for process lookup, and some
12679         process details
12680
12681 2002-09-26  Martin Baulig  <martin@gnome.org>
12682
12683         * assembly.c (mono_install_open_assembly_hook): New global
12684         function to install a function to be invoked each time a new
12685         assembly is loaded.
12686         (mono_assembly_open): Run this callback function if set.
12687
12688         * debug-mono-symfile.c: Put back line numbers for the dynamic
12689         symbol file and also record the .il file as source file.  This
12690         allows us to install the temporary symbol file as `file.dbg' just
12691         like a compiler-generated one.
12692
12693 2002-09-26  Nick Zigarovich <nick@chemlab.org>
12694
12695         * Corrected typo in gc.c (BOHEM vs BOEHM).
12696
12697 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12698
12699         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
12700         GetProperties. Also avoid calling g_slist_length in GetProperties and
12701         GetMethods.
12702
12703 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
12704
12705         * reflection.c: avoid unaligned stores (bug spotted by
12706         Mark Crichton  <crichton@gimp.org>).
12707
12708 2002-09-25  Martin Baulig  <martin@gnome.org>
12709
12710         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
12711         instead of guint64 for addresses and added prologue/epilogue info.
12712
12713 2002-09-25  Martin Baulig  <martin@gnome.org>
12714
12715         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
12716         store line number info.  For the dynamic symbol file, we only need
12717         to provide the JIT generated dynamic line number info for the dynamic
12718         symbol file.
12719
12720 2002-09-25  Martin Baulig  <martin@gnome.org>
12721
12722         * debug-mono-symfile.h: Incremented version number.
12723
12724 2002-09-24  Martin Baulig  <martin@gnome.org>
12725
12726         * class.c (mono_debugger_class_init_func): New global function
12727         pointer variable.
12728         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
12729         call it.
12730
12731         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
12732         function.  This is called via the mono_debugger_class_init_func
12733         hook to add all types to the dynamic type table.
12734         (ves_icall_MonoDebugger_GetType): New interncall to get a class
12735         from its metadata token.
12736
12737         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
12738         New interncall for the debugger.
12739
12740 2002-09-24  Nick Drochak <ndrochak@gol.com>
12741
12742         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
12743         before using it in case it is null.
12744         
12745 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12746
12747         * metadata.c: allow custom modifiers in local var signatures
12748         (bug spotted by Zoltan Varga).
12749
12750 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
12751
12752         * class.c: deal with the <Module> class that may have a NULL vtable.
12753         Eliminate warnings.
12754
12755 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12756
12757         * image.c, image.h: more strong name helpers.
12758         * monosn.c: more work: convert pem keys to cryptoapi format.
12759
12760 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12761
12762         * string-icalls.c: speedup IndexOf.
12763
12764 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12765
12766         * icall.c: updates from Zoltan.2.Varga@nokia.com.
12767
12768 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
12769
12770         * icall.c: cleanup: use mono_object_domain ().
12771
12772 2002-09-23  Martin Baulig  <martin@gnome.org>
12773
12774         * debug-mono-symfile.c: Improved type support.
12775
12776 2002-09-22  Martin Baulig  <martin@gnome.org>
12777
12778         * debug-mono-symfile.c: Added support for reference types and strings.
12779
12780 2002-09-22  Martin Baulig  <martin@gnome.org>
12781
12782         * debug-mono-symfile.c: Started to work on the type table.
12783
12784 2002-09-21  Martin Baulig  <martin@gnome.org>
12785
12786         * debug-mono-symfile.c: Largely reworked the symbol table format.
12787         The symbol table is now incrementally updated each time a new
12788         method is added.  We're now also using our own magic and version
12789         so that you don't need to recompile all your classes if the
12790         dynamic table changes.
12791         (mono_debug_update_mono_symbol_file): Removed.
12792         (mono_debug_symfile_add_method): New function to add a method.
12793
12794 2002-09-21  Martin Baulig  <martin@gnome.org>
12795
12796         * icall.c
12797         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
12798         New interncall.
12799
12800         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
12801         New interncall to get a method from its metadata token.
12802
12803 2002-09-21  Martin Baulig  <martin@gnome.org>
12804
12805         * debug-mono-symfile.c: Create type table.
12806
12807 2002-09-20  Martin Baulig  <martin@gnome.org>
12808
12809         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
12810
12811 2002-09-20  Martin Baulig  <martin@gnome.org>
12812
12813         * debug-mono-symfile.c: Provide information about params and locals.
12814
12815 2002-09-20  Martin Baulig  <martin@gnome.org>
12816
12817         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
12818         New interncall.
12819
12820         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
12821         interncall to get a method from its metadata token.
12822
12823 2002-09-20  Martin Baulig  <martin@gnome.org>
12824
12825         * debug-mono-symfile.c: Added a few checks for method->header
12826         being non-NULL.  This should never happen, but for the moment
12827         let's use a g_warning() rather than a g_assert().
12828
12829 2002-09-19  Mark Crichton  <crichton@gimp.org>
12830
12831         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
12832         even if support for it isn't present.  Added an #ifdef to fix this.
12833
12834         * socket-io.c: Added checks back for Solaris support.
12835
12836 2002-09-19  Martin Baulig  <martin@gnome.org>
12837
12838         * debug-mono-symfile.c (read_string, write_string): Reflect latest
12839         changes in the symbol file format.
12840
12841 2002-09-18  Martin Baulig  <martin@gnome.org>
12842
12843         * debug-mono-symfile.c: Set version number to 21.
12844
12845 2002-09-18  Dick Porter  <dick@ximian.com>
12846
12847         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
12848         on netbsd.  Fixes bug 30051.
12849
12850 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12851
12852         * reflection.c:
12853         (set_version_from_string): little fix.
12854
12855 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12856
12857         * monosn.c, Makefile.am: added strong name utility.
12858         * reflection.h, reflection.c: implemented delayed signing,
12859         locale, version and hash id assembly attributes.
12860
12861 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12862
12863         * loader.c, metadata.c: load param attributes in signatures.
12864
12865 2002-09-16  Martin Baulig  <martin@gnome.org>
12866
12867         * debug-mono-symfile.c: Added string table with all method names.
12868
12869 2002-09-14  Martin Baulig  <martin@gnome.org>
12870
12871         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
12872         fast method lookup.
12873
12874 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12875
12876         * reflection.c: record the public key token of referenced assemblies.
12877
12878 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12879
12880         * image.c, image.h: added functions to get the strong name and the
12881         public key of an assembly.
12882         * pedump.c: use them.
12883
12884 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
12885
12886         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
12887
12888 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
12889
12890         * marshal.c (mono_marshal_get_managed_wrapper): Added
12891         MONO_TYPE_BOOLEAN 
12892
12893 2002-09-11  Martin Baulig  <martin@gnome.org>
12894
12895         * gc.c: Call GC_unregister_disappearing_link() on all links when
12896         finalizing them, this is necessary to aviod a crash in boehm's
12897         finalize handler.
12898
12899 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12900
12901         * gc.c: handle GetTarget for finalized objects spotted and fixed by
12902         nick@chemlab.org.
12903
12904 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
12905
12906         * icall.c: implemented MonoType::Module.
12907         * reflection.c, reflection.h: mono_module_get_object () from
12908         Tomi Pakarinen <tomi.pakarinen@welho.com>.
12909
12910 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
12911
12912         * icall.c: ignore overridden methods in GetMethods ().
12913         Fix for FieldInfo::SetValue().
12914         * object.c: handle float/double in runtime invoke.
12915
12916 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12917
12918         * object.c: allow a constructor to be called again on an object.
12919
12920 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12921
12922         * class.h, class.c: move field layout code to it's own function and
12923         export it. Get an interface id earlier. Move fields in MonoClass
12924         so they are more cache friendly and align the bitfields.
12925         * loader.c: temporary handle get_param_names() for a runtime method.
12926         * reflection.c, reflection.h: more code to handle runtime creation of
12927         types.
12928
12929 2002-09-09  Martin Baulig  <martin@gnome.org>
12930
12931         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
12932         signature with the pinvoke field being set for the actual call.
12933
12934 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12935
12936         * icall.c: removed some unused icalls. Start of map of glib charsets
12937         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
12938
12939 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
12940
12941         * debug-helpers.c: break infinite loop (found and fixed by
12942         Holger Arnold <harnold@gmx.de>).
12943
12944 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12945
12946         * icall.c: target may be null in create_delegate.
12947
12948 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12949
12950         * marshal.c: handle a boolean return type.
12951
12952 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12953
12954         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
12955
12956 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
12957
12958         * gc.c: fix weakreferences.
12959
12960 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
12961
12962         * icall.c: added icall to get default codepage.
12963
12964 2002-09-03  Dick Porter  <dick@ximian.com>
12965
12966         * threads.h: 
12967         * threads.c: Use MonoThread instead of MonoObject where
12968         apropriate.
12969
12970         Store running thread objects in a hash table, so that we have all
12971         the info to hand when waiting for them to finish
12972         (means we don't need OpenThread() any more, so mingw builds should
12973         be fully functional again.)
12974
12975         * verify.c:
12976         * object.h: Added thread ID to MonoThread
12977
12978 2002-09-03  Martin Baulig  <martin@gnome.org>
12979
12980         * icall.c (System.Reflection.Assembly::get_location): New interncall.
12981
12982 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12983
12984         * icall.c: fixed leak in get_temp_path. Thanks lupus.
12985
12986 2002-09-03  Martin Baulig  <martin@gnome.org>
12987
12988         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
12989         argument to store the end address of the disassembled instruction.
12990
12991         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
12992         here from debug-symfile.h.
12993         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
12994         JIT into this struct.
12995         (MonoSymbolFile): Added `char *image_file' field.
12996         (MonoDebugGetMethodFunc): Removed.
12997         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
12998         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
12999         (mono_debug_find_method): New method.
13000
13001         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
13002         create a full symbol file.
13003         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
13004         and static symbol files.
13005         (mono_debug_find_method): The symbol file keeps an internal method hash,
13006         call this to get a MonoDebugMethodInfo from a MonoMethod.
13007
13008         * debug-symfile.[ch]: Removed.
13009
13010 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
13011
13012         * image.c (do_mono_image_open): Remove linker version check.
13013
13014 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
13015
13016         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
13017         wrappers for instance methods.
13018         
13019 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13020
13021         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
13022
13023 2002-08-28  Dick Porter  <dick@ximian.com>
13024
13025         * Makefile.am: Export HOST_CC for w32 builds
13026
13027 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
13028
13029         * file-io.c process.c: MonoString are null terminated, no
13030         need for mono_string_to_utf16() anymore.
13031
13032 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13033
13034         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
13035
13036 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
13037
13038         * icall.c, reflection.h: speedup System.MonoType.
13039
13040 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
13041
13042         * reflection.c: allow null as the value of a string argument in
13043         custom attributes constructors.
13044
13045 2002-08-27  Martin Baulig  <martin@gnome.org>
13046
13047         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
13048         `trampoline_address' field.
13049
13050 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
13051
13052         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
13053         check (fixes bug #29486) 
13054
13055 2002-08-27  Martin Baulig  <martin@gnome.org>
13056
13057         * debug-mono-symfile.c: Changed the file format in a way that allows us
13058         open it read-only and to use a specially malloced area for all the
13059         dynamic data.  We can now also generate a symbol file on-the-fly if we're
13060         debugging IL code and there is no MCS generated symbol file for it.
13061
13062 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
13063
13064         * object.c: added a define for a good string and array
13065         creation speedup (not enabled by default because we need to deal with
13066         the synch stuff).
13067
13068 2002-08-26  Martin Baulig  <martin@gnome.org>
13069
13070         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
13071         function to create a dynamic symbol file.  This is used by the
13072         debugger to create a symbol file for IL code on-the-fly.
13073
13074 2002-08-26  Martin Baulig  <martin@gnome.org>
13075
13076         * loader.c (mono_lookup_pinvoke_call): Include the error message
13077         from g_module_error() in the error message.
13078
13079 2002-08-24  Martin Baulig  <martin@gnome.org>
13080
13081         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
13082         function to update the symbol file.  The symbol file is mmap()ed
13083         writable, but private.  This allows us to install the symbol file
13084         together with the assembly.
13085
13086 2002-08-24  Martin Baulig  <martin@gnome.org>
13087
13088         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
13089         but they can read the new symbol file format which mcs is now creating.
13090
13091         * debug-symfile.c (mono_debug_find_source_location): Moved to
13092         debug-mono-symfile.c; this is now operating on the new symbol file.
13093
13094 2002-08-23  Martin Baulig  <martin@gnome.org>
13095
13096         * debug-helpers.c (mono_method_desc_from_method): New function to get
13097         a MonoMethodDesc from a MonoMethod.
13098
13099 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
13100
13101         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
13102         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
13103
13104 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
13105
13106         * string-icalls.[ch]: make helper methods static.
13107
13108 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13109
13110         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
13111         types to it and to SetValueInternal.
13112
13113         * object.c: Moved handle_enum label to its proper place. This was the
13114         f... bug! ;-)
13115
13116         This time i compiled mcs and gtk-sharp and they both work.
13117
13118 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13119
13120         * icall.c: reverted partially my previous patch until 
13121         object.c:set_value handles enums correcly.
13122
13123 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13124
13125         * icall.c:
13126         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
13127         (ves_icall_System_Environment_get_MachineName): removed warning when
13128         compiling under cygwin.
13129
13130 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13131
13132         * object.c: fixed field_get_value() for reference types.
13133
13134 2002-08-22  Dick Porter  <dick@ximian.com>
13135
13136         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
13137         Don't free a buffer while it's still needed.  Patch from Jonathan
13138         Liger <Jonathan.liger@wanadoo.fr>
13139
13140 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
13141
13142         * icall.c (ves_icall_System_Environment_get_Platform): Add new
13143         internal call.
13144
13145 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
13146
13147         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
13148         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
13149
13150         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
13151         we call unmanaged code which throws exceptions.
13152
13153 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
13154
13155         * appdomain.h: added per-domain entry_assembly.
13156         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
13157         arguments.
13158         * icall.c: Assembly::GetEntryAssembly icall.
13159         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
13160         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
13161
13162 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
13163
13164         * appdomain.h, gc.c: added mono_domain_finalize ().
13165
13166 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13167
13168         * object.c:
13169         (mono_print_unhandled_exception): changed g_warning by g_printerr
13170         because g_log has a 1024 characters limit (yeah, i got a big stack
13171         trace). Don't print exception name, that should be in ToString 
13172         returned string.
13173
13174 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13175
13176         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
13177         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
13178
13179 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13180
13181         * object.c:
13182         (mono_print_unhandled_exception): after previous commit, i realized
13183         that MS calls ToString on the exception. I changed this function to
13184         do that. This way we get stack_trace for free.
13185
13186 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13187
13188         * object.c:
13189         (mono_print_unhandled_exception): invoke Message property instead of
13190         getting 'message' field from Exception. Don't allocate memory for
13191         'trace' and 'message' if not needed.
13192
13193 2002-08-18  Dick Porter  <dick@ximian.com>
13194
13195         * unicode.c: Fix asserts to match Encoder.cs checks
13196
13197 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13198
13199         * marshal.c: fix unaligned store issue and a few wrong
13200         opcode argument types.
13201
13202 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13203
13204         * icall.c: added GetUninitializedObjectInternal internal call.
13205
13206 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
13207
13208         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
13209         to the right domain.
13210
13211 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
13212
13213         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
13214
13215         * class.c (class_compute_field_layout): set blittable to false for Strings
13216
13217         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
13218
13219 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13220
13221         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
13222         first chunk of code to create types at runtime. Code to
13223         handle ReflectedType/DeclaringType. Make reflection handles
13224         domain specific.
13225
13226 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
13227
13228         * class.c: set correct name in arrays.
13229
13230 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
13231
13232         * appdomain.c (mono_domain_transfer_object): make it work with
13233         valuetypes. bug fixes.
13234
13235 2002-08-12  Dick Porter  <dick@ximian.com>
13236
13237         * object.h: Rename some parameters to avoid c++ keywords (Patch
13238         from Joseph Wenninger <kde@jowenn.at>)
13239
13240 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
13241
13242         * icall.c: added icall to implement Assembly.GetFile*.
13243
13244 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
13245
13246         * reflection.h, reflection.c: code to embed managed resources.
13247
13248 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
13249
13250         * class.c: move all the type size stuff into
13251         class_compute_field_layout().
13252
13253 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
13254
13255         * class.c: ensure enums have always the correct instance size.
13256         * unicode.c: remove wrong assert.
13257
13258 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13259
13260         * assembly.c: fix mem corruption issue.
13261         * image.h, image.c: added mono_image_get_resource () to access
13262         managed resources.
13263         * icall.c: implemented Assembly.EntryPoint property and some
13264         Managed Resources related internalcalls.
13265
13266
13267 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
13268
13269         * image.c, image.h: impemented mono_image_get_entry_point ().
13270         * appdomain.c: use mono_image_get_entry_point.
13271
13272 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
13273
13274         * reflection.c: support the object type argument when loading
13275         custom attributes.
13276
13277 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
13278
13279         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
13280         String as return type.
13281
13282 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
13283
13284         * reflection.c: fix encoding of named args for custom attrs to match
13285         the ms implementation. Read them back when instantiating custom
13286         attributes.
13287
13288 2002-08-02  Radek Doulik  <rodo@ximian.com>
13289
13290         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
13291         by Dietmar as quick fix
13292         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
13293         16 as stack size, used on more places as quick fix before Dietmar
13294         will fix it properly
13295
13296 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
13297
13298         * object.h, object.c: added accessors for fields and properties.
13299
13300 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
13301
13302         * class.c, class.h: made mono_class_get_field_from_name ()
13303         loop on parent types.
13304         Added mono_class_get_property_from_name ().
13305
13306 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13307
13308         * class.c, class.h: move the code to setup the type vtable in its own
13309         function so that it can be reused also for types created at runtime.
13310         Eliminate the "class" identifier from the header file.
13311         * reflection.c: setup the vtable for enums so that we can create
13312         objects for use in SetConstant ().
13313
13314 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
13315
13316         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
13317         instead of the delegate itself as this pointer (bug #28383)
13318
13319 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
13320
13321         * marshal.c (mono_marshal_get_managed_wrapper): added return type
13322         conversions.
13323
13324 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13325
13326         * loader.c: don't set the pinvoke bit on icalls.
13327
13328 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
13329
13330         * debug-helpers.c (mono_method_full_name): only print a number to
13331         indicate wrapper type (so that the output is more readable in traces).
13332
13333 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
13334
13335         * class.c (mono_class_init): include method override patch from Paolo
13336
13337 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
13338
13339         * icall.c: fixed GetTypeCode().
13340
13341 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
13342
13343         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
13344         use real delegate invoke function to make it work with multicast
13345         delegates (fix bug# 28291).
13346
13347 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13348
13349         * object.c: load constant strings.
13350
13351 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13352
13353         * reflection.c: no magic numbers.
13354         * tabledefs.h: security action enum.
13355
13356 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13357
13358         * assembly.c: fix possible memory corruption.
13359
13360 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
13361
13362         * reflection.h, reflection.c: added support for linking resources.
13363         * verify.c: check we have an updated corlib.
13364
13365 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
13366
13367         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
13368         string arrays.
13369         (mono_marshal_string_array): null terminate unmanaged string arrays.
13370         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
13371
13372 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13373
13374         * icall.c: Type.GetType () can now return also types from the
13375         calling assembly.
13376
13377 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
13378
13379         * loader.h, loader.c: stack walking support.
13380         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
13381         GetCallingAssembly.
13382
13383 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
13384
13385         * marshal.c: added optimisations for blittable types 
13386
13387         * class.c (mono_array_class_get): do not set blittable attribute on arrays
13388         (mono_class_setup_mono_type): set blittable attribute for single
13389         and double.
13390
13391         * marshal.c (mono_string_utf8_to_builder): impl.
13392         (mono_string_builder_to_utf8): impl.
13393         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
13394
13395 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
13396
13397         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
13398         (mono_marshal_get_managed_wrapper): impl. byref types
13399
13400 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13401
13402         * icall.c:
13403         (search_method): don't display debug message. 
13404
13405 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
13406
13407         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
13408
13409 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
13410
13411         * appdomain.c: set the missing filename when throwing exception.
13412
13413 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
13414
13415         * metadata.c (mono_type_size): code cleanup
13416         (mono_type_stack_size): removed some test code
13417
13418 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
13419
13420         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
13421         mono_get_exception_file_not_found now.
13422
13423         * exception.c (mono_exception_from_name_two_strings): New version
13424         that will call a constructor with two string arguments. 
13425         (mono_get_exception_file_not_found): New helper routine, used to
13426         report file-not-found errors.
13427
13428 2002-07-20  Dick Porter  <dick@ximian.com>
13429
13430         * process.h:
13431         * process.c: Pass file handles to CreateProcess
13432         
13433         * icall.c:
13434         * file-io.h:
13435         * file-io.c: Implemented CreatePipe
13436
13437 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
13438
13439         * metadata.c (mono_get_param_info): set alignment for value types
13440
13441 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13442
13443         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
13444         Constify mono_domain_assembly_open().
13445         * loader.c: handle null namespace in icalls.
13446
13447 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
13448
13449         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
13450         (emit_str_to_ptr_conv): marshal object as structs
13451
13452         * metadata.c (mono_type_to_unmanaged): marshal object as structs
13453
13454         * marshal.c (mono_marshal_get_runtime_invoke): support value types
13455
13456 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
13457
13458         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
13459         (mono_marshal_get_native_wrapper): we an now return value types
13460
13461 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13462
13463         * verify.c: more checks implemented.
13464
13465 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
13466
13467         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
13468         (fix bug #27695)
13469         (mono_marshal_get_native_wrapper): allow byref arguments
13470         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
13471         impl. PtrToStringXXX methods
13472         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
13473         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
13474         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
13475         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
13476         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
13477
13478 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13479
13480         * reflection.c: fix buglet in parsing an assembly name.
13481
13482 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
13483
13484         * marshal.c (emit_ptr_to_str_conv): first impl.
13485
13486 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13487
13488         * object.c, class.h: cache the vtable in the class as suggested by
13489         vargaz@freemail.hu (Zoltan Varga).
13490
13491 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13492
13493         * class.h, loader.c: added mono_field_from_token().
13494         * verify.c: first cut of type checking code.
13495
13496 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
13497
13498         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
13499
13500 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
13501
13502         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
13503         (fix bug #27782)
13504         (mono_marshal_get_remoting_invoke): impl.
13505         (mono_delegate_begin_invoke): impl.
13506         (mono_mb_emit_save_args): impl.
13507         (mono_delegate_end_invoke): impl.
13508         (mono_marshal_get_delegate_begin_invoke):
13509         (mono_marshal_get_delegate_end_invoke):
13510         (mono_marshal_get_delegate_invoke): generate a special name for
13511         those methods (including the signature) and associate them whith
13512         the delegate class. 
13513
13514 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
13515
13516         * reflection.[ch]: 
13517         (mono_reflection_type_from_name): now it has a MonoImage parameter
13518         which is used as the default image to search the type in. If the image
13519         is NULL or getting the type from it fails, it defaults to corlib.
13520
13521         * icall.c: changed 1 call to mono_reflection_type_from_name to match
13522         new parameter.
13523
13524 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13525
13526         * reflection.c: update the parameter table index.
13527
13528 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13529
13530         * domain.c: don't include the mark byte in the string hash.
13531
13532 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13533
13534         * icall.cs: icall for Type.GetTypeCode ().
13535         * verify: a couple of fixes and disabled local initialization checks.
13536
13537 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
13538
13539         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
13540
13541         * debug-helpers.c (mono_method_full_name): print the type of the
13542         runtime wrapper
13543
13544         * metadata.c (mono_signature_hash): a hash function for signatures
13545         (mono_signature_hash): better hash algorithm
13546
13547         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
13548
13549         * debug-helpers.c (mono_method_full_name): this can now generate
13550         method names with signatures
13551
13552         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
13553         method dont have this pointers.
13554
13555 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13556
13557         * reflection.c: fixup typebuilder tokens.
13558         * image.c: fix buglet.
13559         * marshal.h: remove whitespace.
13560         * metadata.h, metadata.c: reinstate code that was removed.
13561         * verify.c: handle catch directives and fix another couple of bugs.
13562
13563 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
13564
13565         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
13566         (mono_marshal_get_native_wrapper): make it comp. with the old code
13567         (mono_marshal_get_native_wrapper): support boolean
13568         (mono_marshal_get_managed_wrapper): support more types
13569
13570 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
13571
13572         * class.c (class_compute_field_layout): compute class->blittable attribute.
13573
13574 2002-07-09  Dick Porter  <dick@ximian.com>
13575
13576         * threads.c: Make the thread cleaning up cope with threads that
13577         call ExitThread()
13578
13579 2002-07-08  Radek Doulik  <rodo@ximian.com>
13580
13581         * reflection.c (method_encode_code): use non-translated values to
13582         compute finally_start, this fixes exception handling on ppc, yay!
13583
13584         * decimal.h (struct signscale): fix endianess
13585
13586 2002-07-07  Radek Doulik  <rodo@ximian.com>
13587
13588         * reflection.c: swap box_val and not val
13589
13590 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
13591
13592         * reflection.c, reflection.h: handle full assembly info in type name.
13593         Handle Type arguments when loading custom attributes.
13594         * icall.c: updated to use new mono_reflection_type_from_name () method.
13595
13596 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13597
13598         * loader.c:
13599         (method_from_memberref): also print assembly name when method not found.
13600
13601 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13602
13603         * icall.c:
13604         (ves_icall_TypeGetProperties): fixed bug #27473. 
13605
13606 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13607
13608         * reflection.c: display image name and token when cannot find the
13609         .ctor for an attribute.
13610
13611 2002-07-05  Martin Baulig  <martin@gnome.org>
13612
13613         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
13614
13615 2002-07-04  Dick Porter  <dick@ximian.com>
13616
13617         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
13618         compile on mingw.  This will cause mingw builds to not wait for
13619         subthreads to terminate after the main thread does.  I've lodged a
13620         bug with the mingw developers for them to wrap OpenThread().
13621
13622 2002-07-03  Dick Porter  <dick@ximian.com>
13623
13624         * threads.c: Store thread IDs instead of handles, because
13625         GetCurrentThread() returns a pseudohandle and therefore stores
13626         useless values.  mono_thread_cleanup() continues checking the
13627         array of threads until it is empty, to cope with subthreads
13628         spawning new threads after the main thread has finished.
13629
13630         * profiler.h:
13631         * profiler.c:
13632         * profiler-private.h: Pass the thread ID to thread profiler
13633         functions, instead of a handle
13634
13635 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13636
13637         * verify.c: fixes to make it more usable.
13638         * pedump.c: added --verify code to verify IL code in an assembly.
13639
13640 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13641
13642         * reflection.c: turn errors into warnings to allow compiling corlib.
13643
13644 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
13645
13646         * reflection.c: add special cases to compile corlib.
13647
13648 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13649
13650         * reflection.c: handle properties with only a set method.
13651
13652 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13653
13654         * opcodes.h: add enum with opcodes in opval order.
13655
13656 2002-07-01  Dick Porter  <dick@ximian.com>
13657         
13658         * object.h:
13659         * object.c (mono_runtime_run_main): Removed unneeded argument
13660
13661 2002-06-28  Martin Baulig  <martin@gnome.org>
13662
13663         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
13664
13665 2002-06-27  Dick Porter  <dick@ximian.com>
13666
13667         * threads.c: Store the handle in both the parent thread and in the
13668         subthread, to minimise the time between starting a new thread and
13669         storing its ID.
13670
13671 2002-06-26  Dick Porter  <dick@ximian.com>
13672
13673         * appdomain.c (mono_runtime_cleanup): Close the socket library
13674         after all the threads have finished, not before
13675
13676 2002-06-26  Martin Baulig  <martin@gnome.org>
13677
13678         * debug-symfile.c (mono_debug_find_source_location): Added
13679         `guint32 *line_number' argument.  If it's not NULL, store the line number
13680         there and return the file name without the line number.
13681
13682 2002-06-25  Dick Porter  <dick@ximian.com>
13683
13684         * icall.c:
13685         * process.h:
13686         * process.c: Process forking and other support functions
13687
13688 2002-06-25  Dick Porter  <dick@ximian.com>
13689
13690         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
13691         things dont happen when the image is closed.
13692         (mono_image_lookup_resource): Walk the resource section looking
13693         for a particular entry
13694
13695         * cil-coff.h: PE resource section decoding
13696
13697 2002-06-25  Dick Porter  <dick@ximian.com>
13698         
13699         * assembly.h:
13700         * assembly.c: 
13701         (mono_assembly_foreach): Accessor functions to walk the list of
13702         loaded assemblies
13703         (mono_assembly_set_main):
13704         (mono_assembly_get_main): Process methods need to know which
13705         assembly is the "main" one
13706
13707         * object.c (mono_runtime_run_main): Record the main assembly
13708
13709         * debug-helpers.c: Fix typo
13710
13711 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
13712
13713         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
13714         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
13715
13716 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13717
13718         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
13719
13720 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
13721
13722         * image.c (do_mono_image_open): Initialize reference count,
13723         otherwise we leak the MonoImage.
13724
13725 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
13726
13727         * reflection.c: small tweak to handle self-hosting.
13728
13729 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
13730
13731         * reflection.c: fix type name parse code.
13732
13733 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13734
13735         * reflection.c: break out of the loop.
13736         * image.c: special case corlib.
13737
13738 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13739
13740         * reflection.c: add all the custom attrs at the end to ensure the
13741         ctors have been properly initialized when the attributes are defined
13742         in the current assembly.
13743
13744 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13745
13746         * reflection.c: handle correctly multiple-nested types.
13747
13748 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
13749
13750         * row-indexes.h: fix typos.
13751         * reflection.c: adjust for typos and fix method_def_or_ref
13752         encoding in MethodImpl table.
13753
13754 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13755
13756         * reflection.c: fix entry point patching (thanks Serge!).
13757
13758 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
13759
13760         * verify.c: add check for System.Exception
13761
13762 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13763
13764         * image.c, class.c: minifix for code just c&p'ed.
13765         * reflection.c: warning fix.
13766         * object.h, loader.h, domain.c: load also StringBuilder.
13767
13768 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13769
13770         * marshal.h, marshal.c: some support code to handle complex marshaling.
13771
13772 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13773
13774         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
13775         Better signatures with vtable error dump.
13776
13777 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
13778
13779         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
13780
13781 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
13782
13783         * icall.c (ves_icall_Type_GetField): impl.
13784
13785 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13786
13787         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
13788         to retrieve a marshal description blob for a field or param.
13789
13790 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
13791
13792         * reflection.h, reflection.c: change order of nested type emission
13793         to avoid table corruption. The NestedTypes table is sorted.
13794         * icall.c: change order of GetConstructor results to workaround mcs bug.
13795
13796 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13797
13798         * reflection.h, reflection.c: handle field and param marshal
13799         information.
13800
13801 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13802
13803         * icall.c, marshal.c marshal.h: more Marshal class implementation.
13804
13805 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13806
13807         * reflection.c: fix call convention.
13808
13809 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13810
13811         * reflection.h, reflection.c: mono_image_get_memberref_token()
13812         takes a type instead of a class, now. Added
13813         mono_image_get_array_token() to create tokens for the special
13814         multi-dim array methods.
13815
13816 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
13817
13818         * assembly.c: handle modules (no assembly table). Split
13819         loading references in its own function.
13820         * class.c: handle moduleref resolution scope.
13821         * image.c, image.h: cache module name in image.
13822
13823 2002-06-07  Martin Baulig  <martin@gnome.org>
13824
13825         * reflection.c (mono_image_get_type_info): Only add a class layout entry
13826         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
13827
13828 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13829
13830         * icall.c: more signature fixes that used uint instead of int.
13831
13832 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13833
13834         * reflection.c: fixed signature of field refs.
13835
13836 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13837
13838         * class.c, reflection.c: handle typerefs of nested types
13839         (both on read and when writing files).
13840
13841 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
13842
13843         * icall.c: fix method signatures that tried to workaround the previous
13844         typo, d'oh!
13845
13846 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13847
13848         * debug-helpers.c: fix typo.
13849
13850 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13851
13852         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
13853         rewrote the PE/COFF writing code (our programs are understood by the
13854         ms runtime, now).
13855
13856 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
13857
13858         * gc.c, gc.h, icall.c: weakreference support.
13859
13860 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13861
13862         * Makefile.am, mono-config.c: use $(sysconfdir).
13863
13864 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13865
13866         * icall.c: changed default precision of Double.ToString() to 15.
13867         Fixed memory leak. Unified with Single.ToString.
13868
13869 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
13870
13871         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
13872
13873 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
13874
13875         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
13876         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
13877         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
13878         and myself.
13879
13880 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13881
13882         * debug-symfile.c, sysmath.c: yet more compilation fixes.
13883
13884 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13885
13886         * reflection.c, socket-io.c: more compilation fixes.
13887
13888 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13889
13890         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
13891         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
13892         unicode.c: warning and compiler compatibility fixes.
13893
13894 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
13895
13896         * class.h, metadata.c: fixed warnings/compilation errors.
13897
13898 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13899
13900         * Makefile.am, mono-config.c, mono-config.h: configuration file
13901         support routines.
13902         * loader.c, loader.h: make Dll mapping configurable at runtime in the
13903         config file. Export methods to insert and lookup mappings.
13904
13905 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
13906
13907         * reflection.c: handle types and boxed objects in custom attr
13908         constructors.
13909
13910 2002-05-30  Martin Baulig  <martin@gnome.org>
13911
13912         * debug-symfile.c
13913         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
13914
13915 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
13916
13917         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
13918         to lookup the implmap row for a P/Invoke method.
13919         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
13920         P/Invoke method from the runtime on an as needed basis.
13921
13922 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
13923
13924         * metadata.c (mono_metadata_parse_signature): impl.
13925
13926 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13927
13928         * class.c: handle .pack directive.
13929
13930 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
13931
13932         * object.c: initialize static fields with RVA data.
13933
13934 2002-05-25  Martin Baulig  <martin@gnome.org>
13935
13936         * debug-symfile.c
13937         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
13938
13939 2002-05-24  Martin Baulig  <martin@gnome.org>
13940
13941         * debug-symfile.c
13942         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
13943         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
13944         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
13945
13946 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
13947
13948         * object.c: special case string ctros in invoke.
13949         * gc.c: silly whitespace changes.
13950
13951 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
13952
13953         * threadpool.[ch]: impl. a threadpool that can
13954         be used by mint and mono.
13955
13956 2002-05-22  Martin Baulig  <martin@gnome.org>
13957
13958         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
13959         The first argument is now a `MonoReflectionModuleBuilder *', the return
13960         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
13961         `methods' field to get the method builder.  The `token' argument is the
13962         unfixed token.
13963
13964         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
13965         invalid characters instead of g_assert_not_reached()ing.  This seems
13966         to be the behaviour of mscorlib.
13967
13968 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
13969
13970         * object.c (mono_runtime_invoke_array): applied patch from Rachel
13971         Hestilow to fix bug #25104
13972
13973 2002-05-21  Martin Baulig  <martin@gnome.org>
13974
13975         * debug-symfile.c (mono_debug_find_source_location): New function.
13976         Looks up an IL offset in the line number table and returns the source
13977         location as a string.
13978
13979 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13980
13981         * icall.c:
13982         (mono_double_ToStringImpl): changed %f by %g until we have something
13983         better.
13984
13985 2002-05-21  Nick Drochak  <ndrochak@gol.com>
13986
13987         * icall.c : Use different name for Math.Pow's icall.  Needed to check
13988         parameters first in C#.
13989
13990 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13991
13992         * icall.c, reflection.h: added icall to get info about an event.
13993
13994 2002-05-20  Radek Doulik  <rodo@ximian.com>
13995
13996         * object.c (mono_value_box): don't use memcpy for boxing on BIG
13997         endian
13998         (mono_value_box): don't use memcpy for small sizes on
13999         architectures with unaligned access
14000
14001 2002-05-20  Martin Baulig  <martin@gnome.org>
14002
14003         * reflection.c (mono_reflection_setup_internal_class): Don't crash
14004         if `tb->parent == NULL'.
14005         (mono_reflection_create_internal_class): New function.  This is
14006         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
14007         for enum types.
14008
14009         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
14010         New interncall.
14011
14012 2002-05-19  Martin Baulig  <martin@gnome.org>
14013
14014         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
14015         argument to get the length, don't default to the array length.
14016
14017 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
14018
14019         * assembly.c (mono_assembly_setrootdir): New function used to
14020         override the MONO_ASSEMBLIES directory.
14021
14022 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
14023
14024         * icall.c: ValueType_GetHashCode() initialize local var.
14025
14026 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
14027
14028         * reflection.c: sort custom attributes table.
14029
14030 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
14031
14032         * reflection.c: support named args in custom attributes (write support).
14033
14034 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
14035
14036         * reflection.c: fix finally position calculation.
14037
14038 2002-05-15  Radek Doulik  <rodo@ximian.com>
14039
14040         * reflection.c: fixed endianess at many places
14041
14042         * icall.c (ves_icall_InitializeArray): comment out debug msg
14043
14044 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
14045
14046         * object.c (mono_unhandled_exception): new function to handle
14047         unhandled exceptions.
14048         (mono_unhandled_exception): call the UnhandledException event.
14049         (mono_runtime_delegate_invoke): impl.
14050
14051 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
14052
14053         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
14054         returns the RVA, not the direct pointer to the data. Handle the case
14055         when the class size is fixed.
14056
14057 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
14058
14059         * reflection.c: fix some endianess issues.
14060
14061 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
14062
14063         * object.c (mono_runtime_invoke): is now able to catch exceptions.
14064
14065         * threads.c (mono_thread_init): added a callback which is invoked
14066         at thread start.
14067
14068 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
14069         
14070         * icall.c: make GetHashCode return non-negative values.
14071
14072 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
14073
14074         * object.c, icall.c, gc.c: revert to address-based hashcode.
14075
14076 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
14077
14078         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
14079
14080 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
14081
14082         * icall.c, class.c: special case <Module>.
14083
14084 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
14085
14086         * icall.c: fix bug in GetNow().
14087
14088 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
14089
14090         * object.c (mono_runtime_class_init): make sure that we call all
14091         static class constructors.
14092
14093 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
14094
14095         * reflection.c: sort methodsemantics table.
14096
14097 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
14098
14099         * reflection.h, reflection.c: honour init locals setting.
14100
14101 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
14102
14103         * icall.c: copied Double ToStringImpl for Single ToStringImpl
14104
14105 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
14106
14107         * reflection.c: support ContructorBuilders in attribute blob creation.
14108
14109 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14110
14111         * reflection.c: some changes to build a binary that can be run
14112         directly in windows.
14113
14114 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
14115
14116         * loader.c: print a big message when an icall can't be found.
14117
14118 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14119
14120         * string-icalls.c: fix bug 24248.
14121
14122 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
14123
14124         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
14125         icall.c, reflection.h: separate assembly loading by pathname and by
14126         assembly name. Use the MONO_PATH env var to search for assemblies.
14127
14128 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
14129
14130         * assembly.c, image.h: add some support for assemblies
14131         with multiple modules.
14132         * class.c, class.h: export mono_class_from_typeref().
14133         * loader.c: remove duplicated code and use mono_class_from_typeref(),
14134         instead.
14135
14136 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
14137
14138         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
14139         documentation says (the ECMA one is correct).
14140
14141 2002-05-02  Dick Porter  <dick@ximian.com>
14142
14143         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
14144         Don't name the synchronisation mutex.
14145
14146 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
14147
14148         * rand.c
14149         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
14150         Make the prototypes match.
14151         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
14152         Same.
14153
14154         * icall.c
14155         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
14156         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
14157         all systems have tm.tm_zone, so use strftime() with %Z to print
14158         the timezone abreviation into a temp string.
14159
14160         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
14161         rather than mono_array_addr() on a MonoString on Big Endian
14162         machines.
14163
14164 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
14165
14166         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
14167         fix bug 24041
14168
14169 2002-04-30  Dick Porter  <dick@ximian.com>
14170
14171         * socket-io.c: Cope with SOCKET being an integer rather than a
14172         pointer now.
14173
14174         * threads.c: Added Thread_free_internal, to deal with thread
14175         handle cleanup.  Moved calls to handle_store() and handle_remove()
14176         to start_wrapper(), so each can only be called once.  Allocate
14177         synchronisation blocks with GC_malloc(), and use GC finalisation
14178         to close the handles.
14179
14180         * icall.c: added System.Threading.Thread::Thread_free_internal
14181
14182 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
14183
14184         * icall.c: support Environment.Exit, CommandLineArgs().
14185
14186 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
14187
14188         * object.c, object.h: added mono_runtime_run_main () and
14189         mono_runtime_get_main_args () for use in System.Environment.
14190
14191 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
14192
14193         * gc.c: fix thinko, enable actual finalization since the jit is now
14194         fixed.
14195
14196 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
14197
14198         * gc.c, object.c: take into account that an object may be offset wrt the address
14199         returned by GC_malloc().
14200
14201 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
14202
14203         * image.c: handle files without entries in the assembly table (modules).
14204
14205 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
14206
14207         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
14208         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
14209         allowed to be null when it's System.Object class setup.
14210
14211 2002-04-27  Martin Baulig  <martin@gnome.org>
14212
14213         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
14214         if `tb->parent == NULL' rather than crashing.
14215
14216 2002-04-28  Nick Drochak  <ndrochak@gol.com>
14217
14218         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
14219         calling acos() where asin() should have been called.
14220
14221 2002-04-26  Martin Baulig  <martin@gnome.org>
14222
14223         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
14224         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
14225         there's a subdirectory called `System', but we don't want to read that
14226         subdirectory as an assembly.
14227
14228 2002-04-25  Martin Baulig  <martin@gnome.org>
14229
14230         * debug-symfile.c: Reflect latest MonoString changes.
14231
14232 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
14233
14234         * rand.c, rand.h: instance method icalls need to have an explicit
14235         this pointer as first argument in the C implementation.
14236
14237 2002-04-25  Nick Drochak <ndrochak@gol.com>
14238
14239         * icall.c: Fix typo in map for GetNonZeroBytes
14240
14241 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14242
14243         * string-icalls.c : String does now passes unit tests without any 
14244         errors, the following changes has been made:
14245         
14246         Implemented replace methods.
14247         Renaming of methods to (try) follow the standard.
14248         Fixed compare ordinal
14249         Made all memory allocated directly to function instead of via icall function.
14250         Small performance fix in is_in_array function
14251                         
14252  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
14253
14254         c (mono_string_Internal_ctor_charp_int_int):
14255         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
14256         sindex < 0, throw ArgumentOutOfRangeException instead of
14257         ArgumentNullException.
14258
14259         Added new check for length == 0, however
14260         I need to make it return String.Empty from the C code.
14261         
14262         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
14263         that calculate the length for us here.
14264         
14265         (mono_string_Internal_ctor_sbytep_int_int): Replaced
14266         mono_string_new_utf16 with mono_string_new, since value is utf8.
14267
14268 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
14269
14270         * object.c: register the object for finalization if needed.
14271         Allocate one more char in the string for the terminating 0 char.
14272
14273 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
14274
14275         * class.c, class.h, image.c: check if a type implemenst a destructor.
14276         Use the proper key for array class lookups.
14277         * icall.c: register the icalls in the System.GC class.
14278         * gc.c, gc.h: GC-related functions and icalls.
14279
14280 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14281
14282         * icall.c:
14283         * socket-io.c:
14284         * unicode.c: free some strings gotten from mono_string_to_utf8 and
14285         changed a couple of free () by g_free ().
14286
14287         * decimal.c: one-liner in the comments for decimal2string ().
14288
14289 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14290
14291         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
14292
14293 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14294
14295         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
14296         * object.c (mono_runtime_invoke_array) : handle null in params
14297
14298 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14299
14300         * string-icalls.c: fixed bug in split (one off bug)
14301
14302 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14303
14304         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
14305         * icalls.c: added String::Equals as internal method
14306
14307 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14308
14309         * threads.c: fixed bug in the double interlocked functions
14310
14311 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
14312
14313         * threads.c: implemented all of the new interlocked icalls.
14314         * string-icalls.c: fix a bug in insert.
14315         * icalls.c: added the icalls for interlocked, removed old string functions.
14316         
14317 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
14318
14319         * loader.c: fix off-by-one error when reading argument names.
14320
14321 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14322
14323         * profiler.c: win32 counter implementation (untested).
14324         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
14325         (the latter needs testing and more complete impl. from win32 folks).
14326
14327 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
14328
14329         * object.c: mono_array_new_full workaround mono_array_class_get
14330         problem.
14331
14332 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14333
14334         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
14335         * object.h (mono_string_chars): Changed casting type.
14336
14337 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14338
14339         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
14340                            method signatures to use gunichar2 instead of gint16.
14341
14342 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
14343
14344         * object.h, object.c: domain-specific versions of mono_object_new and
14345         mono_array_new.
14346
14347 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
14348
14349         * object.c: changed String layout
14350
14351         * string-icalls.c (mono_string_Internal_ctor_chara): added
14352         internal string constructors.
14353
14354 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
14355
14356         * threads.c: pass 'this' to the thread start routine.
14357
14358 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14359
14360         * string-icalls.c: fix IndexOf and LastIndexOf. Now
14361         InternalCompareStr don't call twice mono_string_cmp_char for the last
14362         character. Improved performance in mono_string_cmp_char.
14363
14364 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
14365
14366         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
14367         code into its own library: libmonoruntime.
14368
14369 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
14370
14371         * object.h, object.c: changed array format so that szarrays do not
14372         require a bounds structure.
14373         * icall.c, appdomain.c: support for new szarray format.
14374
14375 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
14376
14377         * metadata.c: compare also the retuns type when comparing signatures:
14378         we didn't do this as an optimization since really overloaded methods
14379         must differ also in the arguments, but this doesn't work with
14380         low-level IL code (or when using explicit conversion operators: see
14381         bug#23498 for an example).
14382
14383 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
14384
14385         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
14386
14387 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
14388
14389         * icall.c: make MonoType::GetElementType its own icall.
14390
14391 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
14392
14393         * icall.c: remove MonoMethod_get_Name().
14394         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
14395         object.
14396
14397 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14398
14399         * string-icalls.c: optimized a few methods.
14400
14401 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14402
14403         * icall.c: added all new string internal calls
14404         * string-icalls.c: added, new string internal call implementation.
14405         * object.c: added mono_string_new_size for allocating a string a size
14406
14407 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
14408
14409         * object.c (mono_object_isinst): use the same code as in the
14410         optimized x86 version.
14411
14412 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
14413
14414         * profiler.c: TSC-based timer code (faster and more accurate).
14415         Not hooked up in configure, yet (set USE_X86TSC to 1).
14416
14417 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
14418
14419         * profiler.c, profiler.h: track time spent compiling methods.
14420         * threads.c: track thread creation/destruction.
14421
14422 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
14423
14424         * profiler.c, profiler.h, profiler-private.h: profiling interface
14425         and sample implementation. Moved here so that it can be used also by
14426         the jit.
14427
14428 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
14429
14430         * reflection.c, reflection.h: keep types and other handles separate in
14431         the hash tables for referred tokens. Add guid for modules.
14432
14433 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
14434
14435         * assembly.c: fix bugs found with valgrind.
14436         * metadata.h, metadata.c: added mono_metadata_guid_heap().
14437
14438 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
14439
14440         * threads: added icall support for getting current domain for
14441                    the thread.
14442  
14443 2002-04-13  Martin Baulig  <martin@gnome.org>
14444
14445         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
14446         (MonoDebugVarInfo): Added `index' field for register based addresses.
14447         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
14448         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
14449         `MonoDebugVarInfo *params' and `guint32 this_offset' with
14450         `MonoDebugVarInfo *this_var'.
14451
14452         * debug-symfile.c (relocate_variable): New static function to write
14453         a location description for a local variable or method parameter.
14454
14455 2002-04-12  Martin Baulig  <martin@gnome.org>
14456
14457         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
14458         stack offset and begin/end scope address of a local variable.
14459         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
14460         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
14461         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
14462
14463         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
14464         Added new relocation types for start/end scope of a local variable.
14465
14466 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
14467
14468         * object.h: add mono_object_domain() macro.
14469         * reflection.c: handle typespecs.
14470         * icall.c: MonoMethod::get_Name() implementation.
14471
14472 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14473
14474         * icall.c: String::GetHashCode() icall implementation.
14475
14476 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
14477
14478         * icall.c: String::IndexOfAny icall.
14479         * object.c, object.h: make array->max_length more useful.
14480         Intrduced mono_object_class() and mono_string_length() macros.
14481
14482 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14483
14484         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
14485         instead of g_unichar_isdigit.
14486
14487 2002-04-11  Nick Drochak  <ndrochak@gol.com>
14488
14489         * icall.c: Implement a simple Double.ToString().
14490
14491 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
14492
14493         * appdomain.h: only io-layer.h is supposed to be included.
14494         * icall.c: explicitly import environ. Fix warning.
14495
14496 2002-04-10  Nick Drochak  <ndrochak@gol.com>
14497
14498         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
14499                 return true even if it's not Daylight Savings time.
14500                 Only return false for the case where the function isn't
14501                 implemented for a plaform (read Windows).
14502
14503 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
14504
14505         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
14506         data with a mutex.
14507
14508 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
14509
14510         * mempool.c (mono_mempool_alloc): only use g_malloc when
14511         absolutely necessary.
14512
14513 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
14514
14515         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
14516
14517         * class.c (mono_class_vtable): use domain mempool to allocate vtable
14518         (mono_class_proxy_vtable): use domain mempool
14519
14520 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
14521
14522         * appdomain.h, appdomain.c: split initialization that requires the
14523         execution engine support into mono_runtime_init().
14524
14525 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
14526
14527         * class.c (mono_class_init): don't include vtable inside MonoClass
14528         to save some memory, gather some statistics.
14529         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
14530
14531 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
14532
14533         * icall.c: internalcall implementation for ValueType.Equals().
14534
14535 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
14536
14537         * object.c (mono_message_init): moved 
14538         (mono_runtime_exec_main): new arch. independent impl.
14539         (mono_runtime_invoke_array): new method - like
14540         mono_runtime_invoke, but you can pass an array of objects.
14541         (mono_remoting_invoke): new arch. independent impl.
14542         (mono_message_invoke): new arch. independent impl.
14543         (mono_runtime_class_init): new arch. independent impl.
14544         (mono_runtime_object_init): new arch. independent impl.
14545
14546 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14547
14548         * metadata.c, object.c, reflection.c: documented the exported
14549         functions.
14550
14551 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
14552
14553         * icall.c: simpler code to pass the assembly builder data to corlib.
14554         Implement GetNestedTypes() internalcall.
14555
14556 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
14557
14558         * class.c: warn if a type can't be loaded.
14559
14560 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
14561
14562         * image.h: typedef MonoImageOpenStatus
14563         * types.h: removed unused file
14564         
14565 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
14566
14567         * icall.c: Enum_ToObject accepts enum value arguments.
14568
14569 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
14570
14571         * class.c: move initialization of properties, events and nested
14572         classes, so that they happen for interfaces, too.
14573
14574 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
14575
14576         * icall.c: cleanup some ugly casts in Array_SetValue*.
14577
14578 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
14579
14580         * icall.c: the values array fro enums is of the correct type, now.
14581         Implement (correctly) getFullName instead of assQualifiedName for
14582         MonoType.
14583         * reflection.h, reflection.c: added mono_type_get_name ().
14584
14585 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
14586
14587         * assembly.c, image.h: for each MonoImage, record from wich assembly
14588         it was loaded.
14589         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
14590         Make Type.Assembly work.
14591
14592 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
14593
14594         * debug-symfile.h: use char* instead of gpointer to avoid
14595         unnecessary casts.
14596
14597         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
14598
14599         * icall.c (ves_icall_InternalExecute): impl. FielSetter
14600         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
14601
14602 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
14603
14604         * icall.c (mono_message_init): impl. (code cleanup)
14605         (ves_icall_InternalExecute): impl. FieldGetter
14606
14607         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
14608         defined we call all (non-static)methods through the vtable. 
14609
14610 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
14611
14612         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
14613         finalizer even though the memory is still referenced (and the chunk of
14614         memory is not freed).
14615
14616 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
14617
14618         * assembly.c: fix brokeness.
14619
14620 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
14621
14622         * class.c: kill some warnings. Check explicit interface method
14623         implementation also without considering the namespace.
14624         Load also literal strings in static class data.
14625
14626 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
14627
14628         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
14629         (default_assembly_name_resolver): Make the resolver take the
14630         "base" directory where the assembly was originally defined, so we
14631         can load DLLs that are in the same directory as the assembly that
14632         is being referenced.
14633
14634 2002-03-28  Dick Porter  <dick@ximian.com>
14635
14636         * file-io.h: 
14637         * file-io.c:
14638         * socket-io.c: 
14639         * unicode.h: 
14640         * unicode.c: Warning cleanups
14641
14642 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
14643
14644         * object.h, reflection.h: use the correct type instead of MonoObject.
14645
14646 2002-03-28  Martin Baulig  <martin@gnome.org>
14647
14648         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
14649         (mono_debug_update_symbol_file): Initialize classes if necessary.
14650
14651 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
14652
14653         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
14654         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
14655
14656 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
14657
14658         * assembly.h: fix function prototype.
14659         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
14660         * mono-endian.h: use const cast.
14661
14662 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
14663
14664         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
14665
14666 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
14667
14668         * loader.c: don't assert when a typeref can't be loaded, give
14669         a chance to the runtime to trow an exception instead.
14670         * loader.h: fix warning.
14671
14672 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
14673
14674         * class.c (mono_class_proxy_vtable): added proxy support
14675
14676 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
14677
14678         * icall.c: removed last of PAL calls, added System.Environment
14679         * file-io.h, file-io.c: MonoIO implementation
14680         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
14681
14682 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
14683
14684         * appdomain.c: do not use the byte marker in ldstr table lookup.
14685         * debug-helpers.c: allow two ':' to separate class and method name.
14686         * object.c: allocate arrays bounds with the GC, too.
14687         * verify: add a few more checks.
14688
14689 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
14690
14691         * reflection.c: output also literal strings. Allocate parameter data
14692         with GC_malloc() (thanks, Martin, for catching this!).
14693
14694 2002-03-26  Martin Baulig  <martin@gnome.org>
14695
14696         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
14697         include the `this' offset in the `param_offsets'.
14698
14699 2002-03-25  Martin Baulig  <martin@gnome.org>
14700
14701         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
14702         mono_debug_get_class() function to get the classes. Added new
14703         relocation types for arrays and strings.
14704         (mono_debug_get_class): New static function to search in all
14705         referenced assemblies for a metadata token.
14706
14707         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
14708
14709 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
14710
14711         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
14712         hold gc-allocated objects. Make the string heap a stream like the
14713         others. Removed duplicated code when writing stream info.
14714         Added asserts to catch possible buffer overflows. Set the sorted map
14715         for tables that need sorting. Added some documentation.
14716
14717 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
14718
14719         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
14720         for interned strings and vtables.
14721
14722 2002-03-24  Martin Baulig  <martin@gnome.org>
14723
14724         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
14725         it in the array since it was created with g_slist_prepend().
14726
14727 2002-03-24  Martin Baulig  <martin@gnome.org>
14728
14729         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
14730         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
14731         (mono_debug_method_from_token): Renamed to
14732         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
14733         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
14734
14735         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
14736         relocation types.
14737
14738         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
14739
14740 2002-03-24  Martin Baulig  <martin@gnome.org>
14741
14742         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
14743         (mono_debug_method_from_token): New func.
14744
14745         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
14746         New interncall, calls mono_debug_local_type_from_signature().
14747         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
14748         calls mono_debug_method_from_token().
14749
14750 2002-03-23  Martin Baulig  <martin@gnome.org>
14751
14752         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
14753         specifies the number of bytes to be converted, not the array size.
14754         Return the number of chars, not the number of bytes.
14755         (ves_icall_iconv_get_chars): The `byteCount' argument
14756         specifies the number of bytes to be converted, not the array size.
14757
14758 2002-03-23  Martin Baulig  <martin@gnome.org>
14759
14760         * reflection.h (MonoReflectionSigHelper): New type.
14761
14762         * reflection.c (mono_reflection_sighelper_get_signature_local),
14763         (mono_reflection_sighelper_get_signature_local): New functions.
14764
14765         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
14766         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
14767         interncalls.
14768
14769 2002-03-23  Martin Baulig  <martin@gnome.org>
14770
14771         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
14772         is_writeable is set.
14773         (mono_raw_buffer_update): New function to write the modified map
14774         back to disk.
14775
14776         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
14777
14778         * debug-symfile.c (mono_debug_update_symbol_file): Call
14779         mono_raw_buffer_update() when done writing.
14780
14781 2002-03-23  Martin Baulig  <martin@gnome.org>
14782
14783         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
14784
14785         * debug-symfile.c: Added support for arguments and local variables.
14786
14787 2002-03-23  Dick Porter  <dick@ximian.com>
14788
14789         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
14790         protected by ifdefs, hence breaking the w32 build.
14791
14792 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14793
14794         * object.c: implement is_interned() the right way.
14795
14796 2002-03-21  Martin Baulig  <martin@gnome.org>
14797
14798         * debug-symfile.[ch]: New files to handle debugging information
14799         files. There's also support to dynamically update these symbol
14800         files to include machine dependent information.
14801
14802 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
14803
14804         * threads.c (mono_thread_create): new function to create thread
14805         from C
14806
14807 2002-03-20  Martin Baulig  <martin@gnome.org>
14808
14809         * icall.c (ves_icall_InternalInvoke): Create a new object if the
14810         method is a constructor.
14811         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
14812         points to ves_icall_InternalInvoke().
14813
14814 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
14815
14816         * file-io.c: Flush shouldn't throw exceptions.
14817
14818 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
14819
14820         * file-io.c: FileStream flush support; FileSetLength now
14821         restores file pointer.
14822
14823 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
14824
14825         * class.c: set image for pointer classes.
14826
14827 2002/03/19  Nick Drochak <ndrochak@gol.com>
14828
14829         * sysmath.c: Forgot one.
14830
14831 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
14832
14833         * sysmath.c: Avoid redefining existing names.
14834
14835 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
14836
14837         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
14838         handled by runtime as icall rather than dllimport from libm.so
14839         * file-io.c, file-io.h: fixed handle argument type.
14840
14841 2002-03-18  Dick Porter  <dick@ximian.com>
14842
14843         * reflection.c (mono_image_get_type_info): rename interface to
14844         iface, because of "#define interface struct" on windows.
14845
14846 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
14847
14848         * class.c, class.h: rename and export mono_ptr_class_get().
14849         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
14850         * reflection.c, reflection.h, icall.c: better/saner type name
14851         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
14852         method signatures.
14853
14854 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
14855
14856         * class.c (mono_class_init): removed hardcoded GHC_SLOT
14857
14858         * icall.c (ves_icall_InternalInvoke): impl.
14859
14860 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
14861
14862         * reflection.c: output the interface map table, too.
14863
14864 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
14865
14866         * class.c (class_compute_field_layout): separate computation of 
14867         static field layout
14868
14869 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
14870
14871         * icall.c: added System.Buffer support.
14872         * file-io.c: moved file icalls from PAL to FileStream.
14873
14874 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
14875
14876         * icall.c (ves_icall_System_Object_GetHashCode): impl.
14877
14878 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
14879
14880         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
14881
14882 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14883
14884         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
14885
14886 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
14887
14888         * debug-helpers.{c,h}: moved here from monograph some useful functions
14889         to locate a method by name/signature in a class or image. Included
14890         also a small and flexible IL disassembler.
14891
14892 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14893
14894         * reflection.c: fixup tokens in methods with small header size, too.
14895
14896 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
14897
14898         * object.c (mono_string_to_utf8): remove assert(!error), instead
14899         print a warning. 
14900
14901 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
14902
14903         * icall.c: update to the new mono_Array_class_get interface.
14904
14905 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
14906
14907         * appdomain.c, object.c: Boehm-GC enable.
14908         * icall.c: make get_data_chunk() support split data requests.
14909         Ensure a class is initialized in more cases. Return only the first
14910         property found in GetProperties() or the compiler gets confused. 
14911         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
14912         * reflection.h, reflection.c: add fixup mechanism for field and method
14913         tokens. Initialize assembly->typeref in a single place. Output
14914         properties after events. Support custom attributes for events, too.
14915         Typo fix for paramter custom attrs.
14916
14917 2002-03-07  Martin Baulig  <martin@gnome.org>
14918
14919         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
14920
14921 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
14922
14923         * class.c (mono_array_class_get): fix. for multi. dim. arrays
14924
14925 2002-03-06  Martin Baulig  <martin@gnome.org>
14926
14927         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
14928         non-zero lower bounds. See testcases #F10-#F13.
14929
14930 2002-03-05  Martin Baulig  <martin@gnome.org>
14931
14932         * exception.c (mono_get_exception_argument_out_of_range): New exception.
14933
14934         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
14935         ves_icall_System_Array_GetValue(), only calculate the absolute array position
14936         here.
14937         (ves_icall_System_Array_SetValue): Likewise.
14938         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
14939         as argument and does the actual work. This function is used when copying a
14940         multi-dimensional array.
14941         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
14942         now do all the widening conversions of value types.
14943         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
14944
14945 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14946
14947         * class.c: remove some magic numbers and use the smbolic names,
14948         instead. Added init_events() to load event info at class init time.
14949         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
14950         and mono_metadata_methods_from_event().
14951         * reflection.h, reflection.c: added support for writing out the evnets
14952         related information.
14953
14954 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
14955
14956         * reflection.h, icall.c: use a different method (GetInterfaces)
14957         to gather interface info and add isbyref, isprimitive and
14958         ispointer to the ves_icall_get_type_info() return value.
14959
14960 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
14961
14962         * class.h: stared adding support for events.
14963         * icall.c: split find_members implementation. Added debug icall to get
14964         the address of an object.
14965         * reflection.c: handle TypeBuilders in mono_type_get_object().
14966
14967 2002-03-01  Martin Baulig  <martin@gnome.org>
14968
14969         * icall.c (ves_icall_System_Array_GetLength): This must throw an
14970         ArgumentOutOfRangeException(), not an ArgumentException().
14971         (ves_icall_System_Array_GetLowerBound): Likewise.
14972         (ves_icall_System_Array_GetValue): Improved argument checking.
14973         (ves_icall_System_Array_SetValue): Improved argument checking.
14974
14975 2002-03-01  Martin Baulig  <martin@gnome.org>
14976
14977         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
14978         called with invalid arguments rather than just dying with g_assert().
14979         (ves_icall_System_Array_SetValue): Likewise.
14980         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
14981         raise a NotImplementedException instead.
14982         (ves_icall_System_Array_GetLength): Added argument checking.
14983         (ves_icall_System_Array_GetLowerBound): Added argument checking.
14984
14985 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
14986
14987         * object.h (mono_assert): new macros mono_assert and
14988         mono_assert_not_reached
14989
14990 2002-02-28  Martin Baulig  <martin@gnome.org>
14991
14992         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
14993         and "System::String::IsInterned" to "System::String::_IsInterned".
14994
14995 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
14996
14997         * icall.c: remove hacks for typebuilder. Added icall to create a
14998         modified type from a tybebuilder.
14999         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
15000         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
15001         to create a backing MonoClass for a TypeBuilder.
15002
15003 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
15004
15005         * class.c, class.h: more refactoring of class init.
15006         Export mono_class_setup_mono_type() and mono_class_setup_parent().
15007
15008 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
15009
15010         * marshal.c, marshal.h: start of marshaling interface.
15011
15012 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
15013
15014         * icall.c: fix order in assembly qualified name icall.
15015
15016 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
15017
15018         * class.c: do not free str, since we store it in the hash table.
15019         * reflection.h: add label field to MonoILExceptionInfo.
15020         * reflection.c: handle references to more than one assembly. Handle
15021         case when there isn't a module created in the assembly.
15022
15023 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
15024
15025         * class.c: Fix typo. Start refactoring of class init code.
15026
15027 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
15028
15029         * appdomain.c: exit with 1 on error.
15030         * class.c: we already have the name in MonoClassField.
15031         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
15032         MonoStreamHeader instead of an offset of image->raw_metadata.
15033
15034 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
15035
15036         * appdomain.c (mono_init): Be even more descriptive about the error.
15037
15038 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
15039
15040         * appdomain.c: give the user an informative message when corlib can't
15041         be loaded.
15042
15043 2002-02-26  Martin Baulig  <martin@gnome.org>
15044
15045         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15046         New icall to get the time zone data.
15047
15048 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
15049
15050         * reflection.c: set virtual and raw size of section correctly.
15051         * threads.c: transfer domain information to newly created threads.
15052
15053 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
15054
15055         * class.c: when instancing a class in a domain, load the default
15056         vaules for static fields from the constant table. Fix System.Enum to
15057         not be an enum.
15058         * icall.c: implement Object::GetType() internalcall. Implemented
15059         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
15060         Fixed checking of binding flags in find_members().
15061         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
15062         * reflection.c: handle enumerations when writing to the constant
15063         table. Use a different object cache for types.
15064
15065
15066 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
15067
15068         * object.c (mono_object_isinst): fix for arrays
15069
15070         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
15071
15072 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
15073
15074         * object.c: don't use mprotect ()  and fix intern pool hash table
15075         lookup for big endian systems.
15076
15077 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
15078
15079         * icall.c: change type_is_subtype_of () signature.
15080
15081 2002-02-21  Mark Crichton  <crichton@gimp.org>
15082
15083         * rand.c, rand.h: Added random number generator for
15084         System.Security.Cryptography classes.
15085
15086         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
15087
15088         * icall.c: Added System.Security.Cryptography calls.
15089
15090 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
15091
15092         * class.c, icall.c, metadata.c: better support for pointer types.
15093         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
15094         * reflection.c: Add support for getting custom attrs for properties
15095         and simplify some code.
15096
15097 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
15098
15099         * icall.c: change getToken () and add custom attribute GetBlob()helper
15100         method.
15101         * reflection.h: add custom attrs array to the reflection builder structures.
15102         * reflection.c: encode and emit custom attributes for all the relevant
15103         reflection objects. Cache fieldref and methodref tokens. Change
15104         mono_image_create_token() interface to take a MonoDynamicAssembly.
15105         More complete custom attributes decoder. Load custom attributes for
15106         Assembly, Field, Method and Constructor objects, too. Make the
15107         returned array an Attribute[] one, not object[]. Added
15108         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
15109         custom attribute constructor.
15110
15111 2002-02-20  Dick Porter  <dick@ximian.com>
15112
15113         * icall.c:
15114         * rawbuffer.c:
15115         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
15116         problem code out for now).
15117
15118 2002-02-19  Radek Doulik  <rodo@ximian.com>
15119
15120         * object.c (mono_ldstr): use hash table to avoid multiple swapping
15121
15122 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
15123
15124         * icall.c: register the GetCustomAttributes method.
15125         * object.c, object.h: add mono_string_new_len ().
15126         * reflection.h, reflection.c: added mono_runtime_invoke(),
15127         mono_install_runtime_invoke(). Added
15128         mono_reflection_get_custom_attrs () to load custom attributes and
15129         create the attribute objects.
15130
15131 2002-02-19  Dick Porter  <dick@ximian.com>
15132         * threads-dummy-types.c:
15133         * threads-dummy-types.h:
15134         * threads-dummy.c:
15135         * threads-dummy.h:
15136         * threads-pthread-types.c:
15137         * threads-pthread-types.h:
15138         * threads-pthread.c:
15139         * threads-pthread.h:  Deleted obsolete files
15140
15141 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
15142
15143         * class.c (mono_class_vtable): runtime init the class when we
15144         allocate static class data.
15145
15146         * icall.c (ves_icall_System_Array_SetValue): check for null values.
15147
15148         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
15149         and String - but we will need generic marshalling support in the
15150         future. 
15151         (mono_init): set the domain name in a ms compatible way
15152
15153         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
15154         String[].
15155
15156 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
15157
15158         * object.c (mono_array_clone): use alloca() instead of g_malloc  
15159         for sizes
15160
15161         * appdomain.c (mono_domain_unload): impl.
15162
15163 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
15164
15165         * appdomain.c, object.c: fix intern pool implementation.
15166         * class.c: fix alignment code.
15167
15168 2002-02-16  Radek Doulik  <rodo@ximian.com>
15169
15170         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
15171         and s2 > s1, just copy lower bytes to be compatible with little
15172         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
15173         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
15174
15175         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
15176         force big_endian to be 1 for big endian machines 
15177         (ves_icall_iconv_new_decoder): ditto
15178
15179 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
15180
15181         * socket-io.c (convert_sockopt_level_and_name): If the system
15182         doesn't define SOL_IP or SOL_TCP, get them by hand using
15183         getprotobyname() and caching the values (because this could be a
15184         slow operation).
15185         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
15186         Use the appropriate struct when the system does support it. Ie,
15187         not all systems have struct ip_mreqn so use struct ip_mreq when
15188         appropriate.
15189
15190 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
15191
15192         * reflection.c: handle finally clauses.
15193
15194 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
15195
15196         * socket-io.c: use g_snprintf() instead of snprintf.
15197
15198 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
15199
15200         * reflection.c (mono_param_get_objects): Cast second argument to
15201         mono_method_get_param_names to a const char** to silence the
15202         compiler warning.
15203
15204         * appdomain.c (mono_domain_assembly_open): Put parens around the
15205         truth statement in the for-loop.
15206
15207         * unicode.c (iconv_convert): Got rid of a compiler warning about
15208         int i being unused when the system has a new iconv.
15209         (iconv_get_length): Same.
15210
15211         * image.c (load_class_names): Cast the second argument to
15212         g_hash_table_insert() to char* to hush compiler warnings about the
15213         arg being a const.
15214         (mono_image_open): Same here.
15215
15216         * socket-io.c: Don't conditionally include sys/filio.h or
15217         sys/sockio.h here anymore since we now get them from
15218         io-layer/io-layer.h
15219         (inet_pton): If the system doesn't support inet_aton, implement
15220         using inet_addr and also #define INADDR_NONE if it isn't defined
15221         by the system.
15222
15223 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
15224
15225         * metadata.c, metadata.h: added function to get packing and size info
15226         of a typedef.
15227         * reflection.h, reflection.c: handle field RVA data. Save info about
15228         the table layout if needed. Assign typedef indexes to all the types
15229         before dumping the info about them to avoid forward reference problems.
15230
15231 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
15232
15233         * socket-io.c (convert_sockopt_level_and_name): ifdef
15234         SO_ACCEPTCONN because it is not defined on my system (old debian)
15235
15236 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
15237
15238         * opcode.c: use stddef.h to get NULL.
15239
15240 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
15241
15242         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
15243         for FIONBIO, FIONREAD and SIOCATMARK.
15244         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
15245         define INADDR_NONE and besides, inet_addr() is deprecated and
15246         should not be used. Use inet_pton() instead - it also has the
15247         added bonus that it can easily handle IPv6 addresses as well.
15248         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
15249
15250 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
15251
15252         * decimal.c: remove _MSC_VER conditional.
15253
15254 2002-02-13  Dick Porter  <dick@ximian.com>
15255
15256         * socket-io.c: 
15257         * icall.c: Internal calls for Blocking, Select, Shutdown,
15258         GetSocketOption and SetSocketOption
15259
15260 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
15261
15262         * assembly.cs: better resolver: use it instead of some kludgy
15263         code.
15264
15265 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
15266
15267         * reflection.c: the best way to speed-up the compiler is to avoid
15268         infinite loops.
15269
15270 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
15271
15272         * class.c (mono_class_vtable): changed the object layout
15273         (obj->vtable->class). 
15274         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
15275
15276 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
15277
15278         * assembly.c: look for assemblies in the assembly dir, too.
15279
15280 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
15281
15282         * class.c: fix thinko in mono_class_from_type().
15283
15284 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
15285
15286         * exception.h, exception.c: added TypeLoadException.
15287         * object.h, object.c: added mono_array_clone ().
15288         * icall.c: handle throwOnError in AssemblyGetType().
15289         Added Array.Clone().
15290         * opcode.h, opcode.c: use a single value for the opcode val.
15291         Compile fix for non-gcc compilers.
15292
15293 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
15294
15295         * opcodes.c, opcodes.h: export interesting info about opcodes.
15296
15297 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
15298
15299         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
15300         icalls. 
15301
15302         * class.c (class_compute_field_layout): set element_class for enums
15303         (mono_class_create_from_typedef): set element_class for normal classes
15304
15305         * icall.c (ves_icall_System_Enum_get_value): impl.
15306
15307         * class.c (mono_class_create_from_typedef): do not set valuetype
15308         flag for System.ValueType and System.Enum
15309
15310 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
15311
15312         * unicode.c (iconv_convert): fix big endian problem.
15313
15314 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
15315
15316         * class.c: add asserts if we are ever going to scribble over memory.
15317         * socket-io.c: not all systems have AF_IRDA defined.
15318
15319 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
15320
15321         * class.c (class_compute_field_layout): do not consider static
15322         fields to compute alignment
15323
15324 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
15325
15326         * appdomain.c (mono_appdomain_get): impl.
15327         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
15328
15329 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
15330
15331         * icall.c: ignore "file://" prefix when loading an assembly.
15332
15333 2002-01-23  Dick Porter  <dick@ximian.com>
15334
15335         * socket-io.c:
15336         * icall.c:
15337         * Makefile.am: Added socket support
15338
15339 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
15340
15341         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
15342         code back.  This should return the assemblies that are loaded by
15343         the runtime on behalf of an application domain. 
15344
15345         The current implementation is still broken, it just returns every
15346         assembly loaded, but until we get real applications domain this
15347         will do.
15348
15349 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
15350
15351         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
15352         AppDomain object.
15353
15354 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
15355
15356         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
15357         the mono_class_from_name lookup.
15358         (ves_icall_get_parameter_info): ditto.
15359         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
15360         method.
15361         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
15362
15363 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
15364
15365         * class.c: load also nested classes on class init.
15366         System.ValueType instance methods gets passed boxed
15367         values, unless methods in derived classed that get a pointer to the
15368         data.
15369         * icall.c: use better name parsing code in GetType().
15370         * image.c, image.h: add mono_image_loaded ().
15371         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
15372         * reflection.c, reflection.h: added mono_reflection_parse_type().
15373
15374 2002-01-22  Veronica De Santis <veron78@interfree.it>
15375
15376         * icall.c : Added mapping of internal calls for Manual and Auto reset events
15377         * threads.c : Added the implementation of internal calls for events
15378         * threads.h : Added prototypes of internal calls for events
15379         
15380 2002-01-21  Radek Doulik  <rodo@ximian.com>
15381
15382         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
15383
15384 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
15385
15386         * class.c (mono_class_init): set min_align to 1 (instead of 0)
15387         (mono_class_value_size): use min_align
15388
15389 2002-01-20  Dick Porter  <dick@ximian.com>
15390
15391         * threads.h:
15392         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
15393         so it compiles on w32.
15394
15395 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
15396
15397         * metadata.c (mono_type_stack_size): impl.
15398
15399         * class.c (mono_class_get_field): impl. memberref token
15400
15401 2002-01-16 Veronica De Santis <veron78@@interfree.it>
15402
15403         * icall.h : Added the internal calls mapping for CreateMutex_internal
15404                     and ReleaseMutex_internal.
15405         * threads.h : Added the prototype of mutexes internal calls.
15406         * threads.c : Added the implementations of mutexes internal calls.
15407
15408 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
15409
15410         * metaparse.h: removed unused file.
15411         * reflection.c, reflection.h: added stream_data_align () function 
15412         to align data in streams and keep stream aligned. Add support for
15413         exception support in method headers.
15414
15415 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
15416
15417         * unicode.c: make iconv_convert () return the number of bytess written
15418         in the output buffer.
15419
15420 2002-01-15  Dick Porter  <dick@ximian.com>
15421         * threads.c: Make the runtime's idea of infinite timeouts coincide
15422         with the class library's
15423
15424         Fix a particularly egregious bug in mono_thread_cleanup(). That
15425         code was so utterly bogus it must have been written on a Monday.
15426
15427 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
15428
15429         * reflection.h: add subtypes field to TypeBuilder.
15430         * reflection.c: encode constants for literal fields.
15431         Handle subtypes. Fix user string token (and add a zero byte)
15432         at the end.
15433         
15434 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
15435
15436         * class.c (mono_class_init): bug fix: assign slot numbers for
15437         abstract methods.
15438
15439 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
15440
15441         * reflection.c: don't try to output a code RVA for abstract methods.
15442         Small fixes for method header format. Output parameter info to the
15443         ParamDef table. Save method overriding info to MethodImpl table.
15444         Fix property support. Allow typedef.extends to be a type in the
15445         building assembly.
15446         * verify.c: fix off-by-one error.
15447
15448 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
15449
15450         * class.c: fix mono_class_from_mono_type () for szarray types.
15451         Remove unused cache check in mono_class_from_type_spec().
15452         * icall.c: *type_from_name () functions handle simple arrays and byref.
15453         * reflection.c: handle byref and szarray types. Handle methods without
15454         body (gets P/Invoke compilation working). Handle types and fields in
15455         get_token ().
15456         * reflection.h: add rank to MonoTypeInfo.
15457
15458 2002-01-10  Dick Porter  <dick@ximian.com>
15459
15460         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
15461         internal calls
15462
15463 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
15464
15465         * icall.c: initialize class in type_from_handle ().
15466         Loop also in parent classes for get_method ().
15467         * reflection.c: properly encode class and valuetype types.
15468         Start on encoding TypeBuilder types. Handle fieldrefs.
15469         Use correct length when registering a user string.
15470         Handle ConstructorBuilder and MonoMethod in get_token ().
15471         Make mono_type_get_object () aware of cached types.
15472         * object.c: back out change to mono_string_new ().
15473
15474 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
15475         * object.c: mono_string_new should return a NULL when the string 
15476         passed in is NULL -- not try to deference it.
15477         
15478 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
15479
15480         * icall.c: hack to make IsSubType work for TypeBuilders.
15481         * reflection.c: emit constructors before methods.
15482         Retrieve param names in mono_param_get_objects().
15483
15484 2002/01/05  Nick Drochak  <ndrochak@gol.com>
15485
15486         * Makefile.am: fix list of headers and sources so automake 1.5
15487         doesn't complain. Removed \# at end of list.
15488
15489 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
15490
15491         * reflection.c: get token for a method ref. Set return type of
15492         constructor to void.
15493         * loader.c: debug message.
15494         * class.c: typo fix.
15495
15496 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
15497
15498         * icall.c: fix array init with rank > 1. FindMembers
15499         loops in parent class as well.
15500         * image.c: do not insert nested types in name cache.
15501         * reflection.c: warning fix.
15502         * reflection.h: add override method (for interface impl).
15503
15504 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
15505
15506         * metadata.c: fix customattr decoding.
15507
15508 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
15509
15510         * rawbuffer.cs: Added native Win32 implementation, avoids using
15511         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
15512
15513 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
15514
15515         * class.c: make the low-level routines handle the cache.
15516
15517 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
15518
15519         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
15520
15521 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
15522
15523         * class.c: fix mono_array_element_size() for objects.
15524         * class.h, class.c: add properties to MonoClass and load them
15525         at init time.
15526         * icall.c: check with isinst() when assigning a value to an array
15527         instead of requiring the classes to match exactly.
15528         Implemented icall for System.Type::GetType().
15529         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
15530         enums. Handle bindingflags when looking for methods and fields.
15531         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
15532         and mono_metadata_methods_from_property().
15533         * reflection.h, reflection.c: added structures for propreties,
15534         parameters and enums. Implemented mono_property_get_object() and
15535         mono_param_get_objects().
15536
15537 2001-12-18  Dick Porter  <dick@ximian.com>
15538
15539         * file-io.c: Use mono_string_to_utf16() instead of
15540         mono_string_chars()
15541
15542         * object.c: Added mono_string_to_utf16(), which copies the non
15543         NULL-terminated MonoString into a new double-null-terminated
15544         buffer.
15545
15546 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
15547
15548         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
15549
15550 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
15551
15552         * file-io.c: raise exceptions if handle is invalid.
15553
15554 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
15555
15556         * assembly.c: yet another check for mscorlib.
15557         * class.c, class.h: load nesting info for classes.
15558         * icall.c: many new functions to support the Reflection classes.
15559         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
15560         * reflection.h, reflection.c: mono_image_create_token(),
15561         mono_assembly_get_object(), mono_type_get_object(),
15562         mono_method_get_object(), mono_field_get_object(): methods to return
15563         objects that parallel the C representation of assemblies, types,
15564         methods, fields.
15565
15566 2001-12-11  Dick Porter  <dick@ximian.com>
15567
15568         * icall.c:
15569         * file-io.c: Internal calls for file IO.
15570
15571 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
15572
15573         * tabledefs.h: missing FileAttributes.
15574         * verify.h, verify.c: use is_valid_string () to simplify and check for
15575         valid strings more correctly. Fix warnings and speeling.
15576         Check more tables: Filed, File, ModuleRef, StandAloneSig.
15577         Check code: branches, maxstack, method calls.
15578
15579 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
15580
15581         * object.c (mono_object_allocate): removed static, so that the jit
15582         can allocate value types.
15583
15584         * icall.c (ves_icall_System_DateTime_GetNow): impl.
15585
15586 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15587
15588         * class.c: init enum types right away and register the
15589         token->MonoClass map in mono_class_create_from_typedef ().
15590         * verify.h, verify.c: first cut of the verifier.
15591         * pedump.c: add --verify switch to verify metadata tables.
15592         * tabledefs.h: add some missing enums.
15593
15594 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
15595
15596         * class.c (mono_install_runtime_class_init): impl.
15597         (mono_class_init): renamed mono_class_metadata_init to
15598         mono_class_init, also removed the metadata_inited flag
15599
15600         * object.c (mono_object_isinst): use faster algorithm
15601
15602 2001-11-30  Radek Doulik  <rodo@ximian.com>
15603
15604         * mono-endian.h: reverted last change
15605         added function prototypes
15606
15607         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
15608         add mono-endian.c back
15609
15610         * mono-endian.c: returned back, as Paolo pointed out, it's needed
15611         for unaligned access, I've mistaked it with endianess. I am
15612         sorry.
15613         (mono_read16): fix reverted endianess
15614         (mono_read64): ditto
15615         (mono_read32): ditto
15616
15617 2001-11-30  Dick Porter  <dick@ximian.com>
15618
15619         * exception.c: Implement mono_exception_from_name()
15620
15621 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
15622
15623         * metadata.h, metadata.c: remove params_size and locals_size and their
15624         calculation from the metadata code: they are only usefult to the
15625         interp.
15626
15627 2001-11-29  Radek Doulik  <rodo@ximian.com>
15628
15629         * object.c (mono_ldstr): swap bytes here, it's probably not the
15630         best place, but works for me now, I'll redo it once I know mono
15631         better, also note that I add PROT_WRITE and don't reset back, also
15632         note that it's only affects big endians, so x86 should be OK
15633
15634         * mono-endian.h (read16): use just glib macros for both endians
15635
15636         * mono-endian.c: removed as glib macros are used in in
15637         mono-endian.h so we don't need to care about endianess for read
15638         macros as glib does that for us already
15639
15640 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
15641
15642         * class.h, class.h: take minimum alignment into consideration so
15643         that the fields of a class remain aligned also when in an array.
15644
15645 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15646
15647         * loader.h, loader.c: add mono_method_get_param_names().
15648         * class.c: 0-init class fields.
15649
15650 2001-11-26  Dick Porter  <dick@ximian.com>
15651
15652         * icall.c:
15653         * threads-types.h:
15654         * threads.c: New file that handles System.Threading on all platforms
15655
15656         * object.c: 
15657         * object.h: Remove the synchronisation struct from MonoObject,
15658         replace it with a pointer that gets initialised on demand
15659
15660         * Makefile.am: Replace all the system-specific threading code with
15661         a single file that uses the new wrapper library
15662
15663 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
15664
15665         * class.c, class.h: add mono_install_trampoline() so that the runtime
15666         can register a function to create a trampoline: removes the ugly
15667         requirement that a runtime needed to export arch_create_jit_trampoline.
15668         * object.h, object.c: added mono_install_handler() so that the runtime
15669         can install an handler for exceptions generated in C code (with
15670         mono_raise_exception()). Added C struct for System.Delegate.
15671         * pedump.c: removed arch_create_jit_trampoline.
15672         * reflection.c: some cleanups to allow registering user strings and
15673         later getting a token for methodrefs and fieldrefs before the assembly
15674         is built.
15675         * row-indexes.h: updates and fixes from the new ECMA specs.
15676
15677 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
15678
15679         * class.h, class.c: add enum_basetype field to MonoClass.
15680         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
15681         to get index in the constant table reated to a field, param or
15682         property.
15683         * reflection.h, reflection.c: handle constructors. Set public-key and
15684         version number of the built assembly to 0.
15685         * row-indexes.h: update from new ECMA spec.
15686
15687 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
15688
15689         * class.h, class.c: add a max_interface_id to MonoClass.
15690         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
15691         since it's used to do that. Added mono_type_type_from_obj().
15692         Make GetType() return NULL instead of segfaulting if the type was not
15693         found. Handle simple arrays in assQualifiedName.
15694         * object.h: add a struct to represent an Exception.
15695         * reflection.c: output call convention in method signature.
15696         Add code to support P/Invoke methods and fixed offsets for fields.
15697
15698 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
15699
15700         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
15701         the value.
15702         * icall.c: use mono_array_addr instead of array->vector: fixes the
15703         reflection image writing.
15704         * reflection.c: init call convention byte to 0 in method signature.
15705         Encode the property signature. Don't output property-related methods
15706         twice. Really process the properties for a type (don't cast a field to
15707         a property, my mom always told me that).
15708         Fix 64 bit issues in pointer alignment in a different and more
15709         readable way.
15710
15711 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
15712
15713         * loader.h: Removed type class from MonoDefaults, added monotype
15714
15715         * loader.c: Loaded MonoType, removed loading of Type
15716
15717         * icall.c (my_mono_new_object): Now returns a System.MonoType,
15718         and fills in System.Type._impl with a RuntimeTypeHandle rather
15719         than the actual MonoClass *
15720
15721         (ves_icall_type_from_handle): change from type_class to
15722         monotype_class
15723
15724         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
15725         implemented
15726
15727         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
15728         implemented
15729
15730         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
15731
15732         (ves_icall_System_Reflection_Assembly_GetType): implemented
15733
15734         (ves_icall_System_MonoType_assQualifiedName): implemented
15735
15736         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
15737
15738 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
15739
15740         * assembly.c (mono_assembly_open): Implement a cache for the
15741         assemblies. 
15742
15743         (mono_assembly_close): only destroy the assembly when the last
15744         reference is gone.
15745         
15746 2001-11-09  Dick Porter  <dick@ximian.com>
15747
15748         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
15749
15750 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
15751
15752         * class.c (mono_class_metadata_init): bug fix: compute the right slot
15753
15754 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
15755
15756         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
15757         from Martin Weindel.
15758         * object.h: add mono_string_chars ().
15759
15760 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
15761
15762         * reflection.c (build_compressed_metadata): Eliminates warnings
15763         and uses 64-bit clean code.
15764
15765         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
15766         (mono_type_equal): Change signature to eliminate warnings.
15767
15768 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15769
15770         * icall.c, loader.c: remove the internalcall array constructors.
15771         Changes to match the new MonoArray structure.
15772         * object.h, object.c: an array object doesn't allocate an extra
15773         vector. Add mono_array_new_full () to create jagged arrays easily.
15774
15775 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
15776
15777         * metadata.h, metadata.c: add mono_metadata_field_info () to
15778         retreive all the info about a field from vairous tables.
15779         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
15780         * class.h, class.c: augment MonoClassField with more info.
15781         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
15782         policy and load a field's RVA if needed.
15783
15784 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
15785
15786         * class.c (mono_class_metadata_init): create a trampoline for all
15787         virtual functions instead of actually compiling them.
15788
15789 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
15790
15791         * class.h, class.c: include name in MonoClassField.
15792         * class.c: fix fundamental type of System.Object and System.String.
15793         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
15794         tokens in ldtoken.
15795         * icall.c: remove internalcalls for the Reflection stuff that is now
15796         done in C# code.
15797         * loader.c: mono_field_from_memberref () implementation.
15798         * mono-endian.c: thinko (s/struct/union/g).
15799         * object.c, object.h: make the mono_string_* prototypes actually use
15800         MonoString instead of MonoObject.
15801         * reflection.c, reflection.h: updates for changes in the reflection
15802         code in corlib: we use C structures that map to the actual C# classes.
15803         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
15804         fat method header if needed and use the info from the ILGenerator for
15805         methods. Handle fields in types. Misc fixes.
15806
15807 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
15808
15809         * class.c (mono_class_metadata_init): bug fix: always allocate
15810         space for static class data
15811
15812 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
15813
15814         * class.c (mono_compute_relative_numbering): use relative
15815         numbering to support fast runtime type checks.
15816
15817 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
15818
15819         * class.c (mono_class_create_from_typeref): added debugging output
15820         to print class name when MonoDummy is returned instead of real class
15821
15822 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
15823
15824         * class.c (mono_class_metadata_init): interface offset table now
15825         contains pointers into the vtable - this is more efficient for the jit
15826
15827 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
15828
15829         * class.c (mono_class_metadata_init): use a temporary vtable (the
15830         old algorithm only worked for the interpreter, but not for the jit)
15831
15832 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
15833
15834         * loader.c (method_from_memberref): use mono_class_get to get the
15835         class of an array instead of using System.Array directly.
15836         (mono_get_method): also add MEMBERREF methods to the method cache
15837         which usefull for arrays.
15838
15839 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
15840
15841         * pedump.c (arch_compile_method): added to compute vtable entry
15842
15843         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
15844         number of interfaces.
15845         
15846         * class.h: merged MonoArrayClass into MonoClass
15847
15848         * class.c (mono_class_create_from_typedef): compute the vtable size and
15849         allocate space to include the vtable inside MonoClass
15850         (mono_class_metadata_init): initialize the vtable
15851
15852 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
15853
15854         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
15855         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
15856         * image.c: endian fixes by Laurent Rioux.
15857         * object.h, object.c: rename MonoStringObject to MonoString and
15858         MonoArrayObject to MonoArray. Change some function names to conform to
15859         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
15860         guint16* as first argument, so don't use char*.
15861         Provide macros to do the interesting things on arrays in a portable way.
15862         * threads-pthread.c: updates for the API changes and #include <sched.h>
15863         (required for sched_yield()).
15864         * icall.c: updates for the API changes above.
15865         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
15866         platforms that need them.
15867
15868 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
15869
15870         * class.c: set the correct type for all the fundamental
15871         type when loading the class.
15872
15873 2001-10-05  Dick Porter  <dick@ximian.com>
15874
15875         * threads-pthread.c (pthread_mutex_timedlock): Simple
15876         compatibility version for C libraries that lack this call.
15877
15878 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15879
15880         * class.c: MonoTypes stored in MonoClass are stored as
15881         fundamental MonoTypes when the class represents a
15882         fundamental type (System.Int32, ...).
15883         The TypeHandle return by ldtoken is a MonoType*.
15884         * icall.c: ves_icall_get_data_chunk () write out all the
15885         PE/COFF stuff. Implement ves_icall_define_method (),
15886         ves_icall_set_method_body (), ves_icall_type_from_handle ().
15887         * image.c: properly skip unknown streams.
15888         * loader.h, loader.c: add type_class to mono_defaults.
15889         * metadata.c, metadata.h: export compute_size () as
15890         mono_metadata_compute_size () with a better interface.
15891         Typo and C&P fixes.
15892         * pedump.c: don't try to print the entry point RVA if there is no entry point.
15893         * reflection.c, reflection.h: many cleanups, fixes, output method
15894         signatures and headers, typedef and typeref info, compress the metadata
15895         tables, output all the heap streams, cli header etc.
15896         * row-indexes.h: typo fixes.
15897
15898 2001-10-04  Dick Porter  <dick@ximian.com>
15899
15900         * object.h: Add a synchronisation mutex struct to MonoObject
15901
15902         * object.c (mono_new_object): Initialise the object
15903         synchronisation mutexes
15904
15905         * icall.c: System.Threading.Monitor internal calls
15906         
15907         * threads-pthread.h:
15908         * threads-pthread.c: System.Threading.Monitor internal calls
15909
15910         * threads-types.h: New file, includes the system-specific thread
15911         structures
15912         
15913         * threads-pthread-types.h:
15914         * threads-pthread-types.c: New files, handle pthread-specific
15915         synchronisation types
15916
15917         * threads-dummy-types.h: 
15918         * threads-dummy-types.c: New files of dummy support for
15919         thread-specific types
15920
15921         * metadata.c:
15922         * image.c:
15923         * pedump.c: include mono-endian.h not endian.h
15924         
15925         * Makefile.am: More threads files.
15926         Name mono-endian.h not endian.h
15927
15928 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
15929
15930         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
15931         stuff and implement a few more bits.
15932         * icall.c: a field needs to be dereferenced twice. Do not use the same
15933         name for two variables in the same scope.
15934         * image.c, image.h: cleanups.
15935
15936 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
15937
15938         * class.c (mono_class_metadata_init): bug fix: compute the right size
15939
15940 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
15941
15942         * icall.c: implemented some of the Reflection internalcalls.
15943         * image.c, image.h: start writing out the PE/COFF image.
15944         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
15945         that does the reverse than decode_blob_size ().
15946         * object.c: use mono_metadata_encode_value (). Move here
15947         temporary implementation of mono_string_to_utf8 ().
15948         * rawbuffer.c: make malloc_map static.
15949
15950 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15951
15952         * metadata.c: fix type comparison for arrays.
15953         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
15954         Added a couple of new classes to monodefaults.
15955         * icall.c: added a couple of Reflection-related internalcalls.
15956         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
15957         Added a byval_arg MonoType to MonoClass.
15958
15959 2001-09-28  Dick Porter  <dick@ximian.com>
15960
15961         * icall.c:
15962         * threads-pthread.h: 
15963         * threads-pthread.c: Implemented internal calls for
15964         LocalDataStoreSlot operations.  Applied mutexes around all shared
15965         data.  Reworked the thread creation and Start() operations to
15966         avoid a race condition.
15967         
15968         * threads-dummy.h:
15969         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
15970
15971 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
15972
15973         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
15974
15975 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
15976
15977         * class.c, loader.c: warn and return NULL instead of erroring out.
15978         * icall.c: added System.AppDomain::getCurDomain().
15979         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
15980
15981 2001-09-25  Dick Porter  <dick@ximian.com>
15982
15983         * threads-pthread.h:
15984         * threads-pthread.c: Implemented timed thread joining and added
15985         System.Threading.Thread::Join_internal internal call
15986
15987         * icall.c: Added System.Threading.Thread::Join_internal internal call
15988
15989         * threads-dummy.h:
15990         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
15991
15992 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
15993
15994         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
15995         mono_string_intern () to implement the semantics of the ldstr opcode
15996         and the interning of System.Strings.
15997         * icall.c: provide hooks to make String::IsIntern and String::Intern
15998         internalcalls.
15999
16000 2001-09-23  Dick Porter  <dick@ximian.com>
16001
16002         * threads-dummy.c: 
16003         * threads-dummy.h: New files of dummy threading routines
16004
16005         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
16006         support code based on system specifics
16007
16008         Rename PTHREAD_LIBS to THREAD_LIBS
16009         
16010 2001-09-23  Dick Porter  <dick@ximian.com>
16011
16012         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
16013         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
16014         internal calls.
16015         (mono_thread_init): Set up a Thread object instance to return when
16016         the main thread calls Thread.CurrentThread
16017         (mono_thread_cleanup): Wait for all subthreads to exit
16018
16019         * icall.c: New internal calls for System.Threading.Thread::Sleep
16020         (including Schedule) and CurrentThread
16021
16022         * threads.h: New file, to insulate thread-specific stuff from the
16023         rest of the code
16024
16025 2001-09-21  Dick Porter  <dick@ximian.com>
16026
16027         * threads-pthread.h: 
16028         * threads-pthread.c: New file, for handling pthreads-style
16029         threading support.  Start() now starts a new thread and executes
16030         the ThreadStart delegate instance.
16031
16032         * icall.c: Added the internalcall for
16033         System.Threading.Thread::Start_internal
16034
16035         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
16036
16037 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
16038
16039         * loader.c: work around the different signatures for delegates
16040         constructors csc generates in compiled code vs the ones compiled in mscorlib.
16041
16042 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
16043
16044         * class.h, class.c: add mono_class_get_field_from_name ().
16045         * *: Fix C comments and other ANSI C issues.
16046
16047 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
16048
16049         * endian.h, assembly.c: fix some endianness issues.
16050
16051 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
16052
16053         * loader.h, load.c: add delegate_class to mono_defaults.
16054         Handle runtime provided methods in mono_get_method ().
16055
16056 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
16057
16058         * loader.c (mono_get_method): use pinvoke for internal call
16059
16060         * icall.c: use pinvoke for internal call
16061
16062         * loader.c (method_from_memberref): set the method name
16063
16064 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
16065
16066         * metadata.c: help the compiler generate better code for
16067         mono_class_from_mono_type ().
16068
16069 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
16070
16071         * class.c (mono_class_metadata_init): delayed computing of the
16072         class size to mono_class_metadata_init ()
16073
16074 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
16075
16076         * class.c, class.h: add an interfaces member to MonoClass.
16077         * image.c, image.h: add assembly_name field to MonoImage
16078         from the assembly table.
16079         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
16080
16081 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
16082
16083         * class.c: Handle Array in mono_class_from_mono_type ().
16084         * metadata.c, pedump.c: some endian fixes.
16085
16086 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
16087
16088         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
16089         * metadata.c: fix small problem introduced with the latest commit.
16090
16091 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
16092
16093         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
16094         We don't need a MonoMetadata pointer anymore to compare signatures in
16095         mono_metadata_signature_equal (), update callers.
16096         Reduced memory usage an number of allocations for MonoMethodHeader and
16097         MonoMethodSignature.
16098
16099 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
16100
16101         * metadata.c: added compare for szarray.
16102
16103 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
16104
16105         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
16106         and add a couple more types to it and mono_defaults. Give an hint on
16107         classes that need implementing in our corlib and are referenced
16108         in mscorlib.
16109
16110 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
16111
16112         * class.h, class.c: keep track if a class is also an Enum.
16113         * loader.c: Implement a couple more types for use in libffi
16114         marshalling. Gives better diagnostics when failing to dlopen
16115         a library. Set method->klass for P/Invoke methods, too.
16116
16117 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
16118
16119         * class.c, class.h: add a MonoType this_arg to MonoClass that
16120         represents a pointer to an object of the class' type that
16121         can be used by the interpreter and later the type cache.
16122         Add best guess alignment info for valuetype objects.
16123
16124 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
16125
16126         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
16127         into MonoType: one less level of indirection and allocation and
16128         simplifies quite a bit of code. Added cache for MonoTypes that are
16129         used frequently, so that we don't need to allocate them all the time.
16130
16131 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
16132
16133         * class.c (mono_class_create_from_typedef): System.Enum is also a
16134         value type, although it does not derive from System.ValueType
16135         (maybe a bug in the ms compiler?)
16136
16137         * metadata.c (mono_type_size): return the right size for value types
16138
16139         * loader.c (mono_get_method): only initialize method header if not abstract
16140
16141         * class.c (mono_class_from_mono_type): use mono_default values. 
16142
16143 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
16144
16145         * *: use MonoClass pointers instead of <type_tokens>
16146         
16147         * class.h: new flag: metadata_inited.
16148
16149         * class.c (mono_class_metadata_init): impl.
16150         (mono_class_instance_size): impl.
16151         (mono_class_data_size): impl.
16152
16153 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
16154
16155         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
16156         MonoClass now has the name and name_space fields. 
16157         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
16158         mono_get_method () takes and optional MonoClass as argument.
16159         Removed mono_typedef_from_name() and added mono_class_token_from_name()
16160         instead that takes advantage of a map from class names to typedef
16161         tokens in MonoImage.
16162
16163 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
16164
16165         * metadata.c: zero is not a valid alignment boundary.
16166         Merge MONO_TYPE_VOID in default decoding code.
16167
16168 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
16169
16170         * image.h: merged MonoMetadata into MonoImage
16171
16172         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
16173         identify the type of elements.
16174
16175 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
16176
16177         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
16178         * cil-coff.h: split MonoMSDOSHeader and add size info.
16179         * image.c: add some consistency checks.
16180         * metadata.c: fix row size computation: one programmer
16181         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
16182         add explanation for the locator routine.
16183         Fix decoding of size in method header.
16184         
16185 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
16186
16187         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
16188         (g_concat_dir_and_file): Bring g_concat_dir_and_file
16189         function from gnome-libs.  This uses the right path separator
16190         based on the OS, and also works around a bug in some systems where
16191         a double slash is not allowed. 
16192         (default_assembly_name_resolver): Use g_concat_dir_and_file
16193         (mono_assembly_open): ditto.
16194
16195 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
16196
16197         * metadata.c (mono_metadata_signature_equal): impl.
16198
16199         * *: void is now a realy MonoType (instead of using NULL)
16200         
16201         * metadata.c (do_mono_metadata_parse_type): use
16202         mono_metadata_parse_type to parse void value.
16203
16204 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
16205
16206         * metadata.c, metadata.h: in the signature and method header store
16207         only the space required for holding the loca vars and incoming arguments.
16208
16209 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
16210
16211         * metadata.c (do_mono_metadata_parse_type): treat void like any
16212         other type (instead of assigning NULL);
16213
16214 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
16215
16216         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
16217
16218 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
16219
16220         * image.c (do_mono_image_open): added a cache for arrays.
16221
16222 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
16223
16224         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
16225         decode a single column from a row in a metadata table and changes
16226         to take advantage of it in the typedef locator (gives a nice speed up).
16227         Store offset info for function params.
16228
16229 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
16230
16231         * image.h (MONO_IMAGE_IS_CORLIB): removed 
16232
16233 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
16234
16235         * assembly.c: how could mono_assembly_close () had ever worked?
16236         * metadata.c, metadata.h: provide offset info for local vars.
16237         Implement mono_type_size () to take care of alignment as well
16238         as size (it was mono_field_type_size in cli/class.c before).
16239
16240 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
16241
16242         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
16243
16244         * assembly.h (CORLIB_NAME): set to corlib.dll
16245
16246         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
16247
16248 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
16249
16250         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
16251         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
16252         tokentype.h: massive namespace cleanup.
16253
16254 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
16255
16256         * metadata.h, metadata.c: decode exception clauses when parsing method header.
16257
16258 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
16259
16260         * metadata.c (mono_metadata_free_type): added check for type !=
16261         NULL (void) before calling mono_metadata_free_type()
16262
16263 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
16264
16265         * metadata.h, row_indexes.h: added header with enumerations to use
16266         to index in the columns from tables in metadata and to decode coded
16267         tokens: we should start using this instead of embedding magic numbers
16268         all over the code.
16269
16270 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
16271
16272         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
16273         Move metadata_t info from cli_image_info_t to MonoImage, where
16274         it's easily accessible. Changed all the uses accordingly.
16275         Added the method and class caches to MonoImage.
16276         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
16277         and mono_metadata_decode_value () signature to be more consistent
16278         with the other parse functions (and simplify code). Taken advantage
16279         of zero-length array allocation with GCC. Removed reduntant (and
16280         wrong) MonoFieldType struct and use MonoParam instead. Changed
16281         mono_metadata_parse_field_type () to use common code for parsing.
16282         Added mono_metadata_typedef_from_field () and
16283         mono_metadata_typedef_from_method () to lookup a typedef index from a
16284         field or method token.
16285         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
16286
16287 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
16288
16289         * metadata.c (mono_metadata_parse_field_type): Implement. 
16290         (do_mono_metadata_parse_type): Split engine from
16291         mono_metadata_parse_type, so that we can create smaller structures
16292         for things that just have one pointer to the MonoType (look at
16293         the MonoFieldType)
16294
16295 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
16296
16297         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
16298         as Jan Gray found out, it is incorrect. 
16299
16300 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
16301
16302         * assembly.c: Implement asssembly loading.  This loads an image
16303         and loads all the referenced assemblies.  Come to think of it, we
16304         could always do lazy loading of the assemblies. 
16305
16306         * image.c (mono_image_open): Keep loaded images in a hashtable.
16307
16308         * image.h (MonoImage): Add reference count.
16309
16310 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
16311
16312         * assembly.c (mono_assembly_open): Keep track of the file name in
16313         case the assembly has no ASSEMBLY table.
16314
16315         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
16316         from get.c here.
16317
16318 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
16319
16320         * metadata.c, metadata.h: decode local vars in method header
16321         parse function. Change callers accordingly.
16322
16323 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
16324
16325         * metadata.h, cil-coff.h: protect against multiple inclusion.
16326         Added some new structures to hold information decoded from metadata:
16327         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
16328         and relevant decoding/free functions.
16329         * metadata.c: implement decoding functions. Add warning for out of bounds
16330         index in mono_metadata_locate(). Implement mono_get_method () to retreive
16331         all the info about a method signature and invocation. Remove check on
16332         uninitialized local var in parse_mh() and fix memory leak.
16333
16334 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
16335
16336         * metadata.h: More macros.
16337
16338         * tokentype.h: New file.
16339
16340 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
16341
16342         * assembly.c: added a consistency check and initialize
16343         some structures with g_new0().
16344         * metadata.c: fixed a couple more bugs in table size computation
16345         and add other checks for out-of bound access to metadata.
16346
16347 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
16348
16349         * metatada.c: fix bugs computing table sizes. Spew a
16350         warning when index in string heap is out of bounds.
16351
16352 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
16353
16354         * metadata.h: Add a couple of macros to manipulate tokens. 
16355
16356 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
16357
16358         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
16359         cli_section_tables).
16360
16361 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
16362
16363         * metadata.c (mono_metadata_user_string): New function, provides
16364         access to the UserString heap. 
16365
16366 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
16367
16368         * metadata.c: Add inline documentation.
16369
16370 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
16371
16372         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
16373         files. 
16374
16375 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
16376
16377         * typeattr.h: New file, TypeAttribute flags. 
16378
16379 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
16380
16381         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
16382         mono_assembly_ensure_section): Section loading code.
16383         (load_section_tables): Load the sections.
16384
16385         * mono/metadata/metadata.c (mono_metadata_locate_token,
16386         mono_metadata_locate): Functions to locate the information
16387         definition given a token or a table and an index.
16388         (mono_metadata_compute_table_bases): New.
16389         (compute_size): New function to compute the sizes of the various
16390         tables.
16391
16392         * mono/metadata/metadata.h: Finish listing the different index
16393         types. 
16394
16395         * mono/metadata/pedump.c: Improve to dump new information.
16396
16397 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
16398
16399         * mono/metadata/metadata.c: Entered all the tables matching
16400         Beta2. 
16401
16402         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
16403
16404