* icall.c: add boolean argument to base64_to_byte_array and
[mono.git] / mono / metadata / ChangeLog
1 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
2
3         * icall.c: add boolean argument to base64_to_byte_array and 
4         InternalFromBase64String to control whether a whitespace-only string
5         is allowed (or should casue a FormatException to be thrown). We need
6         this as the behavior has changed between MS.NET 1.x and 2.0, and we
7         to match the MS behaviour in both profiles.
8         * appdomain.c: Bump corlib version.
9
10 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11
12         This patch implements a big portion of publisher policy
13         support, used to bind assembly versions and redirect
14         one assembly from version A to version B.
15
16         * assembly.c:
17         New GSList loaded_assembly_bindings, for storing the cached
18         assembly bindings.
19         (assembly_binding_maps_name): New static function for checking if a 
20         assembly binding information maps an assembly name.
21         (mono_assembly_binding_info_free): New function for freeing
22         assembly binding information resources.
23         (get_publisher_policy_info): New static function for retrieving 
24         assembly binding information from a MonoImage.
25         (compare_versions): New static function for comparing an assembly
26         binding information data and the version of an assembly name.
27         (check_policy_versions): New static function for checking if an
28         assembly binding info mapping an assembly name is valid for it.
29         (mono_assembly_load_publisher_policy): New static function for
30         loading the 'policy.major.minor.MyAssembly' image for an assembly
31         with an assembly name 'aname'.
32         (mono_assembly_bind_version): New static function for updating
33         assembly redirection.
34         (mono_assembly_apply_binding): New static function for applying
35         assembly binding.
36         (search_binding_loaded): New static function for searching 
37         loaded assembly binding infos in the cache domain.
38         (mono_assembly_load_full): Don't apply assembly binding for
39         reflection only assemblies.
40
41         * metadata-internals.h: Add MonoAssemblyBindingInfo,
42         which contains information about assembly binding. Also
43         declare signature for mono_config_parse_publisher_policy ()
44         function, used to retrieve pub policy info.
45         
46         * mono-config.c:
47         (publisher_policy_start): New static function used to parse publisher 
48         policy config files.
49         (publisher_policy_parser): New static MonoParseHandler containing 
50         the functions used when parsing config files.
51         (mono_config_parse_publisher_policy): New function for parsing
52         publisher policy files.
53         
54 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
55
56         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
57
58         * marshal.c (mono_delegate_free_ftnptr): Ditto.
59
60         * object.c (mono_get_addr_from_ftnptr): New helper function.
61
62         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
63
64         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
65
66 2005-08-19  Dick Porter  <dick@ximian.com>
67
68         * threads.c, threads.h, appdomain.c, appdomain.h,
69         profiler-private.h, monitor.c, object.c, object-internals.h,
70         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
71         store the thread ID, so it can hold a 64 bit value if needed.
72
73 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
74
75         * reflection.c (mono_reflection_create_dynamic_method): Store the
76         handle class into the method references as well so ldtoken works in
77         dynamic methods.
78
79         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
80         types.
81
82 2005-08-19  Ankit Jain <jankit@novell.com>
83
84         Fix #75847.
85         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
86           here rather than using the method signature of a arbitrary function
87           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
88           two arguments.
89           Hack done with Harinath.
90
91 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
92
93         * threadpool.c: disable printing stack traces when we get a exception
94         in a threadpool thread. I need to do more testing to figure out which
95         cases actually print this. Fixes bug #75828.
96
97 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
98
99         * icall.c: there might be ignored whitespace after the last '='. This
100         fixes length computation and bug #75840.
101
102 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
103
104         * assembly.c (mono_assembly_load_full): Consider .exe extension as
105         well. Fixes #75809.
106
107         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
108         #75784.
109         
110         * reflection.c (create_custom_attr_data): Ditto.
111
112 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
113
114         * locales.c, culture-info.h : removed RegionLCIDMap.
115         * culture-info-tables.h : regenerated.
116
117 2005-08-16  Martin Baulig  <martin@ximian.com>
118
119         * class.c (mono_type_get_name_recurse): Small fix.
120
121 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
122
123         * locales.c : indentation fixie.
124
125 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
126
127         * object-internals.h,
128           locales.h,
129           locales.c,
130           culture-info.h,
131           icall.c : added RegionInfo table support.
132         * culture-info-table.h : regenerated for region support.
133
134 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
135
136         * reflection.c (resolve_object): handle all kinds of MonoMethod
137         including generic ones
138
139 2005-08-12  Ankit Jain <jankit@novell.com>
140
141         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
142           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
143
144 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
145
146         * process.c: Don't close a thread handle when it's NULL. This is a
147         workaround for bug #75733.
148
149 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
150
151         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
152
153 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
154
155         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
156
157 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
158
159         * threadpool.c: if a work item in the thread pool has a callback that
160         catches a exception, don't propagate it after invoking the callback.
161         Fixes bug #75336.
162
163 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
164
165         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
166
167         * class-internals.h (MonoCachedClassInfo): Add some new fields.
168
169         * class.c (mono_class_init): Load field info lazily in the AOT case.    
170
171         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
172
173 2005-08-03  Ankit Jain  <jankit@novell.com>
174
175         Fix #75683.
176         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
177           PInvoke calling convention is 0.
178
179 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
180
181         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
182         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
183
184 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
185
186         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
187         to handle threads not started by the GC (patch by Michael Meeks
188         <michael.meeks@novell.com>).
189
190 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
191
192         * reflection.c: Make buffer used in emitting types larger for some
193         big generic types (patch by Michal Moskal).
194
195 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
196
197         * mono-debug.c: Fix some (not all) alignment problems.
198
199 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
200
201         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
202         Invoke mono_image_load_from_data_full passing the refonly
203         parameter.
204
205         * assembly.c
206         (mono_assembly_open_from_bundle): Add the refonly argument, 
207         in order to pass it to other methods it calls to.
208         (do_mono_assembly_open): Add the refonly argument, in order 
209         to pass it to other methods it calls to.
210         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
211         the refonly parameter to it.
212
213         * image.c: Add loaded_images_refonly_hash and
214         loaded_images_refonly_guid_hash to cache the reflection
215         only loaded images.
216         (mono_images_init): Initialize the hash tables used for
217         caching the reflection only images.
218         (load_modules): Invoke mono_image_open_full passing the refonly
219         parameter to load the modules the correct way.
220         (build_guid_table): Add the refonly argument, to re-build the 
221         correct hash table.
222         (do_mono_image_open): Added the refonly argument, in order to
223         define it for the loaded image.
224         (mono_image_loaded_full): New function, which receives an
225         additional parameter to look for the image in the refonly or
226         non-refonly section.
227         (mono_image_loaded): Updated, using mono_image_loaded_full.
228         (mono_image_loaded_by_guid_full): The same case that happens
229         with mono_image_loaded_full.
230         (mono_image_loaded_by_guid): Likewise.
231         (register_image): Use the ref_only variable inside MonoImage
232         to decide in which hash table store the current image.
233         (mono_image_open_from_data_full): Rename
234         mono_image_open_from_data to mono_image_open_from_data_full,
235         adding the refonly argument, to define the ref_only variable 
236         inside MonoImage.
237         (mono_image_open_from_data): Return 
238         mono_image_open_from_data_full.
239         (mono_image_open_full): Rename mono_image_open to
240         mono_image_open_full, receiving the new refonly argument,
241         to pass it to inner methods.
242         (mono_pe_file_open): Update this function, to open
243         a MonoImage as a non-refonly image.
244         (mono_image_close): Use the refonly variable inside
245         MonoImage to remove the image from the correct caches.
246
247         * image.h: Add the signatures of mono_image_open_full,
248         mono_image_open_from_data_full, mono_image_loaded_full,
249         mono_image_loaded_by_guid_full.
250
251         * metadata-internals.h: Add the ref_only field to 
252         MonoImage.
253         
254 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
255
256         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
257         Fix the last behavior, which used to load the assemblies and
258         extract MonoReflectionAssemblyName information, instead of
259         extract it from the metadata tables. Needed for Reflection
260         Only assemblies.
261         
262 2005-07-29  Martin Baulig  <martin@ximian.com>
263
264         * mono-debug-debugger.c
265         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
266         not initialized.
267
268         * mono-debug.c
269         (mono_debug_address_from_il_offset): Check whether we have
270         debugging support before attempting to take the lock.
271         (mono_debug_source_location_from_address): Likewise.
272         (mono_debug_source_location_from_il_offset): Likewise.
273         (mono_debug_il_offset_from_address): Likewise.
274         (mono_debug_address_from_il_offset): Likewise.
275
276 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
277
278         * class.c (mono_class_from_name_case): Add support for dynamic images.
279         Fixes #75650.
280
281         * object.c (mono_class_compute_gc_descriptor): Add a workaround
282         for #75479.
283
284 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
285         
286         * reflection.c (mono_method_get_object): Fix warning.
287
288 2005-07-28  Martin Baulig  <martin@ximian.com>
289
290         * mono-debug.c
291         (mono_debug_add_wrapper): Also write the wrapper type.
292
293 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
294
295         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
296         
297         * class.c (mono_class_init): Avoid reading nested classes if the AOT
298         data indicates the class has none.
299
300 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
301
302         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
303         loader lock with the debugger lock. Prevents deadlocks for beagle.
304
305         Beagle can now run on an smp box for a weekend without any
306         issues. Woohoo!
307
308 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
309
310         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
311         in a module. Fixes #75629.
312
313 2005-07-26  Martin Baulig  <martin@ximian.com>
314
315         * mono-debug.c (mono_debug_add_wrapper): New static method.
316         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
317         interncall or a wrapper.
318
319         * mono-debug.h (MonoDebugWrapperData): New public typedef.
320         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
321         (MONO_DEBUGGER_VERSION): Bump to 51.
322
323         * mono-debug-debugger.c
324         (mono_debugger_add_type): Removed this empty function.
325         (mono_debugger_add_method): Likewise.
326
327 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
328
329         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
330         before accessing method->slot.
331
332 2005-07-21  Jb Evain  <jbevain@gmail.com>
333
334         * reflection.c (method_encode_clauses/class): Handle filters clauses.
335         Fixes #75010.
336
337 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
338
339         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
340         #75587.
341
342 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
343
344         * image.h image.c: Add mono_image_get_guid () API function.
345
346 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
347
348         There were issues when multiple threads tried to load
349         assemblies. A deadlock was created between assemblies_mutex and
350         mono_domain_assemblies_lock. This fixes the issue by making the
351         assembly ref counting be lock free. See bug 75586.
352         
353         * image.c (mono_image_close): The add ref function here was using
354         Interlocked operations while the unref was using a mutex and a
355         --. I don't think this was ever a bug that would be exposed in a
356         non-pendantic way (ie, by an embedder doing a ref on one thread
357         and an unref on another), but for the sake of correctness, this is
358         now Interlocked.
359
360         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
361         (mono_assembly_load_reference): Call mono_assembly_addref rather
362         than touching the refcount ourselves.
363         (mono_assembly_close): Use InterlockedDecrement to unref the
364         assembly. Don't acquire the lock unless it is actually needed.
365
366 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
367
368         * class.c (mono_class_layout_fields): Fix calculation of has_references
369         for generic types.
370
371 2005-07-12  Martin Baulig  <martin@ximian.com>
372
373         Applying a patch from Michal Moskal <malekith@nemerle.org>.
374
375         * metadata.c
376         (mono_type_hash): Provide better hashing for generic instances.
377         (mono_generic_inst_hash): Improve hashing.
378         (mono_generic_class_hash): Likewise.
379
380         * reflection.c (mymono_metadata_type_hash): Improve hashing for
381         generic instances.
382
383 2005-07-12  Martin Baulig  <martin@ximian.com>
384
385         * reflection.c (mono_reflection_create_runtime_class): Remove the
386         hack for generic type definitions and non-`Run' assemblies.
387         (mono_reflection_bind_generic_parameters): Also use
388         `klass->wastypebuilder' to check for TypeBuilders.
389
390 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
391
392         * class.c (mono_class_layout_fields): Fix calculation of has_references
393         for generic types.
394
395         * class.c (inflate_generic_class): Fix a leak.
396         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
397         for generic types.
398
399 2005-07-11  Martin Baulig  <martin@ximian.com>
400
401         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
402         on error.
403
404 2005-07-11  Martin Baulig  <martin@ximian.com>
405
406         * loader.c (find_method): Also lookup in
407         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
408
409 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
410
411         * appdomain.c (mono_domain_unload): Don't free the error message
412         before passing it to mono_get_exception_...
413
414         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
415         
416 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
417
418         * threads.c: try to better guess an available RT signal (bug #75387).
419
420 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
421
422         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
423         and CACHE_OBJECT.
424
425 2005-07-07  Martin Baulig  <martin@ximian.com>
426
427         * class.c (mono_type_get_name_full): Return NULL for
428         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
429         fixes #75408.
430
431 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
432
433         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
434         exit the appdomain as well being aborted.
435
436         * threadpool.c: Create all threadpool threads inside the root appdomain, and
437         change back to the root domain after calling managed code. This enables
438         appdomains using threadpools to be unloaded.
439
440 2005-07-07  Martin Baulig  <martin@ximian.com>
441
442         * class-internals.h
443         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
444         into `MonoDynamicGenericClass' since we only need it for dynamic
445         types.
446
447         * reflection.c (mono_class_bind_generic_parameters): We don't need
448         to compute the `parent' here.
449
450 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
451
452         * culture-info-table.h : regenerated.
453
454 2005-07-06  Martin Baulig  <martin@ximian.com>
455
456         * icall.c
457         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
458
459         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
460
461 2005-07-06  Martin Baulig  <martin@ximian.com>
462
463         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
464         we're doing a signature-only comparision; fixes #74945.
465
466 2005-07-06  Martin Baulig  <martin@ximian.com>
467
468         * class-internals.h (MonoGenericClass): Moved some things out into
469         a new `MonoInflatedGenericClass' type.  
470         (MonoInflatedGenericClass): New type; the `klass' of a
471         `MonoGenericClass' is now computed lazyly in
472         mono_get_inflated_generic_class().      
473
474         * class.c (mono_get_inflated_generic_class): New public function.
475         (mono_class_inflate_generic_method): Removed the unused
476         `MonoClass *' argument.
477         (setup_generic_vtable): Don't call mono_get_inflated_method() on
478         all the methods.
479         (mono_class_create_generic): Make this static and merge it with
480         mono_class_create_generic_2(); we're now called automatically from
481         mono_get_inflated_generic_class().
482
483         * loader.c (mono_method_signature): Call
484         mono_get_inflated_method() here.
485
486 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
487
488         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
489         type of fields with RVA.
490
491         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
492         for this pseudo class.
493         (my_mono_class_from_generic_parameter): Likewise.
494         (mono_class_init): Allow interfaces to have cctors.
495
496 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
497
498         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
499         lazily for AOT methods.
500
501 2005-07-05  Martin Baulig  <martin@ximian.com>
502
503         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
504         returns FALSE for a successful match, not TRUE.
505
506 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
507
508         * loader.c (mono_method_get_index): Optimize this a bit.
509
510 2005-07-04  Martin Baulig  <martin@ximian.com>
511
512         * class.c
513         (class_compute_field_layout): Move the check for generic type
514         definitions into mono_class_layout_fields().  Fixes #74684.
515         (mono_class_from_generic_parameter): Correctly compute
516         `klass->parent'; fixes #75457.
517
518         * reflection.c (register_assembly, register_module): Make sure
519         `domain->rejobject_hash' is already created.
520
521 2005-07-02  Martin Baulig  <martin@ximian.com>
522
523         * class-internals.h
524         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
525         `MonoDynamicGenericClass'.      
526
527 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
528
529         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
530         returned by a field getter is null, since null is a valid value.
531
532 2005-07-01  Martin Baulig  <martin@ximian.com>
533
534         * reflection.c (mono_reflection_generic_class_initialize): Update
535         the `dgclass->fields [i].parent' to the correct class.
536         (mono_image_get_fieldref_token): Use the declaring type, not the
537         reflected type.
538
539 2005-07-01  Martin Baulig  <martin@ximian.com>
540
541         * loader.c (find_method): Also look in the interfaces; fixes #75429.
542
543 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
544
545         * threads.c (thread_cleanup): assert that thread != NULL
546         (wait_for_tids_or_state_change): We were using the wrong variable
547         when accessing wait->threads. `i' was always out of the bounds of
548         the array.
549
550 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
551
552         * loader.c: map user32 and kernel32 to libMonoSupportW
553
554 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
555
556         * appdomain.c (unload_thread_main): Mark this as WINAPI.
557
558 2005-06-28  Martin Baulig  <martin@ximian.com>
559
560         * loader.c (method_from_methodspec): Fix #75334.
561
562 2005-06-28  Martin Baulig  <martin@ximian.com>
563
564         Fix #74953 - Arrays now implement the generic IList<T> interface
565         on the 2.0 platform.
566
567         * class-internals.h (MonoDefaults): Added `generic_array_class'.
568
569         * reflection.c (mono_class_bind_generic_parameters): New public
570         function; similar to mono_reflection_bind_generic_parameters(),
571         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
572
573         * domain.c (mono_init_internal): Try to initialize.
574         `mono_defaults.generic_array_class' here; this'll only succeed if
575         we're using the 2.0 corlib.
576
577         * icall.c
578         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
579         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
580         (mono_lookup_internal_call): Added support for nested classes.
581
582         * loader.c
583         (mono_get_method_from_token): Set `result->signature->pinvoke' if
584         we're an interncall and have generic arguments.
585
586         * class.c
587         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
588         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
589         instance of System.Array.InternalArray<T> for arrays, so they
590         implement the generic IList<T> interface.
591
592 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
593
594         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
595         (chastamar@yahoo.com). Fixes #75374.    
596
597 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
598
599         * culture-info-table.h: regenerated.
600
601 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
602
603         * icall.c: handle spaces correctly for base64 strings.
604
605 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
606
607         * *.c: Kill some warnings.
608
609 2005-06-23  Duncan Mak  <duncan@novell.com>
610
611         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
612         that this builds on Solaris 10 (x86).
613
614 2005-06-23  Martin Baulig  <martin@ximian.com>
615
616         * class.c
617         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
618         generic type definitions.
619
620 2005-06-23  Martin Baulig  <martin@ximian.com>
621
622         Fix #75331.
623
624         * metadata.c (mono_class_get_overrides): Renamed to
625         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
626         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
627         pass it to mono_get_method_full().
628
629 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
630
631         * reflection.c (mono_reflection_create_runtime_class): take the
632         mono_domain_lock in this method. Prevents deadlocks
633
634 2005-06-22  Martin Baulig  <martin@ximian.com>
635
636         * loader.c (method_from_methodspec): Fix #75330.
637
638 2005-06-22  Martin Baulig  <martin@ximian.com>
639
640         * reflection.c (type_get_qualified_name): Use
641         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
642         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
643         argument; use it if we don't have an assembly name.
644
645 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
646
647         * object.c: In mono_message_init, set "copy out" flag for in
648         parameters with the [Out] flag.
649
650 2005-06-21  Martin Baulig  <martin@ximian.com>
651
652         * class.c
653         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
654         and MONO_TYPE_PTR.
655
656 2005-06-21  Martin Baulig  <martin@ximian.com>
657
658         * class.c (mono_class_init): Don't initialize `class->fields' for
659         generic instances since they're initialized again in
660         compute_field_layout(). 
661         (compute_field_layout): Set the field's `generic_info' here; fix
662         #75320. 
663
664 2005-06-21  Martin Baulig  <martin@ximian.com>
665
666         * class-internals.h
667         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
668
669         * metadata.c (mono_metadata_generic_method_equal): Also
670         distinguish the `generic_class'; fixes #75334.
671
672 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
673
674         * domain.c:
675         * appdomain.c:
676         * domain-internals.h:
677         * reflection.c: 'domain_assemblies' field is now protected by its own
678         lock. Don't call into managed code to run the AssemblyLoad event if we
679         now there are no registered delegates for it.
680
681 2005-06-20  Martin Baulig  <martin@ximian.com>
682
683         * class.c (mono_class_is_assignable_from): Use a custom version of
684         mono_class_has_parent() to make things work for generic instances;
685         fix #75300.
686
687 2005-06-20  Martin Baulig  <martin@ximian.com>
688
689         * loader.c (method_from_methodspec): Apply a patch from
690         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
691
692 2005-06-20  Martin Baulig  <martin@ximian.com>
693
694         * class.c (mono_class_init): Reverted Zoltan's last change; it
695         breaks generics.
696
697 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
698
699         * threads.c (wait_for_tids_or_state_change): Add missing locking.
700
701 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
702
703         * socket-io.c: fix the index in the socket array for writable/error
704         sockets. Fixes bug #75306.
705
706 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
707
708         * class.c (mono_class_init): Allow interfaces to have static ctors.
709
710 2005-06-17  Martin Baulig  <martin@ximian.com>
711
712         * loader.c (method_from_methodspec): Use `context->container' when
713         parsing the `gmethod->inst'.
714
715 2005-06-17  Martin Baulig  <martin@ximian.com>
716
717         * class.c (mono_type_get_name_recurse): Don't add the assembly
718         name for type arguments.
719
720 2005-06-15  Martin Baulig  <martin@ximian.com>
721
722         * reflection.c (mono_image_get_inflated_method_token): Encode
723         correct klass; fixes #75260.
724
725 2005-06-13 Michal Moskal <malekith@nemerle.org>
726
727         * icall.c: Make GetCorrespondingMethod/Constructor take
728         MonoReflectionMethod method not MonoMethod. Removed
729         MonoType.GetCorrespondingField, and make
730         MonoGenericType.GetCorrespondingField take name not
731         MonoClassField.
732
733 2005-06-13  Michal Moskal <malekith@nemerle.org>
734
735         * reflection.c (field_encode_signature, encode_locals):
736          Make sizes of buffers for types larger (for big generic types).
737          (create_generic_typespec,
738          mono_reflection_sighelper_get_signature_local,
739          mono_reflection_sighelper_get_signature_field):
740          Add asserts for too small buffers.
741
742 2005-06-15  Martin Baulig  <martin@ximian.com>
743
744         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
745         if our parent is not a dynamic type.
746
747 2005-06-15  Martin Baulig  <martin@ximian.com>
748
749         * class-internals.h (MonoTypeNameFormat): New enum.
750
751         * class.c
752         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
753         (mono_type_get_full_name): Removed.
754         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
755         argument instead of the boolean's.
756
757         * icall.c (ves_icall_System_MonoType_getFullName):
758         Added `gboolean assembly_qualified'.    
759
760         * reflection.h
761         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
762
763         * reflection.c (mono_reflection_parse_type): Parse the new type
764         name format.
765
766 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
767
768         * icall.c: no need to convert from utf16 to utf8 and then back again
769         after the call to GetLogicalDrives.
770
771 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
772
773         * icall.c: frombase64. Fix problems exposed by new tests.
774
775 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
776
777         * icall.c: added internal calls for converting char [] and strings in
778         base64 into byte [].
779
780 2005-06-10  Martin Baulig  <martin@ximian.com>
781
782         * class.c (mono_class_create_generic_2): Read the nested classes
783         from the metadata rather than from `gklass->nested_classes' since
784         `gklass' might not be initialized yet.
785
786 2005-06-09  Duncan Mak  <duncan@novell.com>
787
788         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
789         all public headers. Fixes #74919.
790
791 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
792
793         * domain.c: The key for proxy_vtable_hash is now a pointer
794         array. Added new GHashFunc and GCompareFunc functions for this.
795
796         * class.h: The list of interfaces in MonoRemoteClass is known in
797         advance and can't grow (we create a new MonoRemoteClass if needed),
798         so now the interface array can be allocated together with
799         MonoRemoteClass.
800         
801         * object.c: Added a new method create_remote_class_key.
802         Fixed mono_remote_class so it does not depend on
803         mono_upgrade_remote_class.
804         Removed extend_interface_array.
805         Added new method clone_remote_class(), which makes a copy of a remote
806         class and adds a new interface or class to it.
807         mono_upgrade_remote_class() now creates a new remote class (or gets
808         it from the cache) if an vtable upgrade is needed. In this way
809         we make sure that other objects sharing the same remote class
810         don't get the new vtable with unwanted interfaces.
811         
812         * object-internals.h:
813         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
814         
815         * marshal.c: Track changes in mono_upgrade_remote_class().
816
817 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
818         * icall.c: Add runtime methods for obtaining members of inflated
819         class, which were created from supplied non-inflated members. It
820         is used in internal Get{Method,Constructor,Field} methods in
821         System.Type
822
823 2005-06-09  Martin Baulig  <martin@ximian.com>
824
825         * reflection.c
826         (mono_reflection_bind_generic_method_parameters): Fix #75169.
827
828 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
829         * reflection.c (mono_image_basic_init): Define
830         Version in MonoDynamicAssembly. 
831         
832 2005-06-08  Martin Baulig  <martin@ximian.com>
833
834         Fix #75136.
835
836         * loader.c
837         (mono_method_signature_full): New public method; takes a
838         `MonoGenericContext *'.
839         (find_method): Use mono_method_signature_full() and pass the
840         klass'es context to it.
841
842         * class.c (mono_class_is_inflated_method): Use
843         mono_method_signature_full() and pass the context to it.
844
845 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
846
847         * object.c: add proper locking in mono_remote_class_vtable(),
848         fixes possible memory corruption.
849
850 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
851
852         * marshal.c (mono_remoting_marshal_init): set
853         initialized after initialization.
854
855 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
856
857         * locales.c : hush.
858
859 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
860
861         * object.c (extend_interface_array): fix really silly
862         memory corrupting / comparison bug.
863
864 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
865
866         * reflection.c: Functions added to support the creation
867         of CustomAttributeData, which includes Attribute data
868         used by ReflectionOnly methods.
869
870         * reflection.h:  mono_reflection_get_custom_attrs_data and
871          mono_custom_attrs_data_construct added (functions exposed).
872
873          * icall.c: Added mono_reflection_get_custom_attrs_data
874          as icall.
875         
876 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
877
878         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
879         lupus's request.
880
881 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
882
883         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
884
885         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
886         dynamic DllImportAttribute.
887
888         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
889         dynamic DllImportAttribute.
890
891         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
892         Fixes #75162.
893
894 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
895
896         * threads.c: avoid segfault when an unstarted thread is aborted.
897
898 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
899
900         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
901         Returns the name and version of the runtime for reporting.
902
903 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
904
905         * appdomain.c: bump corlib version.
906         * object-internals.h: new field in MonoReflectionAssembly.
907
908 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
909
910         * object-internals.h: Carlos forgot to add this field.
911
912 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
913
914         * icall.c: Added create_version to create instances
915         of Version of MonoReflectionAssemblyName. This change helps
916         the AssemblyName tests to keep running fine.
917         
918 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
919   
920         * object.c (mono_method_return_message_restore): A somehow less
921         intrusive fix for #75138.
922
923 2005-06-03  Raja R Harinath  <rharinath@novell.com>
924
925         * object.c (mono_method_return_message_restore): Fix computation
926         of expected number of out args.
927
928 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
929
930         * reflection.c (mono_image_get_method_info): Fix the case when the
931         charset is empty.
932
933 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
934
935         * object.c: Added missing null check in
936           mono_method_return_message_restore.
937
938 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
939
940         * reflection.c (mono_image_get_method_info): Handle the case when
941         dllentry is empty.
942
943 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
944
945         * object.c: When creating the vtable for a proxy, take into account
946         all inherited interfaces, not only the ones registered in
947         iclass->interfaces. This fixs bug #74996.
948         Also, in mono_method_return_message_restore, verify that the array
949         of out args has the expected lengh.
950
951 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
952
953         * socket-io.c: update the timeout in Poll when the call is interrupte.
954
955 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
956
957         * socket-io.c: support abort/suspend in Select_internal after last
958         change.
959
960 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
961
962         * threadpool.c: remove warning.
963
964 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
965
966         * icall.c:
967         * socket-io.[ch]: Select_internal uses poll() now when available, thus
968         removing the 1024 limit from select(). Runtime part of the fix for
969         bug #71203.
970
971 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
972
973         * socket-io.c: when resolving the addresses for the same
974         host returned by gethostname(), get the local IPs from the interface
975         list. Loopback addresses are discarded if the are interfaces up with
976         non-loopback ones. Fixes bug #63265.
977
978 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
979
980         * appdomain.c, verify.c, object-internals.h, reflection.c:
981         bumped corlib number to 36, and added new extra_flags field
982         to ReflectionMethodBuilder and friends.  Fixes #75060.
983
984 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
985
986         * gc.c: register a new weak link only if the object is non-null
987         (fixes bug#75047).
988
989 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
990
991         * culture-info.h : short time pattern too.
992
993 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
994
995         * culture-info.h : expand long time pattern string length.
996
997 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
998
999         * culture-info-table.h : update (more French date format; #72788).
1000
1001 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
1002
1003         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
1004         the method is static. Fixes #75029.
1005
1006 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
1007
1008         * reflection.c: Update the table_idx field of method builders after
1009         saving the module, since it can change. This is a workaround for
1010         bug #74914. 
1011
1012 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1013
1014         * culture-info-table.h : update (additional French date format).
1015
1016 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
1017
1018         * icall.c (ves_icall_type_Equals): Revert last change.
1019         
1020         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
1021
1022         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
1023
1024 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
1025
1026         * class-internals.h: Added executioncontext_class field to 
1027         MonoDefaults structure.
1028         * domain.c: Cache System.Threading.ExecutionContext class in 
1029         mono_defaults.
1030         * object.c: Capture the ExecutionContext for asynchroneous calls in
1031          mono_async_result_new.
1032         * object-internals.h: Added execution_context and original_context 
1033         fields to MonoAsyncResult. Added execution_context to MonoThread.
1034         * security-manager.c|.h: Added mono_get_context_capture_method to 
1035         return the capture method (if required by the security manager or by
1036         the framework version used).
1037         * threadpool.c: Apply capture (if present) ExecutionContext in 
1038         mono_async_invoke and revert to original context after it completes.
1039
1040 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
1041
1042         * culture-info-table.h : updated (real hacky solution for zh-CHT).
1043
1044 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
1045
1046         * culture-info-table.h : zh-CHT related workaround.
1047
1048 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
1049
1050         * marshal.c (emit_marshal_custom): Add some error checking and call the
1051         methods in the ICustomMarshaler interface. Fixes #74875.
1052         
1053         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
1054         native->managed wrappers.
1055
1056 2005-05-12  Martin Baulig  <martin@ximian.com>
1057
1058         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
1059         here and use the loader lock.
1060
1061         * mono-debug.c: Properly lock when the debugger is not attached.
1062         (mono_debug_init): Release the initial lock if we're not running
1063         in the debugger.
1064
1065 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
1066
1067         * marshal.c (emit_marshal_custom): Pass through NULL values without
1068         calling the custom marshalling routines.
1069
1070         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
1071         conversion in structures. Fixes #74882.
1072
1073 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
1074
1075         * culture-info-table.h : zh-* cultures were missing.
1076
1077 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
1078
1079         * threads.c: Added a new event background_change_event which is signaled
1080         when a thread changes its background mode.
1081         Moved here several checks previously done in managed code. The checks
1082         require the thread lock, and using the thread lock in managed code
1083         can result in deadlocks.
1084         Merged Start_internal and Thread_internal into a single method. Now 
1085         Thread_internal does all work of creating and starting a thread.
1086         Added icalls for setting and getting the state of the object. Moved from
1087         managed code to avoid locking there.
1088         Added wait_for_tids_or_state_change() which is called instad of
1089         wait_for_tids when waiting for non-backround threads to end. This method
1090         will return if one of the threads ends or the background_change_event
1091         is signaled.
1092         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
1093         the background mode. This method signals the background_change_event
1094         event.
1095         * icall.c:
1096         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
1097         removed Start_internal.
1098         
1099 2005-05-11  Martin Baulig  <martin@ximian.com>
1100
1101         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
1102         to order of some fields to get proper alignment on 64-bit machines.
1103
1104 2005-05-11  Martin Baulig  <martin@ximian.com>
1105
1106         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
1107         changes as they're broken and completely fuck up the debugger.
1108
1109         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
1110
1111 2005-05-10  Martin Baulig  <martin@ximian.com>
1112
1113         * reflection.c (mono_reflection_generic_class_initialize): Don't
1114         call mono_class_setup_parent() here.
1115
1116 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1117
1118         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
1119         send/receive timeout use an integer in milliseconds. We were using a
1120         struct timeval.
1121
1122 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1123
1124         * locales.c:
1125         (internal_get_cultures): reserve the first slot of the array for the
1126         InvariantCulture, which will be filled in managed code.
1127
1128 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
1129
1130         * reflection.c (mono_image_fill_module_table): Initialize the
1131         GENERATION field as well.
1132
1133 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1134
1135         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
1136         Monitor.Enter on the object.
1137
1138 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
1139
1140         * threads.c: Enable the wait for running threads when exiting.
1141         * icall.c: Suspend all threads before exiting.
1142
1143 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
1144
1145         * assembly.c (mono_assembly_load_reference): Fix warning.
1146
1147 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1148
1149         * threadpool.c: changed the default number of threads per cpu. From now
1150         on, the default will be 20 + (5 * number of cpus) instead of 50.
1151
1152 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
1153
1154         * loader.c (mono_method_get_signature_full): Add locking here.
1155
1156 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
1157
1158         * appdomain.c: Moved methods for parsing and freeing assembly
1159         names to assembly.c.
1160         * assembly.c, domain-internals.h: Created public methods for parsing
1161         assembly names. Fixed mono_assembly_load_with_partial_name:
1162         it now finds the best match, taking into account the version,
1163         token and culture specified in the partial name. Also return
1164         the latest version if no version information is specified.
1165
1166 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
1167
1168         * threadpool.c: replace check for SocketAsyncCall class.
1169
1170 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1171
1172         * threadpool-internals.h:
1173         * Makefile.am: added threadpool-internals.h
1174
1175         * threadpool.c: call mono_unhandled_exception on exceptions not handled
1176         that happen in threadpool threads (tested on MS).
1177         (mono_thread_pool_remove_socket): new function that dispatch any pending
1178         AIO call on a socket that is closing. By now only epoll really needs it,
1179         as select/poll wake up when the socket closes.
1180
1181
1182         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
1183
1184 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
1185
1186         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
1187
1188 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
1189
1190         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
1191
1192 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
1193
1194         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
1195         has an abort request, convert it into a suspend request.
1196
1197 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
1198
1199         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
1200         warning for the usage of `UnmanagedFunctionPointerAttribute' which
1201         is not supported yet.
1202
1203 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1204
1205         * image.c: register assemblies loaded from data (bundles) in the loaded
1206         assemblies hash. Fixes bug #74772.
1207
1208 2005-04-29  Martin Baulig  <martin@ximian.com>
1209
1210         * class.c (mono_type_get_name_recurse): Update to the new naming
1211         schema from the latest .NET 2.x beta2.
1212         (mono_class_setup_vtable_general): If we're a generic instance,
1213         copy the vtable from our generic type definition and inflate all
1214         the methods in it.
1215
1216         * loader.c (find_method): Update to the new naming schema from the
1217         latest .NET 2.x beta2.
1218
1219 2005-04-29  Raja R Harinath  <harinath@gmail.com>
1220
1221         * class.c (mono_class_init): Add a mono_loader_unlock to the
1222         #74734 fix.
1223
1224 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
1225
1226         * icall.c (ves_icall_System_Environment_Exit): Remove the 
1227         suspend_all_other_threads () call for the time being, since it can hang.
1228
1229         * threads.c (mono_thread_manage): Similarly, disable the waiting for
1230         the background threads to exit, since it can also hang.
1231
1232         * class.c (mono_class_init): Applied patch from Ankit Jain 
1233         (radical@gmail.com). Avoid pending init errors when a field refers
1234         to a nested class using a typeref. Fixes #74734.
1235
1236         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
1237         this for dynamic modules.
1238
1239 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1240
1241         * threads.c: don't wait for threads that are in the process of aborting
1242         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
1243         and waiting for background threads to finish. This makes xsp and
1244         mod-mono-server exit without random length delays and/or hangs.
1245
1246 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1247
1248         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
1249
1250 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
1251
1252         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
1253         dynamic types to prevent infinite loops. Fixes #74727.
1254
1255         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
1256         ..._is_assignable_to.
1257
1258 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
1259
1260         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
1261
1262 2005-04-25  Martin Baulig  <martin@ximian.com>
1263
1264         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
1265
1266         * domain.c
1267         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
1268
1269         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
1270
1271         * reflection.c (build_compressed_metadata): Set metadata header
1272         version to 2.0.
1273
1274 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
1275
1276         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
1277         number into an integral and a decimal part. Fixes #70473.
1278
1279         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
1280
1281 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
1282
1283         * culture-info-table.h : reflected the latest locale-builder output.
1284
1285 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1286
1287         * threadpool.c: check for SuspendRequested too when deciding if
1288         mono_thread_interruption_checkpoint should be called.
1289
1290 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1291
1292         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
1293         * threads.c: remove interruption_mutex and use Interlocked instead. When
1294         suspending all the threads, wait for all the suspended events at once.
1295         If we're shutting down and get an APC that is going to be queued,
1296         call mono_thread_execute_interruption immediately, as the thread might
1297         be sleeping on a pthread condition or mutex.
1298
1299         * icall.c: call mono_runtime_set_shutting_down before suspending the
1300         threads.
1301
1302         Fixes bug #74693. And now xsp is happier when exiting.
1303
1304 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
1305
1306         * loader.c (mono_stack_walk): Fix #74690.
1307
1308 2005-04-22  Martin Baulig  <martin@ximian.com>
1309
1310         * mono-debug.h (MonoDebugMethodJitInfo): Added
1311         `MonoDebugMethodJitInfo *jit'.
1312
1313         * mono-debug.c (mono_debug_read_method): Cache the
1314         MonoDebugMethodJitInfo in `address->jit'.
1315         (mono_debug_free_method_jit_info): New public method.
1316
1317 2005-04-22  Martin Baulig  <martin@ximian.com>
1318
1319         * class.c (mono_class_is_assignable_from): Disallow
1320         type parameter -> interface.
1321
1322 2005-04-21  Dick Porter  <dick@ximian.com>
1323
1324         * threads.c (mono_thread_create): Turn an assertion into an error.
1325
1326 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
1327
1328         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
1329         
1330         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
1331         Fix some gcc 4.0 warnings.
1332
1333 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
1334
1335         * file-io.c: fix alt dir separator char on unix systems
1336         and cleanup (fixes bug #71214).
1337
1338 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
1339
1340         * marshal.c: Use CALLVIRT instead of CALL when dispatching
1341         a call to a remote domain, since the method may be an
1342         interface method in the client domain. This fixes bug #74192.
1343
1344 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1345
1346         * threadpool.c: recv/send are now performed before going back to managed
1347         code to save one transition.
1348
1349 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1350
1351         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
1352
1353         * metadata/threadpool.c: removed hack to workaround the bug above.
1354
1355         Fixes bug #74618.
1356
1357 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
1358
1359         * reflection.c reflection.h: Fix handling of parameter defaults in
1360         dynamic methods. Also fixes handling of parameter attributes.
1361         Fixes #74609.
1362
1363         * mono-debug.c (mono_debug_close_image): Fix warning.
1364
1365 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1366
1367         * socket-io.h: replaced old unused field with new 'blocking'.
1368         * threadpool.c: restore socket blocking state on windows(tm).
1369
1370 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
1371
1372         * icall.c: don't return the codebase in the AssemblyName[] returned by
1373         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
1374         * object-internals.h: Removed FIXME (fields were presents) and fixed
1375         versioncompat declaration.
1376
1377 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1378
1379         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
1380         not closed, so don't cleanup when it happens.
1381
1382 2005-04-13  Chris Toshok  <toshok@ximian.com>
1383
1384         * mono-debug-debugger.h: change prototype for
1385         mono_debugger_lookup_type.
1386
1387         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
1388         this function, although it should probably be named
1389         mono_debugger_init_type.
1390
1391 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1392
1393         * threadpool.c: fix non-AIO case.
1394
1395 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
1396
1397         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
1398         the built-in profiler to measure just JIT compilation times.
1399
1400 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1401
1402         * threadpool.c: the epollfd might be closed by another thread at
1403         any time, so ignore EBADF at treat it as a "we're closing" sign.
1404
1405 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1406
1407         * threadpool.c: release the semaphores with a count equals to the number
1408         of working threads in both IO and regular pools. Fixed typo that messed
1409         up the count of IO pool threads. Don't initialize the pipe handles if
1410         we're using epoll.
1411
1412 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1413
1414         * threadpool.c: some systems don't like a NULL when deleting the socket
1415         from epoll.
1416
1417 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1418
1419         * threadpool.c: fix semaphore allocation.
1420
1421 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1422
1423         * threadpool.c: added epoll() based implementation for asynchronous IO
1424         that is used instead of the default poll() when available.
1425         It can be disabled by setting MONO_DISABLE_AIO.
1426
1427 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1428
1429         * threadpool.c: windows needs 'closesocket' and instead of returning
1430         0 when the stream is closed while in select, it returns -1. Fixes bug
1431         #74573.
1432
1433 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
1434
1435         * class.c (class_compute_field_layout): Fix the regression caused by
1436         the previous try.
1437
1438 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1439
1440         * threadpool.c: separate pool for socket async. IO.
1441         * threadpool.h: mono_max_worker_threads is not a global any more.
1442
1443 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
1444
1445         * class.c (class_compute_field_layout): Fix #74549.
1446
1447 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1448
1449         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
1450         use 2 connected sockets instead.
1451
1452 2005-04-08  Miguel de Icaza  <miguel@novell.com>
1453
1454         * mono-config.c: Add new entry point for mkbundle
1455         mono_config_parse_memory. 
1456
1457 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1458
1459         * threadpool.c: removed another unused function.
1460
1461 2005-04-08  Ankit Jain  <radical@corewars.org>
1462
1463         * reflection.c (get_default_param_value_blobs): Add 'types'
1464         parameter to get the types encoded in the constant table.
1465         (mono_param_get_objects): Use the type from the constant table,
1466         not the type of the parameter, when creating default values.
1467         Handle null default values correctly.
1468
1469 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1470
1471         * file-io.c:
1472         * file-io.h:
1473         * threadpool.c:
1474         * threadpool.h:
1475         * icall.c:
1476         * socket-io.c: removed dead code for async IO.
1477
1478 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1479
1480         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
1481
1482         * threadpool.c: intercept socket async. calls and pass them to a thread
1483         that is polling and dispatching the job items to the threadpool as
1484         socket become ready. Fixes bugs #71217, #71933.
1485
1486         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
1487         between char and short/ushort arrays.
1488
1489         * socket-io.c: remove dead code.
1490
1491 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
1492
1493         * locales.c,
1494           icall.c : removed InternalToUpper_Comp() and
1495           InternalToLower_Comp().
1496
1497 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
1498
1499         * char-conversions.h : The tables were incorrectly generated. Should
1500           be generated against invariant culture.
1501
1502 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
1503
1504         * object.c (mono_runtime_invoke_array): Fix return value when 
1505         passing pre-created valuetype objects to ctors.
1506
1507         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
1508         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
1509         Fixes #74338.
1510
1511 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1512
1513         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
1514         only used with --security and hides the wrong corlib version error.
1515
1516 2005-03-30  Joshua Tauberer  <tauberer@for.net>
1517
1518         * class.c: Changed mono_class_name_from_token so that types
1519         outside of a namespace don't have an initial period.  Improved
1520         the g_warning message used in _mono_class_get when loading
1521         fails.
1522         * assembly.c: In mono_assembly_load_reference, when an assembly
1523         can't be found, "No such file or directory" is misleading and
1524         unhelpful because a few paths were checked for the presence of
1525         the assembly.  When that happens (ENOENT), display a nicer
1526         message indicating the directories that were searched.  In all
1527         cases, the warning is made easier to read for non-hackers.
1528
1529 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
1530
1531         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
1532         project/solution.
1533         * appdomain.h|domain.c: Removed inline from functions.
1534         * appdomain.c: Reduced warnings when compiling on windows.
1535         * icall.c: Fixed output_debug declaration to gunichar2*.
1536         * mono-config.c: Reduced warnings when compiling on windows.
1537         * rand.c: Added missing "windows.h". Added missing return value.
1538         * rawbuffer.c: Added missing winsock2.h for windows.
1539         * sysmath.h: Added mono-compiler.h header to allow/ease 
1540         compilation with non-GCC compilers.
1541         * threads.c: Fixed declarations to compile with VS.NET C compiler.
1542         Removed cast warnings.
1543
1544         Adapted from the work of J Lothian (for VC6).
1545
1546 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
1547
1548         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
1549         from default_path.
1550
1551 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
1552
1553         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
1554         the 2.0 profile.
1555
1556 2005-03-27  Raja R Harinath  <harinath@gmail.com>
1557
1558         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
1559         has to be in $(exec_prefix).  $(prefix) is for arch-independent
1560         stuff, and it would probably use $(prefix)/share rather than
1561         $(prefix)/lib.
1562
1563 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1564
1565         * console-io.c: added 2 includes that might be missing.
1566
1567 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
1568
1569         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
1570         profile.
1571
1572         * reflection.c (create_custom_attr): Allocate the params array using
1573         alloca so it gets GC tracking.
1574
1575 2005-03-23  Chris Toshok  <toshok@ximian.com>
1576
1577         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
1578         out some spew.
1579
1580 2005-03-24  Raja R Harinath  <rharinath@novell.com>
1581
1582         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
1583         changes to pick up any changes in prefix, etc.
1584
1585 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
1586
1587         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
1588         
1589         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
1590         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
1591
1592 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
1593
1594         * class-internals.h object-internals.h class.c reflection.c: Extend the
1595         mono_lookup_dynamic_token () function to return the class of the
1596         token as well. 
1597
1598         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
1599         well. Fixes #73848.
1600
1601 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
1602
1603         * security-manager.c: Skip inheritance checks for intra-corlib
1604         class inheritance and method overrides. This skips a lot of checks
1605         and (anyway) permissions cannot work until corlib is loaded.
1606
1607 2005-03-23  Martin Baulig  <martin@ximian.com>
1608
1609         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
1610         MONO_TYPE_GENERICINST.  
1611
1612 2005-03-23  Martin Baulig  <martin@ximian.com>
1613
1614         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
1615
1616 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1617
1618         * class.c: added locking comments to some functions.
1619         Cache the interface offsets arrays (saves about 20 KB
1620         of runtime memory in a typical app).
1621         Reduce the time overhead in mono_class_setup_supertypes ().
1622
1623 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
1624
1625         * icall.c: speedup and fix leaks in GetMethodsByName and
1626         GetPropertiesByName.
1627
1628 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1629
1630         * reflection.c: some locking fixes.
1631
1632 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1633
1634         * metadata.c: added missing break in case statement.
1635
1636 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
1637
1638         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
1639         typedbyref return values. Fixes #73941.
1640
1641 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
1642
1643         * security-manager.c|h: Added demandunmanaged method and 
1644         suppressunmanagedcodesecurity class to MonoSecurityManager.
1645         Renamed aptc class to allowpartiallytrustedcallers.
1646
1647 2005-03-17  Martin Baulig  <martin@ximian.com>
1648
1649         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
1650
1651 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1652
1653         * file-io.c: disabled file async. IO using aio_*. It uses the
1654         threadpool now. Workaround for bug #73718.
1655
1656 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1657
1658         * assembly.h, mono-config.c: added code to deal with bundled configs
1659         for bundled assemblies.
1660
1661 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
1662
1663         * *.c, private.h: cleanup, removing old private.h header file.
1664
1665 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
1666
1667         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
1668         and throw_on_unmappable_char attributes.
1669
1670 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
1671
1672         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
1673         _ProcessName_internal.
1674
1675 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
1676
1677         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
1678         #73631.
1679
1680         * icall.c threads.c threads-types.h: Remove slothash icalls as they
1681         are no longer used.
1682
1683 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
1684
1685         * object.c (compute_class_bitmap): Add support for generics. Fixes
1686         #73527.
1687
1688 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
1689
1690         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
1691
1692 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1693
1694         * filewatcher.c: commented out the code for windows watcher, as we don't
1695         use it (we use the managed implementation instead).
1696
1697 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
1698
1699         * object-internals.h (MonoThread): Remove 'unused1' field.
1700
1701         * appdomain.c: Bump corlib version.
1702
1703         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
1704
1705         * reflection.c (mono_reflection_create_runtime_class): Remove the
1706         AssemblyBuilder.Save optimization since it causes too many problems.
1707
1708 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
1709
1710         * exception.c|h: Added mono_get_exception_reflection_type_load to
1711         create a ReflectionTypeLoadException object.
1712         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
1713         to return NULL is a InheritanceDemand fails during reflection. Updated
1714         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
1715         ReflectionTypeLoadException if an InheritanceDemand fails during 
1716         reflection. Added icall mapping for GetLinkDemandSecurity.
1717         * security-manager.c|h: Added ves_icall_System_Security_
1718         SecurityManager_GetLinkDemandSecurity internal call to return the
1719         class and methods permissions set for a LinkDemand. Removed unused
1720         fields in MonoSecurityManager.
1721
1722 2005-03-10  Martin Baulig  <martin@ximian.com>
1723
1724         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
1725         it's a generic instance.
1726
1727 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
1728
1729         * reflection.c (mono_get_object_from_blob): Applied patch from
1730         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
1731
1732         * class.c (mono_class_is_assignable_from): Another try at fixing 
1733         #73469 without breaking anything.
1734
1735 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
1736
1737         * class.c: (mono_class_is_assignable_from): Revert the last changes
1738         since they don't work with generics.
1739         
1740         * class.c (mono_class_is_assignable_from): Fix build bustage.
1741
1742         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
1743         the managed IsAssignableFrom method. Fixes #73469.
1744
1745         * reflection.c (mono_reflection_call_is_assignable_from): New helper
1746         function.
1747
1748 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
1749
1750         * object.c (mono_load_remote_field_new): Fix returning uninitialized
1751         memory when the remoting callback does not sets the out arguments.
1752         Fixes #73007.
1753
1754         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
1755         by mistake.
1756
1757         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
1758
1759         * object-internals.h (MonoStackFrame): Sync with managed object layout.
1760
1761         * appdomain.c: Bump corlib version.
1762
1763 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
1764
1765         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
1766         function.
1767
1768         * threads.c (mono_thread_attach): Detect threads which are not started
1769         by the GC pthread wrappers.
1770
1771 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
1772
1773         * icall.c: Added new icall for RNG.
1774         * rand.c|h: Added new icall to open the RNG. This allows to share a 
1775         single handle on Linux to access /dev/urandom and fix #73183.
1776
1777 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
1778
1779         * object.c: setting the new vtable in a transparent proxy object must
1780         not change the GC descriptor.
1781
1782 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1783
1784         * object.c: fixed compilation without GCJ support.
1785         * reflection.c: for runtime-created types ensure klass->has_references
1786         is correct (bug #73215).
1787
1788 2005-03-02  Martin Baulig  <martin@ximian.com>
1789
1790         * class.c (mono_class_is_assignable_from): Make this work if
1791         `oklass' is a generic instance; fixes #72831.
1792
1793 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
1794
1795         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
1796         with hasthis set.
1797         
1798         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
1799
1800         * marshal.c: Reorganize native->managed marshalling code to also use
1801         the emit_marshal_... functions.
1802
1803 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
1804
1805         * object.c: typed allocs have issues with bitmap sizes > 30,
1806         so check for max_set >= 30.
1807
1808 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
1809
1810         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
1811         managed code. Fixes #73012.
1812
1813         * metadata.h (MonoMarshalSpec): Add elem_mult field.
1814
1815         * metadata.c reflection.c: Load/Emit elem_mult as well.
1816         
1817         * metadata.h (MonoMarshalSpec): Add comment.
1818
1819         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
1820
1821         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
1822         num_elem to -1 if not given.
1823
1824         * object-internals.h (MonoReflectionMarshal): Add has_size field.
1825
1826         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
1827         given values.
1828
1829 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
1830
1831         * null-gc.c (mono_gc_free_fixed): Was not compilable.
1832
1833 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
1834
1835         * reflection.c (encode_marshal_blob): Encode param_num field as well.
1836
1837         * object-internals.h (MonoReflectionMarshal): Add param_num field.
1838
1839 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
1840
1841         * object.c: generalized the reference bitmap creation
1842         and added hooks for the new GC.
1843         * class-internals.c: removed the gc_bitmap field from MonoClass.
1844
1845 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1846
1847         * domain.c: help the compiler to produce better code
1848         in mono_jit_info_table_find ().
1849
1850 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
1851
1852         * object.c: make all allocations look typed.
1853
1854 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1855
1856         * socket-io.c: load Mono.Posix if it's not loaded already
1857         (fixes bug#73033).
1858
1859 2005-02-24  Martin Baulig  <martin@ximian.com>
1860
1861         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
1862         * reflection.c (dup_type): Likewise.
1863
1864 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
1865
1866         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
1867         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
1868
1869 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1870
1871         * domain.c, threads.c, object-internals.h: make the critical thread
1872         local vars use the fast access mode (even when we're compiled in
1873         a lib). Provide accessors to be used by the jit during codegen.
1874
1875 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1876
1877         * appdomain.c: Changed hook functios behavior to include
1878         support for the reflection only assemblies. Some icalls were changed
1879         to support the mentioned assemblies too. Signatures of static methods
1880         try_assembly_resolve and real_load now have an additional parameter:
1881         refonly.
1882
1883         * assembly.c: General changes to mono_assembly_ methods to support
1884         reflection only api. Functions mono_assembly_open, mono_assembly_load,
1885         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
1886         suffix, to support an additional gbool parameter to specify whether
1887         the assembli is reflection only or not. Created some new hook functions 
1888         to add support for reflection only assemblies. Signatures of static 
1889         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
1890         have now an additional parameter: refonly.
1891
1892         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
1893         indicating whether the assembly is reflection only or not.
1894
1895         * exception.c: Add mono_get_exception_invalid_operation.
1896
1897         * icall.c: Throw an InvalidOperationException when trying to invoke
1898         a property/method/event, or trying to set/get the value of a field.
1899         Also add an icall to retrieve the ref_only flag to the
1900         MonoReflectionAssembly.
1901
1902 2005-02-23  Chris Toshok  <toshok@ximian.com>
1903
1904         Part of fix for #72827.
1905         * mono-debug.c (mono_debug_add_method): add lexical block data to
1906         the info we write.  Kind of a hack at the moment - we copy the
1907         lexical block info from the MonoDebugMethodInfo to the
1908         MonoDebugMethodJitInfo here, before writing it.
1909         (mono_debug_read_method): read the lexical block info.
1910
1911         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
1912
1913         * debug-mono-symfile.h: add lexical block support.
1914
1915         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
1916         support.
1917
1918 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
1919
1920         * loader.c (mono_lookup_pinvoke_call): Fix warning.
1921
1922         * object.c (mono_runtime_free_method): Call mono_free_method () and
1923         put the TODOs there.
1924
1925         * loader.c (mono_free_method): Free up most memory allocated for 
1926         dynamic methods.
1927
1928 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
1929
1930         * reflection.c: properly flag a Type argument to a
1931         named custom attr value (bug #72248).
1932
1933 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1934
1935         * reflection.c: reduce code duplication in named custom
1936         attribute encoding.
1937
1938 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
1939
1940         * reflection.c: properly encode custom attrs of type object
1941         (bug #72649).
1942
1943 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
1944
1945         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
1946
1947 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
1948
1949         * socket-io.c: load System.dll if it's not loaded already
1950         (bug #72850 and #70477).
1951
1952 2005-02-21  Martin Baulig  <martin@ximian.com>
1953
1954         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
1955         generic instances.
1956
1957 2005-02-21  Martin Baulig  <martin@ximian.com>
1958
1959         * reflection.c (mono_image_build_metadata): We also need to
1960         "fixup" the MethodImpl table after we computed the final method
1961         indices.  Call fixup_methodimpl() to do that.
1962         (fixup_methodimpl): New private method.
1963
1964 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
1965
1966         * assembly.c: special case mscorlib.dll (bug#72536),
1967         patch from Carlos Alberto Cortez.
1968
1969 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
1970
1971         * threads-types.h threads.c: Fix build bustage.
1972
1973         * threads.c: Use a union for long<->double conversions.
1974
1975         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
1976         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
1977
1978         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
1979         containing the checkpoint call with NOT_TAKEN.
1980         
1981         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
1982         checkpoint before pushing the arguments, so they won't have to be
1983         spilled to stack.
1984
1985 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1986
1987         * domain.c, assembly.c, domain-internals.h: make some data
1988         const and relocation-free.
1989
1990 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
1991
1992         * object.c, appdomain.c, class-internals.h: introduce the
1993         MonoClassRuntimeInfo structure to hold the info needed to
1994         use a class at runtime. Made mono_class_vtable() lock-free
1995         for all the appdomains.
1996
1997 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
1998
1999         * metadata-internals.h, image.c: introduce a per-image mempool to
2000         be used for memory that has the same lifetime as the image.
2001
2002 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
2003
2004         * domain.c: In mono_init_internal(), instead of selecting the first
2005         runtime version supported by an executable, get a list of all
2006         supported versions and select the one for which an mscorlib exists
2007         (since even if the runtime supports a given version, it doesn't mean
2008         that the framework for that version is installed).
2009         Modified get_runtimes_from_exe to support this behavior.
2010         In supported_runtimes, added information about additional system
2011         assembly versions.
2012         
2013         * assembly.c: Added support for more than one system assembly version
2014         per runtime version. Updated the assembly list.
2015         In mono_assembly_remap_version, removed the initial version check,
2016         since we don't know to which version we need to compare until we
2017         get the version set on which the assembly is based.
2018         Moved the code for loading corlib into the new method
2019         mono_assembly_load_corlib(), so it can be used by the initialization
2020         code.
2021         
2022         * domain-internals.h: Updated data structures and added declaration
2023         for mono_assembly_load_corlib.
2024
2025 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
2026
2027         * reflection.c (resolve_object): Fix the creation of the signature in 
2028         the SignatureHelper case.
2029
2030         * assembly.c (mono_assembly_remap_version): Fix binary search.
2031         
2032 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
2033  
2034         * class.c: Added inheritance check when a method is overloaded (from a
2035         virtual method or when implementing an interface) and when a class is
2036         inherited. Added functions to set a failure for a class and to 
2037         retreive the exception from a failure.
2038         * class-internals.h: Added fields to MonoClass to keep the exception
2039         information status for inheritance (or other exceptions) to be thrown
2040         later (i.e. not at load time).
2041         * object.c: Throw the inheritance SecurityException when a type is to 
2042         be created with either class or method inheritance violations.
2043         * reflection.c|h: Fix when getting declsec from a class. Removed 
2044         unrequired code for class. Improved sanity in parameter naming.
2045         * security-manager.c|h: Added functions to check for class and method
2046         inheritance.
2047
2048 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
2049
2050         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
2051         and has_finalize in dynamic types as well.
2052
2053 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
2054
2055         * culture-info-table.h : fixed currency format for en-GB (and so on).
2056
2057 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
2058
2059         * gc.c: ensure the GC handles never have 0 as a value.
2060
2061 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
2062
2063         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
2064         a pointer to a struct to unmanaged code. Fixes #72625.
2065
2066 2005-02-16  Martin Baulig  <martin@ximian.com>
2067
2068         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
2069
2070 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
2071
2072         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
2073
2074 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
2075
2076         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
2077
2078         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
2079         UnmanagedFunctionPointerAttribute, use it for determining calling convention
2080         etc. Fixes #71471.
2081
2082         * reflection.c (mono_custom_attrs_get_attr): New helper function.
2083
2084         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
2085
2086 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
2087
2088         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
2089         changes to make the current context a field in MonoThread.
2090
2091 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
2092
2093         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
2094         the last change.
2095         
2096         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
2097         extracted from mono_marshal_get_native_wrapper.
2098
2099         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
2100         to create wrappers around native functions.
2101
2102         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
2103         delegates for arbitrary function pointers. Fixes #71472.
2104
2105 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
2106
2107         * threads.c: cleaned up the code a little.
2108
2109 2005-02-15  Martin Baulig  <martin@ximian.com>
2110
2111         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
2112         the data table.
2113
2114         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
2115         allocate larger chunks if needed.
2116
2117 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
2118
2119         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
2120         in by mistake.
2121
2122 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
2123
2124         * domain.c: keep the domains in an array and ensure the domain ids
2125         are kept small, so they can be used as indexes to domain-specific data
2126         with a small memory overhead.
2127
2128 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
2129
2130         * icall.c: Handle byref types in Type icalls. Fixes #72544.
2131
2132 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
2133
2134         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
2135
2136 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
2137
2138         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
2139
2140         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
2141         values.
2142
2143         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
2144         
2145 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
2146
2147         * domain-internals.h: add the hashtable here.
2148
2149         * class-internals.h: Remove `info' from MonoMethod
2150
2151         * domain.c: Add a new hashtable, jit_trampoline_hash
2152
2153 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
2154
2155         * object.c: don't set the value of static fields
2156         (fixes bug#72494).
2157
2158 2005-02-11  Martin Baulig  <martin@ximian.com>
2159
2160         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
2161         (mono_debug_add_method): Silently ignore the method if it's too big.
2162         (mono_debug_add_type): Likewise.
2163
2164 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
2165
2166         * threads.c, appdomain.c: remove #ifdefs from the code.
2167
2168 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
2169
2170         * metadata-internals.h: Added flags to MonoAssembly to cache the most
2171         common security informations. This allows us to stay in unmanaged code
2172         when doing LinkDemand and it's special cases (except for the first 
2173         time for initialization). The flags a very much used with --security.
2174         * reflection.c|h: Added code to get declarative security attributes 
2175         for LinkDemand and InheritanceDemand. This required to refactor the
2176         existing code for Demand.
2177         * security-manager.c|h: Added new method fields for the special cases
2178         of LinkDemand.
2179
2180 2005-02-10  Martin Baulig  <martin@ximian.com>
2181
2182         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
2183         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
2184
2185 2005-02-10  Martin Baulig  <martin@ximian.com>
2186
2187         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
2188         debugging code; this is almost a complete rewrite.
2189
2190         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
2191
2192 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
2193
2194         * domain.c, object.h: expose mono_string_equal () and 
2195         mono_string_hash ().
2196         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
2197         it's implemented in managed code.
2198
2199 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2200
2201         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
2202         lo leak objects between appdomains.
2203
2204 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2205
2206         * assembly.c: old compilers compilation fix from 
2207         robertj@gmx.net (Robert Jordan).
2208
2209 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
2210
2211         * class-internals.h: Little reminder for the future.
2212
2213         * debug-helpers.c: Fix up wrapper_type_names
2214
2215 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2216
2217         * image.c, metadata-internals.h: when loading an image from a file,
2218         mmap all of it and use the same codepaths as when using a
2219         in-memory image: the code is simpler and we use less memory
2220         (both writable and readonly).
2221
2222 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
2223
2224         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
2225         API to alloc runtime data structures that need to be tracked by the
2226         GC and contain pointers.
2227         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
2228         make the code more readable and eventually use a different GC.
2229
2230 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
2231
2232         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
2233         for out arguments.
2234         
2235 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
2236
2237         * object.c: In release_type_locks(), don't release the cctor lock
2238         if it has already been released. This fixes a crash in the
2239         thread5 test.
2240
2241 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
2242
2243         * gc.c, marshal.c, icall.c: register a delegate for finalization
2244         only when the native function pointer has been allocated for it.
2245
2246 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2247
2248         * object.c: cleaned up some code, allocate objects that are
2249         pointer free with the atomic malloc variant. Allocate memory
2250         for static data from the mempool if it's pointer-free.
2251         Allocate the bounds array at the end of the array data, when needed.
2252         * object-internals.h, object.h: move a private function in a private
2253         header.
2254         * class.c: handle missing case in tracking references in fields.
2255
2256 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
2257
2258         * class.c, class-internals.h: keep track if a type has
2259         reference fields in either the instance or static fields.
2260
2261 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
2262
2263         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
2264         and renamed to MonoRuntimeInfo. Added fields to store the expected
2265         framework assembly version. Changed mono_get_framework_version and
2266         mono_get_runtime_version for a single mono_get_runtime_info method.
2267         
2268         * assembly.c: Added method to remap system assembly versions to the
2269         current executing runtime version. Removed old mapping code.
2270         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
2271         
2272         * icall.c, reflection.c: Track api changes.
2273
2274 2005-02-06  Miguel de Icaza  <miguel@novell.com>
2275
2276         * loader.c (method_from_memberref): Improve error reporting,
2277         produce the class name instead of the typeref/typedef index. 
2278
2279 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
2280
2281         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
2282
2283 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2284
2285         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
2286         stdcall and charset name mangling.  Reorganize the code and add
2287         some tracing stuff.
2288
2289 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
2290
2291         * monodiet.c: More iters!
2292
2293         * marshal.c: Iter usage.
2294
2295         * icall.c: Iter usage.
2296
2297         * object.c: Use iters.
2298
2299         * debug-helpers.c: More iters
2300
2301 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2302
2303         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
2304         under win32.
2305
2306 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
2307
2308         * mono-debug-debugger.c: use iters
2309
2310         * class.c, class-internals.h: mono_class_setup_events is static
2311         now
2312
2313         * All callers: use iters
2314
2315 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
2316
2317         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
2318         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
2319
2320 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
2321
2322         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
2323
2324         * marshal.h: Add prototypes for ldfld/stfld_remote.
2325
2326         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
2327         this is called during startup.
2328         
2329 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
2330
2331         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
2332         MonoThreadsSync struct private in monitor.c. Changed the way
2333         MonoThreadsSync is allocated so it's faster and there is no
2334         need to keep track of it with a finalizer and it uses less memory.
2335         This also finally allows us to allocate mono objects as ptrfree when
2336         there are no reference fields.
2337
2338 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
2339
2340         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
2341         disappearing link to the GC interface and use them to simplify
2342         the gchandles code.
2343
2344 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
2345
2346         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
2347         stfld_remote which call mono_load/store_field_new. This allows methods
2348         calling ldfld/stfld wrappers to be AOTed.
2349
2350         * console-io.c: Include sys/filio.h under solaris.
2351         
2352         * console-io.c: Include curses.h if needed correctly.
2353
2354 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
2355         
2356         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
2357         method->klass as well.
2358
2359         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
2360
2361         * class.c (mono_class_init): Switch on lazy initialization of 
2362         methods.
2363
2364         * class.c (mono_class_get_finalizer): Handle the case when the 
2365         finalizer is inherited.
2366
2367 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2368
2369         * console-io.c: <curses.h> is needed by term.h on solaris.
2370
2371 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
2372
2373         * icall.c, class-internals.h, monodiet.c, class.c: Remove
2374         mono_class_setup_properties where possible. Remove this ftn from
2375         the header file, and make it static.
2376
2377 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
2378
2379         * loader.c: Add missing setup_... call.
2380
2381         * class.c: Add missing setup_... calls.
2382
2383         * class.c (mono_class_init): Switch on lazy initialization of 
2384         the generic vtable.
2385         
2386         * class.c (mono_class_init): Fix generics broken by the recent changes.
2387
2388         * monodiet.c (handle_type): Add missing setup_... calls.
2389
2390         * class.c: Back out garbage in previous patch.
2391         
2392         * class.c: Add missing setup_... calls.
2393
2394         * class.c (mono_class_get_method_from_name_flags): Avoid calling
2395         mono_class_setup_methods () if possible.
2396
2397         * class-internals.h (MonoClass): Add 'has_cctor' flag.
2398
2399         * class-internals.h (MonoCachedClassInfo): New structure.
2400
2401         * class.c: Initialize properties and events fields of MonoClass lazily.
2402
2403         * class.c: Add infrastructure for lazily initializing the methods and
2404         vtable fields of MonoClass. Not yet used.
2405
2406         * class.c (mono_class_get_finalizer): New helper function.
2407
2408         * class.c: Add infrastructure for loading some class related data from
2409         an AOT file.
2410
2411         * object.c: Add infrastructure for initializing the vtable from data
2412         in the AOT file.
2413
2414         * gc.c (run_finalize): Use mono_class_get_finalizer ().
2415
2416         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
2417         appropriate initialization function before accessing parts of the
2418         MonoClass structure.
2419
2420         * marshal.c: Fix warnings.
2421         
2422         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
2423
2424         * mono-debug-debugger.c (get_exception_message): Use 
2425         mono_class_get_method_from_name_flags ().
2426
2427 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
2428
2429         * reflection.c, appdomain.c: Replace a few manual searches that
2430         Zoltan missed. (Paolo approved this part of my initial patch).
2431
2432 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
2433
2434         * profiler.c: disable recording statistical events at report time.
2435
2436 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2437
2438         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
2439         to byteswap arrays of enum values, too (bug #72080).
2440
2441 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
2442
2443         * appdomain.c (set_domain_search_path): Allow this to be called if
2444         domain->setup is not yet set.
2445
2446         * loader.c (mono_method_get_index): New helper function.
2447
2448         * loader.c reflection.c: Use mono_method_get_index ().
2449
2450         * class.c (mono_class_get_method_from_name_flags): New helper method.
2451
2452         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
2453         this.
2454
2455         * class.c (mono_class_get_cctor): New helper method.
2456
2457         * string-icalls.c object.c class.c marshal.c reflection.c: Use
2458         mono_class_get_method () to look up methods.
2459
2460 2005-02-01  Miguel de Icaza  <miguel@novell.com>
2461
2462         * console-io.c: Fix the build, this should work on Windows.
2463
2464 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
2465
2466         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
2467         be set to null to keep things valid
2468
2469 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2470
2471         * icall.c: added Console 2.0 icalls.
2472         * Makefile.am: added console-io.[ch]
2473         * console-io.[ch]: internal calls for Console 2.0 API.
2474
2475 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2476
2477         * class.c: make sure we consider all the interfaces
2478         when calculating max_interface_id (bug found by
2479         Jeroen Frijters running ikvm).
2480
2481 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
2482
2483         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
2484         valuetype fields to null.
2485
2486         * object.c (set_value): Ditto. Fixes #71669.    
2487
2488 2005-01-31  Martin Baulig  <martin@ximian.com>
2489
2490         * metadata.c (mono_metadata_has_generic_params): New public
2491         function; checks whether something is a generic method.
2492
2493 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
2494
2495         * appdomain.c: fix infinite recursion when adding assemblies.
2496
2497 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
2498
2499         * object.c: Fix small typo to return all items for Environment.
2500         GetCommandLineArgs.
2501
2502 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
2503
2504         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
2505         reflection.c: more domain and assembly-unload related fixes
2506         and memory leaks plugs.
2507
2508 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
2509
2510         * 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.
2511
2512 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
2513
2514         * loader.c (mono_method_signature): Make this method lazy
2515         (mono_get_method_from_token): Don't computate the signature here.
2516
2517         Doing this saves quite a bit of memory. I got 90 kb on starting up
2518         monodoc. It should also save some disk reads on startup.
2519
2520         * *: MonoMethod->signature might be NULL now. You *MUST* use
2521         mono_method_signature.
2522
2523 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
2524
2525         * object.c (mono_runtime_get_main_args): Return an array from the
2526         current domain here. Fixes #71938.
2527
2528 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
2529
2530         * monitor.c: formatting changes to comply with the
2531         mono coding style and remove #ifdefs from the code.
2532
2533 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
2534
2535         * metadata.c, private.h: remove some unneeded data
2536         and use a more compact representation for table schemas.
2537
2538 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
2539
2540         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
2541         to get a better distribution in hash tables.
2542         * *.c: use mono_aligned_addr_hash() where appropriate.
2543         * assembly.c: make var static.
2544
2545 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
2546
2547         * domain-internals.h: Put MonoJitInfo on a diet.
2548
2549         * domain.c: Fix a warning.
2550
2551 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2552
2553         * gc.c: rework the gc handles code to reuse handles
2554         when freed.
2555
2556 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
2557
2558         * domain.c: fixed long standing bug in mono_string_equal() which
2559         was brought to light with the ldstr changes.
2560
2561 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
2562
2563         * reflection.c: Remove warning by adding missing include for marshal.h
2564
2565 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
2566
2567         * domain.c, object.c: change the ldstr_table to hold
2568         MonoString* as keys: makes the runtime isinterned lookup
2569         faster and simplifies memory management.
2570
2571 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
2572  
2573         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
2574         possible to add imperative security checks before calling the icall.
2575         * reflection.c: Return security attributes on the original MonoMethod
2576         (and not the wrapped one). This fix permissions on icalls.
2577
2578 2005-01-25  Dick Porter  <dick@ximian.com>
2579
2580         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
2581         the check for mktime() support actually test the mktime() return
2582         value.  "Fixes" bug 71682, though the output is still different to
2583         MS.
2584
2585 2005-01-25  Martin Baulig  <martin@ximian.com>
2586
2587         * class.c (mono_class_is_assignable_from): Make this work for
2588         generic instances.
2589
2590 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
2591
2592         * marshal.c (mono_string_utf8_to_builder)
2593         (mono_string_builder_to_utf16): We might not have ownership of the
2594         string. In thise case, we need to create a new buffer.
2595
2596         * object-internals.h (mono_stringbuilder_capacity): sb->str might
2597         be null, in which case, use the default capacity.
2598
2599 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
2600
2601         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
2602         GC events to the profiler.
2603
2604 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
2605
2606         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
2607         if you don't want the GC to run.
2608
2609 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
2610
2611         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
2612         start providing a GC API and keeping different implementations in
2613         their own file.
2614         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
2615
2616 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
2617
2618         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
2619         mmap rather than allocating a huge buffer.
2620         (mono_debug_close_mono_symbol_file): Free the buffer allocated
2621         above.
2622
2623 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
2624
2625         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
2626         and CheckExecutionRights.
2627         * reflection.c|h: Keep the index of the declarative security to be 
2628         used, instead of the pointer, when AOT compiler is used. Also add 
2629         class initialization when requesting demands.
2630         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
2631         CheckExecutionRights. Both properties are now FALSE by default, and
2632         unmodifiable, unless the --security option is used.
2633
2634 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2635
2636         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
2637         reflection.c: properly refcount images and assemblies, many leaks fixed.
2638
2639 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2640
2641         * threadpool.c: increase the timeout for threads in the thread pool to
2642         10s.  Fixes bug #67159.
2643
2644 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
2645
2646         * class-internals.h: Sun's compiler insists on explicit
2647         signed on bit fields to handle then correctly.
2648
2649 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
2650
2651         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
2652         Make the size of the array fit only the number of invalid path
2653         chars that we have.
2654
2655         * class.c (_mono_class_get): Improve the error reporting when a
2656         class referenced is not found, to assist debugging. 
2657
2658 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
2659
2660         * threads.c: fix off-by-one error.
2661         * domain.c: free data allocated in the domain.
2662
2663 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
2664
2665         * reflection.c (mono_method_body_get_object): Fill out exception info
2666         as well.
2667
2668         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
2669         structure.
2670         
2671 2005-01-19  Martin Baulig  <martin@ximian.com>
2672
2673         * loader.c (mono_get_method_constrained): Make this work again.
2674
2675 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
2676
2677         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
2678         guint16 to match the managed side.
2679
2680         * reflection.c (mono_reflection_body_get_object): Fill out local
2681         variables array.
2682
2683         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
2684         as well.
2685
2686         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
2687         'local_var_sig_token'.
2688
2689 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
2690
2691         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
2692         System.Drawing.
2693
2694         * reflection.c (mono_method_body_get_object): Handle abstract and
2695         runtime methods.
2696
2697 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
2698
2699         * marshal.c, loader.c, class-internals.h, reflection.c:
2700         store the emthod data for a wrapper in an array instead of a list.
2701
2702 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
2703
2704         * marshal.c: change the code to allocate memory more
2705         conservatively for method wrappers.
2706
2707 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
2708
2709         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
2710         fields from MonoClass to the marshal info structure where they belong.
2711
2712 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
2713
2714         * class.c, object.c, class-internals.h, marshal.c: rearrange
2715         some fields and tweak some types to lower memory usage.
2716
2717 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
2718
2719         * threads.c (signal_thread_state_change): Handle the case when the
2720         target thread is the current thread.
2721
2722         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
2723
2724         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
2725         emit_ptr_to_object_conv. 
2726
2727         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
2728         marshalling. Fixes #71352.
2729
2730 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
2731
2732         * metadata.h, blob.h: move table enum to blob.h so it can be included
2733         in any header.
2734         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
2735         cut the size of MonoImage/MonoDynamicImage.
2736
2737 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
2738
2739         * profiler.c (mono_profiler_install_simple): Fix default arguments.
2740
2741 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
2742
2743         * reflection.c, reflection.h, icall.c: add a function to check
2744         if an attribute type is defined for a metadata object.
2745
2746 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
2747
2748         * object-internals.h: Added some needed fields from StringBuilder class.
2749         * marshal.c: Set the maxCapacity when creating a StringBuilder.
2750
2751 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
2752
2753         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
2754         threads before shutting down the runtime.
2755
2756         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
2757
2758 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
2759
2760         * object-internal.h, threads.c: implement stacksize and 
2761         parameterized thread start functionality (requires
2762         matching corlib). Marked broken code for later removal.
2763
2764 2005-01-12  Martin Baulig  <martin@ximian.com>
2765
2766         * class-internals.h (MonoGenericClass): Moved the `initialized'
2767         flag to MonoDynamicGenericClass, removed `init_pending'.
2768         (MonoGenericInst): Added `is_reference' flag.
2769
2770 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
2771
2772         * reflection.c (mono_image_create_pefile): Only set the pe_offset
2773         inside the MSDOS header. Fixes #71201.
2774
2775         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
2776         gc thread.
2777         (mono_domain_finalize): Ditto.
2778
2779 2005-01-12  Martin Baulig  <martin@ximian.com>
2780
2781         * class.c (mono_get_shared_generic_class): Use the cache for
2782         non-dynamic generic classes.
2783
2784         * class-internals.h (mono_class_create_generic_2): Removed
2785         function prototype, this function is now static inside class.c.
2786
2787         * class.c (mono_class_create_generic_2): Made this static, only
2788         call it from mono_class_init() and mono_class_setup_parent().
2789         (collect_implemented_interfaces_aux): Call mono_class_init() on
2790         the interfaces we collect.
2791         (mono_class_setup_vtable): Call mono_class_init (class->parent).
2792
2793 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
2794
2795         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
2796         it a real thread handle.
2797
2798         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
2799         MonoJitExceptionInfo, since each catch clause needs its own variable.
2800         
2801 2005-01-11  Dick Porter  <dick@ximian.com>
2802
2803         * image.c (mono_pe_file_open): New variant on mono_image_open()
2804         that does not set up the CLI metadata; used for FileVersionInfo so
2805         it can get the data for windows binaries too.
2806         
2807         * process.c (process_read_string_block): Don't read off the end of
2808         the StringTable block.
2809
2810         These both fix bug 70766.
2811
2812 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
2813
2814         * gc.c: set some fields to NULL at GC cleanup time.
2815         * threads.c: if we quit the main thread, call exit ().
2816
2817 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
2818
2819         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
2820
2821 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
2822
2823         * threads.h, threads.c, object.c: added accessor and settor for
2824         main_thread. Handle it specially when exiting from it: wait
2825         for other foreground threads to exit.
2826
2827 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
2828
2829         * process.c, verify.c: remove some bloat.
2830
2831 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
2832
2833         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
2834         the calling convention to cdecl under win32.
2835
2836 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
2837
2838         * object.c (mono_object_get_size): New function to get the size of
2839         an object instance.
2840
2841         * profiler.c (simple_allocation): Use above.
2842
2843 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
2844
2845         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
2846         ves_icall_System_AppDomain_getRootDomain (as it's not required to
2847         get an appdomain by it's id and we can't assume the root's id is 0).
2848         * domain-internals.h: Change the function prototype to match.
2849         * icall.c: Change the icall table for AppDomain.
2850
2851 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
2852
2853         * locales.c (string_invariant_compare_char): Only compute
2854         GUnicodeTypes in the case where we need them.  Test for ordinality
2855         first and return if so.
2856
2857         From the commit:
2858
2859                 /*
2860                  * FIXME: here we must use the information from c1type and c2type
2861                  * to find out the proper collation, even on the InvariantCulture, the
2862                  * sorting is not done by computing the unicode values, but their
2863                  * actual sort order.
2864                  */
2865
2866 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
2867
2868         * loader.c: for P/Invoke methods, allow the "Internal" shared
2869         library name to refer to the calling process symbol namespace.
2870
2871 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
2872
2873         * Makefile.am: Add the security manager to the build.
2874         * security-manager.c|h: New. Initialization of the security manager.
2875
2876 2005-01-07  Dick Porter  <dick@ximian.com>
2877
2878         * threads.c: 
2879         * monitor.c: Update thread state during Monitor and WaitHandle
2880         waits.  Fixes bug 71031.
2881
2882 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
2883
2884         * reflection.c (property_encode_signature): Correctly handle when the
2885         property has no methods.
2886
2887 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
2888
2889         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
2890         
2891         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
2892         fields from mb, not rmb. Fixes #71017.
2893
2894         * marshal.c (emit_ptr_to_str_conv): Add support for 
2895         ByValTStr -> string conversion. Fixes #71015.
2896
2897         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
2898
2899         * mempool.c (mono_mempool_contains_addr): New helper function.
2900
2901 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
2902
2903         * metadata.c (mono_metadata_compute_size): Fix size calculation of
2904         HasSematics encoded fields.
2905         
2906         * metadata.c (mono_type_to_unmanaged): Improve error message for 
2907         invalid string marshalling.
2908
2909         * metadata.c: Fix warnings.
2910         
2911 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2912
2913         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
2914         profiler support.
2915
2916 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
2917
2918         * domain.c object.c domain-internals.h: Revert part of r38077 since the
2919         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
2920         tests.
2921
2922 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
2923
2924         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
2925         so methods containing these can be AOTed.
2926
2927 2005-01-03  Martin Baulig  <martin@ximian.com>
2928
2929         * loader.c (find_method): Removed the hack for generic instances.
2930         (method_from_memberref): If our parent is a generic instance, pass
2931         its generic type definition to find_method() and then inflate the
2932         method.
2933         (mono_get_method_constrained): Pass the generic type definition to
2934         find_method() and inflate the method later.
2935
2936         * class-internals.h (MonoStats): Added `generic_class_count'.
2937
2938         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
2939         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
2940
2941         * reflection.c (mono_custom_attrs_from_params): Don't ignore
2942         generic type definitions.
2943
2944 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
2945
2946         * loader.c icall.c: Fix warnings.
2947
2948 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
2949
2950         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
2951         blittable types. Fixes #70864.
2952
2953 2004-12-29  Martin Baulig  <martin@ximian.com>
2954
2955         * icall.c
2956         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
2957
2958         * reflection.c (mono_method_get_object): Create a
2959         "System.Reflection.MonoGenericMethod" for inflated methods; don't
2960         call mono_get_inflated_method().
2961
2962         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
2963
2964 2004-12-27  Martin Baulig  <martin@ximian.com>
2965
2966         * class-internals.h (MonoMethod): Added `is_inflated' flag.
2967         (MonoMethodInflated): Added `inflated' field.
2968
2969         * class.c (mono_class_inflate_generic_method): Don't really
2970         inflate the method here; just set the `is_inflated' flag in the
2971         MonoMethod.
2972         (mono_class_get_inflated_method): Actually inflate the method here
2973         if it's not already inflated; we use the MonoMethodInflated's new
2974         `inflated' field as a cache.
2975
2976 2004-12-26  Martin Baulig  <martin@ximian.com>
2977
2978         * class.c
2979         (inflate_generic_class): Moved some code out of inflate_generic_type().
2980         (mono_class_inflate_generic_method): If we're already inflated,
2981         inflate the context and use the declaring method; ie. make sure
2982         the declaring method of an inflated method is always the generic
2983         method definition.
2984         (mono_class_create_from_typedef): Create
2985         `class->generic_container->context->gclass'.
2986
2987 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
2988
2989         * metadata-internals.h, marshal.c, reflection.c: More
2990         MonoGHashTable->GHashTable.
2991
2992         * domain-internals.h, class.c: Change MonoGHashTable's into
2993         GHashTables for some cases where no gc stuff is used
2994
2995         All users: update apis
2996
2997 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
2998
2999         * metadata.c (builtin_types): Make this `const'. Makes this get
3000         put into the shareable section.
3001         (mono_metadata_init): Casts to make gcc happy.
3002
3003 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
3004
3005         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
3006
3007 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
3008
3009         * icall.c: Added an internal call to retrieve the position and length
3010         of assembly-level declarative security attributes (RequestMinimum, 
3011         RequestOptional and RequestRefuse). This is used by the Assembly class
3012         to re-create the corresponding permission sets.
3013
3014 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
3015
3016         * marshal.c: fix the stelemref wrapper to be type correct
3017         (and faster).
3018
3019 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
3020
3021         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
3022         to do key & 0x7fffffff. Hashtable already does this. It just
3023         results in longer code.
3024
3025 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
3026
3027         * appdomain.c: Bump corlib version.
3028         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
3029         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
3030         * reflection.c|h: Add functions to get declarative security infos
3031         (blob position and length) for assemblies, classes and methods.
3032
3033 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
3034
3035         * reflection.c: sort the constant table (bug #70693).
3036
3037 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
3038
3039         * object-internals.h, threads.c, domain.c: add accessors for
3040         the MonoThread and MonoDomain tls keys.
3041
3042 2004-12-18  Martin Baulig  <martin@ximian.com>
3043
3044         * class.c (inflate_generic_type): If we're inflating a generic
3045         instance, set `ngclass->context->container = context->container';
3046         ie. the container we inflated into.
3047
3048         * metadata.c (mono_metadata_parse_generic_param): Reflect above
3049         inflate_generic_type() changes.
3050
3051 2004-12-17  Martin Baulig  <martin@ximian.com>
3052
3053         * class-internals.h
3054         (MonoGenericClass): Replaced `MonoType *generic_type' with
3055         `MonoClass *generic_class'.  Removed `dynamic_info'; if
3056         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
3057         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
3058
3059 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
3060
3061         * exception.c (mono_exception_from_token): New helper function.
3062
3063 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
3064
3065         * assembly.c (mono_assembly_load_with_partial_name): Call 
3066         mono_assembly_loaded before invoking the preload hooks. Fixes
3067         #70564.
3068
3069         * object-internals.h (MonoThread): Change culture_info and 
3070         ui_culture_info into an array.
3071
3072         * threads.c: Cache culture info objects from more than one appdomain.
3073
3074         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
3075         current UI culture.
3076
3077 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
3078
3079         * threads.h threads.c appdomain.c: Clear the culture_info field of
3080         all threads during unloading if they point to an object in the dying
3081         appdomain.
3082
3083 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
3084
3085         * culture-info.h (TextInfoEntry): New struct
3086         * object-internals.h: sync with managed
3087         * locales.c: fill the `text_info_data' field
3088         * culture-info-tables.h: update
3089
3090 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
3091
3092         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
3093         collector.
3094
3095 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
3096
3097         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
3098         (ves_icall_ModuleBuilder_getMethodToken): Ditto
3099
3100 2004-12-12  Martin Baulig  <martin@ximian.com>
3101
3102         * mono-debug-debugger.c (write_type): If we're an enum and the
3103         builtin types have already been initialized, call mono_class_init().
3104
3105 2004-12-11  Martin Baulig  <martin@ximian.com>
3106
3107         * metadata.c (mono_metadata_load_generic_params): Added
3108         `MonoGenericContainer *parent_container' argument; automatically
3109         compute `container->is_method'; pass the correct owner to
3110         get_constraints().      
3111
3112         * reflection.c (compare_genericparam): Sort the GenericParam table
3113         according to increasing owners. 
3114
3115 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
3116
3117         * profiler.c: allow disabling the default profiler.
3118
3119 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
3120
3121         * decimal.c, icall.c: allow disabling System.Decimal support.
3122
3123 2004-12-09  Marek Safar <marek.safar@seznam.cz>
3124
3125         * reflection.c: Add support for null attribute arguments.
3126
3127 2004-12-09  Martin Baulig  <martin@ximian.com>
3128
3129         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
3130         names to get rid of compiler warnings.
3131
3132 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
3133
3134         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
3135         mono_marshal_load_type_info (). Fixes #69625.
3136         (mono_marshal_get_ptr_to_struct): Likewise.
3137
3138 2004-12-08  Martin Baulig  <martin@ximian.com>
3139
3140         * mono-debug.h: Bumped version number to 47.
3141
3142         * mono-debug-debugger.c
3143         (mono_debugger_event_handler, mono_debugger_event): Take two
3144         guint64 arguments insteed of a gpointer and a guint32.  
3145
3146 2004-12-08  Martin Baulig  <martin@ximian.com>
3147
3148         * debug-mono-symfile.h
3149         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
3150         `address' to `native_offset'.
3151
3152 2004-12-08  Martin Baulig  <martin@ximian.com>
3153
3154         * class.c (mono_class_create_from_typespec): Only inflate if we
3155         either have `context->gclass' or `context->gmethod'.
3156
3157 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
3158
3159         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
3160
3161         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
3162
3163         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
3164
3165         * reflection.c (mono_assembly_get_object): Remove the workaround put
3166         in for the release.
3167         
3168         * appdomain.c: Use the corlib_internal field from MonoAssembly.
3169
3170         * appdomain.c: Bump corlib version.
3171
3172         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
3173         be visible in other appdomains.
3174
3175 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
3176
3177         * threads.c: Interlocked inc and dec for longs were messed up,
3178         use a KISS based impl for this. Fixes 70234
3179
3180 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
3181
3182         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
3183
3184 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3185
3186         * icall.c: fix to follow policy not to allow struct
3187         arguments in icalls.
3188
3189 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3190
3191         * process.c: make the patch that handles spaces in file paths work
3192         on mono/windows too.
3193
3194 2004-12-06  Martin Baulig  <martin@ximian.com>
3195
3196         * class.c (mono_class_create_generic): Call
3197         mono_class_setup_supertypes() if we're dynamic.
3198         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
3199
3200 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
3201
3202         * object-internals.h: Add new fields to MonoThread.
3203
3204         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3205
3206         * icall.c threads-types.h threads.c: Add new icalls.
3207
3208         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
3209
3210         * object-internals.h (MonoReflectionAssembly): Sync object layout with
3211         managed side.
3212
3213         * appdomain.c: Bump corlib version.
3214
3215         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
3216         internal assemblies. Fixes #69181.
3217
3218 2004-12-05  Martin Baulig  <martin@ximian.com>
3219
3220         * class.c (mono_class_inflate_generic_signature): Make this a
3221         no-op if `context' is NULL or we don't have any type parameters;
3222         also copy `sentinelpos'.        
3223
3224 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
3225
3226         * image.c: Add unbox_wrapper_cache.
3227
3228         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
3229
3230         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
3231         function generator.
3232         
3233         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
3234         Fixes #70173.
3235
3236         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
3237         
3238 2004-12-04  Martin Baulig  <martin@ximian.com>
3239
3240         * loader.c (mono_method_get_signature_full): New public function;
3241         like mono_method_get_signature(), but with an additional
3242         `MonoGenericContext *' argument.
3243
3244         * class.c (mono_class_inflate_generic_signature): Formerly known
3245         as inflate_generic_signature(); make this public.
3246
3247 2004-12-04  Martin Baulig  <martin@ximian.com>
3248
3249         * metadata.c
3250         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
3251         instead of a `MonoGenericContainer *'.  
3252         (mono_metadata_parse_array_full): Likewise.
3253         (mono_metadata_parse_signature_full): Likewise.
3254         (mono_metadata_parse_method_signature_full): Likewise.
3255         (mono_metadata_parse_generic_inst): Likewise.
3256         (mono_metadata_parse_generic_param): Likewise.
3257         (mono_metadata_parse_mh_full): Likewise.
3258         (mono_type_create_from_typespec_full): Likewise.
3259
3260 2004-12-03  Martin Baulig  <martin@ximian.com>
3261
3262         * class-internals.h (MonoGenericContainer): Replaced the
3263         `MonoGenericContext * pointer with a `MonoGenericContext'
3264         structure and made it the first element.
3265
3266 2004-12-03  Martin Baulig  <martin@ximian.com>
3267
3268         * class.c
3269         (inflate_generic_type): Set the `context->container' when creating
3270         a new MonoGenericContext.
3271         (mono_class_inflate_generic_method): Likewise.
3272         (mono_class_create_from_typespec): Just use `context->container'
3273         to get the container.
3274
3275         * loader.c (method_from_methodspec): Set `context->parent' from
3276         `context->container' - and if that's a method container, use its
3277         parent.  Also set the `context->container' when creating a new
3278         MonoGenericContext.
3279         (mono_get_method_from_token): Use just `context->container' to get
3280         the container.
3281
3282         * metadata.c (do_mono_metadata_parse_generic_class): Also set
3283         `gclass->context->container'.
3284
3285         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
3286         the `context->container' when creating a new MonoGenericContext.
3287
3288 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
3289
3290         * reflection.c (compare_genericparam): Sort params with identical
3291         owner by their number. Fixes gen-111 on sparc.
3292
3293 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
3294
3295         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
3296         around the domain changes.
3297
3298         * appdomain.c (mono_domain_unload): Handle the case when the thread
3299         calling Unload is itself being aborted during unloading. Fixes #70022.
3300
3301         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
3302
3303         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
3304         checkpoint_func as an icall so it gets a wrapper.
3305         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
3306         in the cross-appdomain wrappers too.
3307
3308         * threads.c (mono_thread_has_appdomain_ref): Make this public.
3309
3310         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
3311
3312         * reflection.c: Fix some memory leaks.
3313         
3314 2004-12-02  Martin Baulig  <martin@ximian.com>
3315
3316         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
3317
3318         * metadata.c (generic_class_cache): New static hashtable.
3319         (mono_metadata_lookup_generic_class): New public method.
3320
3321 2004-12-02  Martin Baulig  <martin@ximian.com>
3322
3323         * class.c (mono_class_create_from_typedef): Call
3324         mono_class_setup_parent() and mono_class_create_mono_type() before
3325         parsing the interfaces.
3326
3327 2004-12-02  Martin Baulig  <martin@ximian.com>
3328
3329         * metadata.c (generic_inst_cache): New static hashtable.
3330         (mono_metadata_lookup_generic_inst): New public function.
3331         (mono_metadata_inflate_generic_inst): New public function.
3332         (mono_metadata_parse_generic_inst): New public function.
3333         (do_mono_metadata_parse_generic_class): Use the new
3334         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
3335         since this'll also use the cache.
3336
3337         * reflection.c (mono_reflection_bind_generic_method_parameters):
3338         Use mono_metadata_lookup_generic_inst() to use the new cache.
3339
3340         * class.c (inflate_mono_type): Use
3341         mono_metadata_inflate_generic_inst() to inflate a generic
3342         instance; this'll also use the new cache.
3343
3344         * loader.c (method_from_methodspec): Use
3345         mono_metadata_parse_generic_inst() and
3346         mono_metadata_inflate_generic_inst() rather than parsing it
3347         manually, so we can use the new cache.
3348
3349 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
3350
3351         * threads.c (wait_for_tids): Do not incorrectly free threads when 
3352         the wait times out.
3353
3354 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
3355
3356         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
3357         iter->args based on whether parameters are passed in registers (i.e.
3358         MONO_ARCH_REGPARMS is defined)
3359
3360 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
3361
3362         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
3363         the exception message. Fixes #70070.
3364         (method_from_methodspec): Fix warnings.
3365
3366 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3367
3368         * process.c: (complete_path) return the path quoted
3369
3370 2004-12-01  Martin Baulig  <martin@ximian.com>
3371
3372         * class-internals.h (MonoGenericInst): New structure.
3373         (MonoGenericClass): Replaced `type_argc', `type_argv' and
3374         `is_open' with `MonoGenericInst *inst'.
3375         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
3376         `is_open' with `MonoGenericInst *inst'.
3377
3378 2004-11-30  Martin Baulig  <martin@ximian.com>
3379
3380         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
3381
3382         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
3383         to `generic_class_cache'.
3384
3385         * metadata.c
3386         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
3387         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
3388         (mono_generic_inst_is_valuetype): Renamed to
3389         mono_generic_class_is_valuetype().
3390
3391         * class-internals.h
3392         (MonoGenericInst): Renamed to MonoGenericClass.
3393         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
3394         (MonoClass): Renamed `generic_inst' to `generic_class'.
3395         (MonoGenericContext): Renamed `ginst' to `gclass'.
3396
3397         * object-internals.h
3398         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
3399
3400         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
3401         mono_reflection_generic_class_initialize().
3402
3403         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
3404         now known as "System.Reflection.MonoGenericClass".
3405         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
3406
3407 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
3408
3409         * class-internals.h: Added a flag field to MonoClass to cache the
3410         declarative security attributes actions associated with the class.
3411         * domain-internals.h: Added booleans to MonoJitInfo to cache the
3412         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
3413         applicable to the JITted method.
3414         * reflection.c|h: Added functions to extract (as flags) which security
3415         actions are available (declaratively) for a method, class or assembly.
3416         * metadata.c|h: Added functions to search the declarative security
3417         table in the metadata.
3418         
3419 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
3420
3421         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
3422         EXPORTEDTYPES are already in the class name cache, so there is no
3423         need to add extra code here to look at them. Just removes a bit of
3424         cruft.
3425
3426         (ves_icall_System_Environment_get_TickCount): No need for #if
3427         WINDOWS. We already have the code in io-layer.
3428
3429 2004-11-28  Martin Baulig  <martin@ximian.com>
3430
3431         * loader.c
3432         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
3433         Fixes gen-112.cs.
3434
3435 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
3436
3437         * assembly.c (do_mono_assembly_open): Instead of having a
3438         conditional WITH_BUNDLE, incorporate support for bundles here, by
3439         having a global `bundles' variable holding a pointer to the actual
3440         bundles. 
3441
3442         (mono_register_bundled_assemblies): New API call used by the
3443         bundle code. 
3444
3445         See mkbundle.1 for details.
3446         
3447 2004-11-27  Martin Baulig  <martin@ximian.com>
3448
3449         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
3450         the vtable for generic methods.
3451
3452 2004-11-26  Martin Baulig  <martin@ximian.com>
3453
3454         * metadata.c
3455         (mono_metadata_generic_method_hash): New public function.
3456         (mono_metadata_generic_method_equal): Likewise.
3457
3458         * class-internals.h
3459         (MonoGenericContainer): Added `GHashTable *method_hash'.
3460
3461         * reflection.c (ReflectionMethodBuilder): Added
3462         `MonoGenericContainer *generic_container'.
3463         (reflection_methodbuilder_to_mono_method): Don't create a new
3464         MonoGenericContainer each time we're called.
3465         (mono_reflection_bind_generic_method_parameters): Use
3466         `container->method_hash' to cache the results so we don't create a
3467         different method if we're called several times with the same
3468         arguments.
3469
3470         * loader.c (method_from_methodspec): Use the new
3471         `container->method_hash' here, too.
3472
3473 2004-11-26  Martin Baulig  <martin@ximian.com>
3474
3475         * class.c (inflate_generic_signature): Correctly compute
3476         `res->has_type_parameters'.
3477         (mono_class_vtable): Use the `has_type_parameters' flag to
3478         determine whether we're a generic method.
3479
3480         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
3481
3482 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
3483
3484         * object.c (mono_runtime_run_main): Fix a small memory leak.
3485
3486 2004-11-25  Martin Baulig  <martin@ximian.com>
3487
3488         * class.c (set_generic_param_owner): Fixed the loop.
3489
3490 2004-11-25  Martin Baulig  <martin@ximian.com>
3491
3492         * object.c (mono_class_vtable): Don't create any JIT wrappers for
3493         generic methods.
3494
3495 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
3496
3497         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
3498         names. Fixes #69787.
3499
3500 2004-11-24  Martin Baulig  <martin@ximian.com>
3501
3502         * class.c (mono_class_create_generic_2): If we don't have a
3503         `ginst->parent', inflate `gklass->parent' to get our parent.
3504
3505 2004-11-24  Martin Baulig  <martin@ximian.com>
3506
3507         * reflection.c (compare_genericparam): Correctly sort the
3508         GenericParam table; fixes #69779.
3509
3510 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
3511
3512         * reflection.c: When writing a PE file, don't create a huge
3513         buffer in memory. Just write the arrays we have to the file.
3514         This reduces memory usage.
3515
3516         * metadata-internals.h: MonoDynamicStream pefile is no longer used
3517         globally.
3518
3519 2004-11-17  Martin Baulig  <martin@ximian.com>
3520
3521         * class.c (mono_class_init): Don't setup `class->parent' for
3522         dynamic instances; moved this to mono_class_generic_2().
3523         (mono_class_create_generic): Also set `klass->inited' for dynamic
3524         generic instances.
3525         (mono_class_create_generic_2): Don't do anything for dynamic
3526         generic instances.  Set `klass->parent' here and also call
3527         mono_class_setup_parent() here. 
3528
3529         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
3530         `MonoType *parent' argument; set `ginst->parent' before calling
3531         mono_class_create_generic_2(), so we set the correct parent.
3532
3533 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
3534
3535         * reflection.c: allow getting attributes from ModuleBuilder
3536         (used by ikvm).
3537
3538 2004-11-17  Martin Baulig  <martin@ximian.com>
3539
3540         * class.c (mono_class_create_from_typedef): If a type parameter is
3541         inherited from an outer class, set its owner to that class.
3542
3543 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
3544
3545         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
3546           for (int*) written size. This fixes bug #69592.
3547
3548 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
3549
3550         * icall.c: Added IsAuthenticodePresnet internal call.
3551         * image.c|h: New function that check a MonoImage for an Authenticode
3552         signature in the certificate PE data directory.
3553         * security.c|h: New internal call to ask the runtime if an 
3554         Authenticode signature seems referenced in the PE header.
3555
3556 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
3557
3558         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
3559
3560         * reflection.c (mono_image_create_pefile): Free the assembly streams
3561         after writing out the assembly file.
3562
3563         * object.c (mono_runtime_run_main): Fix small memory leak.
3564
3565         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
3566         property access modifiers. Fixes #69389.
3567
3568 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
3569
3570         * domain.c, object.c, object-internals.h, domain-internals.h,
3571         object.h, marshal.c: keep dynamic code info per domain.
3572
3573 2004-11-15  Martin Baulig  <martin@ximian.com>
3574
3575         * class.c (mono_type_get_name_recurse): Put type arguments in
3576         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
3577         see bug #68387.
3578
3579 2004-11-15  Martin Baulig  <martin@ximian.com>
3580
3581         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
3582         (mono_class_setup_vtable): When computing `the_cname' for a
3583         generic instance, don't include the namespace since we'd otherwise
3584         add it twice.
3585
3586 2004-11-15  Martin Baulig  <martin@ximian.com>
3587
3588         * class.c (mono_class_create_generic): Changed return type to void.
3589         (mono_class_create_generic_2): New public function; setup
3590         `class->method', `class->field' and `class->interfaces' here
3591         instead of in mono_class_init().
3592
3593         * class.h (mono_class_create_generic): Moved to class-internals.h.
3594
3595 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
3596
3597         * reflection.c (mono_image_create_pefile): take a file HANDLE.
3598         rather than writing to memory, write to this file. Right now,
3599         we are just writting into a buffer, and copying that. However
3600         we can avoid the buffer later.
3601
3602         (mono_dynamic_stream_reset): new function
3603
3604         * icall.c, object-internals.h: update for the above.
3605
3606 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
3607
3608         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
3609         have been using gc'd memory. First it is slower, unlikely
3610         the comment in the source code said, secondly, it increases
3611         our footprint to do it in the gc.
3612
3613         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
3614         the method so that it does not have to copy to managed code.
3615
3616 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
3617
3618         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
3619
3620 2004-11-12  Martin Baulig  <martin@localhost>
3621
3622         * reflection.c (mono_image_create_token): Allow generic method
3623         definitions here, since they may appear in an `.override'; see
3624         gen-98/gen-99 for an example.
3625
3626 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
3627
3628         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
3629         #69365.
3630
3631         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
3632         descriptive.
3633
3634 2004-11-11  Martin Baulig  <martin@ximian.com>
3635
3636         * class.c (mono_class_setup_vtable): In an explicit interface
3637         implementation, the method name now includes the arity.
3638
3639 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
3640
3641         * object.c (mono_array_full_copy): Fix warning.
3642
3643 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
3644
3645         * appdomain.c: Removed look_for_method_by_name(). Use the new method
3646         mono_class_get_method_from_name() instead.
3647         
3648         * class-internals.h: Added two new types of wrappers. 
3649         Added MonoRemotingTarget enum. Added new trampoline function type, which
3650         takes an additional MonoRemotingTarget value as parameter, so it is
3651         possible to request a trampoline for a specific target.
3652         
3653         * class.c: Added new mono_class_get_method_from_name() method.
3654         
3655         * class.h: In MonoRemoteClass, we can have now to vtables, one for
3656         general remoting sinks and one specific for cross domain calls.
3657         
3658         * debug-helpers.c: Added new wrapper names.
3659         
3660         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
3661         of a remote class.
3662         
3663         * image.c: Porperly delete value objects form the remoting invoke hashtable.
3664         
3665         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
3666         with several other methods (mono_marshal_get_xappdomain_dispatch,
3667         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
3668         and others) can generate a fast remoting wrapper for cross domain calls.
3669         More information can be found in docs/remoting.
3670         Other changes: Removed mono_find_method_by_name, and used
3671         mono_class_get_method_from_name instead.
3672         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
3673         is stored in the remoting invoke hashtable.
3674         
3675         * marshal.h: published the new method for getting the xdomain wrapper,
3676         and also added a method for getting the adequate wrapper for a given
3677         method and target.
3678         
3679         * object-internals.h, object.c: Added a couple of methods for capying and
3680         cloning arrays.
3681         Modified mono_install_remoting_trampoline, which takes the new remoting
3682         trampoline that has a remoting target as parameter.
3683         mono_class_proxy_vtable now also takes a remoting target as parameter, and
3684         will return the most suitable vtable for the target.
3685         Added mono_remote_class_vtable, which returns the vtable of a remote class
3686         (which can be the normal remoting vtable or the xdomain vtable).
3687         
3688         * threads.c: the xdomain invoke and dispatch wrappers must also be
3689         protected against interruptions.
3690
3691 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3692
3693         * icall.c: use memmove in BlockCopyInternal when the source and
3694         destination arrays are the same.
3695
3696 2004-11-09  Martin Baulig  <martin@ximian.com>
3697
3698         * class-internals.h (MonoGenericContainer): Removed `method' and
3699         `signature', replaced them with `is_method' and `is_signature'
3700         flags.  Added `context'.
3701
3702         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
3703         instead of a `MonoGenericContainer *'.
3704
3705         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
3706         for dynamic type parameters.
3707         (mono_metadata_load_generic_params): Setup `container->context'.
3708
3709         * reflection.c (mono_reflection_setup_generic_class): Setup
3710         `tb->generic_container->context'.
3711         (do_mono_reflection_bind_generic_parameters): Use
3712         mono_class_inflate_generic_type() to correctly inflate types,
3713         rather than using our own hack just for MONO_TYPE_VAR.
3714
3715 2004-11-09  Martin Baulig  <martin@ximian.com>
3716
3717         * class.c (mono_class_inflate_generic_method): Small fix; don't
3718         crash here.
3719
3720         * icall.c
3721         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
3722         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
3723         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
3724         (ves_icall_Type_BindGenericParameters): Likewise.
3725         (ves_icall_Type_get_IsGenericInstance): Likewise.
3726         (ves_icall_Type_GetGenericParameterPosition): Likewise.
3727         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
3728         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3729         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
3730
3731 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
3732
3733         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
3734         assembly versions and public key tokens. Fixes #69113.
3735
3736 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
3737
3738         * metadata.c: fix bug introduced with the type cache changes
3739         on 2004-11-06.
3740
3741 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
3742
3743         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
3744         the MonoClass pointer instead of the token in exception clauses.
3745         * reflection.c: updates for the above and make the code not depend
3746         on the structure of MonoExceptionClause.
3747
3748 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
3749
3750         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3751         Add support for dynamic assemblies. Fixes #69114.
3752
3753         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
3754
3755 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
3756
3757         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
3758         since most only those methods use it. the code member of
3759         MonoMethodPInvoke was dead, so that can be removed too. Also,
3760         remove inline_count (again, not used), and move slot so that it
3761         can share bits with some other flags. This saves 8 bytes in the
3762         structure and gives us about 50 kb back for mcs helloworld.cs
3763
3764         * *.[ch]: Do naming changes for the above.
3765
3766         * loader.c (mono_method_get_header): Lazily init the header
3767         on first access.
3768         (mono_get_method_from_token): don't init the header here
3769         (mono_free_method): the header may never be allocated
3770
3771         Overall, this saves 150 kb of unmanaged allocations
3772         for mcs helloworld.cs. That accounts for 10% of the unmanaged
3773         memory at runtime.
3774         
3775         * loader.c, loader.h (mono_method_get_header): new accessor.
3776
3777         * *.[ch]: use the above method. Prepares us to lazily load
3778         the header.
3779
3780         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
3781         three warnings, which are actual bugs (see 69206).
3782
3783         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
3784         unused. Saves a cool 4 bytes / method.
3785
3786 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
3787
3788         * metadata.c (builtin_types): Add types for System.Object here.
3789         (mono_metadata_parse_type_full): Cache MonoType*'s that are
3790         for a class or valuetype from klass->this_arg or klass->byval_arg.
3791
3792         On mcs for a hello world, this gets us down from 21836 MonoType's
3793         to 14560.
3794
3795         (mono_metadata_free_type): Account for the above change.
3796
3797 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
3798
3799         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
3800         exception instead of asserting if name is null.
3801         (ves_icall_System_AppDomain_GetData): Ditto.
3802
3803 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
3804
3805         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
3806         EnumBuilder.
3807
3808         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
3809         Return NULL when the domain does not have entry_assembly set.
3810
3811         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
3812         Add a 'resource_modules' argument.
3813         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
3814
3815         * reflection.c (mono_reflection_create_runtime_class): Move setting
3816         of wastypebuilder here, so mono_get_type_object () returns a MonoType
3817         for enums too.
3818
3819         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
3820         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
3821         Throw an ArgumentNullException if 'ptr' is null.
3822
3823         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
3824         assemblies here. Fixes #69020.
3825
3826 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
3827
3828         * reflection.c (build_compressed_metadata): Fix the previous patch for
3829         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
3830         the stack.
3831
3832 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
3833
3834         * assembly.c (mono_assembly_names_equal): Allow a match if one of
3835         the cultures is false. Fixes #69090.
3836
3837         * reflection.c (build_compressed_metadata): Fix invalid memory read 
3838         detected by valgrind.
3839         
3840         * reflection.c (mono_reflection_get_type): Avoid triggering a 
3841         TypeResolve multiple times for the same type. Fixes #65577.
3842
3843 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
3844
3845         * marshal.c: Avoid using ldftn to call managed functions. It is
3846         much slower than just a call.
3847
3848         * reflection.c (mono_module_get_object): free the basename we
3849         allocate here from glib.
3850         
3851         * reflection.c (ensure_runtime_vtable): make sure to free
3852         overrides.  Also, we were allocating an array of MonoMethod not an
3853         array of MonoMethod*.
3854
3855         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
3856
3857         * image.c (mono_image_close): free image->guid here.
3858
3859 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
3860
3861         * reflection.c: Fix some spec conformance issues with the PE file
3862         structures so mcs compiled apps run on the Net 2.0 beta.
3863
3864 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
3865
3866         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
3867         Implement this. Fixes #67264.
3868
3869         * debug-helpers.h debug-helpers.c marshal.c: Move 
3870         mono_find_method_by_name to debug-helpers.c.
3871
3872 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
3873
3874         * object.c (mono_release_type_locks): type_initialization_hash is
3875         a GHashTable.
3876
3877         * reflection.c object.c object-internals.h: Fix warnings.
3878
3879         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
3880         without accessors. Fixes #61561.
3881
3882         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
3883         application base from the root domain if not set. Fixes #65641.
3884         (mono_runtime_init): Fix warning.
3885
3886 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3887
3888         * appdomain.c: call mono_thread_pool_init.
3889         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
3890         of worker threads based on the number of CPUs and the environment
3891         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
3892         for non-windows (windows) systems.
3893
3894 2004-10-27  Chris Toshok  <toshok@ximian.com>
3895
3896         * mono-debug-debugger.c (write_class): don't call mono_class_init
3897         here, as even with the check for (!klass->init_pending), we get
3898         into a situation where we're hitting cycles in class
3899         initialization.  Fixes #68816.
3900
3901 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
3902
3903         * image.c: Avoid overwriting values in the loaded_images_hash when an
3904         assembly is loaded multiple times. Fixes #61152.
3905
3906         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
3907         so multiple satellite assemblies for the same name can be loaded.
3908         Fixes #68259.
3909
3910         * mono_domain_assembly_preload: Actually return the loaded assembly, 
3911         not NULL.
3912
3913         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
3914         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
3915
3916         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
3917         pending finalizers are not invoked after the appdomain has been 
3918         unloaded. Fixes #67862.
3919
3920 2004-10-22  Martin Baulig  <martin@ximian.com>
3921
3922         * mono-debug-debugger.c
3923         (mono_debugger_runtime_invoke): Don't box valuetypes.
3924
3925 2004-10-22  Chris Toshok  <toshok@ximian.com>
3926
3927         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
3928         don't hide private methods.
3929
3930 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
3931
3932         * icall.c: Allows the runtime to "share" (when known) the public key
3933         token of an assembly. This avoid the need to recalculate the token 
3934         (from the public key) in managed code.
3935
3936 2004-10-21  Chris Toshok  <toshok@ximian.com>
3937
3938         * debug-helpers.c (append_class_name): argh, revert last patch.
3939         
3940 2004-10-21  Chris Toshok  <toshok@ximian.com>
3941
3942         * debug-helpers.c (append_class_name): use '+' as the delimiter,
3943         not '/', so that it matches what the debugger uses to look up
3944         methods.
3945
3946 2004-10-21  Martin Baulig  <martin@ximian.com>
3947
3948         * mono-debug-debugger.c (mono_debugger_throw_exception): New
3949         public method; this is called each time an exception is thrown and
3950         allows the debugger to use exception catch points.
3951
3952 2004-10-21  Martin Baulig  <martin@ximian.com>
3953
3954         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
3955         the stack pointer and the exception object in some struct and pass
3956         that to the debugger.
3957
3958 2004-10-21  Chris Toshok  <toshok@ximian.com>
3959
3960         * mono-debug-debugger.c (do_write_class): add instance/static
3961         event support.  We don't expose "raise" or "other" yet.
3962         (event_is_static): new method.
3963
3964 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
3965
3966         * mono-debug-debugger.c
3967         (mono_debugger_handle_exception): Remove
3968         bogus return value for fussy compilers.
3969
3970 2004-10-20  Martin Baulig  <martin@ximian.com>
3971
3972         * mono-debug-debugger.c
3973         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
3974         (mono_debugger_handled_exception): Likewise.
3975
3976 2004-10-20  Martin Baulig  <martin@ximian.com>
3977
3978         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3979         MONO_DEBUGGER_EVENT_EXCEPTION.
3980
3981         * mono-debug-debugger.c (mono_debugger_handle_exception): New
3982         public function to send the debugger a notification for an
3983         exception and inform it about a catch/finally clause.
3984
3985 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
3986
3987         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
3988         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
3989         fix 2.95 build. 
3990
3991         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
3992
3993 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
3994
3995         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
3996         marshalled as [In,Out]. Fixes #58325.
3997
3998 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
3999
4000         * reflection.c (mono_method_body_get_object): Implement some fields.
4001
4002 2004-10-12  Martin Baulig  <martin@ximian.com>
4003
4004         * reflection.c (mono_reflection_bind_generic_parameters): Small
4005         fix, correctly retrieve our parent from a generic instance.
4006
4007 2004-10-12  Martin Baulig  <martin@ximian.com>
4008
4009         * metadata.c (mono_metadata_generic_param_equal): We always have
4010         an owner.
4011
4012         * class.c
4013         (mono_class_from_generic_parameter): We need to have an owner.
4014         (my_mono_class_from_generic_parameter): Likewise.
4015
4016         * reflection.c (mono_reflection_setup_generic_class): Renamed to
4017         mono_reflection_create_generic_class() and added a new
4018         mono_reflection_setup_generic_class().  
4019         (mono_reflection_initialize_generic_param): If we're a nested
4020         generic type and inherited from the containing class, set our
4021         owner to the outer class.
4022
4023 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
4024
4025         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
4026
4027         * reflection.c (mono_method_body_get_object): New function to create
4028         a MethodBody object.
4029
4030         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
4031
4032 2004-10-11  Martin Baulig  <martin@ximian.com>
4033
4034         * metadata.c (_mono_metadata_type_equal): Renamed to
4035         do_mono_metadata_type_equal() and made static.
4036
4037 2004-10-11  Martin Baulig  <martin@ximian.com>
4038
4039         * appdomain.c: Bump corlib version number to 28.
4040
4041 2004-10-10  Martin Baulig  <martin@ximian.com>
4042
4043         * class-internals.h
4044         (MonoGenericInst): Added `MonoGenericContainer *container'.
4045         (MonoGenericMethod): Likewise.
4046         (MonoGenericContext): Likewise.
4047         (MonoGenericParam): Added `MonoGenericContainer *owner'.
4048
4049         * metadata.c
4050         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
4051         (do_mono_metadata_parse_generic_inst): Likewise.
4052         (mono_metadata_parse_type_full): New public method.  This is the actual
4053         mono_metadata_parse_type() implementation - with an additional
4054         `MonoGenericContainer *' argument.
4055         (mono_metadata_parse_array_full): Likewise.
4056         (mono_metadata_parse_signature_full): Likewise.
4057         (mono_metadata_parse_method_signature_full): Likewise.
4058         (mono_metadata_parse_mh_full): Likewise.
4059         (mono_type_create_from_typespec): Likewise.
4060         (mono_metadata_interfaces_from_typedef_full): New public method;
4061         this is similar to the other _full() methods, but we take a
4062         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
4063         (mono_metadata_parse_generic_param): Take an additional
4064         `MonoGenericContainer *' argument and lookup the MonoGenericParam
4065         from that container.
4066         (mono_metadata_generic_param_equal): New static method to compare
4067         two type parameters.
4068         (_mono_metadata_type_equal): New static method; takes an
4069         additional `gboolean signature_only' argument - if true, we don't
4070         compare the owners of generic parameters.
4071         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
4072         with a TRUE argument - do a signature-only comparision.
4073
4074         * loader.c: Use the new _full() methods and pass the
4075         MonoGenericContainer to them.
4076
4077         * object-internals.h (MonoReflectionTypeBuilder): Added
4078         `MonoGenericContainer *generic_container' field.
4079         (MonoReflectionMethodBuilder): Likewise.
4080
4081 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
4082
4083         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
4084         case initial images of dynamic assemblies.
4085
4086         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
4087
4088         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
4089
4090         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
4091         length of event->other array.
4092         (typebuilder_setup_events): Ditto.
4093
4094         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
4095         'assembly_by_name' and add an 'assemblies' list.
4096
4097         * assembly.h assembly.c: Add a new search hook for determining whenever
4098         an assembly is already loaded. Use this instead of searching in the
4099         loaded_assemblies list.
4100
4101         * domain.c appdomain.c: Implement the new search hook so loaded 
4102         assemblies are now scoped by appdomain. Fixes #67727.
4103
4104 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
4105
4106         * threads.c (mono_thread_attach): Initialize synch_lock field so
4107         mono_thread_detach works again.
4108
4109         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
4110         'lib' too. Fixes #63130.
4111
4112 2004-10-06  Jackson Harper  <jackson@ximian.com>
4113
4114         * culture-info-tables.h: regenerated.
4115
4116 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
4117
4118         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
4119         implemented by other interfaces in the result. Fixes #65764.
4120         
4121         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4122         Handle unloadable modules without crashing.
4123
4124         * image.c (load_modules): Revert the previous patch since modules must
4125         have a fixed index inside the array.
4126         
4127         * image.c (load_modules): Don't include native modules in the modules
4128         array.
4129
4130 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
4131
4132         * reflection.h: Add param_defaults field.
4133
4134         * reflection.c: Add support for parameter defaults in dynamic methods.
4135         Fixes #64595.
4136
4137         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
4138         an empty string when a type has no namespace. Fixes #64230.
4139
4140 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
4141
4142         * tabledefs.h: Added "internal" security actions to support non-CAS
4143         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
4144         Note: they do not seems to be used anymore in 2.0 (new metadata format)
4145
4146 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
4147
4148         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
4149         constructor of abstract class. Fixes #61689.
4150
4151 2004-10-04  Martin Baulig  <martin@ximian.com>
4152
4153         * class-internals.h (MonoGenericContainer): New type.
4154         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
4155         `MonoGenericContainer *generic_container'.
4156         (MonoClass): Replaced `gen_params' and `num_gen_params' with
4157         `MonoGenericContainer *generic_container'.
4158
4159         * metadata.c (mono_metadata_load_generic_params): Return a
4160         `MonoGenericContainer *' instead of a `MonoGenericParam *';
4161         removed the `num' argument.
4162
4163 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
4164
4165         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
4166         for dynamic images.
4167
4168         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
4169         machine fields.
4170
4171         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
4172
4173         * reflection.c: Save pe_kind and machine values into the generated
4174         image file.
4175
4176         * appdomain.c: Bump corlib version number.
4177
4178         * object-internals.h: Reorganize layout of LocalBuilder.
4179
4180         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
4181         New helper function.
4182
4183         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
4184         created MonoType for dynamic types. Fixes #66180.
4185
4186 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
4187
4188         * threadpool.c: the ares hashtable needs a critical section around it.
4189         this prevents some nasty segfaults
4190
4191 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
4192
4193         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
4194         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
4195         bug 67324).
4196         
4197 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
4198
4199         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
4200         
4201 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
4202
4203         * image.c: Always canonicalize image file names, to avoid loading
4204         the same assembly twice when referenced using a relative path.
4205
4206 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
4207
4208         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
4209
4210         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
4211
4212         * marshal.c: Fix warnings.
4213
4214 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
4215
4216         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
4217         attempting to marshal the delegate_trampoline as the method_addr.
4218         This patch has a static hashtable of marshalled delegates so that 
4219         we can map delegate_trampoline addresses back to delegates.  This
4220         allows a delegate passed to managed code to be passed back into native
4221         code.  Fixes #67039
4222
4223 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
4224
4225         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
4226
4227         * reflection.c (method_encode_code): Align method headers properly.
4228         Fixes #66025.
4229
4230 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
4231
4232         * marshal.c: In the runtime invoke wrapper, reset the abort
4233         exception if it is cached. This avoids the automatic rethrowal of 
4234         the exception after the catch of the wrapper. Also check for pending
4235         interruptions before calling the managed method. This is done using
4236         the new method emit_thread_force_interrupt_checkpoint, since the
4237         normal checkpoint method is ignored when running the invoke wrapper.
4238         * object.c: If the abort exception is rethrown, set the abort_exc
4239         field of the thread, so it will be rethrown aftere every catch.
4240         * threadpool.c: Only run an interruption checkpoint if what has been
4241         requested is a stop of the thread (aborts will be ignored).
4242         * threads.c: By default, a thread will now never be interrumped while
4243         running the runtime invoke wrapper (this ensures that runtime_invoke
4244         will always return to the caller if an exception pointer is provided).
4245         There is a new special method mono_thread_force_interruption_checkpoint()
4246         to force an interruption checkpoint even if running a protected
4247         wrapper, which is used by the same runtime invoke wrapper to do a check
4248         at a safe point.
4249
4250 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
4251
4252         * object.c, object-internals.h: Implemented mono_release_type_locks,
4253         which releases the cctor locks held by a thread.
4254         * threads.c, threads.h: In thread_cleanup, release cctor locks held
4255         by a thread. Added mono_thread_exit() method to be used to safely stop
4256         a thread.
4257
4258 2004-09-28  Raja R Harinath  <rharinath@novell.com>
4259
4260         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
4261         Move null check before dereference.  Avoid indexing beyond the end
4262         of the 'modules' array.
4263
4264 2004-09-28  Raja R Harinath  <rharinath@novell.com>
4265
4266         * metadata-internals.h (MonoImage): Add module_count field.
4267         * image.c (load_modules): Set image->module_count.
4268         (mono_image_load_file_for_image): Use image->module_count.
4269         * reflection.c (mono_image_load_module): Append to image->modules array 
4270         of dynamic assembly.
4271         (mono_module_get_object): Fix loop to actually increment index.
4272         Use image->module_count.
4273         * assembly.c (mono_assembly_load_references): Use image->module_count.
4274         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
4275         Likewise.
4276
4277 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
4278
4279         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
4280         Avoid assert on generic types.
4281
4282 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
4283
4284         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
4285
4286         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
4287
4288         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
4289         function to convert a MarshalSpec structure to its managed counterpart.
4290
4291         * reflection.c: Fix warnings.
4292         
4293         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
4294         field.
4295
4296         * icall.c (mono_create_icall_signature): Fix build.
4297
4298 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
4299
4300         * icall.c: Add MakePointType icall.
4301
4302         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
4303         warnings.
4304
4305 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4306
4307         * threadpool.c: reuse allocated slots in the queue.
4308
4309 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
4310
4311         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
4312
4313         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
4314
4315         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
4316         previous change.
4317
4318         * tabledefs.h: Add constants for pinvoke attributes BestFit and
4319         ThrowOnUnmappableChar.
4320
4321         * icall.c (ves_icall_Type_GetPacking): New icall.
4322
4323 2004-09-24  Martin Baulig  <martin@ximian.com>
4324
4325         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
4326
4327 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4328
4329         * appdomain.c:
4330         (mono_domain_set): allow setting a domain that is being unloaded.
4331         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
4332         being unloaded.
4333
4334 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4335
4336         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
4337         the GetCustomAttributes icall.
4338
4339 2004-09-23  Martin Baulig  <martin@ximian.com>
4340
4341         * object-internals.h (MonoReflectionGenericParam): Replaced
4342         'has_ctor_constraint', `has_reference_type' and `has_value_type'
4343         with `guint32 attrs'.
4344
4345 2004-09-23  Martin Baulig  <martin@ximian.com>
4346
4347         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
4348
4349 2004-09-23  Martin Baulig  <martin@ximian.com>
4350
4351         * object-internals.h (GenericParameterAttributes): New enum.
4352
4353 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4354
4355         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
4356         
4357         * class.c (init_events): Fill out event->other field.
4358
4359         * class.c: Fix warnings.
4360
4361         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
4362
4363 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
4364
4365         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
4366         walk which doesn't supply the IL offset.
4367
4368 2004-09-22  Martin Baulig  <martin@ximian.com>
4369
4370         * reflection.c (mono_reflection_setup_internal_class): If we're
4371         System.ValueType, System.Object or System.Enum, set
4372         `klass->instance_size' and create the vtable.
4373         (mono_reflection_create_internal_class): If we're an enum type,
4374         get the base class from our current corlib.
4375
4376 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
4377
4378         * reflection.h (MonoResolveTokenError): New type.
4379
4380         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
4381         icall.
4382
4383         * icall.c: Add an 'error' argument to the ResolveToken icalls.
4384
4385 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
4386
4387         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
4388         Support also calling constructors, but only for already allocated objects.
4389
4390 2004-09-17  Geoff Norton <gnorton@customerdna.com>
4391
4392         * reflection.c (type_get_qualified_name): If the klass is null
4393         return the typename to avoid a NullRefEx.
4394         (encode_cattr_value): Get the qualified name of the boxed type,
4395         not the underlying enumtype.  Fixes #62984.
4396
4397 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
4398
4399         * marshal.c: Fix problems with previous checkin.
4400
4401 2004-09-21    <vargaz@freemail.hu>
4402
4403         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
4404         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
4405
4406         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
4407
4408 2004-09-21  Geoff Norton <gnorton@customerdna.com>
4409
4410         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
4411         should only return a type for pointers, arrays, and passbyref types.
4412         Fixes bug #63841.
4413
4414 2004-09-21  Martin Baulig  <martin@ximian.com>
4415
4416         * domain.c (mono_debugger_check_runtime_version): New public
4417         function.
4418
4419         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
4420
4421 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
4422
4423         * reflection.c: Added missing sort to the declarative security 
4424         attributes table. MS implementation stops seeing the attributes if the
4425         token number regress in the table (as shown by ildasm and permview).
4426
4427 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
4428
4429         * object-internals.h (MonoReflectionModule): Add 'token' field.
4430         
4431         * reflection.c (mono_reflection_get_token): Add support for Module
4432         and Assembly.
4433         (mono_module_get_object): Set 'token' field.
4434         (mono_module_file_get_object): Set 'token' field.
4435
4436         * icall.c: Add new Assembly and Module icalls.
4437
4438         * appdomain.c: Bump corlib version.
4439
4440 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
4441
4442         * loader.h loader.c class.h class.c: Add helper functions for obtaining
4443         tokens of metadata objects.
4444
4445         * reflection.h reflection.c (mono_reflection_get_token): New function
4446         to obtain the token of a metadata object.
4447
4448         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
4449
4450 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
4451
4452         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
4453         
4454         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
4455
4456 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
4457
4458         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
4459         * object-internals.h: Added 3 MonoArray* members to MonoReflection
4460         AssemblyBuilder to access the permissions set in the class lib.
4461         * reflection.c: Added security attributes encoding step in 
4462         mono_image_build_metadata.
4463         * tabledefs.h: Added new security actions defined in 2.0:
4464         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
4465
4466 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
4467
4468         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
4469         macro parameter.
4470
4471 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
4472  
4473         * locales.c: nullify the ICU_collator member of CompareInfo when it is
4474           finalized. There where random SIGSEVs at program termination, when
4475           an object being finalized was trying to do a string comparison and
4476           the current culture was already finalized.
4477  
4478 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4479
4480         * threads.c: call thread_cleanup before finishing the thread if we get
4481         there.
4482
4483 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
4484
4485         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
4486         assemblies from the parent. Fixes #65665.
4487
4488 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
4489
4490         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
4491         modifiers.
4492
4493 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
4494
4495         * reflection.h: add prototype for mono_get_dbnull_object
4496         * reflection.c: add prototypes for get_default_param_value_blobs 
4497         and mono_get_object_from_blob for fussier compilers
4498
4499 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
4500  
4501         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
4502         false deadlock checks in class initialization.
4503  
4504 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
4505
4506         * image.c (mono_image_addref): Fix comment.
4507
4508         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
4509         possible.
4510
4511 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
4512
4513         * reflection.c (mono_param_get_objects): Modified to return
4514         ParameterInfo.DefaultValue object.
4515
4516         (get_default_param_value_blobs):
4517         (mono_get_object_from_blob):
4518         (mono_get_dbnull_object): New helper routines. 
4519
4520         * object.c (mono_get_constant_value_from_blob): New helper routine
4521         carved out from get_default_field_value ()
4522
4523         * object-internals.h (mono_get_constant_value_from_blob): Added
4524         function declaration.
4525
4526 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
4527
4528         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
4529         referenced assemblies. Fixes #62135.
4530
4531         * exception.h exception.c (mono_get_exception_file_not_found2): New
4532         helper function.
4533
4534 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
4535
4536         * class.h class.c: Add mono_type_get_underlying_type ().
4537
4538 2004-09-09  Geoff Norton <gnorton@customerndna.com>
4539
4540         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
4541         Fix GetTypes() to support dynamically created assemblies.
4542
4543 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
4544
4545         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
4546         
4547         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
4548         previous patch.
4549
4550         * reflection.h reflection.c loader.c: Allow dynamic construction of
4551         pinvoke methods. Fixes #65571.
4552         
4553         * reflection.c (mono_reflection_get_type): Revert previous change since
4554         it causes regressions.
4555
4556 2004-09-08  Martin Baulig  <martin@ximian.com>
4557
4558         * class.c (class_compute_field_layout): Don't call
4559         mono_class_layout_fields() for open generic instances.
4560
4561 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
4562         * threads.c appdomain.c: fix typo in GC macro
4563
4564 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4565
4566         * threads.c: don't call mono_thread_detach() in start_wrapper(),
4567         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
4568
4569 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
4570
4571         * image.c (mono_image_close): Applied patch from 
4572         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
4573         assembly is loaded multiple times from data.
4574         
4575         * image.c (mono_image_open): Fix warning.
4576
4577 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4578
4579         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
4580         once. Fixes #58334.
4581         
4582         * reflection.c (mono_reflection_create_runtime_class): Initialize
4583         klass->nested_classes. Fixes #61224.
4584
4585 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
4586
4587         * threads.c: sched_yield() on exit, to allow threads to quit.
4588
4589 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4590
4591         * object.c (mono_unhandled_exception): Remove leftover debug code.
4592
4593 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
4594
4595         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
4596
4597 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
4598
4599         * marshal.c (emit_marshal_array): Really null terminate string arrays.
4600         
4601         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
4602
4603 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4604
4605         * marshal.c (emit_marshal_array): Null terminate string arrays.
4606         
4607         * marshal.c (raise_auto_layout_exception): Fix warning.
4608
4609         * reflection.c (mono_param_get_objects): Initialize the default value
4610         with DBNull.Value, not null. Fixes #62123.
4611
4612 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
4613
4614         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
4615         throw an exception with a cute explanation.
4616
4617 2004-09-06  Dick Porter  <dick@ximian.com>
4618
4619         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
4620         Close the new process's thread handle, as we don't use it.  The
4621         handle stays around forever otherwise.
4622
4623 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4624
4625         * object.c (arith_overflow): Fix warning.
4626
4627         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
4628         calling conventions in method refs. Fixes #65352.
4629
4630         * reflection.c: Fix warnings.
4631
4632 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4633
4634         * icall.c: Add a new icall for Array.Clear
4635
4636 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4637
4638         * object.c: When allocating an array, we have to throw
4639         an overflow exception if any of the lengths are < 0.
4640
4641 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
4642
4643         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
4644         properly. Also move implementation of string array marshalling to 
4645         managed code. Fixes #42316.
4646
4647 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4648
4649         * assembly.c: provide more information when loading an assembly fails.
4650
4651 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4652
4653         * filewatcher.c: don't expect the development fam package to be
4654         installed.
4655
4656 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
4657
4658         * marshal.c: Make a copy of the signature cookie since it will be
4659         freed by the caller.
4660         
4661         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
4662
4663         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
4664
4665         * metadata.c (mono_metadata_free_marshal_spec): New function to free
4666         marshal specs.
4667
4668         * marshal.c: More refactoring.
4669         
4670         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
4671         smaller functions.
4672
4673 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
4674
4675         * object.c: In mono_message_invoke, fill the output parameter array after
4676           calling the managed method (it was done before the call). This fixes
4677           bug #59299.
4678
4679 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4680
4681         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
4682         as well.
4683
4684 2004-09-02  Martin Baulig  <martin@ximian.com>
4685
4686         * class.c (mono_class_instance_size): Don't allow generic type
4687         definitions or open generic instances.
4688         (mono_class_array_element_size): If we're a value type, call
4689         mono_class_instance_size() on the original class.
4690
4691         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
4692         handle generic instances.
4693
4694         * mono-debug-debugger.c (write_type): Handle generic instances
4695         like classes.
4696
4697 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4698
4699         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
4700         the allocation request fails. Fixes #65089.
4701
4702         * object.c (mono_runtime_free_method): Do not call mono_free_method.
4703         
4704         * object.c (mono_runtime_free_method): New function to free a dynamic
4705         method.
4706
4707         * marshal.c (mono_delegate_free_ftnptr): New function to free the
4708         delegate trampoline.
4709
4710         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
4711         with hasthis as dynamic,
4712
4713         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
4714
4715         * domain.c (mono_jit_info_table_remove): New function to remove an
4716         entry from the jit info table.
4717
4718         * class-internals.h (MonoMethod): Add 'dynamic' field.
4719
4720         * loader.c: Fix warnings.
4721
4722 2004-09-01  Martin Baulig  <martin@ximian.com>
4723
4724         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
4725         instead of mono_debugger_lock() because the latter one is a no-op
4726         unless running in the debugger.
4727
4728 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
4729
4730         * class.c (class_compute_field_layout): Classes with auto-layout or
4731         reference fields are not blittable.
4732         
4733 2004-09-01  Dick Porter  <dick@ximian.com>
4734
4735         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
4736         mono_image_get_filename() to get the assembly location.
4737
4738         * icall.c:
4739         * metadata.h: Fix compile warnings
4740
4741 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
4742
4743         * class.c (class_compute_field_layout): System.Object is blittable.
4744
4745         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
4746         as in/out. Fixes #59909.
4747
4748 2004-09-01  Martin Baulig  <martin@ximian.com>
4749
4750         * metadata.h (MONO_TYPE_ISREFERENCE): Call
4751         mono_metadata_generic_inst_is_valuetype() if we're a generic
4752         instance to check whether our underlying type is a reference type.
4753
4754 2004-09-01  Martin Baulig  <martin@ximian.com>
4755
4756         * metadata.c (mono_type_size): If we're a generic instance, call
4757         mono_class_value_size() for value types.
4758
4759 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
4760
4761         * marshal.c: Implement more custom marshalling functionality. Fixes
4762         #64915.
4763
4764 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
4765
4766         * mono-debug.c, debug-mono-symfile.c: add some locking love.
4767
4768 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
4769
4770         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
4771
4772         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
4773
4774         * icall.c: Fix some warnings.
4775
4776         * threads.c (abort_appdomain_thread): Fix unref errors.
4777         (mono_thread_current): Fix THREAD_DEBUG define.
4778
4779 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
4780
4781         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
4782
4783         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
4784
4785 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
4786
4787         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
4788         string arrays.
4789
4790 2004-08-28  Martin Baulig  <martin@ximian.com>
4791
4792         * metadata.c
4793         (mono_metadata_generic_inst_is_valuetype): New public function.
4794
4795         * metadata.h (MONO_TYPE_ISSTRUCT): Call
4796         mono_metadata_generic_inst_is_valuetype() if we're a generic
4797         instance to check whether our underlying type is a valuetype.
4798
4799 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
4800
4801         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
4802         #63768.
4803
4804 2004-08-25  Martin Baulig  <martin@ximian.com>
4805
4806         * loader.c (mono_get_method_from_token): Abstract methods can also
4807         be generic and thus have type parameters.
4808
4809         * metadata-internals.h
4810         (MonoDynamicImage): Added `GPtrArray *gen_params'.
4811
4812         * reflection.c (mono_image_get_generic_param_info): Don't create a
4813         metadata row, just add an entry to the `gen_params' array.
4814         (build_compressed_metadata): Sort the `gen_params' array and then
4815         actually create the metadata.
4816
4817 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4818
4819         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
4820
4821 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
4822
4823         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
4824
4825 2004-08-24  Martin Baulig  <martin@ximian.com>
4826
4827         * class.cs (mono_class_is_subclass_of): Like an interface, a
4828         generic instance also derives from System.Object.
4829
4830 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
4831
4832         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
4833         custom modifiers to be in any order. Fixes #61990.
4834
4835 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
4836
4837         * object.c: Register mono_object_new_fast icall.
4838         
4839         * object.c (mono_class_get_allocation_ftn): Return to calling
4840         mono_object_new_fast, since it seems faster to compute the object 
4841         size in unmanaged code than passing it as a parameter.
4842
4843         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
4844
4845         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
4846         this function with Boehm as the oom handler, so we don't have to check
4847         the result of GC_malloc.
4848
4849         * object.c: Remove checks for oom.
4850
4851         * object.h object.c (mono_class_get_allocation_ftn): New function to
4852         return the icall which can be used to allocate an instance of a given
4853         class. 
4854
4855         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
4856
4857         * class-internals.h: Add 'enabled' field.
4858
4859 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
4860
4861         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
4862
4863 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
4864         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
4865         value 0x0010.
4866
4867 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
4868
4869         * appdomain.c: use the Tls function for appdomain too,
4870         at Zoltan's request. Actually return in mono_context_get
4871
4872         * appdomain.c, profiler.c, threads.c: use __thread
4873
4874 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
4875
4876         * appdomain.c threads.c: Call GC_CreateThread on windows.
4877
4878         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
4879         multiple libraries since this don't work on windows.
4880
4881 2004-08-18  Martin Baulig  <martin@ximian.com>
4882
4883         * class-internals.h
4884         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
4885         MonoMethodHeader.
4886
4887         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
4888         MonoMethodNormal since we also need it for abstract and interface
4889         methods.
4890
4891         * reflection.c
4892         (build_compressed_metadata): Sort the GenericParam table.
4893         (mono_image_create_token): Added `gboolean create_methodspec'
4894         argument; this is false when generating a MethodImpl token.
4895         (reflection_methodbuilder_to_mono_method): Abstract and interface
4896         methods may also have generic parameters.
4897
4898 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
4899
4900         * appdomain.c: thread local alloc
4901
4902 2004-08-17  Martin Baulig  <martin@ximian.com>
4903
4904         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
4905
4906         * icall.c
4907         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
4908         argument.
4909
4910         * class.c (mono_type_get_full_name): New public function.
4911         (mono_type_get_name): Don't include the type arguments.
4912
4913 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
4914
4915         * Makefile.am: Build static versions of libmetadata and libmonoruntime
4916         for inclusion into the mono executable.
4917
4918 2004-08-16  Martin Baulig  <martin@ximian.com>
4919
4920         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
4921         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
4922
4923 2004-08-14  Martin Baulig  <martin@ximian.com>
4924
4925         * class.c (dup_type): Also copy the `byref' field.
4926
4927 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
4928
4929         * reflection.c (create_dynamic_mono_image): Revert the last change 
4930         since it breaks bootstrap.
4931
4932 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
4933
4934         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
4935
4936         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
4937         not free them with g_free.
4938
4939 2004-08-11  Martin Baulig  <martin@ximian.com>
4940
4941         * reflection.c (mono_reflection_setup_internal_class): Also call
4942         mono_class_setup_mono_type() if we already have a `tb->type.type'.
4943
4944 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
4945
4946         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
4947         called during default (first) AppDomain creation. Keep track of
4948         Evidence when loading assemblies.
4949
4950 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
4951
4952         * opcodes.c, opcodes.h: reduce runtime relocations.
4953
4954 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
4955
4956         * culture-info.h, locales.c: fixes and chages to sue the new
4957         optimized format of the locale data.
4958         * culture-info-tables.h: regenerated.
4959
4960 2004-08-06  Geoff Norton <gnorton@customerdna.com>
4961         
4962         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
4963
4964 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
4965
4966         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
4967         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
4968         * domain-internals.h: icall declaration.
4969         * icall.c: icall registration.
4970         * object-internals.h: New fields in MonoAssembly for CAS.
4971
4972 2004-08-05  Duncan Mak  <duncan@ximian.com>
4973
4974         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
4975         CEE_LDELEM_ANY.
4976
4977 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
4978
4979         * reflection.c: fix to deal with object[] arrays in custom ctors
4980         (bug #62550).
4981
4982 2004-08-05  Martin Baulig  <martin@ximian.com>
4983
4984         * class.c (mono_class_array_element_size): Added support for
4985         generic instances and correctly handle "recursive" types.
4986
4987 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
4988
4989         * assembly.c: Fix warnings.
4990
4991 2004-08-04  Martin Baulig  <martin@ximian.com>
4992
4993         * class.c
4994         (mono_type_get_name_recurse): Added `gboolean include_arity'
4995         argument specifying whether or not we should include the generic
4996         arity in the type name.
4997         (_mono_type_get_name): New static function.
4998         (mono_class_setup_vtable): If we're a generic instance, don't
4999         include the generic arity in the names of explicit method
5000         implementations.        
5001
5002 2004-08-03  Martin Baulig  <martin@ximian.com>
5003
5004         * class.c (mono_type_get_name_recurse): Enclose the generic type
5005         arguments in `<', '>'.
5006
5007 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5008
5009         * gc.c: make GC warning messages use the trace API, they are just
5010         noise to most of the users.
5011
5012 2004-08-03  Martin Baulig  <martin@ximian.com>
5013
5014         * debug-mono-symfile.c (read_string): Correctly read the string.
5015
5016 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
5017
5018         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
5019         
5020         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
5021         icalls.
5022         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
5023
5024 2004-07-30  Martin Baulig  <martin@ximian.com>
5025
5026         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
5027         Reflect latest symbol writer changes.   
5028
5029 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
5030
5031         * object.c: always create an object if null is passed
5032         to Invoke() where a valuetype is expected.
5033
5034 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
5035
5036         * marshal.c (mono_marshal_init): make managed
5037         signatures match native ones better for 64bits.
5038
5039 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5040
5041         * appdomain.c: hack to build correctly the private bin path on windows.
5042         Fixes bug #61991.
5043
5044 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
5045
5046         * assembly.c: Load mscorlib from the correct framework directory
5047           (mono/<version>/mscorlib.dll).
5048         * appdomain.h: Added prototypes for new functions.
5049         * internals.h: Added some prototypes.
5050         * domain.c: When initializing the runtime, get from the executable and
5051           the configuration files the runtime version that the app supports.
5052           Added support methods for reading app.exe.config. Added list of versions
5053           supported by the JIT. Added two new methods: mono_init_from_assembly,
5054           which initializes the runtime and determines the required version from
5055           the provided exe file, and mono_init_version, which initializes
5056           the runtime using the provided version.
5057         * icall.c: Get machine.config from version-specific directory.
5058         * reflection.c: When generating an image, embed the version number
5059           of the current runtime.
5060
5061 2004-07-28  Dick Porter  <dick@ximian.com>
5062
5063         * socket-io.c
5064         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
5065         returned sockaddr size before creating the remote address object.
5066         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
5067         61608.
5068
5069 2004-07-28  Dick Porter  <dick@ximian.com>
5070
5071         * locales.c (string_invariant_compare_char): Fix invariant char
5072         compares between upper and lower cases.  Fixes bug 61458.
5073
5074 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
5075         
5076         * marshal.c: actually cache stelem.ref wrappers.
5077         
5078 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
5079
5080         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
5081         sections and remove the mono_cli_rva_map () function.
5082
5083 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
5084
5085         * debug-mono-symfile.c: fix one more endianess issue, from a patch
5086         by Geoff Norton (<gnorton@customerdna.com>).
5087
5088 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5089
5090         * class.c: fix class loads for pointer types (typeof(int) !=
5091         typeof(int*)).
5092
5093 2004-07-27  Martin Baulig  <martin@ximian.com>
5094
5095         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
5096         reading the debugging information from an external ".mdb" file.
5097
5098 2004-07-24  Martin Baulig  <martin@ximian.com>
5099
5100         * reflection.c (mono_image_get_type_info): Only write a class
5101         layout entry if we actually have a size or a packing size.
5102
5103 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
5104
5105         * reflection.c (type_get_fully_qualified_name): 
5106         insert cast to get type checking of ?: with non-gcc compilers
5107
5108 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
5109
5110         * rand.c: use g_getenv for both lookups of
5111         MONO_EGD_SOCKET
5112
5113 2004-07-17  Martin Baulig  <martin@ximian.com>
5114
5115         * reflection.c (mono_reflection_bind_generic_method_parameters):
5116         Set `gmethod->reflection_info'.
5117
5118 2004-07-17  Martin Baulig  <martin@ximian.com>
5119
5120         * class.c (mono_class_create_from_typedef): Insert the newly
5121         created class into the hash table before computing the interfaces
5122         since we could be called recursively.
5123
5124 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
5125
5126         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
5127         function to implement stelem.ref in managed code
5128         * class-internals.h, debug-helpers.c: a new wrapper type
5129         for the above.
5130
5131 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
5132
5133         * gc.c: allow GC handles to work even when no GC is compiled in.
5134         Fix part of bug #61134 (GetAddrOfPinnedObject).
5135
5136 2004-07-13  Peter Williams  <peter@newton.cx>
5137  
5138         * process.c (complete_path): Make sure we don't attempt to execute
5139         directories.
5140  
5141 2004-07-12  Geoff Norton <gnorton@customerdna.com>
5142
5143         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
5144           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
5145           and will add/subtract the hour if needed
5146
5147 2004-07-12  Martin Baulig  <martin@ximian.com>
5148
5149         * reflection.c (mono_field_get_object): If we have
5150         `field->generic_info', take the attributes from
5151         `field->generic_info->generic_type'.    
5152
5153 2004-07-12  Martin Baulig  <martin@ximian.com>
5154
5155         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
5156         This function must be called before initializing the runtime.
5157         (mono_debug_init_1): New function; call this after initializing
5158         the runtime, but before loading the assembly.  It tells the
5159         debugger to load corlib and the builtin types.
5160
5161         * mono-debug-debugger.c: Did some larger changes in the debugging
5162         code; support recursive class declarations, make sure we actually
5163         add all classes.
5164
5165 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5166
5167         * debug-helpers.c: undo my previous patch and fixed the real issue in
5168         ../mini/exceptions-x86.c
5169
5170 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5171
5172         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
5173         when no HOME env. variable was set and a NullRef was thrown in a .cctor
5174         called from other .cctors.
5175
5176 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
5177
5178         * loader.c: Removed the mono_loader_wine_init hack now that we are
5179         doing a managed version of Windows.Forms.
5180
5181 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
5182
5183         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
5184         threadpool.c, threads.c: remove static data from rootset.
5185
5186 2004-07-09  Dick Porter  <dick@ximian.com>
5187
5188         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
5189         Don't do any more processing if the matched length was 0.  It was
5190         increasing the size of the string before.  Fixes bug 61167.
5191
5192 2004-07-09  Dick Porter  <dick@ximian.com>
5193
5194         * socket-io.h:
5195         * socket-io.c
5196         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5197         Add support for SO_PEERCRED if its available.
5198
5199 2004-07-09  Peter Bartok <pbartok@novell.com>
5200         * loader.c: winelib.exe.so error message is now only displayed if
5201         MONO_DEBUG is set. To help us avoid questions when people are trying
5202         out the new Managed.Windows.Forms.
5203
5204 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
5205
5206         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
5207         for isinst and castclass wrappers.
5208
5209         * class-internals.h icall.c: Move registration and lookup of JIT icalls
5210         to libmetadata from the JIT, so they could be used by the marshalling
5211         code and the interpreter.
5212
5213         * marshal.c: Register marshalling related JIT icalls here instead of
5214         in mini.c. Use CEE_MONO_ICALL instead of the family of 
5215         CEE_MONO_PROC<x> opcodes to call marshalling functions.
5216
5217         * metadata.h: Remove unneeded marshalling conversions.
5218
5219         * opcodes.c: Update for new opcodes.
5220         
5221 2004-07-08  Martin Baulig  <martin@ximian.com>
5222
5223         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
5224         (mono_debug_get_domain_data): Make this function static.
5225
5226 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
5227
5228         * gc.c, object.h: add nice GC handle API for embedders.
5229
5230 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
5231
5232         * reflection.c: more changes for the new api
5233
5234         * object.c: When we reflect on a field w/ a constant value, it
5235         will not have a memory location, so we must access metadata. Also,
5236         allow easier reading of strings so that we can read them from
5237         the constant data.
5238
5239         * class.c (mono_class_layout_fields): no need for literal fields here.
5240
5241         * class-internals.h: api changes for const fields
5242
5243         * icall.c (ves_icall_get_enum_info): use new apis for const fields
5244
5245 2004-07-06  Martin Baulig  <martin@ximian.com>
5246
5247         * mono-debug.h: Increment version number to 44.
5248
5249         * mono-debug.c (mono_debug_add_wrapper): The second argument is
5250         now a gpointer, rewrote this whole method.
5251
5252         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
5253         function.  Add information about the wrapper in a new "misc table".
5254
5255         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
5256         for the new misc table.
5257
5258 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
5259
5260         * metadata-internals.h image.c: Add a cache for helper signatures.
5261
5262         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
5263
5264 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
5265
5266         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
5267         delegates from a delegate. Fixes #61033.
5268         
5269         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
5270         marshalling of stringbuilder arrays. Fixes #59900.
5271
5272 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
5273
5274         * icall.c: Add EnumBuilder:setup_enum_type icall.
5275
5276 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
5277
5278         * icall.c: Added a new icall for the property version of
5279         OffsetOfStringData.
5280
5281 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
5282
5283         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
5284         it has a constant size across platforms.
5285
5286         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
5287         stack trace.
5288
5289 2004-06-29  Martin Baulig  <martin@ximian.com>
5290
5291         * mono-debug.c (mono_debug_add_method): Protect the whole function
5292         in mono_debugger_lock(), not just parts of it.
5293
5294 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
5295
5296         * reflection.c: make sure padding bytes in heaps are zeroed.
5297
5298 2004-06-24  David Waite  <mass@akuma.org>
5299
5300         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
5301         image.c, loader.c, locales.c, marshal.c, metadata.c,
5302         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
5303         string-icalls.c, threads.c: change to C90-style comments from C99 /
5304         C++ -style
5305
5306 2004-06-24  Dick Porter  <dick@ximian.com>
5307
5308         * threads.c
5309         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
5310         return createdNew.  Fixes bug 60412.
5311
5312         * threads-types.h: 
5313         * icall.c: Add createdNew parameter to CreateMutex icall
5314
5315 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
5316
5317         * reflection.c, object-internals.h: save default value in params.
5318
5319 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5320
5321         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
5322         no need to build a new path combining that with the application base.
5323         Fixes bug #60442.
5324
5325 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
5326
5327         * reflection.c: fixed minor standard compliance issues.
5328
5329 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
5330
5331         * reflection.c: fixed issue with encoding some custom attributes
5332         (arrays in properties and fields, bug #60411).
5333
5334 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5335
5336         * reflection.c: fix start address when copying the public key token.
5337
5338 2004-06-23  Martin Baulig  <martin@ximian.com>
5339
5340         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
5341         the `exc' object in a static object to put it into the GC's root set.
5342
5343 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
5344
5345         * reflection.c: make mono_reflection_setup_internal_class ()
5346         callable a second time to setup a new parent class.
5347
5348 2004-06-23  Dick Porter  <dick@ximian.com>
5349
5350         * threads.c: Check for WAIT_IO_COMPLETION return values.
5351
5352 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
5353
5354         * appdomain.c: Removed the g_free on the public key token. Now copy 
5355         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
5356         * assembly.c: Added public key token string value when loading 
5357         assemblies. Fix bug #60439.
5358         * icall.c: Added missing informations (like public key) in 
5359         GetReferencedAssemblies. Fix #60519.
5360         * image.h: Changed definition for public key token from const char*
5361         public_tok_value to guchar public_key_token [17];
5362         * reflection.c: Updated for changes to public key token.
5363
5364 2004-06-22  Lluis Sanchez Gual
5365
5366         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
5367         for the field in base classes.
5368
5369 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
5370
5371         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
5372         mark headers as not supported, they are installed only for use by the
5373         debugger.
5374
5375 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
5376
5377         * *.c, *.h: avoid namespace pollution in public headers.
5378
5379 2004-06-21  Martin Baulig  <martin@ximian.com>
5380
5381         * exception.c (mono_get_exception_security): It's in
5382         "System.Security", not in "System".
5383
5384         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
5385         the exception classes.
5386
5387 2004-06-21  Martin Baulig  <martin@ximian.com>
5388
5389         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
5390         Protect the exception object from being finalized.
5391
5392 2004-06-21  Martin Baulig  <martin@ximian.com>
5393
5394         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
5395         public function.
5396
5397 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
5398
5399         * reflection.c: Load the assembly in mono_reflection_type_from_name,
5400         if it was not loaded before. Fix parts of #60439.
5401
5402 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
5403
5404         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
5405         code that was broken since Ben's change: wrappers are now
5406         dependent on the method signature only again.
5407
5408 2004-06-21  Martin Baulig  <martin@ximian.com>
5409
5410         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
5411         added interface support.
5412
5413 2004-06-21  Martin Baulig  <martin@ximian.com>
5414
5415         * class.c (mono_vtable_get_static_field_data): New public method.
5416
5417 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
5418
5419         * filewatcher.c : Windows build fix to be compliant with API changes.
5420
5421 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
5422
5423         * class.h, class.c: more accessors.
5424         * metadata.h, metadata.c: prepare for hiding MonoType and
5425         MonoMethodSignature: people should use the accessors from now on
5426         outside of the tree.
5427
5428 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
5429
5430         * *.c, *.h: more API cleanups.
5431
5432 2004-06-18  Jackson Harper  <jackson@ximian.com>
5433
5434         * assembly.c: Trace loading assemblies.
5435         * loader.c: Trace loading native libraries.
5436         * mono-config.c: Trace loading config files.
5437         
5438 2004-06-18  Dick Porter  <dick@ximian.com>
5439
5440         * locales.c: Tell ICU the lengths of strings, it can cope with
5441         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
5442
5443 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
5444
5445         * image.c: swapped name/filename;
5446
5447 2004-06-18  Martin Baulig  <martin@ximian.com>
5448
5449         * mono-debug-debugger.c (write_class): Write the parent class at
5450         the end of the header.
5451
5452 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
5453
5454         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
5455
5456 2004-06-17  Raja R Harinath  <rharinath@novell.com>
5457
5458         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
5459         (bundle_obj): New conditional define.
5460         (BUILT_SOURCES): Remove.
5461         ($(bundle_srcs)): Make parallel-make safe.
5462         (libmonoruntime_la_LIBADD): Make unconditional.
5463         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
5464         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
5465
5466 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
5467
5468         * culture-info-tables.h: It was inconsistent with the latest
5469           supp info files.
5470
5471 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
5472
5473         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
5474         be loaded.
5475
5476         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
5477         with gcc 2.95.
5478
5479 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
5480
5481         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
5482         cleaned up public header threads.h.
5483
5484 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
5485
5486         * Makefile.am, *.c, *.h: more API cleanups.
5487
5488 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
5489
5490         * Makefile.am: removed monosn from compilation.
5491         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
5492         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
5493         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
5494         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
5495         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
5496         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
5497
5498 2004-06-15  Jackson Harper  <jackson@ximian.com>
5499
5500         * assembly.c: Make locales lower case when searching the GAC for
5501         assemblies. gacutil will always make locales lowercase when
5502         installing so this effectively makes them case insensitive.
5503         
5504 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
5505
5506         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
5507         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
5508           parameter which allows to choose whether the wait can be interrupted or 
5509           not. Also added the method mono_monitor_enter(), which locks the monitor
5510           using an infinite wait and without allowing interruption.
5511           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
5512           interrupted.
5513         * object.h: Added new fields in MonoThread. suspend_event holds the event
5514           used to susped/resume the thread. synch_lock is the lock object to use for
5515           modifying the thread state.
5516         * threads.c: Use the new synch_lock object for locking, instead of "this",
5517           which can generate deadlocks.
5518           Moved thread state change in Thread.Sleep and Thread.Join from managed
5519           to unmanaged code. This avoids a deadlock when the thread was suspended
5520           just after acquiring the thread lock.
5521           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
5522           Implemented Thread.Suspend using an event instead of ThreadSuspend,
5523           which is not fully implemented in the io-layer.
5524         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
5525
5526 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
5527
5528         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
5529         threads-types.h: more API cleanups.
5530
5531 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
5532
5533         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
5534         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
5535         threadpool.c, threads.c: first pass at the exported API cleanup.
5536
5537 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
5538
5539         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
5540
5541 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5542
5543         * icall.c: added internalGetHome.
5544
5545 2004-06-14  Dick Porter  <dick@ximian.com>
5546
5547         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
5548         possible to return successfully when '.' or '..' were the only
5549         entries in a directory, but were skipped.  The MonoIOStat was not
5550         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
5551         Fixes bug 59574.
5552
5553 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
5554
5555         * reflection.c: make binaries run on .Net 1.1 by default.
5556
5557 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
5558
5559         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
5560
5561 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
5562
5563         * marshal.c: keep track of struct size with explicit layout
5564         (bug #59979).
5565
5566 2004-06-12  Martin Baulig  <martin@ximian.com>
5567
5568         * mono-debug-debugger.c: Comment out a debugging g_message().
5569
5570 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
5571
5572         * reflection.c, reflection.h: do not free custom attrs that are cached.
5573         * icall.c: use braces to make code clearer.
5574
5575 2004-06-11  Martin Baulig  <martin@ximian.com>
5576
5577         * class.h (MonoInflatedField): New type.
5578         (MonoClassField): Replaced `MonoType *generic_type' with
5579         `MonoInflatedField *generic_info'.
5580
5581         * icall.c
5582         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
5583
5584 2004-06-11  Martin Baulig  <martin@ximian.com>
5585
5586         * reflection.c (mono_image_create_method_token): Correctly encode
5587         varargs methods.
5588
5589 2004-06-11  Martin Baulig  <martin@ximian.com>
5590
5591         * metadata.c (mono_metadata_parse_method_signature): When parsing
5592         a MethodDef which has VarArgs, also set sentinelpos if we don't
5593         have any parameters.
5594
5595 2004-06-11  Martin Baulig  <martin@ximian.com>
5596
5597         * verify.c (mono_method_verify): In CEE_CALL, use
5598         mono_method_get_signature() to get the method's signature, unless
5599         we're a PInvoke method.
5600
5601 2004-06-10  Jackson Harper  <jackson@ximian.com>
5602
5603         * assembly.c: Use <path>/lib/mono/gac for the extra paths
5604         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
5605         logical name as the supplied path is just a prefix to the gac not
5606         the direct path to it.
5607         
5608 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
5609
5610         * reflection.c: make the token for a created method match
5611         the token of the MethodBuilder it was created from
5612         (IKVM requires this behaviour now).
5613
5614 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
5615
5616         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
5617         reflection.c, socket-io.c: leak fixes.
5618
5619 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
5620
5621         * icall.c: handle sentinel pos in vararg methods in position different
5622         from 0.
5623
5624 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5625
5626         * culture-info-tables.h: freshly generated.
5627
5628 2004-06-09  Martin Baulig  <martin@ximian.com>
5629
5630         * loader.c (mono_get_method_constrained): Call `mono_class_init
5631         (constrained_class)'.   
5632
5633 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
5634
5635         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
5636         any methods. Fixes #59629.
5637
5638 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5639
5640         * culture-info-tables.h: reflecting locale-builder updates.
5641
5642 2004-06-08  Dick Porter  <dick@ximian.com>
5643
5644         * object.h:
5645         * locales.c: Fixed compile warnings, including a real bug in
5646         CompareInfo_internal_compare.
5647         
5648 2004-06-08  Dick Porter  <dick@ximian.com>
5649
5650         * locales.c
5651         (ves_icall_System_Globalization_CompareInfo_internal_index):
5652         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
5653         Double-check the resuls of usearches, because ICU currently
5654         ignores most of the collator settings here.  Fixes bug 59720.
5655         
5656 2004-06-08  Dick Porter  <dick@ximian.com>
5657
5658         * locales.c
5659         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
5660         Fix memory leak and segfault-causing typo.  No idea how this one
5661         lasted so long without being noticed.
5662
5663 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
5664
5665         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
5666         any methods. Fixes #59629.
5667
5668 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5669
5670         * assembly.c:
5671         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
5672         own the critical section before). Removed dead code (that's done
5673         in the preload hook).
5674
5675         (mono_assembly_load_with_partial_name): call the preload hook.
5676
5677 2004-06-08  Martin Baulig  <martin@ximian.com>
5678
5679         * metadata.c (mono_metadata_signature_alloc): Default
5680         `sentinelpos' to -1.
5681
5682         * reflection.c (mono_image_get_array_token): Likewise.
5683
5684 2004-06-08  Martin Baulig  <martin@ximian.com>
5685
5686         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
5687
5688         * metadata.c (mono_metadata_parse_method_signature): When parsing
5689         a MethodDef which has VarArgs, set sentinelpos.
5690
5691         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
5692         `gint16' since we're using -1 for non-varargs methods.
5693
5694         * reflection.c
5695         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
5696         (method_encode_signature): Added varargs support.
5697         (method_builder_encode_signature): Likewise.
5698         (mono_image_get_varargs_method_token): New static method.
5699         (mono_image_create_method_token): New public method; this is
5700         called via an icall instead of mono_image_create_token() when
5701         calling a varargs method.       
5702
5703 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
5704
5705         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
5706
5707 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5708
5709         * culture-info-tables.h : Reflecting the latest locale-builder that
5710           fixed empty array representation ({} to {0}).
5711
5712 2004-06-07  Jackson Harper  <jackson@ximian.com>
5713
5714         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
5715         looking up extra gac paths. This allows MONO_GAC_PATH to act
5716         exactly like a prefix.
5717         
5718 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
5719
5720         * reflection.c (mono_reflection_type_from_name): Make a copy of the
5721         type name before modifying it. Fixes #59405.
5722
5723 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
5724
5725         * culture-info.h: added fields for "all datetime patterns".
5726         * locales.c: (  ves_icall_System_Globalization_CultureInfo
5727           _construct_datetime_format ()): fill xxx_patterns fields.
5728         * object.h: added fields for "all datetime patterns" to
5729           MonoDateTimeFormatInfo.
5730         * culture-info-tables.h: reflecting locale-builder updates.
5731
5732 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
5733
5734         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
5735         the event has no add and remove methods. Fixes #59629.
5736
5737 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
5738
5739         * object.c: Fixed possible integer overflow when allocating large
5740         strings.
5741
5742 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
5743
5744         * culture-info-tables.h: reflecting locale-builder updates.
5745
5746 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
5747
5748         * culture-info-tables.h: reflecting locale-builder updates.
5749
5750 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
5751
5752         * culture-info-tables.h: reflecting locale-builder updates.
5753
5754 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
5755
5756         * threads.c: Made Thread.Sleep abortable.
5757
5758 2004-06-02  Martin Baulig  <martin@ximian.com>
5759
5760         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
5761
5762         * debug-mono-symfile.h: Bumped symbol file version number to 37.
5763
5764 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
5765
5766         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
5767
5768 2004-05-30  Jackson Harper  <jackson@ximian.com>
5769
5770         * reflection.c: Do not hardcode assembly versions or public key
5771         tokens anymore. All of this except the corlib section was dead
5772         code anyways.
5773         
5774 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
5775
5776         * object.c (mono_runtime_invoke_array): Automatically create boxed
5777         objects for byref valuetypes if needed. Fixes #59300.
5778         
5779         * object.c (mono_method_return_message_restore): Handle 
5780         MONO_TYPE_OBJECT as well.
5781
5782 2004-05-28  Jackson Harper  <jackson@ximian.com>
5783
5784         * reflection.c: The modified type encoding was causing build
5785         problems. Reverted for now.
5786         
5787 2004-05-28  Jackson Harper  <jackson@ximian.com>
5788
5789         * reflection.c/h: Take an assembly ref so that we dont create
5790         fully qualified names when encoding types in the same assembly as
5791         the custom attribute being emitted.
5792         * appdomain.c: Increment version number.
5793         
5794 2004-05-26  Duncan Mak  <duncan@ximian.com>
5795
5796         * icall.c
5797         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5798         Set the full version number (major, minor, build, revision).
5799
5800 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
5801
5802         * marshal.c (emit_struct_conv): increment src/dst after blit
5803         (mono_marshal_get_managed_wrapper,
5804         mono_marshal_get_native_wrapper): make sure we have marshalling
5805         info before marshalling params (info computation affects
5806         blittable)
5807
5808         * class.c (class_compute_field_layout): correctly deal with
5809         blittable
5810         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
5811         value types (as per what windows dows by default)
5812         (mono_class_setup_mono_type): System.ValueType is blittable
5813         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
5814         blittable
5815
5816         * marshal.c (mono_marshal_load_type_info): flag types  as
5817         non-blittable if the native layout doesn't match the managed
5818         layout
5819
5820 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5821
5822         * appdomain.c: don't add stuff in the private search path that is
5823         above the application base. If application base is not set, there's
5824         no private search path.
5825
5826 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
5827
5828         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
5829         byref struct arguments in native->managed marshalling.
5830
5831 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
5832
5833         * marshal.c (mono_marshal_get_runtime_invoke): correctly
5834         cache methods using signature (special case for methods
5835         that are value type or string class)
5836         
5837         * image.c (mono_image_close): clean up allocated GSList's
5838         in runtime_invoke_cache.
5839
5840 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5841
5842         * mono-config.c: set the correct path for mono_cfg_dir on windows when
5843         there's no MONO_CFG_DIR environment variable defined.
5844
5845 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5846
5847         * threads.c: windows version must be >= 0x0500 to include OpenThread.
5848
5849 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
5850
5851         * threadpool.c: Really wait for 500ms after the async call, even if the wait
5852           is interrumped.
5853         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
5854           before waiting for it, and call CloseHandle after the wait to unref it.
5855           This will make sure that handles are not disposed too early.
5856
5857 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5858
5859         * appdomain.c:
5860         * appdomain.h:
5861         * icall.c: removed
5862         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
5863         needed now.
5864
5865         * object.c: se the application_base only for the domain that runs
5866         Main. Fixes bug #59216,
5867
5868 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5869
5870         * appdomain.c:
5871         * object.c: only the domain in which Main is run have
5872         SetupInformation.ConfigurationFile set, so moved a few lines from
5873         appdomain.c to object.c.
5874
5875 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5876
5877         * appdomain.c: we tried to load [name].(dll|exe), but according
5878         to bug #57710, we must also try [culture]/[name].(dll|exe) and
5879         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
5880         There's a test case attached to bug #58922.
5881
5882 2004-05-27  Dick Porter  <dick@ximian.com>
5883
5884         * icall.c:
5885         * file-io.c: Implemented icalls for locking and unlocking regions
5886         in a file.
5887         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
5888         FALSE on error (fixes both compiler warning and real bug.)
5889
5890 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
5891
5892         * culture-info-tables.h: reflecting locale-builder updates.
5893
5894           (Added missing ChangeLog entry for 05/26)
5895
5896 2004-05-27  Jackson Harper  <jackson@ximian.com>
5897
5898         * locales.c: Fix some cut and paste errors.
5899         
5900 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5901
5902         * mono-config.c: set the correct path for config. directory on windows.
5903
5904 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5905
5906         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
5907           on win32.
5908
5909 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5910
5911         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
5912         from pinvoke functions.
5913         
5914         * marshal.c (mono_ftnptr_to_delegate): Implement this.
5915
5916 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5917
5918         * culture-info-tables.h: reflecting locale-builder updates.
5919
5920 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5921
5922         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
5923         #59086.
5924
5925 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
5926
5927         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
5928         * icall.c: Modified icalls for RNG.
5929         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
5930         Windows (CryptoAPI).
5931
5932 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5933
5934         * locales.c: Fix build.
5935
5936 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5937
5938         * culture-info-tables.h: reflecting locale-builder updates.
5939
5940 2004-05-25  Jackson Harper  <jackson@ximian.com>
5941
5942         * locales.c: When creating the current culture use the $LANGs
5943         specific culture. So DateTimeFormat and NumberFormat entries are created.
5944         
5945 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5946
5947         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
5948         a char array as parameter.
5949
5950 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
5951
5952         * image.c: In mono_image_open(), always use an absolute path name to
5953           look for already loaded images.
5954
5955 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
5956
5957         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
5958         missing in the windows build (like older cygwin include files).
5959
5960 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
5961
5962         * icall.c: Fixed check for possible integer overflow in Buffer_
5963         BlockCopy icall. Replaced comments style // by /* */.
5964
5965 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
5966
5967         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
5968         
5969         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
5970         check after MONO_VTADDR. Fixes pinvoke2.exe.
5971
5972         * marshal.h marshal.c metadata.h: Add beginnings of support for
5973         ftnptr -> delegate marshalling.
5974
5975 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
5976
5977         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
5978         * threads.c: Fix warnings.
5979
5980 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
5981
5982         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
5983         * icall.c: Registered icalls for Suspend and Resume.
5984         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
5985           Thread.Abort.
5986         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
5987         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
5988         * process.c: Use WaitForSingleObjectEx.
5989         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
5990           checkpoints.
5991         * threads.c, threads.h: Make use of new Ex wait methods. Improved
5992           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
5993           for Suspend and Resume. Added new mono_thread_stop, used for stoping
5994           background threads. Added basic support for Abort in Windows.
5995           Start new threads using a managed delegate invoke wrapper. This wrapper
5996           has an interruption checkpoint that is needed since an interruption
5997           can be requested before the thread leaves the unmanaged code that starts 
5998           the thread.
5999         * marshal.c: Added interruption checkpoint after every native call, and
6000           also before managed calls for wrappers called from unmanaged code to
6001           go into managed code.
6002         * object.h: Added new field in MonoThread to keep track of interruption
6003           requests.
6004
6005 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
6006
6007         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
6008         calls.
6009
6010 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6011
6012         * appdomain.c:
6013         * assembly.c:
6014         * gc.c:
6015         * locales.c:
6016         * mono-config.c:
6017         * rand.c: getenv -> g_getenv (windows!)
6018
6019         * process.c: complete_path is also used on non-windows platforms.
6020
6021 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6022
6023         * icall.c: new signature for Process_Start.
6024
6025         * process.[ch]: new signature for Process_Start. If we're on windows
6026         and UseShellExecute is false, we have to search for the program by
6027         ourselves if we don't get a full path.
6028
6029 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
6030
6031         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
6032         marshalling and call CleanUpNativeData if needed. Fixes #58646.
6033
6034 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6035
6036         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
6037         Fixes bug #58373.
6038
6039 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6040
6041         * process.c: use double quotes to quote program name and arguments on
6042         windows. Fixes bug #58575.
6043
6044 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6045
6046         * file-io.c: don't return "." and ".." when using windows Find*File.
6047
6048 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
6049
6050         * marshal.c: Don't pass wrappers to message init because method 
6051         addressed used to lookup metadata. part of remoting[2|3] fix.
6052
6053 2004-05-15  Jackson Harper  <jackson@ximian.com>
6054
6055         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
6056         path is essentially the same as MONO_PATH except that it points to
6057         GACs instead of lib directories.
6058         * loader.h: The user gac is gone so we dont need function to
6059         enable/disable it.
6060         * mono-config.c: user gac option is now gone.
6061         
6062 2004-05-15  Jackson Harper  <jackson@ximian.com>
6063
6064         * culture-info.h: Make defines more consistent, add calendar data
6065         to the culture info table.
6066         * culture-info-tables.h: Add basic calendar data. Basically
6067         everyone gets default gregorian until all the data is
6068         updated.
6069         * locales.c: Use the new consistent defines. Set calendar data for
6070         culture info objects.
6071         * object.h: add a field for calendar data to CultureInfo
6072         
6073 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
6074
6075         * image.c: image->runtime_invoke_cache is keyed on signatures now.
6076         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
6077         a signature.
6078         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
6079         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
6080         an extra param that is the pointer of the method to invoke. The IL for
6081         the invoke method is no longer specific to the method, but to the
6082         signature of the method. Thus, we can share the same code for multiple
6083         methods. This reduces the number of methods that have to be compiled.
6084
6085 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
6086
6087         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
6088
6089         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6090
6091         * icall.c: Optimize Buffer.BlockCopy.
6092
6093 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6094
6095         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
6096         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
6097         quote). Changed them to "MMMM yyyy".
6098
6099 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
6100
6101         * rand.c
6102         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
6103
6104 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
6105
6106         * reflection.h: Updated after changes to managed structures.
6107
6108         * appdomain.c: Bump corlib version.
6109
6110 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6111
6112         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
6113         windows.
6114
6115 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6116
6117         * Makefile.am: link to ../os/libmonoos.la on windows.
6118
6119         * assembly.c:
6120                 -If MONO_DEBUG, warn about non-existing directories in
6121                 MONO_PATH.
6122                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
6123                 compile time variable.
6124                 -Removed init_default_path and call mono_set_rootdir from
6125                 libmonoos.a instead (windows only).
6126
6127         * assembly.h: declare mono_assembly_getrootdir().
6128
6129         * domain.c:
6130         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
6131
6132         * loader.c: s/getenv/g_getenv/
6133
6134 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
6135
6136         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
6137
6138         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
6139
6140         * metadata.h: Add new marshalling conversions.
6141
6142         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
6143         function.
6144
6145         * reflection.c (mono_reflection_get_type): Lookup the type in all
6146         modules of a multi-module assembly. Fixes #58291.
6147
6148 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
6149
6150         * threads.c: Before aborting a background, set the StopRequested
6151         state.  This avoids throwing the Abort exception.
6152         In mono_thread_manage, don't continue with the shutdown until all
6153         aborted threads have actually stopped.
6154
6155 2004-05-10  Jackson Harper  <jackson@ximian.com>
6156
6157         * locales.c: Remove the modifier from culture names.
6158         
6159 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6160
6161         * Makefile.am: monosn is not installed any more. It has been deprecated
6162         in favor of sn.
6163
6164 2004-05-07  Jackson Harper  <jackson@ximian.com>
6165
6166         * locales.c
6167         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
6168         Fix array construction, add bailout if the length is 0.
6169
6170 2004-05-07  Dick Porter  <dick@ximian.com>
6171
6172         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
6173         machine doesn't have a DNS entry.  Patch by Urs Muff
6174         (umuff@quark.com), fixes bug 57928.
6175
6176 2004-05-06  Jackson Harper  <jackson@ximian.com>
6177
6178         * reflection.c: Handle null PublicTokens properly. alloc mem for
6179         assembly names culture so we dont crash when freeing it.
6180         
6181 2004-05-06  Jackson Harper  <jackson@ximian.com>
6182
6183         * assembly.c: Check the usergac when loading with partial names.
6184         
6185 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
6186
6187         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
6188         does nothing for now (not required for Linux/Windows) but the class
6189         library can call it (and a newer or modified runtime could need it).
6190         * icall.c: Registred icall.
6191
6192 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6193
6194         * loader.c: prints a message on module loading error we set MONO_DEBUG
6195         environment variable.
6196
6197 2004-05-05  Jackson Harper  <jackson@ximian.com>
6198
6199         * appdomain.c: Handle PublicKeyToken=null properly.
6200         
6201 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
6202
6203         * environment.c|h: Added icall ves_icall_System_Environment_
6204         GetOSVersionString to get the current OS version as a string.
6205         * icall.c: Registred icall.
6206
6207 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
6208
6209         * object.c: in mono_object_get_virtual_method(), take into account that
6210         non-virtual methods don't have a slot in the vtable. Check needed when
6211         the object is a proxy.
6212
6213 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
6214
6215         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
6216         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
6217
6218         * object.c (mono_class_compute_gc_descriptor): Fix warning.
6219
6220         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
6221         passed when a valuetype is expected.
6222
6223         * object.c (mono_unhandled_exception): Only set the exit code if the
6224         exception happens in the main thread. Fixes thread5.exe.
6225
6226         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
6227         invalid names. Fixes #58047.
6228
6229 2004-05-03  Jackson Harper  <jackson@ximian.com>
6230
6231         * assembly.c: This line was committed accidently and is unneeded.
6232         
6233 2004-05-03  Jackson Harper  <jackson@ximian.com>
6234
6235         * icall.c: Add new icall for Assembly::LoadWithPartialName
6236         * assembly.c/.h: new function that probes the GAC to load partial
6237         assembly names by Paolo Molaro.
6238         
6239 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6240
6241         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
6242         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
6243         (type_get_fully_qualified_name): Added PublicKeyToken when building a
6244         full type name.
6245
6246 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6247
6248         * appdomain.c: fixed check for 'neutral' culture and removed warning.
6249         * reflection.c: fix bug when parsing a full type name and Version is not
6250         the last thing in the string.
6251
6252 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
6253
6254         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
6255         crashes when it is freed.
6256
6257 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258
6259         * assembly.c: print the compat warning to stderr.
6260
6261 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
6262
6263         * assembly.c (mono_assembly_load_references): Add a compatibility
6264         hack to run old applications that might be still referencing the
6265         3300-based assemblies, only do this for System.xxx.
6266
6267 2004-05-01  Jackson Harper  <jackson@ximian.com>
6268
6269         * appdomain.c: If the culture is neutral we set it to "".
6270         
6271 2004-04-29  Jackson Harper  <jackson@ximian.com>
6272
6273         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
6274
6275 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
6276  
6277         * string-icalls.c: added low overhead function for copying chars
6278         * icall.c: added needed icall for the above function
6279  
6280 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6281
6282         * icall.c: fix return value of get_global_assembly_cache.  Implemented
6283         Environment.GetLogicalDrives.
6284
6285 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
6286
6287         * rand.c: try and talk to egd or prngd
6288         for random bytes if opening devices fail.
6289
6290 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
6291
6292         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
6293         alignment for the type using the native alignment of its members 
6294         instead of using klass->min_align.
6295
6296         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
6297
6298 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6299
6300         * file-io.c:
6301         * socket-io.c: added check for sys/aio.h.
6302
6303 2004-04-28  Dick Porter  <dick@ximian.com>
6304
6305         * threads.c: Don't abort a thread thats already aborting, when
6306         terminating everything.
6307
6308 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6309
6310         * icall.c: added 2 new async calls for Socket.
6311
6312         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
6313         IO on *nix systems.
6314
6315         * threadpool.c: removed unused variable.
6316
6317 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
6318
6319         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
6320
6321 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
6322
6323         * locales.c: put back string_invariant_tolower () and
6324         string_invariant_toupper ().
6325
6326 2004-04-26 David Waite <mass@akuma.org>
6327
6328         * file-io.h:
6329         * socket-io.h:
6330         * threads.h:
6331         * unicode.h: remove comma from end of enumeration declarations
6332
6333 2004-04-26 David Waite <mass@akuma.org>
6334
6335         * debug-mono-symfile.h:
6336         * decimal.c:
6337         * mono_debug.h:
6338         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
6339
6340
6341 2004-04-26  Jackson Harper  <jackson@ximian.com>
6342
6343         * appdomain.c: Increment version number.
6344         
6345 2004-04-26  Jackson Harper  <jackson@ximian.com>
6346
6347         * appdomain.c: Set assembly references public token value when
6348         PublicKeyToken is specified, not the hash_value. Free public token
6349         values when free assembly name data. Previously the public key
6350         token was hex decoded, however we are using hex encoded public key
6351         tokens, so this is not neccasary.
6352         * assembly.c: Lookup assemblies in the gac if their public token
6353         value is set. Add function to allow enabling user gac
6354         lookups. Specify whether or not the assembly was loaded from the
6355         GAC. Compare full assembly names when checking the cache for
6356         assemblies (Temporarily disabled see comment in code). Remove
6357         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
6358         specifies trace-loader they get extra info to stdout on the
6359         loading of assemblies.
6360         * image.h: Add a field for an assembly references public token
6361         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
6362         whether an assembly has been loaded from the GAC.
6363         * image.c: Remove a corlib -> mscorlib name mapping.
6364         * loader.h: Add function to enable/disable the user gac.
6365         * mono-config.c: Check if the usergac is enabled in the config
6366         file.
6367         * icall.c: New icall to determine whether or not an assembly has
6368         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
6369         * tabldefs.h: Add constant for assemblyref flag that specifies a
6370         full public key is used instead of a public token.
6371         * reflection.c: Remove mscorlib -> corlib mappings. Set
6372         PublicTokenValue instead of hash value. This value is a hex
6373         string so it does not need to be expanded.
6374
6375 2004-04-26  Martin Baulig  <martin@ximian.com>
6376
6377         * mono-debug-debugger.c (mono_debugger_initialize): Set
6378         `mono_debugger_initialized' before calling mono_debug_lock().
6379
6380 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
6381
6382         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
6383           InternalToUpper/InternalToLower.
6384         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
6385           removed invariant culture shortcut.  This is now done in managed code.
6386         * locales.c: (string_invariant_toupper/tolower) removed.
6387
6388 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6389
6390         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
6391         Added Poll internal call.
6392
6393         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
6394         call for Poll. Select was too heavy for polling a single socket.
6395
6396         * threadpool.[ch]: added mono_threadpool_cleanup.
6397         * threads.c: use it. Don't use Thread_Abort on windows.
6398
6399 2004-04-23  Martin Baulig  <martin@ximian.com>
6400
6401         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
6402
6403 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
6404
6405         * icall.c: Registred new icalls for key pair protection and added an
6406         icall for Environment.GetFolderPath on Windows.
6407         * security.c|h: Added new icalls for key pair protection.
6408
6409 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6410
6411         * socket-io.c: don't display the non-supported family warning for known
6412         families. Now this is not displayed on windows when checking support
6413         for IPv4/IPv6.
6414
6415 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6416
6417         * class.c: don't display the layout warning for static fields.
6418
6419 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
6420
6421         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
6422         * locales.c, locales.h: Added new icalls for culture-specific
6423         Char.ToLower and Char.ToUpper.
6424
6425 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6426
6427         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
6428         by David Waite.
6429
6430 2004-04-20  Martin Baulig  <martin@ximian.com>
6431
6432         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
6433         of the type name before passing it to mono_reflection_type_from_name().
6434
6435 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
6436
6437         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
6438         encodings here. Fixes #56965.
6439
6440 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
6441
6442         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
6443         fix test on strstr result not that I can see anything that
6444         relies on the result.
6445
6446 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
6447
6448         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
6449         Fixes #57081.
6450
6451         * marshal.c (mono_marshal_get_string_encoding): New helper function.
6452
6453         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
6454         function to determine which marshalling to use for strings. Fixes
6455         #56965.
6456
6457         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
6458
6459         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
6460
6461 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
6462
6463         * icall.c: #include mono-config.h
6464
6465 2004-04-15  Jackson Harper  <jackson@ximian.com>
6466
6467         * culture-info-tables.h: Fix date formats for en-US culture.
6468         
6469 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
6470
6471         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
6472         ThreadPool.SetMinThreads.
6473         * threadpool.c: Implemented ThreadPool.GetMinThreads and
6474         ThreadPool.SetMinThreads.
6475
6476 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
6477
6478         * mono-config.c: also load the .config file in the directory
6479         where the assembly was found.
6480
6481 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
6482
6483         * assembly.c: load per-assembly config files.
6484         * icall.c: decrapified code to get the config dir and moved to
6485         mono-config.c.
6486         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
6487         per-assembly config files. When doing a dll map lookup give precedence
6488         to the per-assembly data.
6489
6490 2004-04-14  Martin Baulig  <martin@ximian.com>
6491
6492         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
6493         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
6494         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
6495
6496         * mono-debugger-debugger.c: While the debugger is locked, remember
6497         whether the symbol tables have changes and send one single
6498         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
6499
6500 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
6501
6502         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
6503
6504         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
6505         function.
6506
6507         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
6508         account when marshalling string arrays. Fixes #56965.
6509
6510 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
6511
6512         * icall.c: Add new icalls mapping for security.
6513         * security.c|h: Add internal calls for WindowsIdentity,
6514         WindowsImpersonationContext and WindowsPrincipal.
6515
6516 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
6517
6518         * class.c: Added comment to ensure the System.MonoDummy class
6519         is removed when no longer necessary
6520
6521 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
6522
6523         * appdomain.c: Pass arguments to the bootstraping exceptions to
6524         minimize JITed methods at boot
6525
6526         * metadata.c (mono_exception_from_name_two_strings): Allow for the
6527         second string to be null.
6528
6529         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
6530         Change the protocol to minimize the JIT methods at startup.  Now
6531         it Returns the internal codepage, if the value of "int_code_page"
6532         is 1 at entry, and we can not compute a suitable code page
6533         number, returns the code page as a string.
6534
6535 2004-04-13  Jackson Harper  <jackson@ximian.com>
6536
6537         * culture-info-tables.h: Fix number of decimal digits for all
6538         english locales.
6539
6540 2004-04-13  Jackson Harper  <jackson@ximian.com>
6541
6542         * icall.c: Clairfy out of sync error message. It is not always
6543         your corlib that is out of sync.
6544
6545 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
6546
6547         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
6548         properties when only the set accessor is overriden. Fixes #55874.
6549
6550 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
6551
6552         * assembly.c (mono_assembly_load_references): Make this thread safe.
6553         Fixes #56327.
6554
6555 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
6556
6557         * monosn.c: Add missing initialization calls.
6558
6559 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
6560
6561         * locales.c:
6562         ves_icall_System_Globalization_CultureInfo_construct_number_format
6563         Fix g_assert so it compiles on fussier compilers re int/ptr
6564         mismatch
6565
6566 2004-04-08  Dick Porter  <dick@ximian.com>
6567
6568         * socket-io.h:
6569         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
6570         53992.  Also rearrange the code so that the internal calls return
6571         an error value and exceptions are thrown from managed code.
6572
6573         * icall.c: Add type info to the socket icalls.
6574
6575 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6576
6577         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
6578         owes me a beer.
6579
6580 2004-04-07  Martin Baulig  <martin@ximian.com>
6581
6582         * class.c (mono_class_from_generic_parameter): Don't default
6583         `klass->parent' to `mono_defaults.object_type'.
6584
6585 2004-04-07  Martin Baulig  <martin@ximian.com>
6586
6587         * reflection.c (mono_reflection_initialize_generic_parameter): Set
6588         `param->pklass->reflection_info'.       
6589
6590 2004-04-07  Jackson Harper  <jackson@ximian.com>
6591
6592         * culture-info-tables.h: Fix date separator symbol.
6593         
6594 2004-04-07  Martin Baulig  <martin@ximian.com>
6595
6596         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
6597         from System.Type to System.MonoType.
6598
6599 2004-04-07  Martin Baulig  <martin@ximian.com>
6600
6601         * reflection.h
6602         (MonoReflectionGenericParam): Added `has_reference_type' and
6603         `has_value_type' fields.
6604
6605         * reflection.c (mono_image_get_generic_param_info): Encode the
6606         correct flags if we have the `class' or `struct' constraint.
6607
6608 2004-04-07  Martin Baulig  <martin@ximian.com>
6609
6610         * reflection.h
6611         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
6612
6613 2004-04-07  Jackson Harper  <jackson@ximian.com>
6614
6615         * appdomain.c: Revert extra patches, just wanted to bump the
6616         version number.
6617         
6618 2004-04-07  Jackson Harper  <jackson@ximian.com>
6619
6620         * Makefile.am: Add culture-info private headers.
6621         * icall.c: Add new icalls for contructing locales.
6622         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
6623         * locales.h: Declare new culture info construction methods.
6624         * object.h: Add new fields used to avoid the CultureMap to
6625         MonoCultureInfo.
6626         * culture-info.h: Definition of structs used in the culture info
6627         tables.
6628         * culture-info-tables.h: Autogenerated tables that contain culture
6629         info data. This file was generated with the locale-builder tool.
6630         * appdomain.c: Incement corlib version number.
6631         
6632 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
6633
6634         * appdomain.c: (mono_runtime_init) move mono_thread_init
6635         to before mono_object_new calls so critical sections
6636         are initialized before use.
6637
6638 2004-04-07  Martin Baulig  <martin@ximian.com>
6639
6640         * icall.c
6641         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
6642         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
6643         (ves_icall_MonoGenericParam_initialize): Removed.
6644         (monogenericparam_icalls): Removed.
6645         (generictypeparambuilder_icalls): Added new table for
6646         System.Reflection.Emit.GenericTypeParameterBuilder.
6647
6648         * reflection.c
6649         (mono_reflection_define_generic_parameter): Removed.
6650         (mono_reflection_initialize_generic_parameter): This is now called
6651         from GenericTypeParameterBuilder's .ctor.
6652
6653 2004-04-06  Martin Baulig  <martin@ximian.com>
6654
6655         * class.c (mono_class_init): Don't inflate nested classes in a
6656         generic instance.
6657         (mono_type_get_name_recurse): Include the generic arguments for
6658         generic instances and generic type declarations.
6659         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
6660         (_mono_class_get_instantiation_name): Removed.
6661         (mono_class_create_generic): Always use `gklass->name' as our name.
6662
6663         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
6664
6665         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
6666         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
6667         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
6668         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
6669         closed generic methods here.
6670
6671         * reflection.c
6672         (mono_reflection_generic_inst_get_nested_types): Removed.
6673         (inflate_mono_method): Copy the generic parameters from the
6674         MonoMethodHeader into out MonoGenericMethod.
6675
6676 2004-04-06  Martin Baulig  <martin@ximian.com>
6677
6678         * row-indexes.h
6679         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
6680
6681         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
6682
6683         * reflection.c (build_compressed_metadata): If we have any entries
6684         in the GenericParam, MethodSpec or GenericParamConstraint tables,
6685         set the header version to 1.1.
6686
6687 2004-04-06  Martin Baulig  <martin@ximian.com>
6688
6689         * class.c (mono_class_init): If we're a generic instance,
6690         initialize our nested classes, too.
6691         (_mono_class_get_instantiation_name): Deal with the new `!%d'
6692         suffix. 
6693
6694 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6695
6696         * process.c: quote the argument passed to the shell on windows.
6697
6698 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
6699
6700         * threads.c (mono_alloc_special_static_data): Allow this to be
6701         called during startup.
6702
6703 2004-04-02  Martin Baulig  <martin@ximian.com>
6704
6705         * icall.c
6706         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
6707
6708 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
6709
6710         * icall.c: Fix build.
6711
6712 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6713
6714         * Makefile.am: Added security.c|h.
6715         * icall.c: Added icall for get_UserName;
6716         * security.c: New file for security related icalls. Added function
6717         get_UserName for System.Environment (fix #56144).
6718         * security.h: New. Header file for security.c
6719
6720 2004-04-02  Dick Porter  <dick@ximian.com>
6721
6722         * icall.c: Deleted the icalls that were obsoleted some time ago
6723         by the ICU string code, and which were mixed into the icall
6724         rearranging.  Fixes bug 55969.
6725
6726         * string-icalls.h: 
6727         * string-icalls.c: Deleted the code that those icalls reference.
6728
6729 2004-04-01  Martin Baulig  <martin@ximian.com>
6730
6731         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
6732
6733         * class.c (mono_class_from_generic_parameter): Don't set 
6734         TYPE_ATTRIBUTE_INTERFACE.
6735         (my_mono_class_from_generic_parameter): Likewise.
6736
6737 2004-04-01  Martin Baulig  <martin@ximian.com>
6738
6739         * loader.c (find_method): Added an optional `MonoClass *ic'
6740         argument to search in a specific interface.
6741         (mono_get_method_constrained): New public function.
6742
6743 2004-04-01  Martin Baulig  <martin@ximian.com>
6744
6745         * reflection.c (mono_image_get_generic_field_token): Use the
6746         `handleref' cache here.
6747
6748 2004-04-01  Martin Baulig  <martin@ximian.com>
6749
6750         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
6751
6752         * reflection.c (create_generic_typespec): Use the `typespec' hash
6753         here, not the `typeref' one.    
6754
6755 2004-04-01  Martin Baulig  <martin@ximian.com>
6756
6757         * class.c (mono_class_inflate_generic_type): Moved the
6758         functionality into a new static inflate_generic_type() which
6759         returns NULL if it didn't do anything.  Only increment the
6760         `mono_stats.inflated_type_count' if we actually inflated
6761         something.
6762         (mono_class_get_full): Check the classes type to see whether we
6763         need to inflate it; also inflate MONO_TYPE_(M)VAR.
6764
6765 2004-04-01  Jackson Harper  <jackson@ximian.com>
6766
6767         * reflection.c: Set culture for assembly references.
6768         
6769 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
6770
6771         * reflection.[ch], icall.[ch], Fix support for pinning variables.
6772
6773 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6774
6775         * assembly.c:
6776         (do_mono_assembly_open): the critical section also covers
6777         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
6778
6779 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6780
6781         * threads.c:
6782         (mono_manage_threads): abort the background threads when finishing.
6783         Fixes bug #47232.
6784
6785 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6786
6787         * gc.c: only close the done_event handle if there was no timeout.
6788         C-ified comments.
6789
6790 2004-03-30  Martin Baulig  <martin@ximian.com>
6791
6792         * icall.c (icall_entries): It's called "System.Activator", not
6793         "System.Activation".    
6794
6795 2004-03-30  Martin Baulig  <martin@ximian.com>
6796
6797         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
6798         (mono_class_create_from_typespec): Likewise.
6799
6800 2004-03-30  Martin Baulig  <martin@ximian.com>
6801
6802         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
6803         `has_ctor_constraint' and `initialized'.
6804
6805 2004-03-30  Martin Baulig  <martin@ximian.com>
6806
6807         * reflection.c (encode_new_constraint): New static function to add
6808         the constructor constraint attribute to a type parameter.
6809         (encode_constraints): Call encode_new_constraint() if necessary.
6810
6811         * reflection.h
6812         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
6813
6814         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
6815         
6816 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
6817
6818         * reflection.c, icall.c: add support for pinning variables. 
6819
6820 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
6821
6822         * marshal.c (mono_marshal_get_managed_wrapper):
6823         init bool local with zero rather than null.
6824
6825 2004-03-29  Martin Baulig  <martin@ximian.com>
6826
6827         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
6828         the "official" behavior here.
6829         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
6830
6831 2004-03-29  Martin Baulig  <martin@ximian.com>
6832
6833         * icall.c: Reflect latest API changes.
6834
6835 2004-03-29  Martin Baulig  <martin@ximian.com>
6836
6837         * loader.c (mono_get_method_from_token): Also call
6838         mono_metadata_load_generic_params () for abstract and interface
6839         methods; replace the type arguments in the method signature with
6840         the ones which are loaded from the metadata.
6841
6842 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
6843
6844         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
6845         of the lock is not the current thread. MS.NET don't do it, in spite of
6846         what the documentation says. See bug #56157.
6847
6848 2004-03-28  Martin Baulig  <martin@ximian.com>
6849
6850         * class.c (mono_class_init): Don't call init_properties() and
6851         init_events() for generic instances; set `prop->parent' when
6852         inflating properties.
6853
6854         * reflection.c (mono_generic_inst_get_object): Call
6855         `mono_class_init (ginst->klass)'.
6856         (mono_type_get_object): Only create a MonoGenericInst if your
6857         generic type is a TypeBuilder.
6858         (do_mono_reflection_bind_generic_parameters): Only set
6859         `ginst->is_dynamic' if our generic type is a TypeBuilder.
6860
6861 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
6862
6863         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
6864         Fixes #56091.
6865
6866 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6867
6868         * icall.c: added Kill_internal icall.
6869         * process.[ch]: added Kill_internal icall.
6870
6871 2004-03-25  Martin Baulig  <martin@ximian.com>
6872
6873         * class.h (MonoStats): Added `generic_instance_count',
6874         `inflated_method_count', `inflated_type_count' and
6875         `generics_metadata_size'.       
6876
6877 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6878
6879         * reflection.c: no warnings now.
6880
6881 2004-03-25  Martin Baulig  <martin@ximian.com>
6882
6883         * class.c (mono_class_get_full): New public function; does a
6884         mono_class_get(), but also takes a `MonoGenericContext *'.
6885
6886         * loader.c (mono_field_from_memberref): Renamed to
6887         `field_from_memberref', made static and added `MonoGenericContext *'
6888         argument.
6889         (mono_field_from_token): Added `MonoGenericInst *' argument.
6890         (method_from_memberef): Likewise.
6891         (mono_get_method_from_token): Likewise.
6892         (mono_get_method_full): New public function; does a
6893         mono_get_method(), but also takes a `MonoGenericContext *'.
6894
6895         * verify.c (mono_method_verify): Get the method's generic context
6896         and pass it to mono_field_from_token(), mono_get_method_full() and
6897         mono_class_get_full().
6898
6899 2004-03-25  Martin Baulig  <martin@ximian.com>
6900
6901         * class.c (mono_class_inflate_generic_type): Take a
6902         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
6903         `MonoGenericMethod *'.
6904
6905 2004-03-25  Martin Baulig  <martin@ximian.com>
6906
6907         * loader.h (MonoMethodInflated): Store the MonoGenericContext
6908         instead of the MonoGenericMethod here.
6909
6910 2004-03-25  Martin Baulig  <martin@ximian.com>
6911
6912         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
6913         each time we create a new MonoGenericInst, we also create a new
6914         context which points back to us.
6915
6916         * class.c (inflate_method): Use `ginst->context' instead of
6917         creating a new context.
6918
6919         * loader.c (method_from_memberref): Use
6920         `klass->generic_inst->context' instead of creating a new context.
6921
6922 2004-03-25  Martin Baulig  <martin@ximian.com>
6923
6924         * class.h (MonoGenericContext): New struct.
6925         (MonoGenericMethod): Removed `generic_inst'.
6926
6927         * class.c (mono_class_inflate_generic_method): Take a
6928         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
6929
6930 2004-03-25  Martin Baulig  <martin@ximian.com>
6931
6932         * loader.h (MonoMethodInflated): New typedef.
6933
6934         * metadata.h (MonoMethodSignature): Removed `gen_method', make
6935         `generic_param_count' consume just 30 bits, added `is_inflated'
6936         and `has_type_parameters' flags (one bit each).
6937
6938         * class.c (mono_class_inflate_generic_method): Create a
6939         MonoMethodInflated instead of a MonoMethodNormal and set
6940         `is_inflated' in the method signature.
6941
6942         * class.h (MonoGenericMethod): Removed `generic_method'.
6943
6944 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
6945
6946         * image.c: Make sure the name of a MonoImage is always an absolute path.
6947           This fixes bug #54415.
6948
6949 2004-03-24  Martin Baulig  <martin@ximian.com>
6950
6951         * class.c (mono_class_setup_vtable): If we're a generic instance,
6952         use our generic type's vtable size.
6953
6954 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
6955
6956         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
6957         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
6958         problems.
6959
6960 2004-03-23  Martin Baulig  <martin@ximian.com>
6961
6962         * class.h (MonoDynamicGenericInst): Added `int count_events' and
6963         `MonoEvent *events'.
6964
6965         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
6966         (typebuilder_icalls): Added "get_event_info"; calls
6967         mono_reflection_event_builder_get_event_info(). 
6968
6969         * reflection.c (mono_reflection_generic_inst_initialize): Added
6970         `MonoArray *events'.
6971         (mono_reflection_event_builder_get_event_info): New function.
6972
6973 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
6974
6975         * object.h: add mono_type_initialization_init
6976
6977         * object.c (mono_runtime_class_init): 
6978         implement class constructor synchronization rules
6979         to cope with threading issues.  
6980         add mono_type_initialization_init
6981
6982         * appdomain.c (mono_runtime_init): call 
6983         mono_type_initialization_init
6984
6985         * class.h: removing initializing field from MonoVTable
6986
6987 2004-03-23  Martin Baulig  <martin@ximian.com>
6988
6989         * class.c (my_mono_class_from_generic_parameter): Use
6990         `param->name' if it's not NULL. 
6991
6992 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
6993
6994         * class.c: do not insert non-virtual methods in the vtable.
6995         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
6996         that means the method is non-virtual. This never would have
6997         happened before.
6998
6999 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
7000
7001         * profiler.c: Added lock for accessing coverage_hash.
7002
7003 2004-03-22  Martin Baulig  <martin@ximian.com>
7004
7005         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
7006         `method->method->signature->generic_param_count != 0' to make it
7007         work for interface methods.
7008
7009 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7010
7011         * process.c: quote the string passed to the shell using g_shell_quote.
7012
7013 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7014
7015         * threads.c:
7016         (mono_threads_manage): don't remove the finalizer thread and self
7017         from the threads hash table so that mono_thread_manage can be called
7018         more than once.
7019
7020 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7021
7022         * process.c: quote the arguments when UseShellExecute is true. Fixes
7023         bug #55790.
7024
7025 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7026
7027         * threads.c: set mono_thread_detach as a cleanup routine for every
7028         thread. This way it's always executed upon thread termination, either
7029         aborted or finished normally. No more xsp hangs!
7030
7031 2004-03-17  Martin Baulig  <martin@ximian.com>
7032
7033         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
7034         `int count_nested' and a `MonoType **nested'.
7035
7036         * reflection.c (mono_reflection_bind_generic_parameters): Moved
7037         most of the functionality into a new static
7038         do_mono_reflection_bind_generic_parameters() and don't take a
7039         `MonoType *nested_in' argument any more.  Don't compute nested
7040         types here.
7041         (mono_reflection_generic_inst_get_nested_types): New public method
7042         to get nested types.
7043
7044         * class.c (mono_class_create_generic): Set `klass->nested_in' if
7045         we're a nested class.
7046
7047         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
7048         mono_reflection_generic_inst_get_nested_types() to compute the
7049         nested types.
7050
7051 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
7052
7053         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
7054         descriptive error message under windows.
7055         
7056 2004-03-17  Martin Baulig  <martin@ximian.com>
7057
7058         * class.c (dup_type): Added `const MonoType *original' argument;
7059         copy the attrs from the original type.
7060
7061 2004-03-17  Martin Baulig  <martin@ximian.com>
7062
7063         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
7064         `m->generic_inst_cache' here.
7065
7066 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
7067
7068         * exception.h exception.c: Add stack_overflow_exception.
7069
7070 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7071
7072         * threadpool.c:
7073         (overlapped_callback): call SetEvent *after* invoking the callback.
7074         No need to call CloseHandle.
7075
7076 2004-03-16  Martin Baulig  <martin@ximian.com>
7077
7078         * reflection.c (mono_image_get_fieldref_token): Take a
7079         `MonoReflectionField *' instead of a `MonoClassField *' and a
7080         `MonoClass *'; store the `MonoReflectionField *' in the hash.
7081
7082 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7083
7084         * appdomain.c: don't add the culture to the filename we're looking for
7085         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
7086
7087 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7088
7089         * locales.c: don't ignore symbols when doing case insensitive compares.
7090         Thanks Dick! Fixes bug #54046.
7091
7092         * threads.c: surround 'threads' usage with enter/leave in
7093         mono_thread_manage.
7094
7095 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
7096
7097         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
7098         implicitly marshalled as [Out]. Fixes #55450.
7099
7100         (mono_marshal_get_runtime_invoke): Zero out the result if there is
7101         an exception.
7102
7103 2004-03-16  Martin Baulig  <martin@ximian.com>
7104
7105         * class.c (mono_class_from_generic_parameter): Use the actual
7106         parameter name. 
7107
7108 2004-03-16  Martin Baulig  <martin@ximian.com>
7109
7110         * reflection.c (type_get_signature_size): New static function.
7111         Compues the size of the type in a method signature.
7112         (method_get_signature_size): New static function; calls
7113         type_get_signature_size() to compute the actual size of the
7114         method's signature.
7115         (method_encode_signature): Use method_get_signature_size() to get
7116         the signature's size rather than using `nparams * 10'.
7117
7118 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7119
7120         * file-io.h: define here WapiOverlapped on windows. I don't want the
7121         regular OVERLAPPED one.
7122
7123         * file-io.c:
7124         * threadpool.c: somehow, BindIoCompletionCallback is not found.
7125         Disabling AIO on windows.
7126
7127 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7128
7129         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
7130         bug #55385.
7131
7132 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7133
7134         * appdomain.c: upgraded corlib version.
7135
7136         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
7137         and BeginWrite. Allow opening files for asynchrnous operations.
7138
7139         * file-io.h: new struct that maps FileStreamAsyncResult.
7140         * icall.c: added new icalls.
7141         * process.[ch]: support setting child process environment variables
7142         and use the SHELL or COMSPEC when UseShellExecute is true.
7143
7144         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
7145         callback for async. IO is here and also BindHandle.
7146
7147         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
7148         from here.
7149
7150 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
7151
7152         * reflection.c (create_custom_attr): Allow len == 0.
7153
7154         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
7155         computation on big-endian machines.
7156
7157 2004-03-13  Martin Baulig  <martin@ximian.com>
7158
7159         * class.h (MonoGenericInst): Added `int count_ifaces'.
7160
7161         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
7162         `ginst->count_ifaces' instead `klass->interface_count' since we
7163         may get called before the vtable is created.
7164
7165         * loader.c (mono_method_get_param_names): If we're a generic
7166         instance, return and don't initialize the class.
7167
7168         * reflection.c (mono_reflection_setup_generic_class): Don't call
7169         ensure_runtime_vtable().
7170         (mono_reflection_bind_generic_parameters): Set
7171         `ginst->count_ifaces'.
7172
7173 2004-03-11  Jackson Harper <jackson@ximian.com>
7174
7175         * icall.c:
7176         * unicode.c:
7177         * unicode.h: Remove unused System.Char icalls.
7178         
7179 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
7180
7181         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
7182         code when we P/Invoke the first library in Windows.Forms, instead
7183         of when we first open the assembly.
7184
7185         * assembly.c: Drop the lookup from here.
7186
7187 2004-03-10  Martin Baulig  <martin@ximian.com>
7188
7189         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
7190         class for properties, fields and events.  Finally fixes #54945.
7191
7192 2004-03-10  Martin Baulig  <martin@ximian.com>
7193
7194         * metadata.c (mono_metadata_class_equal): New static function;
7195         checks whether two generic instances or two generic parameters are
7196         equal.
7197         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
7198         compare classes.        
7199
7200 2004-03-10  Martin Baulig  <martin@ximian.com>
7201
7202         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
7203
7204         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
7205         argument and write it into the `reflection_info' field.
7206
7207         * icall.c
7208         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
7209         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
7210
7211 2004-03-09  Jackson Harper  <jackson@ximian.com>
7212
7213         * char-conversions.h: use 8 bits for numeric data its all we need
7214         * icall.c: numeric data is only 8 bits now.
7215
7216 2004-03-09  Martin Baulig  <martin@ximian.com>
7217
7218         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
7219
7220         * class.c (init_properties, init_events): Initialize the new
7221         `parent' field.
7222
7223         * reflection.c (typebuilder_setup_properties): Likewise.
7224         (typebuilder_setup_events): Likewise.
7225
7226         * reflection.h (MonoEventInfo): Replaced `parent with
7227         `declaring_type' and `reflected_type'.
7228
7229         * icall.c (ves_icall_get_property_info): Distinguish between
7230         declaring and reflected type.
7231         (ves_icall_get_event_info): Likewise.
7232
7233 2004-03-09  Martin Baulig  <martin@ximian.com>
7234
7235         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
7236         (ves_icall_Type_GetField): Correctly set field->klass.
7237
7238 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
7239
7240         * loader.h: Fix warning.
7241
7242 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
7243
7244         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
7245         library routine if present.  Notice that it will still continue
7246         executing even if its missing, for those working on the Gtk#
7247         edition of Windows.Forms.
7248
7249         * assembly.c (do_mono_assembly_open): If loading the
7250         System.Windows.Forms call mono_loader_wini_init.
7251
7252 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
7253
7254         * class.h: Added MonoRemoteClass struct.
7255         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
7256         function for MonoStrings.
7257         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
7258         Added internal call for getting the proxy type.
7259         * marshal.c: Get the type of transparent proxies from its remote_class.
7260         Added methods that generate the IL for type checks and casts:
7261         mono_marshal_get_isinst, mono_marshal_get_castclass, 
7262         mono_marshal_get_proxy_cancast.
7263         * marshal.h: Declaration of the previous new methods.
7264         * object.c: Added new moethods for creating and updating MonoRemoteClass
7265         instances: mono_remote_class, mono_upgrade_remote_class, 
7266         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
7267         * verify.c: FIx transparent_proxy_fields layout.
7268         * appdomain.c: Bump corlib version.
7269
7270 2004-03-04  Jackson Harper  <jackson@ximian.com>
7271
7272         * icall.c: Add icall to access char conversion tables.
7273         * char-conversions.h: Character conversion tables.
7274         * Makefile.am: Add char-conversions.h private header file.
7275         
7276 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
7277
7278         * appdomain.c (unload_thread_main): Increase unloading timeout to
7279         10 sec as a temporary workaround for Nant problems.
7280
7281 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
7282
7283         * gc.c: Add checks for GC_enable and GC_disable.
7284
7285         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
7286         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
7287         (bug #54988).
7288         
7289 2004-02-27  Martin Baulig  <martin@ximian.com>
7290
7291         * reflection.c (mono_reflection_bind_generic_parameters): Take a
7292         `MonoReflectionType *' instead of a `MonoType *'.
7293
7294 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
7295
7296         * gc.c (run_finalize): Avoid finalizing the object representing the
7297         finalizer thread.
7298         (finalizer_thread): Fix warning.
7299
7300 2004-02-25  Martin Baulig  <martin@ximian.com>
7301
7302         * class.c (_mono_class_get_instantiation_name): Added `int offset'
7303         argument for nested types.
7304         (mono_class_create_generic): Added support for nested generictypes.
7305
7306         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
7307         `GList *nested'.
7308
7309         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
7310
7311         * reflection.c (method_encode_signature): Increase the minimum
7312         value of `size' from 10 to 11.
7313         (mono_reflection_bind_generic_parameters): Take `int type_argc'
7314         and `MonoType **types' arguments instead of the `MonoArray
7315         *types'; added `MonoType *nested_in'.  Recursively instantiate
7316         nested classes. 
7317
7318 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
7319
7320         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
7321         stack_overflow_ex members which are used by exception handling.
7322
7323         * appdomain.c (mono_runtime_init): Initialize the new members.
7324
7325         * gc.c (mono_gc_enable): New helper function.
7326         * gc.c (mono_gc_disable): New helper function.
7327
7328 2004-02-23  Martin Baulig  <martin@ximian.com>
7329
7330         * icall.c: I must have been really stupid - make it actually work
7331         this time ;-)
7332
7333 2004-02-23  Martin Baulig  <martin@ximian.com>
7334
7335         * loader.c (method_from_memberref): Only inflate the method if
7336         it's in another klass.
7337
7338 2004-02-23  Martin Baulig  <martin@ximian.com>
7339
7340         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
7341         (mono_class_init): If we're a generic instance and an interface,
7342         compute `class->interface_id'; also create `class->interfaces'
7343         here and inflate them.
7344
7345         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
7346         `ginst->is_open'.
7347         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
7348
7349         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
7350
7351 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
7352
7353         * reflection.c (method_encode_code): Improved the error message
7354         generated by the exception.
7355
7356 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7357
7358         * icall.c: Martin did not do what he said in the ChangeLog for
7359         2004-02-18, but put back the changes for properties and events.
7360         Commenting those changes out again and adding comment to bug #54518.
7361         
7362         * process.c: removed warning.
7363
7364 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
7365
7366         * marshal.c (emit_struct_conv): Print an error message instead of
7367         asserting when a type does not have the StructLayout attribute.
7368
7369 2004-02-20  Martin Baulig  <martin@ximian.com>
7370
7371         * reflection.c (mono_type_get_object): Also use the cache for
7372         generic instances.
7373         (mono_reflection_bind_generic_parameters): Always compute
7374         `ginst->ifaces'.        
7375
7376 2004-02-20  Martin Baulig  <martin@ximian.com>
7377
7378         * class.h (MonoGenericMethod): Removed `klass'.
7379
7380         * class.c (mono_class_inflate_generic_method): Added `MonoClass
7381         *klass' argument.
7382
7383 2004-02-20  Martin Baulig  <martin@ximian.com>
7384
7385         * reflection.c (method_encode_methodspec): Actually use the
7386         uninflated signature for the memberref.
7387
7388 2004-02-20  Martin Baulig  <martin@ximian.com>
7389
7390         * class.h (MonoGenericMethod): Removed `declaring'.
7391
7392         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
7393         is NULL, compute it here.
7394
7395 2004-02-20  Martin Baulig  <martin@ximian.com>
7396
7397         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
7398
7399         * metadata.c (mono_metadata_generic_inst_hash): New method.
7400         (mono_metadata_generic_inst_equal): New method.
7401
7402         * reflection.c (mono_reflection_bind_generic_parameters): Use the
7403         `klass->image->generic_inst_cache' cache to avoid creating
7404         duplicate MonoGenericInst's.
7405
7406         * class.c (mono_class_inflate_generic_type): Use the cache.
7407
7408 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7409
7410         * object.c: fixed gc descriptor calculation for embedded valuetypes.
7411
7412 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7413
7414         * icall.c: added Socket.WSAIoctl icall.
7415
7416         * socket-io.[ch]: implemented
7417         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
7418
7419 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
7420
7421         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
7422
7423 2004-02-18  Urs C Muff  <umuff@quark.com>
7424
7425         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
7426         this work on PPC and other big-endian architectures.
7427
7428         * debug-mono-symfile.h: Prepended the names of all the `guint32'
7429         fields with an underscore to make sure they're only accessed by
7430         the read32() macro.
7431
7432 2004-02-18  Martin Baulig  <martin@ximian.com>
7433
7434         * icall.c: Put the klass->refclass changes back for methods and
7435         fields, but not for properties and events.  We're currently not
7436         distinguishing between DeclaringType and ReflectedType for
7437         properties and events, that's what caused the regressions.
7438
7439 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7440
7441         * object.c:
7442         (mono_async_result_new): the handle can be NULL.
7443
7444         * threadpool.c: Use an event instead of a semaphore, don't initialize
7445         it until needed. This saves quite a few semaphores from being created
7446         when using the threadpool.
7447
7448 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
7449
7450         * object.c (mono_string_is_interned_lookup): Fix interning of long
7451         strings. Fixes #54473.
7452
7453         * domain.c (ldstr_equal): Optimize if the two strings are equal.
7454
7455         * icall.c: Revert the klass->refclass changes since they introduce
7456         regressions (bug #54518).
7457
7458 2004-02-18  Martin Baulig  <martin@ximian.com>
7459
7460         * class.c (mono_class_init): If we're a generic instance and don't
7461         come from a TypeBuilder, inflate our members here.
7462         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
7463         (mono_class_create_generic): New public method.
7464         (mono_class_initialize_generic): Removed.
7465         (get_instantiation_name): Renamed to
7466         _mono_class_get_instantiation_name() and made it public.
7467
7468 2004-02-18  Martin Baulig  <martin@ximian.com>
7469
7470         * class.c (mono_class_inflate_generic_type): Clear the new
7471         instance's `nginst->klass' when inflating a generic instance.
7472         (mono_class_is_subclass_of): Added (basic) support for generic
7473         instances.
7474
7475 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
7476
7477         * appdomain.h, domain.c: use a MonoCodeManager instead of a
7478         MonoMempool to hold compiled native code.
7479
7480 2004-02-17  Martin Baulig  <martin@ximian.com>
7481
7482         * class.h (MonoDynamicGenericInst): Added `count_properties' and
7483         `properties'.
7484
7485         * reflection.c (mono_reflection_generic_inst_initialize): Added
7486         `MonoArray *properties' argument.
7487
7488         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
7489
7490 2004-02-17  Martin Baulig  <martin@ximian.com>
7491
7492         * icall.c (ves_icall_Type_GetFields): Renamed to
7493         ves_icall_Type_GetFields_internal() and added a
7494         `MonoReflectionType *rtype' argument; pass it to
7495         mono_field_get_object() to set the field's "reflected" type.
7496         (ves_icall_Type_GetConstructors): Likewise.
7497         (ves_icall_Type_GetEvents): Likewise.
7498         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
7499         argument; pass it to mono_method_get_object() to set the method's
7500         "reflected" type.       
7501
7502 2004-02-17  Martin Baulig  <martin@ximian.com>
7503
7504         * class.h (MonoDynamicGenericInst): New type.
7505         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
7506
7507         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
7508         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
7509         (ves_icall_MonoGenericInst_GetFields): New interncall.
7510
7511         * class.c (mono_class_from_generic): Don't call
7512         mono_class_initialize_generic() if this is a dynamic instance;
7513         ie. it's being created from a TypeBuilder.
7514         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
7515         `class->byval_arg.type'.
7516
7517         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
7518         to `inflate_method' and made static.
7519         (mono_reflection_inflate_field): Removed.
7520         (mono_reflection_generic_inst_initialize): New public method.
7521
7522         * reflection.h (MonoReflectionGenericInst): Removed `methods',
7523         `ctors' and `fields'; added `initialized'.
7524
7525 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
7526
7527         * debug-helpers.c (mono_method_full_name): Fix output for empty
7528         namespaces.
7529
7530 2004-02-12  Martin Baulig  <martin@ximian.com>
7531
7532         * class.h (MonoClassField): Added `MonoType *generic_type'.
7533
7534         * reflection.c (mono_image_get_fieldref_token): Added support for
7535         instantiated generic types.
7536         (field_encode_inflated_field): Removed.
7537         (mono_image_get_inflated_field_token): Removed.
7538         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
7539
7540         * reflection.h (MonoReflectionInflatedField): Removed.
7541
7542 2004-02-12  Martin Baulig  <martin@ximian.com>
7543
7544         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
7545         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
7546
7547         * reflection.c (mono_image_get_methodspec_token): Take a
7548         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
7549         (mono_image_create_token): Check whether we have a
7550         `method->signature->gen_method' and call
7551         mono_image_get_methodspec_token() if appropriate.
7552         (inflated_method_get_object): Removed.
7553         (mono_reflection_bind_generic_method_parameters): Return a
7554         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
7555         (mono_reflection_inflate_method_or_ctor): Likewise.
7556
7557         * reflection.h (MonoReflectionInflatedMethod): Removed.
7558
7559 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
7560
7561         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
7562         for custom valuetype marshalling.
7563
7564         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
7565
7566 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7567
7568         * icall.c: fixed WSAGetLastError_internal name.
7569
7570 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
7571
7572         * threads.c (mono_thread_attach): Allow this to be called multiple
7573         times for a thread.
7574         
7575         * threads.c (build_wait_tids): Do not wait for ourselves.
7576
7577         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
7578         appdomain list is empty.
7579
7580         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
7581         memory returned by mono_string_builder_to_utf16, since it points into
7582         managed memory. Thanks to Bernie Solomon for noticing this.
7583
7584         * icall.c: Add AppDomainSetup icalls.
7585
7586         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
7587
7588         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
7589         types.
7590
7591         * reflection.c (reflection_methodbuilder_to_mono_method): Save
7592         custom attributes to the method_aux struct. Also fix array indexes etc.
7593
7594         * loader.c (mono_method_get_param_names): Make dynamic case work again.
7595         
7596 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
7597
7598         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
7599         (both static and runtime) and reduce startup time.
7600
7601 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
7604         AsAny marshalling conversion instead of crashing.
7605
7606         * marshal.c: Fix warnings.
7607
7608 2004-02-09  Martin Baulig  <martin@ximian.com>
7609
7610         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
7611
7612         * reflection.h (MonoReflectionInflatedMethod): Removed the
7613         `declaring' field, it's now in the unmanaged MonoGenericMethod.
7614
7615         * reflection.c (method_encode_methodspec): Removed the `method'
7616         argument; we get it from `gmethod->declaring'.
7617         (inflated_method_get_object): Removed the `declaring' argument.
7618
7619 2004-02-09  Martin Baulig  <martin@ximian.com>
7620
7621         * class.h (MonoGenericMethod): New type.
7622         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
7623         `generic_method'.
7624
7625         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
7626         a `MonoGenericMethod *gen_method' one.
7627
7628         * class.c (mono_class_inflate_generic_type): Take an additional
7629         `MonoGenericMethod * argument.  This is only non-NULL if we're
7630         inflating types for a generic method.   
7631         (mono_class_inflate_generic_signature): Renamed to
7632         inflate_generic_signature() and made static; take a
7633         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
7634         (inflate_generic_header): Take a `MonoGenericMethod *' argument
7635         instead of a `MonoGenericInst *' one.
7636         (mono_class_inflate_generic_method): Likewise.
7637
7638         * reflection.c (encode_generic_method_sig): Take a
7639         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
7640         (method_encode_methodspec): Likewise.
7641         (inflated_method_get_object): Likewise. 
7642
7643         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
7644         field with a `MonoGenericMethod *gmethod' one.  
7645
7646 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
7647
7648         * class.h (mono_class_has_parent): add parens to expansion
7649         so you can ! this.
7650
7651 2004-02-08  Martin Baulig  <martin@ximian.com>
7652
7653         * image.h (MonoImage): Removed `generics_cache'.
7654
7655         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
7656         instead of a `MonoType *' argument; removed the `inflate_methods'
7657         argument.  Don't inflate methods here.
7658
7659         * loader.c (find_method): If it's a generic instance, call
7660         mono_class_init() on the `sclass->generic_inst->generic_type'.
7661
7662         * metadata.c (mono_type_size): Make this work on uninitialized
7663         generic instances; call it on the `ginst->generic_type's class.
7664
7665         * reflection.c (mono_reflection_bind_generic_parameters): Call
7666         mono_class_from_generic() to create the `ginst->klass'.
7667
7668 2004-02-08  Martin Baulig  <martin@ximian.com>
7669
7670         * class.h (MonoClass): Changed type of `generic_inst' from
7671         `MonoType *' to `MonoGenericInst *'.
7672
7673 2004-02-08  Martin Baulig  <martin@ximian.com>
7674
7675         * icall.c (ves_icall_Type_BindGenericParameters): Just call
7676         mono_type_get_object(), this is now creating a `MonoGenericInst'
7677         for MONO_TYPE_GENERICINST.
7678         (ves_icall_MonoGenericInst_GetParentType): Likewise.
7679         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
7680
7681         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
7682         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
7683         (inflated_method_get_object): Added `MonoClass *refclass' argument.
7684         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
7685         and reflected type.
7686
7687         * reflection.h (MonoReflectionInflatedMethod): Removed
7688         `declaring_type' and `reflected_type'.
7689
7690 2004-02-08  Martin Baulig  <martin@ximian.com>
7691
7692         * class.h (MonoGenericInst): Added `MonoType *parent' and
7693         `MonoType **ifaces'.
7694
7695         * reflection.h (MonoReflectionGenericInst): Removed `klass',
7696         `parent' and `interfaces'.
7697
7698         * reflection.c (mono_reflection_bind_generic_parameters): Take a
7699         `MonoType *' argument and return a `MonoType *'.
7700
7701         * icall.c
7702         (ves_icall_MonoGenericInst_GetParentType): New interncall.
7703         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
7704
7705 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
7706
7707         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
7708         valuetype marshalling.
7709
7710 2004-02-06  Martin Baulig  <martin@ximian.com>
7711
7712         * class.c
7713         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
7714         (my_mono_class_from_generic_parameter): Likewise.
7715
7716 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
7717
7718         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
7719         contents of the symbol files lazily.
7720
7721         * object.h (MonoThread): Add 'name' and 'name_len' fields.
7722
7723         * threads.h threads.c icall.c: New icalls for getting and setting the
7724         threads name.
7725
7726 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
7727
7728         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
7729         Raise an exception when the domain is not found.
7730
7731 2004-02-03  Martin Baulig  <martin@ximian.com>
7732
7733         * reflection.c (mono_image_get_methodspec_token): Use the
7734         uninflated signature; fixes gen-33.
7735
7736 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
7737
7738         * gc.c threads.c: Make the finalizer thread a normal managed thread so
7739         the finalizer code can use thread functionality.
7740
7741         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
7742         the finalizer thread.
7743
7744         * threads.c: Make some functions more robust.
7745
7746         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
7747
7748         * metadata.h: Add new marshalling conventions.
7749
7750         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
7751         stringbuilder marshalling. Fixes #53700.
7752
7753         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
7754
7755         * reflection.c (mono_image_get_type_info): Save declarative security
7756         info.
7757
7758         * reflection.c (mono_image_get_field_info): Handle uninitialized 
7759         unmanaged fields as well.
7760
7761         * appdomain.c: Bump corlib version.
7762
7763 2004-02-01  Martin Baulig  <martin@ximian.com>
7764
7765         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
7766         method type arguments.  
7767
7768 2004-01-30  Duncan Mak  <duncan@ximian.com>
7769
7770         * marshal.h: Add prototype for
7771         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
7772         and
7773         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
7774         fix the build.
7775
7776 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
7777
7778         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
7779         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
7780
7781 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
7782
7783         * marshal.c (mono_marshal_get_native_wrapper): Add support for
7784         custom marshalling of valuetypes.
7785
7786         * marshal.c: Fix some warnings.
7787
7788 2004-01-29  Martin Baulig  <martin@ximian.com>
7789
7790         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
7791         for generic method parameters.
7792
7793         * reflection.c (method_encode_methodspec): Write the uninflated
7794         signature into the methodspec table.
7795         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
7796         is always the uninflated method.
7797         (reflection_methodbuilder_to_mono_method): Copy the generic
7798         parameters from the MethodBuilder into `header->gen_params'.
7799
7800 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
7801
7802         * class.c (mono_class_from_generic_parameter): Fix warning.
7803
7804 2004-01-27  Martin Baulig  <martin@ximian.com>
7805
7806         * class.c (mono_class_from_generic_parameter): Don't create
7807         `klass->methods' here.  
7808
7809 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
7810
7811         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
7812         extension since it does not work with libraries named lib<FOO>.dll.so.
7813
7814 2004-01-25  Martin Baulig  <martin@ximian.com>
7815
7816         * class.c (mono_class_inflate_generic_type): Added support for
7817         MONO_TYPE_GENERICINST.
7818
7819         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
7820         inflate methods on open constructed types.      
7821
7822 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7823
7824         * object.c: fire ProcessExit event in the root AppDomain after running
7825         Main. Fixes bug #53299.
7826
7827 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
7828
7829         * socket-io.c: include the new socket-wrappers.h header.
7830         Use the wrappers instead of the unix socket functions to make the code
7831         more clear.
7832
7833 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
7834
7835         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
7836
7837         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
7838         Fixes #22532.
7839
7840 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
7841
7842         * reflection.c (mono_image_create_pefile): Handle the case when the
7843         entry point is not a MethodBuilder.
7844
7845         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
7846         field to ReflectionMethod since it is not allways a builder.
7847
7848         * reflection.c (type_get_fully_qualified_name): New helper function to
7849         return the fully qualified name of a type.
7850
7851         * reflection.c (encode_marshal_blob): Always emit the fully qualified
7852         type name for custom marshallers.
7853
7854         * reflection.c (mono_marshal_spec_from_builder): Ditto.
7855
7856         * class.c (mono_class_setup_vtable): If a parent class already 
7857         implements an interface, use the implementing methods from that class.
7858         Fixes #53148.
7859
7860 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7861
7862         * threadpool.c: just return instead of ExitThread to allow for thread
7863         clean up earlier.
7864
7865 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
7866
7867         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
7868         when closing resource modules.
7869
7870         * reflection.c (mono_image_create_pefile): Handle the case when the
7871         entry point is not a MethodBuilder.
7872
7873         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
7874         field to ReflectionMethod since it is not allways a builder.
7875
7876 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7877
7878         * marshal.c (mono_marshal_get_managed_wrapper): 
7879         mono_marshal_alloc takes native int so CONV_I
7880         the arg for 64bits.
7881
7882 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
7883
7884         * reflection.c (fixup_cattrs): New function to fixup the methoddef
7885         tokens in the cattr table. Fixes #53108.
7886
7887 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7888
7889         * loader.c: don't trim ".dll" before looking up in the config file.
7890         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
7891
7892 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
7893
7894         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
7895         Return the module which contains the resource as well.
7896         (ves_icall_System_Reflection_Module_Close): New icall.
7897
7898         * appdomain.c: Bump corlib version number.
7899
7900         * image.c (mono_image_addref): New public function.
7901
7902         * assembly.c: Call mono_image_addref.
7903
7904         * reflection.c (mono_module_get_object): Increase reference count of 
7905         the image.
7906
7907         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
7908         Fixes #22532.
7909
7910         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
7911         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
7912         proper exceptions on DllImport problems.
7913
7914 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
7915
7916         * class.c, metadata.c: eliminate CSIZE macro.
7917
7918 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
7919
7920         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
7921         * object.h: Added async_callback field in MonoAsyncResult.
7922         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
7923         * verify.c: Added async_callback in MonoAsyncResult layout.
7924
7925 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
7926
7927         * reflection.c (mono_reflection_get_custom_attrs): Add support
7928         for Modules.
7929
7930 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
7931
7932         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
7933         marshalling.
7934         (mono_marshal_method_from_wrapper): Add null pointer check.
7935
7936 2004-01-16  Martin Baulig  <martin@ximian.com>
7937
7938         * debug-mono-symfile.h: Set version number to 36 and reflect
7939         latest symbol writer changes.
7940
7941 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
7942
7943         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
7944         multi-dimensional arrays.
7945         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
7946         (mono_class_from_mono_type): Use bounded_array_class_get.
7947         
7948         * class.c (mono_bounded_array_class_get): New function which takes
7949         a 'bounded' bool argument to distinguish vectors from one dimensional
7950         arrays.
7951
7952         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
7953         bounded_array_class_get if the array has bounds.
7954
7955         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7956         Search modules loaded using AssemblyBuilder:AddModule as well.
7957
7958 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7959
7960         * appdomain.c: increased corlib version.
7961         * filewatcher.c: removed g_print.
7962         * icall.c:
7963         (get_property_info): only allocate what is actually requested.
7964         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
7965
7966 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7967
7968         * Makefile.am: added filewatcher.[ch]
7969         * filewatcher.[ch]: FileSystemWatcher runtime support.
7970         * icall.c: added new FSW icalls.
7971
7972 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
7973
7974         * string-icalls.c: fix stringbuilder regression as suggested by
7975         Iain McCoy <iain@mccoy.id.au>.
7976
7977 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
7978
7979         * process.c (process_read_stringtable_block): Recognize '007f' as
7980         a language neutral stringtable block.
7981
7982 2004-01-12  Patrik Torstensson
7983
7984         * object.h (MonoStringBuilder) : Changed layout to support our
7985         new stringbuilder class.
7986         * marshal.c: Change marshalling to support the new layout of 
7987         string builder.
7988         * appdomain.c: increased version number because new layout of
7989         string builder.
7990
7991 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
7992
7993         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
7994         assembly name as an string instead of an AssemblyName, since it is
7995         easier to extract info from it.
7996
7997         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
7998         the culture subdirectories too. Fixes #52231.
7999
8000 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8001
8002         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
8003         It takes 2 new parameters with an optional name for the method to look
8004         for and case ignoring info.
8005
8006         * threadpool.c: removed unused variable.
8007
8008 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8009
8010         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
8011         It takes 2 new parameters with an optional name for the property to look
8012         for and case ignoring info.
8013         Fixes bug #52753.
8014
8015 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
8016
8017         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
8018         Fix #52451.
8019
8020 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8021
8022         * appdomain.c:
8023         * assembly.c: escape the uri before passing it to g_filename_from_uri.
8024         Fixes bug #52630.
8025
8026 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
8027
8028         * reflection.c: Add support for more than one unmanaged resource.
8029
8030         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
8031         in field->def_value, as done in all other cases.
8032
8033         * reflection.c (mono_reflection_get_custom_attrs): Add support for
8034         TypeBuilders.
8035
8036         * reflection.c (mono_reflection_create_runtime_class): Remove 
8037         errorneous assignment to klass->element_class, since it is already
8038         done in mono_reflection_setup_internal_class.
8039
8040 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8041
8042         * gc.c: added missing LeaveCriticalSection.
8043         * icall.c: indented a couple of lines.
8044         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
8045         if we call EndInvoke inside a callback. Fixes bug #52601.
8046
8047 2004-01-07  Martin Baulig  <martin@ximian.com>
8048
8049         * mono-debug-debugger.h
8050         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
8051
8052 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
8053
8054         * appdomain.c: Use messages in NotImplementedException.
8055
8056         * exception.c (mono_get_exception_not_implemented): Now this takes
8057         a message argument.
8058
8059         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
8060         exception instead of g_asserting an aborting when something is not
8061         implemented.
8062
8063         Add some inline docs.
8064
8065 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
8066
8067         * reflection.h: Update after changes to object layout.
8068
8069         * reflection.c: Implement saving of unmanaged aka win32 resources.
8070
8071         * appdomain.c: Bump version number.
8072
8073         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
8074         Handle missing domains gracefully.
8075
8076 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
8077
8078         * file-io.c : On Windows, there are much more invalid_path_chars.
8079
8080 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
8081
8082         * class.h, object.c: prepare for GetType () speedup.
8083
8084 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
8085
8086         * profiler.c: workaround for --profile null reference exception on
8087           cygwin. Patch by Patrik Torstensson.
8088
8089 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
8090
8091         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
8092         make work for unaligned access.
8093
8094 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
8095
8096         * class.c: small cleanup (class->fields [i] -> field).
8097         * image.c: check address of metadata is valid.
8098
8099 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
8100
8101         * assembly.h assembly.c (mono_assembly_loaded): New public function to
8102         search the list of loaded assemblies.
8103
8104         * reflection.c (mono_reflection_type_from_name): Use 
8105         mono_assembly_loaded instead of mono_image_loaded.
8106
8107         * reflection.c: Fix warnings.
8108
8109 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
8110
8111         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
8112         is dynamic. This is needed since an assembly can contain both dynamic and
8113         non-dynamic images.
8114
8115         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
8116         assembly->dynamic.
8117
8118         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
8119
8120         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
8121         to store modules loaded using AddModule.
8122
8123         * reflection.c (mono_image_fill_file_table): Generalize this so it works
8124         on Modules.
8125
8126         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
8127
8128         * reflection.c (mono_image_fill_export_table_from_module): New function to
8129         fill out the EXPORTEDTYPES table from a module.
8130
8131         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
8132         into a separate function. Also handle loaded non-dynamic modules.
8133
8134         * reflection.c (mono_image_basic_init): Fix memory allocation.
8135
8136         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8137
8138         * assembly.c (mono_assembly_load_references): Make this public.
8139
8140 2003-12-19  Martin Baulig  <martin@ximian.com>
8141
8142         * class.c (mono_class_initialize_generic): Made this static, take
8143         a `MonoGenericInst *' instead of a `MonoClass *'.
8144         (mono_class_from_generic): Call mono_class_initialize_generic()
8145         unless we're already initialized or being called from
8146         do_mono_metadata_parse_generic_inst().
8147
8148         * class.h (MonoGenericInst): Added `initialized' and
8149         `init_pending' flags.
8150
8151         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
8152         `mono_class_init (gklass)' or mono_class_initialize_generic()
8153         here; set `generic_inst->init_pending' while parsing the
8154         `type_argv'.
8155
8156 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
8157
8158         * locales.c: include string.h for memxxx prototypes
8159
8160 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
8161
8162         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
8163         constructor when accessing literal fields.
8164
8165 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
8166
8167         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8168
8169         * reflection.c (assembly_add_resource_manifest): New function to fill
8170         the MANIFESTRESOURCE table.
8171
8172         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
8173
8174         * reflection.h: Update to changes in class layout.
8175
8176         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
8177         Reenable call to mono_runtime_is_shutting_down ().
8178
8179         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
8180         determine if the runtime is shutting down.
8181
8182 2003-12-16  Jackson Harper <jackson@ximian.com>
8183
8184         * icall.c: comment out call to mono_runtime_is_shutting_down to
8185         fix build.
8186         
8187 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
8188
8189         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
8190         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
8191
8192 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
8193
8194         * reflection.c: move definition of swap_with_size
8195         to before its first call
8196
8197 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
8198
8199         * appdomain.c (mono_runtime_is_shutting_down): New public function.
8200
8201         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
8202         icall.
8203
8204         * object.c: Fix warnings.
8205
8206         * icall.c (ves_icall_Type_Get...): Only consider inherited static
8207         members if FlattenHierarchy is set.
8208
8209         * reflection.c (mono_image_add_decl_security): New function to emit
8210         declarative security.
8211
8212         * reflection.h reflection.c: Add support for declarative security.
8213
8214         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
8215         
8216 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
8217
8218         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
8219         
8220         * appdomain.c verify.c: Moved corlib version checking into its own
8221         function in appdomain.c since it needs to create vtables etc.
8222
8223 2003-12-13  Patrik Torstensson <p@rxc.se>
8224
8225         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
8226         instead of unwrapped server.
8227
8228 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
8229
8230         * verify.c (check_corlib): Fix field index.
8231
8232 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
8233
8234         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
8235         GetGacPath icall.
8236
8237 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
8238
8239         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
8240         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
8241         cope with sizeof(size_t) != sizeof(guint32).
8242
8243 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8244
8245         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
8246         in case of failure.
8247
8248 2003-12-10  Mark Crichton <crichton@gimp.org>
8249
8250         * icall.c: removed the GetNonZeroBytes.  We now handle this case
8251         in managed code.
8252
8253         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
8254
8255 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
8256
8257         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
8258         marked as deleted.
8259
8260 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
8261
8262         * verify.c (check_corlib): Handle the case when the version field is 
8263         initialized by a static constructor.
8264
8265 2003-12-08  Patrik Torstensson  <p@rxc.se>
8266
8267     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
8268
8269 2003-12-08  Martin Baulig  <martin@ximian.com>
8270
8271         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
8272         a MonoReflectionGenericParameter, also take the parameter index
8273         and name as arguments.
8274         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
8275         (ves_icall_MonoGenericParam_initialize): New interncall.
8276         (ves_icall_Type_make_byref_type): New interncall.
8277
8278         * reflection.h (MonoReflectionGenericParam): Derive from
8279         MonoReflectionType, not just from MonoObject.  Added `refobj' and
8280         `index' fields.
8281
8282         * reflection.c (mono_reflection_define_generic_parameter): Create
8283         and return a new MonoReflectionGenericParam; don't initialize the
8284         constraints here.
8285         (mono_reflection_initialize_generic_parameter): New public method;
8286         initializes the constraints and creates the `param->pklass'.
8287
8288 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
8289
8290         * reflection.h reflection.c: Use the new fields 'num_types', 
8291         'num_fields' and 'num_methods' to track the number of types etc.
8292
8293         * verify.c (check_corlib): Check corlib version number.
8294
8295 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
8296
8297         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
8298         function works on all methods.
8299
8300 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
8301
8302         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
8303         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
8304         the custom_type_info flag of the transparent proxy.
8305         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
8306         objects that supports IRemotingTypeInfo.
8307         * object.h: Added custom_type_info field in transparent proxy.
8308
8309 2003-12-06  Martin Baulig  <martin@ximian.com>
8310
8311         * class.c (mono_class_create_from_generic): Removed.
8312         (mono_class_from_generic): Check `ginst->klass' before doing
8313         anything else.  This is important to fully support "recursive"
8314         generic types.
8315
8316         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
8317         empty `generic_inst->klass' before doing anything else.
8318
8319 2003-12-06  Dick Porter  <dick@ximian.com>
8320
8321         * verify.c: 
8322         * object.h:
8323         * icall.c:
8324         * locales.c: Use C structs to access class fields.  Don't do a
8325         conversion between MonoString and UChar because both are
8326         platform-endian UTF-16.  Compare now takes startindex and count
8327         parameters.  Add a char overload for IndexOf.  Speed up the
8328         invariant string IndexOf.
8329
8330 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
8331
8332         * Makefile.am (monosn_LDADD): Fix parallel build.
8333
8334 2003-12-04  Martin Baulig  <martin@ximian.com>
8335
8336         * icall.c
8337         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8338         (ves_icall_Type_make_array_type): New interncall.       
8339
8340 2003-12-04  Martin Baulig  <martin@ximian.com>
8341
8342         * locales.c: also change it in the !HAVE_ICU case.
8343
8344 2003-12-04  Dick Porter  <dick@ximian.com>
8345
8346         * icall.c:
8347         * locales.c: construct_compareinfo is now in CompareInfo, not
8348         CultureInfo.
8349
8350 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
8351
8352         * image.c (mono_image_load_file_for_image): Cache loaded images in the
8353         image->files array.
8354
8355         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
8356         table as well.
8357
8358         * assembly.c (mono_assembly_load_references): Only load references
8359         once.
8360
8361         * class.c (mono_class_from_name): Avoid linear search of the 
8362         EXPORTEDTYPE table.
8363
8364         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
8365
8366 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
8367
8368         * image.h (MonoImage): Add 'field_cache' field.
8369
8370         * loader.c (mono_field_from_token): Cache field lookups.
8371         
8372         * reflection.c (mono_module_get_object): Fix name property.
8373
8374         * icall.c (ves_icall_get_enum_info): Update after changes to 
8375         mono_metadata_get_constant_index ().
8376
8377         * icall.c: Get rid of get_type_info icall, use a separate icall for
8378         each type property to avoid needless memory allocations. Fixes #51514.
8379
8380         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
8381         to avoid needless binary searches.
8382
8383         * class.c (class_compute_field_layout): Move the initialization of
8384         field->def_value to mono_class_vtable ().
8385
8386         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
8387         non-corlib types.
8388
8389         * object.c (mono_object_allocate): Make it inline.
8390
8391         * object.c (mono_object_allocate_spec): Make it inline.
8392         
8393 2003-12-02  Dick Porter  <dick@ximian.com>
8394
8395         * locales.c (create_NumberFormat): NumberFormatInfo construction.
8396         Patch by Mohammad DAMT (mdamt@cdl2000.com).
8397
8398 2003-12-01  Dick Porter  <dick@ximian.com>
8399
8400         * threads.c: Fix signature and call in CreateMutex and
8401         CreateEvent.
8402
8403 2003-12-01  Dick Porter  <dick@ximian.com>
8404
8405         * icall.c: 
8406         * locales.c: Implement string compares and searching
8407
8408         * object.h: Add extra Thread field
8409
8410 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
8411
8412         * reflection.c (fixup_method): Add support for MonoCMethod.
8413
8414 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
8415
8416         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
8417
8418         * reflection.c (assembly_name_to_aname): Allow extra characters in
8419         assembly names. Fixes #51468.
8420
8421 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
8422
8423         * exception.c (mono_exception_from_name_domain): New helper function.
8424
8425         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
8426         exception object in the correct domain.
8427
8428         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
8429         formatting + make a copy a the input data.
8430
8431         * loader.c (mono_get_method_from_token): Methods which contain
8432         native code do not have entries in the ImplMap.
8433
8434         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
8435         Thanks to Gonzalo for spotting this.
8436         
8437         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
8438         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
8439
8440         * assembly.h (mono_assembly_load_from): Split the second part of 
8441         assembly loading into a new public function.
8442
8443         * exception.h (mono_get_exception_bad_image_format): New function.
8444
8445 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
8446
8447         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
8448         Enumerate all modules inside a dynamic assembly. Fixes #51293.
8449         
8450         * icall.c: Add new icall for creating dynamic methods.
8451
8452         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
8453
8454         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
8455
8456         * reflection.c (mono_reflection_create_dynamic_method): New icall to
8457         create a dynamic method.
8458
8459         * reflection.c (resolve_object): New helper function.
8460
8461         * reflection.c: Generalize ReflectionMethodBuilder and the functions
8462         which manipulate it so they can also work on dynamic methods.
8463
8464         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
8465         creating the MonoReflectionMethodAux structure if it is not needed.
8466         
8467         * reflection.h verify.c: Update after changes to object layout.
8468
8469         * reflection.c (method_builder_encode_signature): Fix compilation on
8470         gcc 2.95.x.
8471
8472 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
8473
8474         * appdomain.h: Added support for context static fields. Added static_data
8475           field to MonoAppContext and renamed thread_static_fields to a more
8476           generic special_static_fields in MonoAppDomain, since it can now contain
8477           context static fields.
8478         * domain.c: Updated hashtable name.
8479         * object.c: Replaced field_is_thread_static() for a more generic
8480           field_is_special_static() which also checks for context static attribute.
8481           In mono_class_vtable(), added support for static context fields.
8482         * threads.c: Changed methods that manage thread static fields to more
8483           generic methods so they can be reused both for thread and context static
8484           data.
8485         * threads.h: Declared some new methods.
8486
8487 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
8488
8489         * reflection.h: Update after changes to the managed types.
8490
8491         * reflection.c (encode_custom_modifiers): New helper function.
8492
8493         * reflection.c (method_encode_signature): Emit custom modifiers.
8494
8495         * reflection.c (field_encode_signature): Emit custom modifiers.
8496
8497 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
8498
8499         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
8500
8501         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
8502         implementation.
8503
8504         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
8505         icall.
8506
8507         * object.c (mono_field_get_value_object): New function.
8508
8509         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
8510         specific.
8511
8512 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
8513
8514         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
8515         return a preallocated out-of-memory exception instance.
8516
8517         * object.c (out_of_memory): Use the new function.
8518
8519         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
8520         flag is before the custom modifiers. Fixes #49802.
8521
8522 2003-11-16  Martin Baulig  <martin@ximian.com>
8523
8524         * class.c (mono_class_is_open_constructed_type): Implemented the
8525         MONO_TYPE_GENERICINST case.
8526
8527 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
8528
8529         * assembly.c (mono_assembly_fill_assembly_name): New function to
8530         fill out the MonoAssemblyName structure.
8531         (mono_assembly_open): Use the new function.
8532
8533         * icall.c (fill_reflection_assembly_name): New helper function.
8534
8535         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
8536         new function.
8537
8538         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
8539
8540 2003-11-15  Martin Baulig  <martin@ximian.com>
8541
8542         * class.c (mono_class_is_open_constructed_type): New public
8543         function; checks whether a type is an open constructed type,
8544         ie. whether it still contains type parameters.
8545         (mono_class_inflate_generic_type): If we're a type parameter and
8546         the inflated type is also a MONO_TYPE_(M)VAR, return the original
8547         type.
8548
8549         * class.h (MonoGenericInst): Added `guint32 is_open'.
8550
8551         * loader.c (method_from_methodspec): Check whether we're an open
8552         or closed constructed type and set `ginst->is_open'.
8553
8554         * reflection.c (mono_reflection_bind_generic_parameters): Check
8555         whether we're an open or closed constructed type and set
8556         `ginst->is_open'.
8557         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
8558         from open constructed types.
8559
8560 2003-11-15  Martin Baulig  <martin@ximian.com>
8561
8562         * reflection.c (mono_reflection_bind_generic_parameters): If we're
8563         a generic instance (instead of a generic type declaration) with
8564         unbound generic parameters, bind them to our actual types.
8565
8566 2003-11-14  Martin Baulig  <martin@ximian.com>
8567
8568         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
8569
8570         * reflection.c (mono_reflection_bind_generic_parameters): If we're
8571         an interface type, populate `res->interfaces' with instantiated
8572         versions of all the interfaces we inherit.
8573
8574 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
8575
8576         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
8577         when MONO_PATH is set but doesn't contain the install dir.
8578
8579 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8580
8581         * icall.c:
8582         (ves_icall_Type_GetInterfaces): don't return an interface twice when
8583         it's also implemented in base classes. Fixes bug #50927.
8584
8585 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
8586
8587         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
8588         if this method is called from a finalizer. Fixes #50913.
8589
8590 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
8591
8592         * threads.c: Implement VolatileRead/VolatileWrite
8593
8594         * icall.c: Add new icalls for VolatileRead/VolatileWrite
8595
8596 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8597
8598         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
8599         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
8600         2.95.3.
8601
8602         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
8603         from Peter Ross (pro@missioncriticalit.com).
8604         
8605 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
8606
8607         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
8608
8609 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8610
8611         * assembly.c (mono_assembly_load_references): Disable check because it
8612         triggers on older corlibs which lots of people have.
8613
8614 2003-11-12  Jackson Harper  <jackson@ximian.com>
8615
8616         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
8617         load corlib.dll if mscorlib.dll is not found.
8618         * assembly.h: Remove corlib name define.
8619         * class.c:
8620         * domain.c:
8621         * image.c: Change corlib name to mscorlib.
8622         
8623 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
8624
8625         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
8626
8627 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
8628
8629         * appdomain.h: Added loader_optimization here to sync with the C#
8630         code, and add disallow_binding_redirects field.
8631
8632 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
8633
8634         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
8635
8636         * reflection.c (mono_image_build_metadata): Fix crash on modules
8637         with no types.
8638
8639         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
8640
8641         * icall.c (ves_icall_get_method_info): Return callingConvention as
8642         well.
8643
8644         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
8645         namespaces from the EXPORTEDTYPE table as well.
8646
8647         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
8648         from all modules inside the assembly.
8649         
8650 2003-11-11  Martin Baulig  <martin@ximian.com>
8651
8652         * reflection.c (mono_reflection_bind_generic_parameters): Make
8653         this work for interfaces.
8654
8655 2003-11-11  Martin Baulig  <martin@ximian.com>
8656
8657         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
8658
8659 2003-11-11  Martin Baulig  <martin@ximian.com>
8660
8661         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
8662         "MonoInflatedMethod" and "MonoInflatedCtor".
8663
8664 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
8665
8666         * reflection.c (resolution_scope_from_image): Use the assembly table
8667         from the manifest module, since other modules don't have it.
8668
8669         * debug-helpers.c (mono_type_full_name): New helper function.
8670
8671         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
8672
8673         * image.c (mono_image_load_file_for_image): New public function which
8674         is a replacement for the load_file_for_image in class.c.
8675
8676         * assembly.c (mono_assembly_load_module): A wrapper for the function
8677         above which does assembly association and reference loading too.
8678
8679         * class.c (mono_class_from_name): Call mono_assembly_load_module.
8680
8681 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8682
8683         * appdomain.c: not all of the attributes for the full assembly name
8684         are required and the order doesn't matter. Fixes bug #50787.
8685
8686 2003-11-10  Dick Porter  <dick@ximian.com>
8687
8688         * locales.c: Use platform-endian UTF16
8689
8690 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
8691
8692         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
8693         
8694 2003-11-10  Martin Baulig  <martin@ximian.com>
8695
8696         * metadata.c
8697         (mono_metadata_load_generic_params): Make this actually work.
8698
8699         * reflection.c (mono_reflection_bind_generic_parameters): If our
8700         parent is a generic instance, pass all the `types' to it, no
8701         matter whether it has the same number of type parameters or not.
8702
8703 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
8704
8705         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
8706
8707         * assembly.c (mono_assembly_load_references): Move the image<->assembly
8708         assignment code to this function so it gets called recursively for all
8709         modules.
8710
8711         * image.c (load_modules): Remove the assembly assignment since it is
8712         now done by mono_assembly_load_references.
8713         
8714         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
8715         Add 'module' argument.
8716         (mono_module_get_types): New helper function.
8717         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
8718
8719 2003-11-08  Martin Baulig  <martin@ximian.com>
8720
8721         * class.c (mono_class_inflate_generic_method): Interface method
8722         don't have a header.
8723
8724         * reflection.c (mono_image_get_methodspec_token): Take an
8725         additional `MonoGenericInst *' argument instead of reading it from
8726         the header; this is necessary to support interfaces.
8727         (mono_image_create_token): Pass the `MonoGenericInst *' from the
8728         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
8729         (inflated_method_get_object): Take an additional `MonoGenericInst *'
8730         argument.
8731
8732         * reflection.h (MonoReflectionInflatedMethod): Added
8733         `MonoGenericInst *ginst'.
8734
8735 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
8736
8737         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
8738
8739 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
8740
8741         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
8742
8743 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
8744
8745         * reflection.c 
8746         (reflection_methodbuilder_from_method_builder):
8747         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
8748         initialize a ReflectionMethodBuilder structure.
8749         (mono_image_get_methodbuilder_token):
8750         (mono_image_get_ctorbuilder_token): New functions to emit memberref
8751         tokens which point to types in another module inside the same assembly.
8752
8753         * reflection.c: Use the new helper functions.
8754         
8755         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
8756
8757         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
8758         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
8759
8760         * reflection.c (resolution_scope_from_image): Emit a moduleref if
8761         neccesary.
8762
8763         * reflection.c (mono_image_build_metadata): Emit metadata only for the
8764         current module. Emit the manifest only for the main module.
8765
8766         * reflection.c (mono_image_create_token): Add assertion when a 
8767         memberref needs to be created.
8768
8769         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
8770
8771         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
8772         larger buffer for the custom attribute blob. Fixes #50637.
8773         
8774 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8775
8776         * threadpool.c: notify listener on async processing handles after
8777         invoking the async callback. Thanks to Zoltan.
8778
8779 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
8780
8781         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
8782         avoid code duplication.
8783
8784         * reflection.h (MonoDynamicImage): New type which is currently unused,
8785         but will be used through the ref.emit code in place of 
8786         MonoDynamicAssembly.
8787
8788         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
8789         object layout.
8790
8791         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
8792         a MonoDynamicImage instead of just a MonoImage.
8793         
8794         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
8795         icalls to ModuleBuilder but keep their semantics, so they will work
8796         with moduleb->assemblyb. This will change later.
8797         
8798 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
8799
8800         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
8801         object layout.
8802
8803         * reflection.c (mono_image_build_metadata): Avoid creation of a default
8804         main module, since it is now done by the managed code.
8805
8806 2003-11-03  Martin Baulig  <martin@ximian.com>
8807
8808         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
8809         `ginst->klass' here.
8810         (method_encode_methodspec): Don't use the `ginst->generic_method's
8811         klass if it's a generic instance, use `ginst->klass' in this case.
8812
8813 2003-11-03  Martin Baulig  <martin@ximian.com>
8814
8815         * reflection.c (mono_image_get_generic_method_param_info):
8816         Removed, use mono_image_get_generic_param_info() instead.
8817         (mono_image_get_type_info): Write the GenericParam table before
8818         the Method table.  This is neccessary because in the GenericParam
8819         table, type parameters of the class (ie. '!0' etc.) must come
8820         before the ones from its generic methods (ie. '!!0' etc).
8821
8822 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
8823
8824         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
8825
8826 2003-11-02  Martin Baulig  <martin@ximian.com>
8827
8828         * reflection.c (create_generic_typespec): Take a
8829         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
8830         the generic parameters from it.
8831
8832 2003-11-02  Martin Baulig  <martin@ximian.com>
8833
8834         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
8835         instead of a `MonoClassField *' since we just need the type.
8836         (create_generic_typespec): New static function.  Creates a
8837         TypeSpec token for a generic type declaration.
8838         (mono_image_get_generic_field_token): New static function.
8839         (mono_image_create_token): If we're a FieldBuilder in a generic
8840         type declaration, call mono_image_get_generic_field_token() to get
8841         the token.
8842
8843 2003-11-02  Martin Baulig  <martin@ximian.com>
8844
8845         * reflection.h
8846         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
8847         `MonoReflectionGenericInst *declaring_type' and
8848         `MonoReflectionGenericInst *reflected_type' fields.
8849
8850         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
8851         `MonoReflectionGenericInst *declaring_type' and a
8852         `MonoReflectionGenericInst *reflected_type' argument instead of a
8853         single `MonoReflectionGenericInst *type' one.  Set
8854         `res->declaring_type' and `res->reflected_type' from them.
8855         (mono_reflection_inflate_field): Likewise.      
8856
8857 2003-11-02  Martin Baulig  <martin@ximian.com>
8858
8859         * class.c (mono_class_setup_vtable): Don't store generic methods
8860         in the vtable.  
8861
8862 2003-11-02  Martin Baulig  <martin@ximian.com>
8863
8864         * reflection.h (MonoReflectionGenericInst): Added
8865         `MonoReflectionType *declaring_type'.
8866
8867         * reflection.c (mono_reflection_bind_generic_parameters): Use
8868         `if (tb->parent)' instead of `klass->parent'.
8869
8870 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
8871
8872         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
8873         with an empty ASSEMBLY table.
8874
8875         * reflection.c (mono_image_build_metadata): Avoid using the same loop
8876         variable in the inner and outer loops.
8877
8878 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
8879
8880         * metadata.h (mono_metadata_make_token): Put parentheses around macro
8881         argument.
8882
8883         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
8884         
8885         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
8886         icalls. Instead, do everything in managed code. This is needed since
8887         it is hard to restore the original domain etc. in unmanaged code in the
8888         presence of undeniable exceptions.
8889
8890         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
8891         New icalls to push and pop appdomain refs.
8892
8893 2003-10-31  Martin Baulig  <martin@ximian.com>
8894
8895         * class.c (inflate_generic_type): Renamed to
8896         mono_class_inflate_generic_type() and made it public.
8897
8898         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
8899         New interncall.
8900
8901         * loader.c (mono_field_from_memberref): Also set the retklass for
8902         typespecs.
8903
8904         * fielder.c (mono_image_get_inflated_field_token): New static
8905         method; creates a metadata token for an inflated field.
8906         (mono_image_create_token, fixup_method): Added support for
8907         "MonoInflatedField".
8908         (fieldbuilder_to_mono_class_field): New static function.
8909         (mono_reflection_inflate_field): New public function.
8910
8911         * reflection.h
8912         (MonoReflectionGenericInst): Added `MonoArray *fields'.
8913         (MonoReflectionInflatedField): New typedef.     
8914
8915 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
8916
8917         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
8918         for Solaris and other platforms without s6_addr16
8919
8920 2003-10-30  Martin Baulig  <martin@ximian.com>
8921
8922         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
8923         argument instead of two.
8924         (mono_class_inflate_generic_signature): Likewise.
8925         (inflate_generic_header): Likewise.
8926         (mono_class_inflate_generic_method): Likewise.  In addition, if
8927         `ginst->klass' is set, it becomes the new `method->klass'.
8928
8929         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
8930         field.
8931
8932         * reflection.c (encode_generic_method_sig): Write a 0xa as the
8933         first byte. [FIXME]
8934         (method_encode_methodspec): If we have generic parameters, create
8935         a MethodSpec instead of a MethodRef.
8936         (fixup_method): Added support for "MonoInflatedMethod" and
8937         "MonoInflatedCtor".
8938         (mono_image_create_token): Added support for "MonoInflatedMethod"
8939         and "MonoInflatedCtor".
8940         (inflated_method_get_object): New static function; returns a
8941         managed "System.Reflection.MonoInflatedMethod" object.
8942         (mono_reflection_bind_generic_method_parameters): Return a
8943         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
8944         (mono_reflection_inflate_method_or_ctor): Likewise.
8945         (mono_image_get_generic_method_param_info): Initialize unused
8946         fields to zero.
8947         (mono_image_get_generic_param_info): Likewise.
8948
8949         * reflection.h (MonoReflectionInflatedMethod): New public
8950         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
8951         "S.R.MonoInflatedCtor" classes.
8952
8953         * loader.c (method_from_memberref): If we're a TypeSpec and it
8954         resolves to a generic instance, inflate the method.
8955
8956 2003-10-28  Dick Porter  <dick@ximian.com>
8957
8958         * object.c (mono_runtime_run_main): Convert command-line arguments
8959         into utf8, falling back to the user's locale encoding to do so.
8960
8961 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
8962
8963         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
8964         at this time.
8965
8966         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
8967
8968         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
8969         up icalls at method definition time. Partially fixes #33569.
8970
8971 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
8972
8973         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
8974         marshalling of arrays. Fixes #50116.
8975
8976         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
8977
8978         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
8979         points to a vtable in the dying appdomain.
8980
8981         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
8982         listeners into unmanaged code inside the lock.
8983
8984         * object.c (mono_class_vtable): Turn off typed allocation in non-root
8985         domains and add some comments.
8986
8987 2003-10-25  Martin Baulig  <martin@ximian.com>
8988
8989         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
8990
8991         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
8992
8993         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
8994         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
8995         currently parsing.  Create the generic class and store it in
8996         `generic_inst->klass' before parsing the type arguments.  This is
8997         required to support "recursive" definitions; see mcs/tests/gen-23.cs
8998         for an example.
8999         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
9000         to support recursive typespec entries.
9001
9002         * class.c (mono_class_setup_parent): If our parent is a generic
9003         instance, we may get called before it has its name set.
9004         (mono_class_from_generic): Splitted into
9005         mono_class_create_from_generic() and mono_class_initialize_generic().
9006
9007 2003-10-25  Martin Baulig  <martin@ximian.com>
9008
9009         * icall.c (ves_icall_Type_BindGenericParameters): Return a
9010         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
9011         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
9012         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
9013
9014         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
9015         (create_typespec): Likewise.
9016         (mono_reflection_bind_generic_parameters): Return a
9017         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
9018         (mono_reflection_inflate_method_or_ctor): New public function.
9019
9020         * reflection.h (MonoReflectionGenericInst): New typedef.        
9021
9022 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
9023
9024         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
9025         inside the domain lock. Fixes #49993.
9026         
9027         * object.c (mono_class_vtable): When typed allocation is used, 
9028         allocate vtables in the GC heap instead of in the mempool, since the
9029         vtables contain GC descriptors which are used by the collector even
9030         after the domain owning the mempool is unloaded.
9031
9032         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
9033
9034         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
9035         reflect what it does. Also invalidate mempools instead of freeing
9036         them if a define is set.
9037
9038         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
9039         of the appdomain.
9040         
9041         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
9042         hold the finalizable objects in this domain.
9043
9044         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
9045         appdomain.
9046
9047         * appdomain.c (mono_domain_set): New function to set the current
9048         appdomain, but only if it is not being unloaded.
9049
9050         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
9051         appdomain which is being unloaded.
9052         
9053         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
9054         unloading of the root appdomain.
9055
9056         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
9057         icall to execute a method in another appdomain. Intended as a 
9058         replacement for InternalSetDomain, which can confuse the code 
9059         generation in the JIT.
9060
9061         * appdomain.c (mono_domain_is_unloading): New function to determine
9062         whenever an appdomain is unloading.
9063
9064         * appdomain.c (mono_domain_unload): New function to correctly unload
9065         an appdomain.
9066
9067         * assembly.c (mono_assembly_load_references): Check that an assembly
9068         does not references itself.
9069
9070         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
9071         domain manually, it asks the finalizer thread to do it, then waits for
9072         the result. Also added a timeout.
9073
9074         * icall.c: Register the new icalls.
9075
9076         * threads.h threads.c: Export the mono_gc_stop_world and 
9077         mono_gc_start_world functions.
9078         
9079         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
9080         function to fill out the mempool with 0x2a.
9081
9082 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
9083
9084         * reflection.h (MonoReflectionMethodAux): New structure to store
9085         information which is rarely used, thus is not in the MonoMethod
9086         structure.
9087
9088         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
9089         store the aux info.
9090
9091         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
9092         and marshalling info into the aux structure.
9093
9094         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
9095         from the aux structure.
9096
9097         * loader.c (mono_method_get_param_names): Retrieve the param names from
9098         the aux structure.
9099         
9100 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
9101
9102         * exception.h exception.c: Add AppDomainUnloadedException && fix 
9103         warning.
9104
9105 2003-10-21  Dick Porter  <dick@ximian.com>
9106
9107         * socket-io.c
9108         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
9109         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
9110
9111 2003-10-21  Martin Baulig  <martin@ximian.com>
9112
9113         * reflection.c (mono_reflection_bind_generic_parameters):
9114         `klass->parent' is NULL for interfaces.
9115
9116 2003-10-21  Martin Baulig  <martin@ximian.com>
9117
9118         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
9119
9120 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
9121
9122         * exception.c (mono_exception_from_name_msg): New helper function for
9123         creating exceptions and initializing their message field.
9124
9125         * exception.c: Simplify functions using the new helper.
9126
9127         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
9128         New function.
9129
9130         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
9131         mono_raise_exception, since otherwise gcc doesn't generate the function
9132         epilog for raise_exception, confusing the stack unwinding in the JIT.
9133         Fixes #45043.
9134
9135         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
9136         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
9137         Fixes #49499.
9138
9139 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9140
9141         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
9142         utf8.
9143
9144 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
9145
9146         * icall.c: Removed GetUninitializedObject method because
9147           AllocateUninitializedClassInstance does the same.
9148
9149 2003-10-18  Martin Baulig  <martin@ximian.com>
9150
9151         * class.c (inflate_generic_signature): Renamed to
9152         mono_class_inflate_generic_signature() and made it public.
9153         (my_mono_class_from_generic_parameter): New static function; if we
9154         don't already have the generic parameter's MonoClass, create a
9155         very simple one which is just used internally in the runtime and
9156         not passed back to managed code.
9157
9158         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
9159
9160         * metadata.h (MonoMethodSignature): Moved the
9161         `MonoGenericParam *gen_params' to the MonoMethodHeader.
9162         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
9163
9164         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
9165         ves_icall_MonoMethod_GetGenericArguments(); this is now an
9166         interncall on the MonoMethod class, not on MethodInfo.
9167         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
9168         calling mono_reflection_bind_generic_method_parameters() directly.
9169
9170         * loader.c (mono_method_get_signature): If this is a MethodSpec;
9171         return the already computed `method->signature'.
9172         (method_from_methodspec): New static function to load a method
9173         from a MethodSpec entry.
9174         (mono_get_method_from_token): Call the new method_from_methodspec()
9175         for MethodSpec tokens.  
9176         (mono_get_method_from_token): If we're a generic method, load the
9177         type parameters.
9178
9179         * reflection.c (mono_image_get_memberref_token): Allow
9180         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
9181         table.
9182         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
9183         (mono_image_create_token): First check whether it's a generic
9184         method (so we'd need to create a MethodSpec), then do the other
9185         two alternatives.
9186         (mono_reflection_bind_generic_method_parameters): Return a
9187         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
9188         called directly from the interncall.
9189
9190 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
9191
9192         * reflection.c (load_public_key): Move loading of the public key
9193         into managed code.
9194
9195         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
9196
9197         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
9198         fields.
9199
9200         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
9201         culture, hash_alg and public_key. Fixes #49555.
9202
9203 2003-10-17  Martin Baulig  <martin@ximian.com>
9204
9205         * class.h (MonoGenericInst): Moved this declaration here and added
9206         `MonoMethod *generic_method'.
9207
9208         * icall.c
9209         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
9210         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
9211
9212         * metadata.c (mono_metadata_type_equal): Two types of
9213         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
9214         index; ie. don't compare the address of the `MonoGenericParam'
9215         structure.
9216         (mono_metadata_load_generic_params): Removed the `MonoMethod
9217         *method' argument.
9218
9219         * metadata.h (MonoGenericInst): Moved declaration to class.h.
9220         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
9221
9222         * reflection.c (method_encode_signature): Encode the number of
9223         generic parameters.
9224         (encode_generic_method_sig): New static function.
9225         (method_encode_methodspec): New static function; creates an entry
9226         in the MethodSpec table for a generic method.
9227         (mono_image_get_methodspec_token): New static function.
9228         (mono_image_create_token): Call mono_image_get_methodspec_token()
9229         for generic methods.
9230         (mono_reflection_bind_generic_method_parameters): New public
9231         function.  Instantiates a generic method.
9232
9233 2003-10-16  Martin Baulig  <martin@ximian.com>
9234
9235         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
9236         *gen_params' here from MonoMethodHeader.
9237
9238         * metadata.c (mono_metadata_parse_method_signature): If we have
9239         generic parameters, initialize `method->gen_params' and then set
9240         the correct `type->data.generic_param' in all the parameters.
9241
9242 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
9243
9244         * threads.c (mono_threads_get_default_stacksize): New function to 
9245         return the default stacksize.
9246
9247         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
9248         termination of the finalizer thread, since the previous method had
9249         race conditions. Fixes #49628.
9250
9251         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
9252         as for the other managed threads.
9253
9254 2003-10-16  Martin Baulig  <martin@ximian.com>
9255
9256         * class.c (inflate_generic_signature): Copy `generic_param_count'
9257         and `gen_params'.
9258
9259         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
9260         New interncall.
9261
9262         * metadata.c (mono_metadata_parse_method_signature): Actually set
9263         the `method->generic_param_count' here.
9264         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
9265
9266 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
9267
9268         * object.h: Add a new field to TypedRef to simplify the implementation
9269         of the REFANY opcodes in the JIT.
9270
9271         * icall.c: Make use of the new field.
9272
9273         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
9274         dynamically.
9275
9276 2003-10-15  Martin Baulig  <martin@ximian.com>
9277
9278         * class.c (mono_class_from_gen_param): Renamed to
9279         mono_class_from_generic_parameter() and moved most of the
9280         functionality from mono_reflection_define_generic_parameter()
9281         here; ie. we create a "real" class here.
9282         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
9283         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
9284         previously been called.
9285
9286         * class.h (MonoGenericParam): Moved the declaration of this struct
9287         here from metadata.h and added `MonoMethod *method'.
9288
9289         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
9290         interncall.
9291
9292         * loader.c (mono_get_method_from_token): If we have any generic
9293         parameters, call mono_metadata_load_generic_params() to read them
9294         from the MONO_TABLE_GENERICPAR.
9295
9296         * metadata.c (mono_metadata_load_generic_params): Added
9297         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
9298
9299         * metadata.h (MonoMethodSignature): Replaced
9300         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
9301         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
9302
9303         * reflection.c (mono_reflection_define_generic_parameter): Moved
9304         most of the functionality into the new
9305         mono_class_from_generic_parameter(); set the `method' field if
9306         we're a method parameter.       
9307
9308 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
9309
9310         * marshal.c (emit_struct_conv): if native size is 0
9311         emit no code.
9312
9313 2003-10-14  Martin Baulig  <martin@ximian.com>
9314
9315         * icall.c: The generics API has changed in the spec since it was
9316         added to System.Type; these modifications make it match the spec
9317         again.
9318         (ves_icall_Type_GetGenericParameters): Renamed to
9319         `ves_icall_Type_GetGenericArguments'.
9320         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
9321         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
9322         `ves_icall_MonoType_get_HasGenericArguments'.
9323         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
9324         `ves_icall_MonoType_get_IsGenericParameter'.
9325         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
9326         this is no interncall anymore.
9327         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
9328         `ves_icall_TypeBuilder_get_IsGenericParameter'.
9329
9330 2003-10-14  Martin Baulig  <martin@ximian.com>
9331
9332         * reflection.c (mono_reflection_bind_generic_parameters): Also
9333         inflate generic methods if we're reading the class from IL.
9334
9335 2003-10-13  Martin Baulig  <martin@ximian.com>
9336
9337         * reflection.c (mono_reflection_define_generic_parameter): This
9338         method isn't called directly from the icall anymore; take a
9339         `MonoReflectionAssemblyBuilder *' so we can use this for type and
9340         method generic parameters.
9341         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
9342         (method_builder_encode_signature): Encode generic parameters.
9343         (mono_image_get_method_info): Write generic params to the
9344         MONO_TABLE_GENERICPARAM table.
9345
9346         * reflection.h (MonoReflectionMethodBuilder): Added
9347         `MonoArray *generic_params'.
9348
9349         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
9350
9351         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
9352         wrapper for mono_reflection_define_generic_parameter().
9353         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
9354
9355 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
9356
9357         * marshal.h: Add missing function to fix build.
9358
9359         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
9360         the SetLastError pinvoke attribute.
9361
9362         * marshal.c (mono_marshal_set_last_error): New helper function called
9363         by the generated code.
9364         
9365         * marshal.c (mono_mb_emit_branch): New helper function.
9366
9367         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
9368
9369         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
9370         classes as parameters and return values of delegates. Fixes #29256. 
9371
9372 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
9373
9374         * locales.c: use gint32 in non HAVE_ICU case
9375
9376 2003-10-11  Martin Baulig  <martin@ximian.com>
9377
9378         * mono-debug.c (mono_debug_add_method): Added a workaround for
9379         bug #48591.
9380
9381 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
9382
9383         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
9384         delegates passed to native code must use the STDCALL calling 
9385         convention. Fixes #35987.
9386
9387 2003-10-10  Martin Baulig  <martin@ximian.com>
9388
9389         * class.c (inflate_generic_type): If we're inflating for a generic
9390         type instance (and not for a generic method), return
9391         MONO_TYPE_MVAR unchanged.
9392
9393 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9394
9395         * string-icalls.c: Join ignores null strings in the source array.
9396         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
9397         * threads.c: GetAvailableTheads is slightly more accurate.
9398
9399 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
9400
9401         * threads.h threads.c : add mono_threads_set_default_stacksize
9402         and pass default to CreateThread calls.
9403
9404 2003-10-09  Dick Porter  <dick@ximian.com>
9405
9406         * icall.c:
9407         * locales.h:
9408         * locales.c: Internal calls for constructing CultureInfo and
9409         related objects from libicu (if its available.)
9410
9411 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
9412
9413         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
9414
9415 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9416
9417         * threadpool.c: added an argument to async_invoke_thread that is the
9418         item to process, pass the MonoAsyncResult to the thread start function
9419         when creating a new thread. This way we don't need to acquire any lock
9420         when we're creating a new thread. Readded a semaphore for faster
9421         response times (instead of that Sleep i added).
9422
9423 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
9424
9425         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
9426         get daylight change dates better on Windows, fix handling
9427         of platforms without tm_gmtoff.
9428
9429 2003-10-06  Martin Baulig  <martin@ximian.com>
9430
9431         * class.c (inflate_generic_method): Renamed to
9432         mono_class_inflate_generic_method() and made public.
9433         (mono_class_init): Don't inflate the generic methods here.
9434         (mono_class_from_generic): Added `gboolean inflate_methods'
9435         argument.  Inflate the methods here.
9436
9437         * loader.c (mono_method_get_param_names): Ignore instances of
9438         generic types for the moment.
9439
9440         * reflection.c (fixup_method): Added support for inflated methods.
9441         (mono_image_create_token): Use mono_image_get_methodref_token()
9442         for inflated methods.
9443         (mono_custom_attrs_from_param): Ignore instances of generic types
9444         for the moment.
9445         (mono_reflection_bind_generic_parameters): New public function.
9446         Moved all the functionality from
9447         ves_icall_Type_BindGenericParameters() here and added support for
9448         dynamic types.
9449         (mono_reflection_define_generic_parameter): Initialize
9450         `klass->methods' here.
9451
9452         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
9453         functionality into mono_reflection_define_generic_parameter().
9454         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
9455         TypeBuilder, return that TypeBuilder.
9456
9457 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9458
9459         * appdomain.c: removed mono_delegate_semaphore.
9460
9461         * threadpool.c:
9462         (mono_thread_pool_add): moved hash table creation inside and the thread 
9463         creation outside of the critical region.
9464         (mono_thread_pool_finish): removed obsolete code.
9465         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
9466         continue or exit the thread depending on the queue.
9467
9468 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
9469
9470         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
9471         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
9472         handle more bool marshalling options
9473
9474 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
9475
9476         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
9477         arrays of structs. Also add a more descriptive error message when
9478         a structure member is marshalled as LPArray.
9479
9480 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
9481
9482         * marshal.c (mono_marshal_get_native_wrapper): Add support for
9483         marshalling arrays of complex types. Fixes #29098. Also remove an
9484         usused and incomplete function.
9485
9486 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
9487
9488         * gc.c: report heap_size - free_bytes as total memory allocated
9489         (bug#49362).
9490
9491 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
9492
9493         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
9494         fix timezone handling problems on Windows.
9495         
9496         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
9497         asserts when the year is outside the range handled by ms the functions.
9498
9499         * class.c (setup_interface_offsets): If the class is an interface,
9500         fill out its interface_offsets slot.
9501
9502 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9503
9504         * threadpool.c: mark threadpool threads as background.
9505
9506 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
9507
9508         * decimal.c - define DECINLINE to nothing if not using GCC
9509
9510 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
9511
9512         * assembly.c: More refcount fixes.
9513
9514 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9515
9516         * string-icalls.c: if we're not trimming, return the same string.
9517         When not splitting, don't create a new string.
9518
9519 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9520
9521         * image.c:
9522         (mono_image_open): increment the ref_count inside the critical section.
9523
9524 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
9525
9526         * image.c (mono_image_open): Fix reference counting bug.
9527
9528 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
9529
9530         * marshal.c (mono_marshal_type_size) struct alignment changed for 
9531         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
9532         64bits. Avoid leak in mono_marshal_get_native_wrapper when
9533         mono_lookup_pinvoke_call throws.        
9534
9535 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
9536
9537         * reflection.c (mono_reflection_parse_type): Fix #49114.
9538
9539         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
9540         temporary workaround for cygwin header problem.
9541
9542         * object.c (mono_object_isinst): Synchronize this with the code
9543         generated by the JIT for casts.
9544
9545 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
9546
9547         * reflection.c (encode_type): Fix #38332.
9548
9549 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
9550
9551         * marshal.c (mono_marshal_method_from_wrapper): New function to return
9552         the original method from the wrapper method.
9553
9554 2003-09-25  Martin Baulig  <martin@ximian.com>
9555
9556         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
9557         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
9558         (ves_icall_Type_get_IsGenericInstance): New interncall.
9559
9560 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
9561
9562         * object.c: fix cast warning in big endian code.
9563
9564 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
9565
9566         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
9567         
9568 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9569
9570         * assembly.c: don't call check_env from mono_assembly_load. It's
9571         already done once in mono_assemblies_init and may cause headaches when
9572         multiple threads are loading assemblies.
9573
9574 2003-09-19  Martin Baulig  <martin@ximian.com>
9575
9576         * reflection.c (mono_reflection_define_generic_parameter): Don't
9577         allocate `klass->methods', set `klass->flags' to
9578         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
9579
9580 2003-09-18  Martin Baulig  <martin@ximian.com>
9581
9582         * class.c (mono_class_init): Don't create `class->methods' if it's
9583         already initialized.
9584
9585         * metadata.c (mono_metadata_load_generic_params): Make this
9586         actually work.
9587
9588         * reflection.c (mono_reflection_define_generic_parameter): Set
9589         parent class and interfaces from the constraints.
9590
9591         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
9592         to keep this struct in sync with the declaration in TypeBuilder.cs.
9593
9594 2003-09-17  Martin Baulig  <martin@ximian.com>
9595
9596         * metadata.h (MonoType): Replaced the data's `int type_param'
9597         field with `MonoGenericParam *generic_param'.
9598         (MonoGenericParam): Added `MonoClass *klass'.
9599
9600         * class.c (mono_class_from_gen_param): Removed the
9601         `MonoImage *image' and `int type_num' arguments.
9602
9603         * metadata.c (mono_metadata_parse_generic_param): New static
9604         method; creates a MonoGenericParam which just contains the index.
9605         (do_mono_metadata_parse_type): Call
9606         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
9607         MONO_TYPE_MVAR.
9608
9609         * reflection.c (mono_image_typedef_or_ref): Generic type
9610         parameters may be in the same assembly, but never use a typedef
9611         for them.
9612         (mono_reflection_define_generic_parameter): We're now creating a
9613         "real" class for the type parameter; it's now safe to call
9614         mono_class_from_mono_type() on the class'es type, it'll do the
9615         right thing.
9616
9617 2003-09-16  Martin Baulig  <martin@ximian.com>
9618
9619         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
9620         `symfile->range_entry_size' and `symfile->class_entry_size' here;
9621         the `symfile' data structure must be fully initialized before it
9622         gets added to the table.
9623
9624 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
9625
9626         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
9627
9628         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
9629         class init trampolines.
9630
9631 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
9632
9633         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
9634         to the built-in profiler to turn off time and allocation profiling
9635         respectively.
9636
9637 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
9638
9639         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
9640         g_direct_equal.
9641
9642         * debug-helpers.c (mono_method_full_name): Print the wrapper type
9643         in human readable form.
9644
9645 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
9646
9647         * reflection.c icall.c: Fixed warnings.
9648
9649         * image.c (load_class_names): Use a temporary hash table to hold the
9650         namespaces in order to avoid doing many string comparisons.
9651
9652         * image.h: Fix typo.
9653
9654         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
9655         Pass NULL instead of g_direct_equal to the GHashTable constructor 
9656         since the NULL case is short-circuited inside g_hash_table_lookup, 
9657         leading to better performance.  
9658
9659         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
9660         obtain the first custom attribute for a given index. Depends on the
9661         CustomAttribute table being sorted by the parent field.
9662
9663         * reflection.c (mono_custom_attrs_from_index): Use the new function 
9664         for better performance.
9665
9666 2003-09-07  Martin Baulig  <martin@ximian.com>
9667
9668         * class.c (mono_class_init): If we're a generic instance, inflate
9669         all our methods instead of loading them from the image.
9670         (mono_class_from_generic): Set `class->methods = gklass->methods'.
9671
9672 2003-09-07  Martin Baulig  <martin@ximian.com>
9673
9674         * mono-debug-debugger.c: Added support for constructors.
9675
9676 2003-09-06  Martin Baulig  <martin@ximian.com>
9677
9678         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
9679         New interncall.
9680
9681         * reflection.c (mono_reflection_setup_generic_class): Call
9682         ensure_runtime_vtable() to create the vtable.
9683
9684 2003-09-05  Martin Baulig  <martin@ximian.com>
9685
9686         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
9687         MONO_TYPE_MVAR.
9688
9689 2003-09-04  Martin Baulig  <martin@ximian.com>
9690
9691         * reflection.c (mono_reflection_define_generic_parameter): Generic
9692         parameters start with zero.
9693
9694 2003-09-04  Martin Baulig  <martin@ximian.com>
9695
9696         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
9697
9698         * reflection.h (MonoReflectionGenericParam): New typedef.
9699         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
9700         the generic parameters from the managed TypeBuilder.
9701
9702         * reflection.c (mono_reflection_define_generic_parameter): New function.
9703         (mono_reflection_create_runtime_class): Encode generic parameters.
9704         (mono_reflection_setup_generic_class): New function; this is
9705         called after adding adding all generic params to the TypeBuilder.
9706         (encode_type): Added MONO_TYPE_VAR.
9707
9708 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
9709
9710         * class.h class.c (mono_class_needs_cctor_run): Moved this method
9711         here from the JIT.
9712
9713         * assembly.h assembly.c: Moved the AOT loading code into an assembly
9714         load hook.
9715
9716 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
9717
9718         * reflection.h reflection.c class.h class.c: Delete duplicate 
9719         definition of mono_type_get_name () from reflection.c and export the
9720         one in class.c.
9721
9722         * class.c: Class loading fixes from Bernie Solomon 
9723         (bernard@ugsolutions.com).
9724
9725         * reflection.c: Endianness fixes from Bernie Solomon 
9726         (bernard@ugsolutions.com).
9727         
9728 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
9729
9730         * assembly.h assembly.c: Define a file format version for AOT
9731         libraries.
9732         
9733         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
9734
9735         * appdomain.h (MonoJitInfo): New field to determine whenever the
9736         code is domain neutral.
9737         
9738 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
9739
9740         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
9741
9742 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
9743
9744         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
9745         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
9746         Avoid caching the result since strings must be domain specific. Fixes
9747         #48050.
9748
9749 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
9750
9751         * marshal.c (mono_marshal_init): Make this callable multiple times
9752         since it is hard to find a correct place to call it.
9753
9754         * object.c (mono_runtime_class_init): Execute static constructors in
9755         the correct appdomain.
9756
9757         * image.c (build_guid_table): Handle the case when multiple images have
9758         the same GUID.
9759
9760 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9761
9762         * icall.c: added a couple of icalls for System.Web.
9763
9764 2003-08-28  Martin Baulig  <martin@ximian.com>
9765
9766         * icall.c (ves_icall_Type_BindGenericParameters): Use
9767         `klass->generic_inst' instead of `&klass->byval_arg' in the
9768         mono_type_get_object() call.  The returned type must be
9769         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
9770
9771 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
9772
9773         * NOTES: New file.
9774
9775         * object.c (mono_class_proxy_vtable): Make it thread safe.
9776
9777         * pedump.c: Fix warning.
9778
9779         * object.c appdomain.h: Get rid of metadata_section. 
9780         It is no longer needed and it was causing deadlocks with domain->lock.
9781
9782         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
9783
9784 2003-08-26  Martin Baulig  <martin@ximian.com>
9785
9786         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
9787
9788 2003-08-26  Martin Baulig  <martin@ximian.com>
9789
9790         * pedump.c (main): Call mono_metadata_init(),
9791         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
9792         and mono_loader_init().
9793
9794 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
9795
9796         * loader.h: Add missing include to fix build.
9797
9798         * image.h: mono_image_load_references is no more.
9799
9800         * assembly.c: Reworked assembly loading to make it really thread safe.
9801         After these changes, the assembly returned by mono_assembly_open is
9802         fully initialized, i.e. all its references assemblies are loaded.
9803
9804         * assembly.c (mono_image_load_references): Renamed to 
9805         mono_assembly_load_references, and made private, since clients no
9806         longer need to call it.
9807
9808         * class.c: Removed calls to mono_assembly_load_references, since it was
9809         a source of deadlocks.
9810
9811         * loader.h loader.c class.h class.c: Protect data structures using a 
9812         new lock, the loader lock.
9813
9814         * class.c (mono_class_setup_vtable): Create temporary hash tables and
9815         GPtrArrays only when needed.
9816
9817         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
9818         into empty structures by mcs. Fixes pinvoke7.cs.
9819         
9820         * domain.c (mono_init): Call a new initialization function.
9821
9822         * appdomain.c (mono_runtime_init): Call the new initializer function
9823         of the marshal module.
9824
9825         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
9826         inserted into empty structures by mcs. Fixes pinvoke7.cs.
9827
9828         * marshal.h marshal.c: Added locks around the wrapper caches to make
9829         this module thread safe.
9830
9831         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
9832         this argument. Fixes pinvoke1.exe.
9833
9834 2003-08-25  Lluis Sanchez <lluis@ximian.com>
9835
9836         * object.h: Added call_type field to MonoMethodMessage and the corresponding
9837         enumeration of values. Removed fields to store remote call output values in
9838         MonoAsyncResult. Not needed any more.
9839         * object.c: Initialize call_type and async_result fields in mono_message_init.
9840         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
9841         dispatching the message.
9842         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
9843         async call to finish. To do it use a message with EndInvoke call type.
9844
9845 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
9846
9847         * loader.h loader.c (mono_method_hash_marhal_info): New function which
9848         determines whenever a method has marshalling info.
9849
9850 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9851
9852         * assembly.c: fix the build on windows.
9853
9854 2003-08-22 Lluis Sanchez <lluis@ximian.com>
9855
9856         * object.cs: Fixed bug #47785.
9857
9858 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
9859
9860         * string-icalls.c (StringReplace): If their are no occurances of
9861         the old string found return a reference to the supplied
9862         string. This saves some memory and matches MS behavoir.
9863         
9864 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9865
9866         * socket-io.c: fixed compilation for systems that define AF_INET6
9867         and don't define SOL_IP/SOL_IPV6.
9868
9869 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
9870
9871         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
9872         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
9873
9874         * rawbuffer.c rawbuffer.h: Make this module thread safe.
9875
9876         * domain.c: Make this module thread safe.
9877
9878         * domain.c (mono_init): Call new initialization function.
9879
9880         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
9881         reference types too. Fixes #38812.
9882
9883         * image.c (mono_image_init): Fixed warnings.
9884
9885         * class.c (mono_class_from_typeref): Handle assembly load failure
9886         correctly.
9887
9888         * appdomain.c (add_assemblies_to_domain): Handle the case when
9889         the references of an assembly are not yet loaded.
9890
9891         * metadata.c image.c assembly.c: Moved initialization of global
9892         variables to a separate function called at startup since lazy 
9893         initialization of these variables is not thread safe.
9894         
9895         * image.c assembly.c: Made this module thread safe by adding locks in 
9896         the appropriate places.
9897
9898         * domain.c (mono_init): Call the new initialization functions of the
9899         three modules.
9900
9901 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
9902
9903         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
9904           make a direct call. It is proxy's work to make the call asynchronous.
9905           mono_delegate_end_invoke(): If the targe is a proxy, just collect
9906           the return values.
9907         * object.cs: mono_method_call_message_new(): read AsyncResult and
9908           state object from parameters list, if this info is requested.
9909         * object.h: Added fields to store remote call output values in
9910           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
9911
9912 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9913
9914         * object.h: add needed fields to MonoThread.
9915         * threads.c, threads.h: allow registering a function to cleanup data
9916         allocated per thread by the JIT.
9917
9918 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
9919
9920         * loader.h: portability fix by Bernie Solomon
9921         * <bernard@ugsolutions.com>.
9922
9923 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
9924
9925         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
9926         return a MonoArray. This simplifies the code and also ensures that
9927         the cache allways contains an object reference as a value.
9928
9929         * icall.c (ves_icall_get_parameter_info): Simplified using the new
9930         function.
9931
9932 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9933
9934         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
9935         fixes a problem with byte ordering when getting the address family for
9936         a socket.
9937
9938 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
9939
9940         * .cvsignore: Added monosn.
9941
9942         * reflection.h reflection.c loader.c: Added support for parameter
9943         marshalling to dynamically created types. Fixes #47295.
9944
9945 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
9946
9947         * rand.c: remove useless warnings.
9948
9949 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
9950
9951         * class.c: implemented ldtoken for methods and fieldrefs.
9952
9953 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9954
9955         * threadpool.c: when mono_async_invoke was called, no one took care of
9956         monitoring the queue. So if the method invoked took some time and we
9957         got new async invoke requests after 500 ms (the thread created waited
9958         that long in WaitForSingleObject), the new async invoke was not called
9959         until the previous one finished.
9960
9961         This is fixed now. Thanks to Totte for helping with it.
9962
9963 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9964
9965         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
9966
9967 2003-08-11  Martin Baulig  <martin@ximian.com>
9968
9969         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
9970
9971 2003-08-06  Martin Baulig  <martin@ximian.com>
9972
9973         * mono-debug-debugger.c: Added support for static fields,
9974         properties and methods.
9975
9976 2003-08-06  Martin Baulig  <martin@ximian.com>
9977
9978         * mono-debug-debugger.c: Don't store the MonoString's vtable to
9979         make this work for applications with multiple application domains.
9980
9981 2003-08-04  Martin Baulig  <martin@ximian.com>
9982
9983         * mono-debug-debugger.c: Completely reworked the type support; the
9984         most important thing is that we're now just using one single
9985         `MonoType' instance per type.
9986
9987 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
9988
9989         * mono-endian.h, mono-endian.c, icall.c: Added icall
9990         ves_icall_System_Double_AssertEndianity to assert double word endianity
9991         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
9992
9993 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
9994
9995         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
9996         support, icalls and fixes.
9997
9998 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
9999
10000         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
10001         classes that are a punctuation character in .NET is not the same a
10002         g_unichar_ispunct.
10003
10004 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10005
10006         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
10007
10008 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
10009
10010         * icall.c: Add new MemCopy internalcall.
10011         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
10012         Simplified code; It is not necessary to handle all the cases here,
10013         as the C# code takes care of it.  Only handle the case of the name
10014         resource embedded into the assembly.
10015
10016         Changed signature to return the data pointer and the size of the
10017         data. 
10018
10019 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
10020
10021         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
10022         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
10023
10024 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
10025
10026         * socket-io.c: ignore EINTR error in select.
10027
10028 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
10029
10030         * class.h, class.c: removed unused subclasses field in MonoClass.
10031
10032 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
10033
10034         * icall.c: improve fix of get_base_definition(). If the parent class
10035           doesn't have the mehod, look at the parent of the parent.
10036         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
10037           to check if a parameter is an in or out parameter
10038           (PARAM_ATTRIBUTE_IN is not set by default).
10039           mono_method_return_message_restore(): Use mono_class_value_size to
10040           get the size of a value type. mono_type_stack_size (parameterType)
10041           does not return the correct value if parameterType is byRef.
10042           mono_load_remote_field(), mono_load_remote_field_new(),
10043           mono_store_remote_field(), mono_store_remote_field_new():
10044           raise exception if the remote call returns an exception.
10045
10046 2003-07-28  Martin Baulig  <martin@ximian.com>
10047
10048         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
10049         method.  This is a wrapper around mono_runtime_invoke() which
10050         boxes the instance object if neccessary.
10051
10052 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
10053
10054         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
10055         metadata.h, row-indexes.h, verify.c: first cut of generics support.
10056
10057 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10058
10059         * icall.c: disable mcs bug workaround.
10060
10061 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
10062
10063         * object.c (mono_runtime_class_init): Take the metadata_section
10064         mutex before obtaining the domain mutex.
10065
10066         * appdomain.h: Added definition of metadata_section mutex here. 
10067
10068         * object.c: define metadata_mutex here.
10069
10070 2003-07-24  Ravi Pratap  <ravi@ximian.com>
10071
10072         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
10073         fixed.
10074
10075 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
10076
10077         * reflection.c: Fix bug #46669
10078
10079 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10080
10081         * exception.c:
10082         * exception.h:
10083         * icall.c:
10084         * object.h: fill in the type name for TypeLoadException.
10085
10086 2003-07-23  Ravi Pratap  <ravi@ximian.com>
10087
10088         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
10089         relationship between TypeBuilders while compiling corlib) and bug
10090         45993 (Array types returned from the runtime while compiling
10091         corlib were from the loaded corlib).
10092
10093 2003-07-22  Martin Baulig  <martin@ximian.com>
10094
10095         * mono-debug-debugger.c: Reworked the type support a bit more;
10096         distinguish between types and classes.
10097
10098 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
10099
10100         * icall.c: add IsArrayImpl icall.
10101
10102 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
10103
10104         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
10105         initializing real_size only once. Also fix bug #46602.
10106
10107 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
10108
10109         * object.c: Renamed mono_metadata_section to metadata_section.
10110
10111 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
10112
10113         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
10114           empty array if the type is an array. Fixed.
10115           ves_icall_MonoMethod_get_base_definition: if the base method
10116           is abstract, get the MethodInfo from the list of methods of
10117           the class.
10118         * reflection.c: ParameterInfo.PositionImpl should be zero-based
10119           and it was 1-based. Fixed in mono_param_get_objects.
10120
10121 2003-07-20  Martin Baulig  <martin@ximian.com>
10122
10123         * mono-debug.h: Set version number to 31.
10124         (mono_debug_init): Added `MonoDomain *' argument.
10125
10126         * mono-debug-debugger.c: Reworked the type support; explicitly
10127         tell the debugger about builtin types; pass the `klass' address to
10128         the debugger.
10129
10130 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
10131
10132         * image.c: Allow new metadata tables to be loaded without a
10133         warning. Also update the warning message to give the new constant value.
10134                 
10135 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
10136
10137         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
10138         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
10139         array type representation changes.
10140
10141 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
10142
10143         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
10144         on Environment.Exit () call.
10145
10146 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
10147
10148         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
10149         requires a matching corlib.
10150
10151 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
10152
10153         * Changelog: My editor decided to add a CR to each line. Sorry about that.
10154           Committed again without the CRs.
10155         
10156 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
10157
10158         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
10159           getting it from the "this" socket instance. Did not work
10160           if the socket is a subclass of Socket.
10161           Also fixed bug #35371.
10162
10163 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
10164
10165         * metadata.c: fixed size for TypedByRef.
10166         * loader.c: when searching for a method, consider the vararg amrker.
10167         * unicode.c, decimal.c: constify some arrays.
10168
10169 2003-07-15  Dick Porter  <dick@ximian.com>
10170
10171         * socket-io.c: Fixed compilation for gcc < 3.2.
10172
10173         Fixed compilation for machines that don't have AF_INET6 (thanks to
10174         Bernie Solomon <bernard@ugsolutions.com> for that part.)
10175
10176         Fixed compile warnings.
10177         
10178         Fixed formatting and line endings.
10179
10180 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
10181
10182         * socket-io.h:
10183         * socket-io.c: Added IPv6 support.
10184
10185 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
10186
10187         * class.c (mono_class_is_assignable_from): New function to implement
10188         the is_assignable_from logic. Used by mono_object_isinst, 
10189         Type::IsAssignableFrom () and the interpreter.
10190
10191         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
10192         Object, even interfaces.
10193         
10194         * object.c (mono_object_isinst): Implement in terms of 
10195         is_assignable_from.
10196
10197         * icall.c (ves_icall_type_is_assignable_from): New icall.
10198
10199 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
10200
10201         * domain.c (foreach_domain): fix compiler warning.
10202
10203 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
10204
10205         * image.c (load_metadata_ptrs): use g_strndup because strndup is
10206         not available on all plattforms
10207
10208 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
10209
10210         * image.h image.c: Store the metadata version string in MonoImage.
10211         * icall.c: New icall to retrieve the image version.
10212         * reflection.c (create_dynamic_image): Fill in the image version field
10213         * reflection.c (build_compressed_metadata): Use the image version
10214         from the image structure.
10215
10216 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10217
10218         * appdomain.c: modified comment.
10219         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
10220         That will be its last iteration when mono_gc_cleanup is called from
10221         mono_runtime_cleanup and before the domain is unloaded.
10222
10223         Fixes bug #45962.
10224
10225 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
10226
10227         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
10228         attributes.
10229
10230 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10231
10232         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
10233         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
10234         Bernie Solomon <bernard@ugsolutions.com>.
10235
10236 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10237
10238         * object.c, object.h: provide mono_object_new_fast() for faster
10239         allocation in some special cases.
10240
10241 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
10242
10243         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
10244         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
10245
10246 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
10247
10248         * threadpool.c: fix leaks.
10249
10250 2003-07-01  Dick Porter  <dick@ximian.com>
10251
10252         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
10253         using MonoGHashTables.  Fixes threadpool bug posted to list.
10254
10255 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
10256
10257         * image.h, image.c: added support to load an assembly from a byte array.
10258         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
10259         assembly bundle support.
10260
10261 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
10262
10263         * threadpool.c (mono_thread_pool_add): keep a reference to the
10264         AsyncResult to prevent GC
10265
10266 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
10267
10268         * class.c: leak fix.
10269
10270 2003-06-25  Dick Porter  <dick@ximian.com>
10271
10272         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
10273         for the async object, the WaitHandle object will close the handle.
10274         Fixes bug 45321.
10275
10276 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
10277
10278         * class.c: in mono_array_class_get (), lookup from the hash with the
10279         same type we insert: this works around a bug in
10280         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
10281         lluis. The real fix will have to wait for after the release.
10282
10283 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10284
10285         * icall.c: fix memory leak when getting type members.
10286
10287 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
10288
10289         * reflection.c: added more pubtoken special cases.
10290
10291 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
10292
10293         * class.c: handle field offset correctly when class size
10294         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
10295
10296 2003-06-20  Martin Baulig  <martin@ximian.com>
10297
10298         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
10299         *image' field.
10300
10301 2003-06-20  Martin Baulig  <martin@ximian.com>
10302
10303         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
10304
10305 2003-06-20  Martin Baulig  <martin@ximian.com>
10306
10307         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
10308         just distinguish between variables in registers and variables at
10309         an offset relative to a register.
10310
10311 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10312
10313         * icall.c: #ifdef out latest changes until mcs is fixed.
10314
10315 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
10316
10317         * icall.c: return members in metadata order.
10318
10319 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
10320
10321         * icall.c: avoid infinite loop in GetTimeZoneData.
10322
10323 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
10324
10325         * icall.c: added Marshal.Prelink/All icalls.
10326
10327 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
10328
10329         * object.c, object.h: fix warnings and do some overflow checking
10330         when creating arrays.
10331
10332 2003-06-17  Dick Porter  <dick@ximian.com>
10333
10334         * file-io.h:
10335         * file-io.c: File attributes need to be tweaked slightly when
10336         passed from the managed to the w32 world.
10337
10338 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10339         * profiler.h profiler-private.h profiler.c: Rework last patch
10340         based on suggestion by Paolo.
10341         
10342 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
10343
10344         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
10345         instruction level coverage data collection.
10346         * profiler.h profiler.c (: Added new callback function which can be
10347         used by the profiler to limit which functions should have coverage
10348         instrumentation.
10349         * profiler.c (mono_profiler_load): Call g_module_build_path to
10350         generate the file name of the profiler library.
10351
10352 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
10353
10354         * profiler.c, profiler.h, profiler-private.h: added basic block 
10355         coverage profiling API.
10356
10357 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
10358
10359         * reflection.c (mono_reflection_create_runtime_class): Add support
10360         for events in dynamically generated code.
10361
10362         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
10363         not allocated.
10364
10365 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
10366
10367         * icall.c: when getting timezone info, return reasonable values if we
10368         can't get the actual data.
10369
10370 2003-06-14  Dick Porter  <dick@ximian.com>
10371
10372         * threads.c (start_wrapper): Remove the reference to the thread
10373         object in the TLS data, so the thread object can be finalized.
10374         This won't be reached if the thread threw an uncaught exception,
10375         so those thread handles will stay referenced :-( (This is due to
10376         missing support for scanning thread-specific data in the Boehm GC
10377         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
10378
10379 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
10380
10381         * reflection.c: ensure streams and tables are first allocated with
10382         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
10383
10384 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
10385
10386         * icall.c: fixed GetElementType for byrefs (bug# 44792).
10387
10388 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
10389
10390         * reflection.c (mono_reflection_create_runtime_class): Add support for
10391         properties to dynamically created classes.
10392         * reflection.c: Fix a few places where non-MonoObjects were inserted
10393         into the tokens hashtable.
10394
10395 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10396
10397         * object.c: some support to handle out of memory exceptions.
10398
10399 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
10400
10401         * marshal.c (mono_marshal_get_native_wrapper): support reference
10402         return types
10403
10404 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
10405
10406         * object.h, object.c: more portability stuff from Bernie Solomon.
10407         Unexport mono_object_allocate(). Added mono_object_unbox ().
10408         Set exitcode when an unhandled exception is thrown.
10409
10410 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
10411
10412         * marshal.c (mono_marshal_get_native_wrapper): use custom
10413         marshaler for return types.
10414
10415 2003-06-10  Dick Porter  <dick@ximian.com>
10416
10417         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
10418         ip_mreq is available
10419
10420 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
10421
10422         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
10423         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
10424         by Bernie Solomon <bernard@ugsolutions.com>.
10425
10426 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
10427
10428         * gc.c (mono_gc_init): Avoid error message on shutdown when
10429         GC_DONT_GC=1 is used.
10430
10431         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
10432         New icall to return the GUID of a module.
10433
10434 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
10435
10436         * class.c: ensure instance size always includes the parent's size
10437         even whem class size is set explicitly (fixes bug#44294).
10438
10439 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
10440
10441         * profiler.h, profiler.c: made the simple profiler thread-safe,
10442         get more accurate timing info. Allow the loading of an
10443         externally-developed profiler module.
10444
10445 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
10446
10447         * marshal.c (mono_marshal_get_native_wrapper): improved
10448         class/byref arguments.
10449         (mono_marshal_get_native_wrapper): better string marshaling support.
10450
10451 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
10452
10453         * class.c: ensure .pack and .size are handled correctly and
10454         simplified layout of static fields.
10455
10456 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
10457
10458         * appdomain.c
10459         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
10460
10461         * loader.c (mono_lookup_pinvoke_call): look for modules in the
10462         current directory (fix bug 44008)
10463
10464 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
10465
10466         * marshal.c (mono_marshal_get_native_wrapper): started support for
10467         custom marshalers.
10468         (mono_delegate_to_ftnptr): consider marshalling specifications
10469
10470 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
10471
10472         * reflection.c, reflection.h: emit custom marshal info.
10473
10474 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10475
10476         * object.c: free the GError.
10477         * icall.c: added CloseEvent_internal.
10478         * threads.[ch]:
10479         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
10480         call.
10481
10482 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
10483
10484         * loader.c (mono_method_get_signature): Add support for dynamic
10485         assemblies.
10486
10487 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
10488
10489         * reflection.c: fixed bug #43905.
10490
10491 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
10492
10493         * class.c, domain.c, icall.c, metadata.h, object.h: support for
10494         handling TypedReference and ArgIterator.
10495         * loader.c, loader.h: added function to get signature at call site.
10496
10497 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10498
10499         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
10500         data readonly. Buglets and warning fixes. Some MethodSpec support.
10501
10502 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
10503
10504         * class.h, class.c, object.c: remove relative numbering support.
10505
10506 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
10507
10508         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
10509         free the string, until we get a chance to fix Gtk#
10510
10511 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10512
10513         * marshal.c: revert last patch.
10514
10515 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
10516
10517         * icall.c: updates for new mono_class_vtable() not calling
10518         the type constructor anymore.
10519
10520 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
10521
10522         * object.h, object.c: separate vtable creation from type
10523         initialization. Make running the .cctor thread safe.
10524
10525 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
10526
10527         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
10528
10529 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
10530
10531         * loader.c (mono_get_method): consider calling convention
10532
10533 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
10534
10535         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
10536         to return the invisible global type for a module.
10537
10538         * reflection.c (mono_image_build_metadata): Emit global fields too.
10539
10540 2003-05-20  Peter Williams  <peterw@ximian.com>
10541
10542         * loader.c (mono_lookup_internal_call): Add a few newlines.
10543
10544 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
10545
10546         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
10547         literal strings.
10548
10549         * appdomain.c (set_domain_search_path): Recalculate search path when
10550         AppDomainSetup.PrivateBinPath changes.
10551
10552         * object.c (mono_class_compute_gc_descriptor): It turns out some
10553         parts of the class libs (like System.Thread) holds pointers to
10554         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
10555         to treat native int a pointer type here.
10556         
10557 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
10558
10559         * appdomain.h, domain.c: add hashtable for jump target resolution.
10560
10561 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
10562
10563         * reflection.h reflection.c icall.c: Added new icalls 
10564         GetManifestResourceInfoInternal, GetModulesInternal and support
10565         infrastructure.
10566
10567 2003-05-16  Dick Porter  <dick@ximian.com>
10568
10569         * icall.c:
10570         * file-io.h:
10571         * file-io.c: Implement System.IO.MonoIO::GetTempPath
10572
10573 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
10574
10575         * object.c: mono_store_remote_field: little fix to previous patch.
10576
10577 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
10578
10579         * class.c: add constructors to array classes.
10580         * icall.c: special case array construction for InternalInvoke (),
10581
10582 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
10583
10584         * class.h class.c reflection.c object.c: Added support for field
10585         defaults in dynamically generated classes.
10586
10587 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
10588
10589         * reflection.c: properly encode charset for ddlimport.
10590
10591 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
10592
10593         * threads.c: allow compiling without GC.
10594
10595 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
10596
10597         * appdomain.h, object.c, object.h, threads.c, threads.h: added
10598         handling of thread static data.
10599
10600 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
10601
10602         * reflection.h, reflection.c: added mono_custom_attrs_free ().
10603
10604 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
10605
10606         * class.c (mono_array_class_get): always set the serializable flags
10607         (mono_array_class_get): always set the SEALED attribute for array types
10608
10609 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
10610
10611         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
10612         attributes (fix for bug 42021).
10613
10614 2003-05-12  Dick Porter  <dick@ximian.com>
10615
10616         * gc.c: Don't run finalizers when the finalizer thread is
10617         finishing up, because the default domain has already been
10618         destroyed.
10619
10620 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
10621
10622         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
10623         value is null, we should throw an exception.   This is slightly
10624         different than the other conventions used for the constructor.
10625
10626 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10627
10628         * socket-io.c: fixed windows build.
10629
10630 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10631
10632         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
10633
10634 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
10635
10636         * object.c (mono_string_new_wrapper): Compatibility fix for MS
10637         compilers.
10638
10639 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
10640
10641         * class.c (mono_class_layout_fields): Add experimental GC aware
10642         auto layout facility. Requires class library changes to work correctly.
10643
10644         (mono_class_setup_vtable): Avoid overriding explicit interface
10645         method implementations. Fixes iface3.exe test.
10646
10647         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
10648         object reference.
10649         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
10650         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
10651
10652         * metadata.h: Add new type classification macro which determines
10653         whenever the type holds an object reference.
10654
10655 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
10656
10657         * marshal.c (mono_marshal_get_native_wrapper): cleanups
10658
10659 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
10660
10661         * gc.c (finalizer_thread): Work around a GC bug.
10662
10663 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
10664
10665         * marshal.c (emit_struct_conv): allow unions
10666
10667         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
10668
10669 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
10670
10671         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
10672
10673 2003-05-06  Martin Baulig  <martin@ximian.com>
10674
10675         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
10676
10677 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10678
10679         * socket-io.c:
10680         (Select_internal): allow NULLs, don't create arrays if not needed.
10681         Coupled with Socket.cs changes.
10682
10683         * threadpool.c:
10684         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
10685         register a finalizer for it that will close the semaphore handle. This
10686         fixes the leak and make Lupus' test run with > 4080 loops.
10687
10688 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
10689
10690         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
10691         Jerome Laban (bug #42287)
10692
10693 2003-05-02  Martin Baulig  <martin@ximian.com>
10694
10695         * debug-mono-symfile.h
10696         (MonoSymbolFile): Moved declaration into mono-debug.h.
10697         (MonoDebugMethodJitInfo): Likewise.
10698         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
10699         argument.
10700         (_mono_debug_address_from_il_offset): Take a
10701         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
10702
10703         * mono-debug.h
10704         (MonoDebugDomainData): New struct.
10705         (mono_debug_get_domain_data): New function.
10706         (mono_debug_add_method): Take an additional `MonoDomain *'
10707         argument.
10708         (mono_debug_source_location_from_address): Likewise.
10709         (mono_debug_il_offset_from_address): Likewise.
10710         (mono_debug_address_from_il_offset): Likewise.
10711
10712 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
10713
10714         * reflection.c: one more check for null type in custom attrs.
10715
10716 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10717
10718         * reflection.c: avoid warning (comparison is always false due to limited
10719         range of data type).
10720
10721 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10722
10723         * icall.c: throw an exception in Type.GetField if the argument 'name'
10724         is NULL.
10725
10726 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
10727
10728         * reflection.c: fixed handling of enums in named arguments to custom
10729         attributes (bug #42123).
10730
10731 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
10732
10733         * reflection.c: use the right array element type and handle
10734         a null for a Type argument, too.
10735
10736 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
10737
10738         * reflection.c: handle arrays as arguments to custom attributes.
10739
10740 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
10741
10742         * reflection.c: handle a string value in a custom attr
10743         ctor that takes an object.
10744
10745 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
10746
10747         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
10748         (fix bug #42063)
10749
10750 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
10751
10752         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
10753
10754 2003-04-27  Martin Baulig  <martin@ximian.com>
10755
10756         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
10757         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
10758         MONO_DEBUGGER_EVENT_BREAKPOINT.
10759         (mono_breakpoint_trampoline_code): Removed.
10760         (mono_debugger_event_handler): The last argument is now a
10761         `guint32'.
10762         (mono_debugger_insert_breakpoint_full): Removed the
10763         `use_trampoline' argument.
10764         (mono_debugger_method_has_breakpoint): Likewise.
10765         (mono_debugger_trampoline_breakpoint_callback): Renamed to
10766         mono_debugger_breakpoint_callback(); take the method and
10767         breakpoint number as arguments.
10768
10769 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
10770
10771         * metadata.c: fix off by one when loading parameters attributes.
10772
10773 2003-04-24  Martin Baulig  <martin@ximian.com>
10774
10775         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
10776
10777 2003-04-24  Martin Baulig  <martin@ximian.com>
10778
10779         * mono-debug-debugger.c: Moved all code which interacts with the
10780         Mono Debugger here.
10781
10782         * debug-mono-symfile.c: This code now just deals with the symbol
10783         file itself, the debugger code is now in mono-debug-debugger.c.
10784
10785 2003-04-23  Martin Baulig  <martin@ximian.com>
10786
10787         * mono-debug.c (mono_debug_source_location_from_il_offset):
10788         New method; like mono_debug_source_location_from_address(), but
10789         takes an IL offset instead of a machine address.
10790
10791 2003-04-23  Martin Baulig  <martin@ximian.com>
10792
10793         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
10794         `line' field; this is now computed by the debugger.
10795
10796 2003-04-23  Martin Baulig  <martin@ximian.com>
10797
10798         * mono-debug.[ch]: New files.  This is the new debugging interface.
10799
10800         * mono-debug-debugger.[ch]: New files.  Moved all code which
10801         interacts with the Mono Debugger here.
10802
10803 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
10804
10805         * domain.c (mono_init): initialize mono_defaults.monitor_class
10806
10807 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
10808
10809         * reflection.c (method_encode_code): Add a spicy exception to help
10810         future compiler authors.
10811
10812 2003-04-21  Martin Baulig  <martin@ximian.com>
10813
10814         * icall.c
10815         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10816         Make this work with relative pathnames; g_filename_to_uri() needs
10817         an absolute filename.
10818
10819 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
10820
10821         * icall.c: Track name changes in Object and ValueType.
10822
10823 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
10824
10825         * metadata.c (mono_type_stack_size): size should be a multiple of
10826         sizeof (gpointer)
10827
10828 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10829
10830         * gc.c:
10831         (internal_domain_finalize): moved into mono_domain_finalize. No need
10832         to create another thread because the finalizers will be run in the
10833         finalizer thread.
10834         
10835         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
10836         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
10837         to be run (MS does this too).
10838
10839 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
10840
10841         * object.c (mono_class_compute_gc_descriptor): Update comment.
10842
10843         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
10844
10845         * image.h: Add synchronized wrapper cache.
10846
10847         * image.c (do_mono_image_open): Initialize cache.
10848
10849         * reflection.c (create_dynamic_mono_image): Initialize cache.
10850
10851 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10852
10853         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
10854         ves_icall_System_Buffer_ByteLengthInternal.
10855
10856 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10857
10858         * reflection.c: setup klass->nested_in earlier. Allow
10859         a dash in the assembly name.
10860
10861 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
10862
10863         * metadata.c (mono_type_to_unmanaged): dont access
10864         type->data.klass for MONO_TYPE_OBJECT
10865         (mono_type_to_unmanaged): consider System.Delegate class
10866
10867 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
10868
10869         * class.c: just setup supertypes in the proper place instead of
10870         initializing the full element class for arrays.
10871
10872 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
10873
10874         * class.c: ensure the element class of arrays is initialized.
10875         Setup the supertype info for array classes, too.
10876
10877 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
10878
10879         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
10880
10881 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10882
10883         * Makefile.am: re-added -m option when running cygpath. This way,
10884         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
10885         separator.
10886         * mono-config.c: same codepath for locating mono config file for WIN32
10887         and the rest.
10888         * assembly.c: if mono_assembly_setrootdir is called, don't override
10889         the value set.
10890
10891 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10892
10893         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
10894         MONO_ASSEMBLIES variable.
10895
10896 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
10897
10898         * icall.c: added Assembly::GetNamespaces() icall.
10899
10900 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10901
10902         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
10903
10904 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
10905
10906         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
10907         * object.c: fixed bug in the construction of vtable for proxies
10908
10909 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
10910
10911         * object.c (mono_array_new): Mark mono_array_new as an icall.
10912
10913 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10914
10915         * class.c: fixed test for public method when overriding interfaces.
10916         Closes bug #40970.
10917
10918 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10919
10920         * appdomain.h, domain.c: added mono_domain_foreach() to
10921         be able to access the currently loaded appdomains.
10922         * object.c: make string interning work across sppdomains.
10923         Mark some functions for use as icalls.
10924
10925 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
10926
10927         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
10928
10929         * reflection.h reflection.c: Allocate long living data using 
10930         GC_MALLOC_ATOMIC so the collector does not need to scan it.
10931
10932         * reflection.c: Double the allocation size in streams instead of
10933         increasing it, to prevent unneccesary copying on large assemblies.
10934         
10935         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
10936         creation if the assembly does not have the Run flag set.
10937
10938 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
10939
10940         * class.h: avoid the C++ keywords in header files (Jerome Laban
10941         spotted and fixed this).
10942
10943 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10944
10945         * object.c:
10946         (mono_unhandled_exception): fill in the arguments for the
10947         UnhandledException event. Only trigger that event for the default
10948         domain (as MS does).
10949
10950 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
10951
10952         * object.c: Improve typed allocation stuff based on suggestions from
10953         Paolo. Also turn it on if the GC library supports it.
10954
10955 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
10956
10957         * object.c object.h class.h: Added experimental typed allocation
10958         facility using the interfaces in gc_gcj.h.
10959
10960         * os/gc_wrapper.h: Added new include files.
10961         
10962 2003-04-03  Martin Baulig  <martin@ximian.com>
10963
10964         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
10965         which is not yet enabled by default.
10966
10967         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
10968         functions.
10969         (mono_gc_lock, mono_gc_unlock): New static functions.
10970
10971         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
10972         functions; stop/start the world for the garbage collector.  This
10973         is using the windows API; we need to complete the SuspendThread()/
10974         ResumeThread() implementation in the io-layer to make this work on Unix.
10975         (mono_gc_push_all_stacks): New public function; tells the garbage
10976         collector about the stack pointers from all managed threads.
10977
10978 2003-04-03  Martin Baulig  <martin@ximian.com>
10979
10980         * object.h (MonoThread): Added `gpointer stack_ptr'.
10981
10982         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
10983
10984 2003-04-03  Martin Baulig  <martin@ximian.com>
10985
10986         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
10987
10988 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
10989
10990         * reflection.c (typebuilder_setup_fields): Initialize field.first and
10991         field.last.
10992
10993 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
10994
10995         * loader.c (mono_lookup_internal_call): Report the corlib that is
10996         out of sync.
10997
10998 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
10999
11000         * icall.c (ves_icall_type_GetTypeCode): fixed check for
11001         System.DBNull (it's class not valuetype).
11002
11003 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
11004
11005         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
11006         if the array method was already assigned a token (fixes bug#40646).
11007
11008 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
11009
11010         * reflection.c (mono_reflection_get_type): Attempt type resolve even
11011         if no assembly is given.
11012
11013 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
11014
11015         * metadata.h: Added the new tables.
11016
11017         * row-indexes.h: Added definitions for new tables.
11018
11019         * metadata.c: Add schemas for new tables, and add support for
11020         computing the sizes of them.
11021
11022         * class.c: Update for handling the new type cases.
11023
11024 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
11025
11026         * metadata.h (MONO_TYPE_IS_VOID): new macro
11027
11028 2003-03-31  Martin Baulig  <martin@ximian.com>
11029
11030         * threads.h (MonoThreadCallbacks): Added `thread_created'.
11031
11032         * threads.c (mono_thread_new_init): Call `thread_created' in the
11033         mono_thread_callbacks.
11034
11035 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
11036
11037         * loader.h: added marshalbyrefobject_class to mono_defaults
11038         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
11039         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
11040           generation of output parameters.
11041           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
11042         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
11043           contextbound and the target object belongs to the context of the caller.
11044         * object.h: added context and unwrapped_server variables in MonoRealProxy.
11045         * object.c: Implemented support for interfaces and abstract classes
11046           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
11047           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
11048
11049 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
11050
11051         * class.h class.c (mono_class_is_subclass_of): New function.
11052         
11053         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
11054         routines for most common case (calls from ArrayList::ToArray).
11055
11056         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
11057         routine so programs which call Environment::Exit() can be profiled.
11058
11059         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
11060         Added MONO_ARCH_SAVE_REGS.
11061
11062         * icall.c (ves_icall_type_is_subtype_of): Use new function.
11063
11064 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
11065
11066         * blob.h: Add a couple of new MonoType types definitions.
11067
11068         * tabledefs.h: Add a couple of new call convs.
11069
11070 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
11071
11072         * reflection.h (MonoReflectionDynamicAssembly): track changes in
11073         the layout of the class.
11074
11075         * reflection.c (alloc_table): double the size on overflow to avoid
11076         unnecessary copying.
11077
11078         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
11079         avoid filling out metadata tables and blobs. Also set mb->ilgen to
11080         null so it can be garbage collected.
11081         
11082 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
11083
11084         * reflection.c (mono_reflection_get_type): Return the resolved type
11085         only if it is in the assembly we searched.
11086
11087         * reflection.c (ensure_runtime_vtable): Initialize method slots.
11088
11089         * class.c (mono_class_setup_vtable): Set the slot of the overriding
11090         method.
11091
11092 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11093
11094         * appdomain.c:
11095         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
11096         the right one is 'file:///blah', but MS allows it.
11097         * assembly.c:
11098         (mono_assembly_open): allow 'file://blah'
11099
11100         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
11101
11102 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
11103
11104         * socket-io.c: fixes bug #40310.
11105
11106 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
11107
11108         * reflection.c (mono_reflection_parse_type): handle deeply nested
11109         types correctly.
11110
11111         * reflection.c (mono_image_create_token): Use unique token values
11112         since they will be put into a hash table.
11113
11114         * class.c (mono_class_setup_vtable): If a method occurs in more than
11115         one place in the vtable, and it gets overriden, then change the
11116         other occurances too.
11117
11118         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
11119         object as return type.
11120
11121 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11122
11123         * icall.c: Deleted "ToString" implementation for double and float
11124         because they are full implemented in managed code.
11125
11126 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11127
11128         * reflection.c, reflection.h: implemented and exported functions
11129         to retrieve info about custom attributes.
11130
11131 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11132
11133         * appdomain.c: moved Uri handling to assembly.c
11134         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
11135         work when using a file Uri in *nix and windows.
11136
11137         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
11138         GetReferencedAssemblies.
11139
11140 2003-03-18  Dick Porter  <dick@ximian.com>
11141
11142         * icall.c: Rename a couple of internal calls
11143
11144         * threads.c: Set the thread state to Stopped when a thread exits.
11145         Fixes bug 39377.
11146
11147 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
11148
11149         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
11150         New icall.
11151
11152         * object.c (mono_class_vtable): fix warning.
11153
11154 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
11155
11156         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
11157
11158         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
11159         memory.
11160         (method_encode_clauses): Create exception info structures in the right
11161         order.
11162         (mono_reflection_setup_internal_class): Initialize supertypes field.
11163
11164         * class.c object.c: Handle interfaces which implement other interfaces 
11165         correctly.
11166
11167         * class.h class.c: Move the supertypes array initialization code into 
11168         a separate function so it can be used for dynamic types too. Also call
11169         it earlier, in mono_class_init(), since it can be used before the
11170         type is initialized.
11171
11172 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11173
11174         * Makefile.am:
11175         * assembly.c:
11176         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
11177
11178         * appdomain.c:
11179         * appdomain.h:
11180         * marshal.c:
11181         * object.c: remove warnings.
11182
11183 2003-03-13  Martin Baulig  <martin@ximian.com>
11184
11185         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
11186         (MonoDebugLexicalBlockEntry): New types.
11187
11188         * debug-mono-symfile.c
11189         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
11190
11191 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11192
11193         * process.c: ret can be any non-zero value accroding to MS doc.
11194
11195 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
11196
11197         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
11198         fixing a warning for a miss-used prototype, would have cause
11199         random memory corruption.
11200
11201 2003-03-07  Martin Baulig  <martin@ximian.com>
11202
11203         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
11204         getting really annoying ....
11205
11206 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
11207
11208         * reflection.c (fixup_method): added support for array methods.
11209
11210 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
11211
11212         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
11213         (pointed out by Michael Adams).
11214
11215 2003-03-04  Dick Porter  <dick@ximian.com>
11216
11217         * icall.c: Temporarily reverted the Double and Single ToString()
11218         change, because it broke nunit.
11219
11220 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
11221
11222         * object.h, threads.h: make include files compatible with C++
11223         (patch by Jerome Laban <jlaban@wanadoo.fr>).
11224
11225 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11226
11227         * icall.c: Erased ToString helper functions for Double and Single.
11228         Now, that implementations ar all in managed code (Double and Single
11229         Formatters).
11230
11231 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
11232
11233         * appdomain.c: Added method for initializing the default context of
11234         a domain. Added internal call for getting the default context.
11235         * appdomain.h: Added context variable in MonoDomain struct.
11236         * domain.c: mono_domain_set also sets the default context of the domain
11237         * icall.c: Mapped internal method InternalGetDefaultContext.
11238         * object.c: mono_object_get_virtual_method returns always a remoting
11239         wrapper if the object is a transparent proxy.
11240         mono_runtime_invoke_array: when creating an object by calling the
11241         constructor, if the created object is a proxy, then the constructor should
11242         be called using the a remoting wrapper.
11243
11244 2003-03-03  Dick Porter  <dick@ximian.com>
11245
11246         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
11247         variable so it compiles on solaris.  Problem spotted by
11248         Christopher Taylor <ct@cs.clemson.edu>
11249
11250 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11251
11252         * appdomain.c:
11253         (get_info_from_assembly_name): don't leak value.
11254
11255         * icall.c:
11256         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
11257         result.
11258
11259 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
11260
11261         * assembly.c: export mono_image_load_references ().
11262         * class.c: handle function pointers. mono_class_from_name() now
11263         supports nested type names directly.
11264
11265 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
11266
11267         * reflection.h reflection.c: Encode already created dynamic methods 
11268         and fields correctly as a DEF instead of a REF.
11269
11270         * reflection.c: Get rid of the force_ref argument to 
11271         mono_image_typedef_or_ref since it was wrong in the first place.
11272
11273         * string-icalls.c: add error checking to string constructors according
11274         to the MSDN docs.
11275
11276         * reflection.c: Emit types in the order their TypeBuilders were 
11277         created. Previously, a new table index was assigned to each type before
11278         the tables were emitted. This was wrong because the signature blob
11279         might already refer to a type by its original table index.
11280
11281 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
11282
11283         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
11284         change.
11285         
11286 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11287
11288         * Makefile.am: make assemblies dir have \ instead of / on windows.
11289
11290 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
11291
11292         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
11293         iterate over the NESTEDCLASS table using a linear search since the
11294         table is not guaranteed to be sorted by the secondary key.
11295
11296         * class.c (mono_class_create_from_typedef): fixed up call to
11297         mono_metadata_nesting_typedef.
11298         
11299 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
11300
11301         * marshal.c (mono_string_to_byvalstr): clear the memory as
11302         suggested by Jerome Laban <jlaban@wanadoo.fr>
11303
11304 2003-02-26  Dick Porter  <dick@ximian.com>
11305
11306         * process.c: Cope with padding in .rsrc blocks
11307
11308 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
11309
11310         * metadata.h: reverted the filter_len change, it breaks reflection
11311         
11312 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
11313
11314         * metadata.h: added a new field to store the filter_len
11315         
11316
11317 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
11318
11319         * reflection.c: handle custom attributes for types and members
11320         created with Reflection.Emit (bug#38422).
11321
11322 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
11323
11324         * reflection.c: define RTSpecialName automatically for constructors for
11325         compatibility with MS.NET.
11326
11327         * reflection.c (mono_reflection_create_runtime_class): initialize
11328         nested_in field of dynamically created classes.
11329
11330 2003-02-22  Martin Baulig  <martin@ximian.com>
11331
11332         * debug-mono-symfile.h: Incremented version number.
11333
11334 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
11335
11336         * object.h icall.c process.c: fix warnings.
11337
11338 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
11339
11340         * appdomain.h appdomain.c:
11341         (mono_domain_try_type_resolve): split the 
11342         name_or_tb argument into a name and a tb argument.
11343         (mono_domain_has_type_resolve): new function to check whenever the
11344         application has registered a TypeResolve event handler.
11345         
11346         * icall.c reflection.h reflection.c: move the type resolve logic into
11347         mono_reflection_get_type () so it will be invoked when 
11348         Assembly::GetType () is called.
11349
11350         * reflection.c:
11351         (mono_reflection_get_type): renamed to get_type_internal.
11352         (mono_reflection_get_type): fixed type name generation so it works 
11353         for nested types too.
11354         (mono_reflection_get_type): call has_type_resolve () to avoid the 
11355         costly type name generation if there is no resolve event handler.
11356
11357 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11358
11359         * class.c, image.c: load exported types from file references.
11360
11361 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
11362
11363         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
11364           used to cache the managed methods used to create proxies and make 
11365           remote invocation of methods.
11366         * class.h: Added in MonoVTable a flag to indicate that a class needs 
11367           to be remotely created.
11368         * object.c: Modified the method mono_class_vtable(). It now initializes 
11369           the remote flag of the vtable. Modified mono_object_new_specific(), 
11370           so now it checks the remote flag.
11371         * icall.c: Added a couple of internal methods, one for enabling instance 
11372           creation interception for a type, and one for creating objects bypassing
11373           the remote check.
11374
11375 2003-02-18  Martin Baulig  <martin@ximian.com>
11376
11377         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
11378         New interncall to get a method's metadata token.
11379
11380         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
11381         New interncall for the debugger.
11382
11383 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
11384
11385         * class.c (mono_class_setup_vtable): allocate supertype array
11386
11387 2003-02-18  Martin Baulig  <martin@ximian.com>
11388
11389         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
11390
11391 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11392
11393         * reflection.c:
11394         (assembly_name_to_aname): jump over unknown properties (i've found
11395         something like: 'type, assembly, version=xxx, custom=null, public...',
11396         so now will ignore custom=null and still get the rest of the values).
11397
11398 2003-02-17  Dick Porter  <dick@ximian.com>
11399
11400         * threads.c: Have Thread.Start() wait for a semaphore to signal
11401         that the thread has set up all its local data.  This fixes bug
11402         34323, where Abort() raced the new thread's TLS data.
11403
11404         Also removes the handle_store() call from start_wrapper, because
11405         threads are now always created suspended and there is no longer a
11406         race between the parent and child threads to store the info.
11407
11408 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
11409
11410         * image.c: explain the #- heap issue in a message, hopefully
11411         avoiding FAQs on mono-list.
11412
11413 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11414
11415         * icall.c:
11416         (GetEntryAssembly): if the domain has not invoked
11417         AppDomain.ExecuteAssembly yet, return the assembly of the default
11418         AppDomain.
11419
11420 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
11421
11422         * class.c (mono_ldtoken): make it work in dynamic assemblies.
11423
11424 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
11425
11426         * metadata.c, reflection.c: simple speedup to type hash
11427         and equals code.
11428
11429 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
11430
11431         * image.c, image.h, class.c, assembly.c: move module loading
11432         to MonoImage. When loading metadata, consider alignemnet from
11433         the start of metadata, not from the metadata address in memory.
11434
11435 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
11436
11437         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
11438         AssemblyBuilder objects. Factored out custom attribute creation into
11439         a separate function.
11440         (create_custom_attr): new function to create custom attributes.
11441
11442 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
11443
11444         * Makefile.am: Got tired of typing the full pathname to pedump.
11445         Until there is another option, am installing this.
11446
11447 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
11448
11449         * class.c (class_compute_field_layout): always set field->parent 
11450         (mono_ldtoken): use mono_defaults.fieldhandle_class;
11451
11452 2003-02-11  Dick Porter  <dick@ximian.com>
11453
11454         * threads-types.h:
11455         * monitor.c: Rewrote Monitor, making lock much faster and
11456         Pulse/Wait work as specified.  Also uses much fewer handles, and only
11457         creates them as needed.
11458
11459         * exception.c: Added SynchronizationLockException
11460
11461         * threads.c: Deleted old Monitor implementation.  The new one is
11462         in a new file.
11463
11464 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
11465
11466         * class.c: handled TypedReference type code. Set the correct size for
11467         class data. Setup interface_offsets for interface classes, too.
11468
11469 2003-02-09  Martin Baulig  <martin@ximian.com>
11470
11471         * debug-mono-symfile.h: Reflect latest symbol writer changes.
11472
11473 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
11474
11475         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
11476         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
11477         * object.c: fixed mono_object_get_virtual_method () for interfaces.
11478         * verify.c: check for code that runs after the end of the method.
11479
11480 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
11481
11482         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
11483         "System.Math::Round2".
11484         * sysmath.h: Added Floor, Round and Round2 definitions.
11485         * sysmath.c: Modified certain functions that were not 100% compliant
11486         with MS.NET (math precision) and added the implementation of Floor,
11487         Round and Round2.
11488
11489 2003-02-07  Martin Baulig  <martin@ximian.com>
11490
11491         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
11492
11493 2003-02-07  Martin Baulig  <martin@ximian.com>
11494
11495         * debug-mono-symfile.c: Reflected latest symwriter changes.
11496         (mono_debug_create_mono_symbol_file): Removed.
11497         (mono_debug_open_mono_symbol_file): Take an argument which
11498         specifies whether to create a dynamic symbol file.
11499
11500 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
11501
11502         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
11503
11504 2003-02-05  Martin Baulig  <martin@ximian.com>
11505
11506         * reflection.c (mono_image_build_metadata): Make this public,
11507         protect it against being called multiple times, don't create
11508         resources and don't build the compressed metadata here.
11509         (mono_image_create_pefile): Do this here.
11510
11511         * icall.c
11512         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
11513
11514 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11515
11516         * socket-io.c: fixed bug #36322.
11517
11518 2003-02-06  Piers Haken <piersh@friskit.com>
11519
11520         * appdomain.[ch]:
11521         * class.h:
11522         * debug-mono-symfile.c:
11523         * icall.c:
11524         * loader.c:
11525         * mono-config.c:
11526         * monosn.c:
11527         * reflection.c:
11528         * socket-io.c: warning cleanups
11529
11530 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
11531
11532         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
11533         function. works like remoting invoke, but does a check for the Proxy first.
11534
11535 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
11536
11537         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
11538
11539 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
11540
11541         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
11542         array of pointers.
11543         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
11544         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
11545
11546         * object.c (mono_store_remote_field_new): used by the new jit
11547         instead of mono_store_remote_field
11548         (mono_load_remote_field_new): used by the new jit
11549         instead of mono_load_remote_field
11550
11551 2003-02-05  Patrik Torstensson
11552
11553         * appdomain.c: changed unload to take the domain id instead
11554         of domain
11555         
11556         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
11557
11558
11559 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11560
11561         * appdomain.c: don't look for assemblies in ApplicationBase if
11562         PrivateBinPathProbe is set.
11563
11564 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11565
11566         * object.c: make the first argument in main_args contain the absolute
11567         path to the assembly. Fixes bug #37511.
11568
11569 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11570
11571         * icall.c: get correct UTC offset for countries not using daylight
11572         time saving. Fixes bug #30030.
11573
11574 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11575
11576         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
11577         and 1 are the family).
11578
11579 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
11580
11581         * icall.c (ves_icall_InternalExecute): removed wrong assertion
11582
11583         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
11584
11585 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
11586
11587         * reflection.c: added support for SignatureHelper tokens, which is
11588         needed by the Calli opcode.
11589
11590         * reflection.h: track changes to SignatureHelper class.
11591
11592         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
11593
11594 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11595
11596         * appdomain.c: fixed loading assemblies from PrivateBinPath.
11597
11598 2003-02-03  Patrik Torstensson
11599         * appdomain.[c|h], domain.c : 
11600          - Added support for getting a domain via domain id
11601          - Support for setting and getting domain from System.AppDomain 
11602            (used in cross appdomain channel)
11603          - Added support for get/set for a MonoAppContext on a thread 
11604            (Context class in System.Runtime.Remoting.Contexts),
11605          - Removed hack in Get/SetData and ExecuteAssembly.
11606         
11607         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
11608         the managed world to get control when a proxy is created.
11609
11610         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
11611         
11612 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
11613
11614         * icall.c
11615         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11616         Populate the codebase field as well.
11617
11618 2003-02-02  Martin Baulig  <martin@ximian.com>
11619
11620         * debug-mono-symfile.c
11621         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
11622         (mono_debug_symfile_add_method): Allow interncalls.
11623
11624 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11625
11626         * icall.c: throw parse exception if strtod fails or the string is empty.
11627
11628 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
11629
11630         * marshal.c: handle object type separately from defined
11631         class types.
11632
11633 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
11634
11635         * marshal.c: handle NATIVE_LPSTR for strings when it's
11636         explicitly specified.
11637
11638 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
11639
11640         * reflection.c, reflection.h, icall.c: setup the reflection
11641         handle cache for ModuleBuilders and AssemblyBuilders.
11642
11643 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
11644
11645         * reflection.c (reflection_methodbuilder_to_mono_method): set
11646         pinvoke flag
11647
11648 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11649
11650         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
11651
11652 2003-01-29  Dick Porter  <dick@ximian.com>
11653
11654         * threads.c: No need for the fake_thread kludge now that Thread
11655         doesn't run a class constructor
11656         
11657 2003-01-29  Dick Porter  <dick@ximian.com>
11658
11659         * threads.c: Use g_direct_hash instead of the rather bogus
11660         g_int_hash
11661
11662 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
11663
11664         * marshal.c (mono_marshal_get_native_wrapper): add check for null
11665         (fix pinvoke12.exe)
11666         (mono_marshal_get_struct_to_ptr): generate valid IL code
11667         (mono_marshal_get_ptr_to_struct): generate valid IL code
11668         (*): correctly set sig->pinvoke, we need to memdup the signature
11669         to do that
11670
11671 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
11672
11673         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
11674         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
11675
11676 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
11677
11678         * profiler.c: provide more callers information.
11679
11680 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
11681
11682         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
11683
11684         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
11685
11686         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
11687
11688 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11689
11690         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
11691         exception instead of going into an infinite loop on dates which it 
11692         can't yet handle.
11693
11694         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
11695         out-of-range exception if needed.
11696
11697         * class.c (mono_class_setup_vtable): allow a virtual method to provide
11698         an implementation for an interface method and to override an inherited
11699         method at the same time. 
11700         Imagine a scenario when a virtual method is used to override a
11701         virtual abstract method in a parent class, and this same method 
11702         provides an implementation for an method inherited from an interface. 
11703         In this case, the interface resolution code will set im->slot, which 
11704         means that the virtual method override pass will skip this method 
11705         which means a pointer to the abstract method inherited from the parent
11706         will remain in the vtable of this non-abstract class.
11707
11708         * class.c: (mono_class_setup_vtable): continue search for a real 
11709         method if only an abstract method is found.     
11710
11711 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
11712
11713         * reflection.c: add size to encoding for ByValStr and ByValArray
11714         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
11715
11716 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11717
11718         * class.c (mono_class_setup_vtable): pass the override info as an
11719         argument.
11720
11721         * class.c (mono_class_setup_vtable): set the slot of overriding methods
11722         correctly.
11723         
11724         * reflection.c (ensure_runtime_vtable); add support for method 
11725         overrides.
11726         
11727 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11728
11729         * reflection.c (resolution_scope_from_image): Hack to work to work with
11730         dynamic assemblies.
11731
11732         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
11733         added a 'force_ref' argument to force this function to allways return 
11734         a TypeRef. This is needed by mono_image_get_memberref_token ().
11735         
11736 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11737
11738         * reflection.c (mono_image_get_type_info): interfaces really don't have
11739         a parent.
11740
11741         * reflection.c (mono_image_basic_init): fill out missing fields of
11742         image structure.
11743
11744         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
11745         dynamic assemblies. This is required so dynamic assemblies show up in
11746         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
11747         Type::GetType() etc. This is consistent with MS behaviour.
11748
11749         * image.c image.h reflection.c: add newly created classes to the name 
11750         cache so mono_class_get () will find them.      
11751
11752 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
11753
11754         First part of changes to get IKVM.NET running under mono.
11755         
11756         * appdomain.h, appdomain.c: added new function 
11757         mono_domain_try_type_resolve() which will emit TypeResolve events. 
11758         This function will call AppDomain::DoTypeResolve to do the actual work.
11759
11760         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
11761         moved existing code dealing with dynamic tokens to a new function 
11762         called mono_reflection_lookup_dynamic_token (). This function will 
11763         raise TypeResolve events when appropriate. Since reflection.c is not 
11764         part of libmetadata, a new hook function called 
11765         mono_lookup_dynamic_token() is added to class.c which will call this.
11766
11767         * assembly.h assembly.c: make the invoke_load_hook function public,
11768         so it can be called for dynamic assemblies.
11769
11770         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
11771
11772         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
11773         type isn't found.
11774
11775         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
11776         MonoGHashTable, since it contains pointers to objects which the GC 
11777         needs to track.
11778
11779         * assembly.c (search_loaded): remove unused variable.
11780         
11781 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
11782
11783         * object.c: fixed issue exposed by gcc-generated IL programs
11784         that use RVA data for pointers.
11785
11786 2003-01-25  Martin Baulig  <martin@ximian.com>
11787
11788         * threads.c (start_wrapper): Moved the initialization of
11789         `start_func' above the mono_new_thread_init() call to which we
11790         pass it as argument.
11791
11792 2003-01-24  Martin Baulig  <martin@ximian.com>
11793
11794         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
11795         the MonoThread pointer.
11796
11797 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
11798
11799         * icall.c: Rename `PowImpl' to Pow.
11800
11801 2003-01-23  Dick Porter  <dick@ximian.com>
11802
11803         * threads.c (start_wrapper): Create a Thread object if needed, so
11804         the Main() thread can do the class initialisation in a subthread
11805         that has been set up to allow managed code execution.
11806
11807         Pass the thread ID instead of the MonoThread pointer to the thread
11808         start and attach callbacks.  This change is required, because the
11809         jit thread start callback must be called _before_ the Thread
11810         object can be created.
11811         
11812         (mono_thread_init): Removed much object creation code that is no
11813         longer needed.  No managed code is called from here now.
11814
11815         * object.c (mono_runtime_exec_managed_code): Create a subthread
11816         for Main, and call back to the runtime to use it.
11817         Set the exit code when Main exits.
11818
11819         * gc.c: Make sure domain finalisation happens in a subthread.
11820         Re-enable threaded GC, fixing bug 31333 (again).
11821
11822         * environment.c: System.Environment internall calls (so far just
11823         ExitCode is here, the others are still in icall.c)
11824
11825         * appdomain.c (mono_runtime_cleanup): All threads running managed
11826         code should have finished before mono_runtime_cleanup() is
11827         reached, so no need to clean up threads.
11828
11829 2003-01-22  Martin Baulig  <martin@ximian.com>
11830
11831         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
11832         `gpointer func' arguments.      
11833         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
11834         but added `MonoThread *thread' argument.
11835         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
11836
11837         * threads.c (mono_new_thread_init): Added `gpointer func' argument
11838         and pass it to the mono_thread_start_cb callback.
11839         (mono_install_thread_callbacks): New public function to install a
11840         set of callbacks which are set by the debugger.
11841         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
11842
11843 2003-01-22  Martin Baulig  <martin@ximian.com>
11844
11845         * Makefile.am: Install debug-mono-symfile.h.
11846
11847 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
11848
11849         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
11850
11851 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
11852
11853         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
11854         * class.c (mono_ptr_class_get): correctly set access levels of pointers
11855         (mono_array_class_get): correctly set access levels of arrays
11856
11857 2003-01-20      Patrik Torstensson
11858         * image.h (MonoAssemblyName): changed major, minor, build, revision
11859         from signed to unsigned.
11860
11861 2003-01-20  sean kasun <skasun@azstarnet.com>
11862
11863         * reflection.c (load_cattr_value): Now this handles
11864         MONO_TYPE_SZARRAY.  Fixes bug #35629
11865
11866 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
11867
11868         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
11869         integer value
11870
11871 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11872
11873         * decimal.c: fixed bug #26056.
11874
11875 2003-01-17  Martin Baulig  <martin@ximian.com>
11876
11877         * gc.c: Raise an ExecutionEngineException instead of using g_error().
11878
11879 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11880
11881         * exception.[ch]:
11882         (mono_get_exception_type_initialization): new function.
11883
11884         * object.c: throw a TypeInitializationException when an exception is
11885         thrown invoking the class constructor.
11886
11887 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11888
11889         * reflection.c: fixed attribute reading.
11890
11891 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11892
11893         * icall.c:
11894         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
11895         provided, look for the type in the calling assembly and then in
11896         mscorlib; if the assembly name is provided, only try that one.
11897
11898 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
11899
11900         * object.c: register the vtable before there is a chance it's
11901         queried again recursively.
11902
11903 2003-01-13  Duncan Mak  <duncan@ximian.com>
11904
11905         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
11906         gc-internal.h. 
11907         
11908 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
11909
11910         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
11911
11912 2003-01-11  Martin Baulig  <martin@ximian.com>
11913
11914         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
11915         this to 20 for the release.
11916
11917 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
11918
11919         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
11920
11921         * loader.c (mono_method_get_marshal_info): bug fix
11922
11923         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
11924         structures with explicit layout
11925
11926 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
11927
11928         * profiler.c: made the output more readable (and sorted). 
11929         Added caller information for the allocation profiler.
11930
11931 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
11932
11933         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
11934
11935 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11936
11937         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
11938         to get value types.
11939         
11940 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
11941
11942         * object.c, profiler.h, profiler.c, profiler-private.h:
11943         Added object allocation profiler.
11944
11945 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
11946
11947         * reflection.h, reflection.c: handle global methods.
11948         Compress blob entries.
11949
11950 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
11951
11952         * marshal.c: fix compilation.
11953
11954 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
11955
11956         * loader.c (mono_method_get_marshal_info): impl.
11957
11958         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
11959
11960 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11961
11962         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
11963         for reference types.
11964
11965 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
11966
11967         * loader.c: fixed off by one error in loaded parameter names.
11968
11969 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
11970
11971         * marshal.c (mono_marshal_get_icall_wrapper): like
11972         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
11973         instead of a MonoMethod.
11974
11975 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11976
11977         * decimal.c: fixed bug #36537.
11978
11979 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
11980
11981         * marshal.c: throw a missing method exception if a
11982         P/Invoke method is not found.
11983
11984 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
11985
11986         * icall.c: allow a null this for constructors.
11987
11988 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
11989
11990         * icall.c: raise the proper exceptions if the arguments to the
11991         internal Invoke are incorrect.
11992
11993 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
11994
11995         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
11996
11997 2003-01-03  Martin Baulig  <martin@ximian.com>
11998
11999         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
12000
12001 2002-12-31  Martin Baulig  <martin@ximian.com>
12002
12003         * debug-mono-symfile.c: Completely rewrote the type section.
12004         Instead of using individual malloc()ed fields, we use one big
12005         continuous memory area and offsets into this area.
12006         See the comments in the source code for details.
12007
12008 2002-12-30  Martin Baulig  <martin@ximian.com>
12009
12010         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
12011
12012 2002-12-30  Martin Baulig  <martin@ximian.com>
12013
12014         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
12015         line number table in this data blob instead of using an external
12016         pointer.
12017
12018 2002-12-28  Martin Baulig  <martin@ximian.com>
12019
12020         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
12021
12022 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
12023
12024         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
12025         as a boxed return type.
12026
12027 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
12028
12029         * appdomain.c
12030         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
12031         g_build_filename to properly get separators on the filename created.
12032
12033         * object.h: Small change, introduce MonoMarshalByRefObject to
12034         track the layout of that structure in the C# universe as we make
12035         changes there.
12036
12037 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
12038
12039         * object.c: removed assert to allow static fields on interfaces.
12040         * loader.c: a TypeSpec may be used for any type, not just arrays.
12041
12042 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12043
12044         * class.c, class.h: added mono_class_array_element_size ().
12045         Ignore static methods in interfaces.
12046
12047 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12048
12049         * threads.c: fixed the build under cygwin.
12050
12051 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12052
12053         * reflection.c: handle nullref constants. Allocate keys for
12054         reflection handles with the GC.
12055
12056 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12057
12058         * threads.c, threads.h: added mono_thread_get_abort_signal()
12059         to get a suitable signal for thread abort.
12060
12061 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12062
12063         * metadata.c: fix handling of ExportedType table.
12064
12065 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12066
12067         * icall.c: added WriteWindowsDebugString internal call.
12068
12069 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12070
12071         * reflection.h: added fields to match C# implementation.
12072
12073 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12074
12075         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
12076
12077 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
12078
12079         * gc.h, gc-internal.h: Rename header for GC internal calls to
12080         gc-internal.h from gc.h as to not clash with Boehm GC having its
12081         header installed as <gc.h> in outside include paths.
12082         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
12083         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
12084
12085 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12086
12087         * icall.c: assign minor, build and revision in FillName.
12088
12089 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
12090
12091         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
12092         Added support for running code generated by Reflection.Emit.
12093
12094 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12095
12096         * appdomain.c: check for NULL argument in LoadFrom.
12097
12098 2002-12-10  Dick Porter  <dick@ximian.com>
12099
12100         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
12101
12102 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12103
12104         * appdomain.c: fix buglet when building exe file name.  Handle full
12105         assembly name (needed after latest changes to AssemblyName).
12106         * image.c:
12107         (mono_image_close): free some hashtables.
12108
12109 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
12110
12111         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
12112         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
12113         on some systems (redhat 7.3) 
12114
12115 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
12116
12117         * threads.c: delete the critical section of a sync block,
12118         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
12119
12120 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
12121
12122         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
12123
12124 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12125
12126         * appdomain.[ch]: handle the assembly preload event to try loading the
12127         assemblies using the paths we have in the current domain.
12128
12129         * assembly.[ch]: created an assembly preload hook that is called to try
12130         loading the assembly by other means that the ones provided here.
12131
12132         * domain.c: initialize the domain search path.
12133
12134         From now on, assemblies (TODO: except corlib and System) are loaded
12135         according to these rules when using mono_assembly_load ():
12136
12137                 1. It tries to load the assembly from the ApplicationBase
12138                 of the current domain appending .dll and .exe (TODO: have to
12139                 try loading from name/name.dll and name/name.exe).
12140
12141                 2. It tries the search path specified in PrivateBinPath for the
12142                 current domain (if any).
12143
12144                 3. Previous behavior.
12145
12146 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
12147
12148         * icall.c: implemented GetInterfaceMap() related icall.
12149         * domain.c, loader.h: load MethodInfo in mono_defaults.
12150
12151 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12152
12153         * gc.c: disable the finalizer thread for now, untill all the issues
12154         with it are resolved.
12155
12156 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12157
12158         * string-icalls.c: handle embedded nulls in string ctor when the
12159         length is specified.
12160
12161 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12162
12163         * class.c: look for explicit interface implementation in parent
12164         classes, too.
12165
12166 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
12167
12168         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
12169
12170 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12171
12172         * gc.c: protect handles with a critical section.
12173
12174 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12175
12176         * icall.c:
12177         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
12178         parameters. If no assembly specified, try getting the type from all
12179         the assemblies in the current domain, else, load the assembly and get
12180         the type from it.
12181
12182 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12183
12184         * marshal.c: applied patch from Aleksey Demakov that fixes
12185         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
12186
12187 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12188
12189         * icall.c: fixed get_location.
12190
12191 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
12192
12193         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
12194         declarations to make it work with older gcc. 
12195
12196         * loader.c (mono_get_method): set signature->pinvoke for native calls
12197
12198 2002-11-20  Dick Porter  <dick@ximian.com>
12199
12200         * threads.c (mono_thread_init): Set the main thread's handle
12201
12202 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12203
12204         * gc.c: allow compilation without GC support. Changed to match the
12205         mono coding style.
12206
12207 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12208
12209         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
12210
12211 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
12212
12213         * reflection.c: set a public key token on the core assemblies.
12214
12215 2002-11-18  Dick Porter  <dick@ximian.com>
12216
12217         * threads.c: Split out some thread initialisation so that other
12218         files can set the start callback function.
12219
12220         * gc.c: Run finalisers in a separate thread, to avoid stack
12221         overflow.  Fixes bug 31333.
12222
12223         * appdomain.c: Set up GC finalisation thread.
12224
12225         * reflection.c: 
12226         * object.c: 
12227         * domain.c: Use gc.h macros for GC_malloc
12228         
12229 2002-11-15  Dick Porter  <dick@ximian.com>
12230
12231         * threadpool.c: 
12232         * threads.c:
12233         * appdomain.c: Removed mono_runtime_init_with_attach(),
12234         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
12235         merging the extra parameter with the existing function.  Removed
12236         unneeded code in mono_thread_attach().
12237
12238 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
12239
12240         * image.c (mono_image_loaded_by_guid): a method to get loaded
12241         images by guid. 
12242         (load_metadata_ptrs): we store the guid as string.
12243
12244 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
12245
12246         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
12247
12248         * metadata.c (mono_guid_to_string): imported method form Zoltan
12249         Varga (slightly modified)
12250
12251         * assembly.c (mono_assembly_open): load precompiled code
12252
12253         * loader.h (MonoMethod): we store the method token for use in the
12254         aot compiler. 
12255
12256 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12257
12258         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
12259         the hook function called when an assembly is loaded.
12260         
12261         * domain.c: Modified file.
12262         (mono_domain_assembly_load): removed hash table insertion of assemblies.
12263
12264         Fixes bug #33196.
12265
12266 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
12267
12268         * reflection.c: Map PEFileKind to the value expected by the WinNT
12269         image loader. 
12270
12271 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12272
12273         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
12274         Read until the buffer is filled completely.
12275
12276 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12277
12278         * icall.c: implemented MonoType.InternalGetEvent ().
12279
12280 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12281
12282         * appdomain.c: implemented InitAppDomainSetup. Delayed
12283         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
12284         the entry_assembly.
12285
12286         * assembly.c: base_dir is now an absolute path ending with
12287         G_DIR_SEPARATOR.
12288
12289         * icall.c: modified get_location according to the above changes.
12290
12291         * object.c: init AppDomain.SetupInformation for the default domain after
12292         we have the entry assembly.
12293
12294         * domain.c: when unloading a domain, setup = NULL.
12295
12296 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
12297
12298         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
12299
12300 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
12301
12302         * object.h, object.c: introduced mono_object_get_virtual_method ()
12303         to lookup the method invoked on an object when a callvirt is done on
12304         a method.
12305         * icall.c: make MethodInfo::Invoke() always do a virtual call.
12306
12307 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12308
12309         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
12310         current domain when loaded an assembly and failed to load it.
12311
12312         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
12313
12314 2002-10-31  Dick Porter  <dick@ximian.com>
12315
12316         * icall.c: 
12317         * file-io.h: 
12318         * file-io.c: Return the error status in a parameter, as the
12319         GetLastError() value has long since been blown away if we try and
12320         look it up in a subsequent internal call invocation.  Delete the
12321         GetLastError() internal call, because it's useless.
12322
12323 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
12324
12325         * class.[ch]: added cast_class to fix bug 29517
12326
12327 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
12328
12329         * marshal.c: create valid IL code in the filter clause:
12330         the new JIT is less forgiving:-)
12331
12332 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12333
12334         * icall.c: removed get_property internal call.
12335
12336 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
12337
12338         * appdomain.h domain.c: Added an ID to appdomains.
12339         
12340         * threads.c threads.h icall.c: Implement icall
12341         Thread:GetDomainID(), and remove unused icall 
12342         CurrentThreadDomain_internal.
12343
12344 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12345
12346         * icall.c: Don't recurse through the base types in GetConstructor.
12347         Fixes bug #32063. 
12348
12349 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
12350
12351         * mempool.h, mempool.c: added mono_mempool_empty() and
12352         mono_mempool_stats().
12353
12354 2002-10-23  Dick Porter  <dick@ximian.com>
12355
12356         * file-io.c: 
12357         * file-io.h: 
12358         * icall.c: Added MonoIO.GetFileType internal call
12359
12360 2002-10-17  Dick Porter  <dick@ximian.com>
12361
12362         * appdomain.c (mono_runtime_cleanup): Don't signal the async
12363         delegate semaphore before waiting for all threads to finish,
12364         because new threads can also call async delegates.  Fixes bug
12365         32004.
12366
12367         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
12368         of 3 seconds, in case another async job is queued.  (This part is
12369         needed because the bug fix reintroduced the 3s exit lag.)  This
12370         makes the mono_runtime_shutdown flag superfluous.
12371
12372 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
12373
12374         * reflection.c: include ehader size in method section headers.
12375         Really check for suplicated modules entries.
12376
12377 2002-10-17  Martin Baulig  <martin@gnome.org>
12378
12379         * debug-mono-symfile.c: Added back support for locals.
12380
12381 2002-10-14  Martin Baulig  <martin@gnome.org>
12382
12383         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
12384         MONO_TYPE_VOID.
12385
12386 2002-10-14  Martin Baulig  <martin@gnome.org>
12387
12388         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
12389         mono_class_get() instead of looking in the class cache. 
12390
12391 2002-10-13  Martin Baulig  <martin@gnome.org>
12392
12393         * debug-mono-symfile.c: Set version number to 28, include the
12394         signature in method names.
12395
12396 2002-10-13  Martin Baulig  <martin@gnome.org>
12397
12398         * debug-mono-symfile.h: Set version number to 27.
12399
12400 2002-10-11  Martin Baulig  <martin@gnome.org>
12401
12402         * gc.c: Don't register/unregister NULL pointers as disappearing links.
12403
12404 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12405
12406         * metadata.c, metadata.h: added helper function to allocate signatures.
12407
12408 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12409
12410         * icall.c: added internal call to get the location of machine.config.
12411
12412 2002-10-08  Martin Baulig  <martin@gnome.org>
12413
12414         * debug-mono-symfile.c: Ignore classes with a pending init for the
12415         moment.
12416
12417 2002-10-03  Dick Porter  <dick@ximian.com>
12418
12419         * threads.c: Freebsd pthread_t is a pointer
12420
12421 2002-10-03  Dick Porter  <dick@ximian.com>
12422
12423         * socket-io.c: Implemented GetHostName_internal
12424
12425 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12426
12427         * mono-config.c:
12428         (mono_config_parse_file): don't leak the text.
12429
12430 2002-10-02  Martin Baulig  <martin@gnome.org>
12431
12432         * debug-mono-symfile.c: Added support for methods.
12433
12434 2002-10-01  Martin Baulig  <martin@gnome.org>
12435
12436         * debug-mono-symfile.c: Don't emit methods and line numbers for
12437         the dynamic symbol file, just write the type table.  We can easily
12438         have an external helper program which creates a symbol file for an
12439         IL file.        
12440
12441 2002-10-01  Dick Porter  <dick@ximian.com>
12442
12443         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
12444         Only add the handle to the cleanup array when we're about to
12445         launch the thread.  Bug 31425 deadlocked when the test was run on
12446         mono under w32.
12447
12448 2002-10-01  Martin Baulig  <martin@gnome.org>
12449
12450         * debug-mono-symfile.c: Added support for properties.
12451
12452 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12453
12454         * reflection.c: unaligned store fix from Mark Crichton
12455         <crichton@gimp.org>.
12456
12457 2002-09-27  Martin Baulig  <martin@gnome.org>
12458
12459         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
12460         New interncall.
12461
12462 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
12463
12464         * assembly.h, assembly.c: use a sane API to hook into the assembly
12465         loading process instead of a useless special-purpouse hack
12466         (ngen needs a hook, too, for example).
12467
12468 2002-09-27  Dick Porter  <dick@ximian.com>
12469
12470         * threads.c (mono_thread_init): Call GetCurrentProcess() so
12471         io-layer can set up some process handle info.  Not needed on w32,
12472         but doesn't hurt either.
12473
12474         * process.c: Pass the program name in the second parameter to
12475         CreateProcess, so the path is searched.  Include the working
12476         directory. Implemented process name, process enumeration, and some
12477         process detail internal calls.
12478         
12479         * icall.c: Added internal calls for process lookup, and some
12480         process details
12481
12482 2002-09-26  Martin Baulig  <martin@gnome.org>
12483
12484         * assembly.c (mono_install_open_assembly_hook): New global
12485         function to install a function to be invoked each time a new
12486         assembly is loaded.
12487         (mono_assembly_open): Run this callback function if set.
12488
12489         * debug-mono-symfile.c: Put back line numbers for the dynamic
12490         symbol file and also record the .il file as source file.  This
12491         allows us to install the temporary symbol file as `file.dbg' just
12492         like a compiler-generated one.
12493
12494 2002-09-26  Nick Zigarovich <nick@chemlab.org>
12495
12496         * Corrected typo in gc.c (BOHEM vs BOEHM).
12497
12498 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12499
12500         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
12501         GetProperties. Also avoid calling g_slist_length in GetProperties and
12502         GetMethods.
12503
12504 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
12505
12506         * reflection.c: avoid unaligned stores (bug spotted by
12507         Mark Crichton  <crichton@gimp.org>).
12508
12509 2002-09-25  Martin Baulig  <martin@gnome.org>
12510
12511         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
12512         instead of guint64 for addresses and added prologue/epilogue info.
12513
12514 2002-09-25  Martin Baulig  <martin@gnome.org>
12515
12516         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
12517         store line number info.  For the dynamic symbol file, we only need
12518         to provide the JIT generated dynamic line number info for the dynamic
12519         symbol file.
12520
12521 2002-09-25  Martin Baulig  <martin@gnome.org>
12522
12523         * debug-mono-symfile.h: Incremented version number.
12524
12525 2002-09-24  Martin Baulig  <martin@gnome.org>
12526
12527         * class.c (mono_debugger_class_init_func): New global function
12528         pointer variable.
12529         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
12530         call it.
12531
12532         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
12533         function.  This is called via the mono_debugger_class_init_func
12534         hook to add all types to the dynamic type table.
12535         (ves_icall_MonoDebugger_GetType): New interncall to get a class
12536         from its metadata token.
12537
12538         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
12539         New interncall for the debugger.
12540
12541 2002-09-24  Nick Drochak <ndrochak@gol.com>
12542
12543         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
12544         before using it in case it is null.
12545         
12546 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12547
12548         * metadata.c: allow custom modifiers in local var signatures
12549         (bug spotted by Zoltan Varga).
12550
12551 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
12552
12553         * class.c: deal with the <Module> class that may have a NULL vtable.
12554         Eliminate warnings.
12555
12556 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12557
12558         * image.c, image.h: more strong name helpers.
12559         * monosn.c: more work: convert pem keys to cryptoapi format.
12560
12561 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12562
12563         * string-icalls.c: speedup IndexOf.
12564
12565 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12566
12567         * icall.c: updates from Zoltan.2.Varga@nokia.com.
12568
12569 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
12570
12571         * icall.c: cleanup: use mono_object_domain ().
12572
12573 2002-09-23  Martin Baulig  <martin@gnome.org>
12574
12575         * debug-mono-symfile.c: Improved type support.
12576
12577 2002-09-22  Martin Baulig  <martin@gnome.org>
12578
12579         * debug-mono-symfile.c: Added support for reference types and strings.
12580
12581 2002-09-22  Martin Baulig  <martin@gnome.org>
12582
12583         * debug-mono-symfile.c: Started to work on the type table.
12584
12585 2002-09-21  Martin Baulig  <martin@gnome.org>
12586
12587         * debug-mono-symfile.c: Largely reworked the symbol table format.
12588         The symbol table is now incrementally updated each time a new
12589         method is added.  We're now also using our own magic and version
12590         so that you don't need to recompile all your classes if the
12591         dynamic table changes.
12592         (mono_debug_update_mono_symbol_file): Removed.
12593         (mono_debug_symfile_add_method): New function to add a method.
12594
12595 2002-09-21  Martin Baulig  <martin@gnome.org>
12596
12597         * icall.c
12598         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
12599         New interncall.
12600
12601         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
12602         New interncall to get a method from its metadata token.
12603
12604 2002-09-21  Martin Baulig  <martin@gnome.org>
12605
12606         * debug-mono-symfile.c: Create type table.
12607
12608 2002-09-20  Martin Baulig  <martin@gnome.org>
12609
12610         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
12611
12612 2002-09-20  Martin Baulig  <martin@gnome.org>
12613
12614         * debug-mono-symfile.c: Provide information about params and locals.
12615
12616 2002-09-20  Martin Baulig  <martin@gnome.org>
12617
12618         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
12619         New interncall.
12620
12621         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
12622         interncall to get a method from its metadata token.
12623
12624 2002-09-20  Martin Baulig  <martin@gnome.org>
12625
12626         * debug-mono-symfile.c: Added a few checks for method->header
12627         being non-NULL.  This should never happen, but for the moment
12628         let's use a g_warning() rather than a g_assert().
12629
12630 2002-09-19  Mark Crichton  <crichton@gimp.org>
12631
12632         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
12633         even if support for it isn't present.  Added an #ifdef to fix this.
12634
12635         * socket-io.c: Added checks back for Solaris support.
12636
12637 2002-09-19  Martin Baulig  <martin@gnome.org>
12638
12639         * debug-mono-symfile.c (read_string, write_string): Reflect latest
12640         changes in the symbol file format.
12641
12642 2002-09-18  Martin Baulig  <martin@gnome.org>
12643
12644         * debug-mono-symfile.c: Set version number to 21.
12645
12646 2002-09-18  Dick Porter  <dick@ximian.com>
12647
12648         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
12649         on netbsd.  Fixes bug 30051.
12650
12651 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12652
12653         * reflection.c:
12654         (set_version_from_string): little fix.
12655
12656 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12657
12658         * monosn.c, Makefile.am: added strong name utility.
12659         * reflection.h, reflection.c: implemented delayed signing,
12660         locale, version and hash id assembly attributes.
12661
12662 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12663
12664         * loader.c, metadata.c: load param attributes in signatures.
12665
12666 2002-09-16  Martin Baulig  <martin@gnome.org>
12667
12668         * debug-mono-symfile.c: Added string table with all method names.
12669
12670 2002-09-14  Martin Baulig  <martin@gnome.org>
12671
12672         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
12673         fast method lookup.
12674
12675 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12676
12677         * reflection.c: record the public key token of referenced assemblies.
12678
12679 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12680
12681         * image.c, image.h: added functions to get the strong name and the
12682         public key of an assembly.
12683         * pedump.c: use them.
12684
12685 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
12686
12687         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
12688
12689 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
12690
12691         * marshal.c (mono_marshal_get_managed_wrapper): Added
12692         MONO_TYPE_BOOLEAN 
12693
12694 2002-09-11  Martin Baulig  <martin@gnome.org>
12695
12696         * gc.c: Call GC_unregister_disappearing_link() on all links when
12697         finalizing them, this is necessary to aviod a crash in boehm's
12698         finalize handler.
12699
12700 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12701
12702         * gc.c: handle GetTarget for finalized objects spotted and fixed by
12703         nick@chemlab.org.
12704
12705 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
12706
12707         * icall.c: implemented MonoType::Module.
12708         * reflection.c, reflection.h: mono_module_get_object () from
12709         Tomi Pakarinen <tomi.pakarinen@welho.com>.
12710
12711 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
12712
12713         * icall.c: ignore overridden methods in GetMethods ().
12714         Fix for FieldInfo::SetValue().
12715         * object.c: handle float/double in runtime invoke.
12716
12717 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12718
12719         * object.c: allow a constructor to be called again on an object.
12720
12721 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12722
12723         * class.h, class.c: move field layout code to it's own function and
12724         export it. Get an interface id earlier. Move fields in MonoClass
12725         so they are more cache friendly and align the bitfields.
12726         * loader.c: temporary handle get_param_names() for a runtime method.
12727         * reflection.c, reflection.h: more code to handle runtime creation of
12728         types.
12729
12730 2002-09-09  Martin Baulig  <martin@gnome.org>
12731
12732         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
12733         signature with the pinvoke field being set for the actual call.
12734
12735 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12736
12737         * icall.c: removed some unused icalls. Start of map of glib charsets
12738         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
12739
12740 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
12741
12742         * debug-helpers.c: break infinite loop (found and fixed by
12743         Holger Arnold <harnold@gmx.de>).
12744
12745 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12746
12747         * icall.c: target may be null in create_delegate.
12748
12749 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12750
12751         * marshal.c: handle a boolean return type.
12752
12753 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12754
12755         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
12756
12757 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
12758
12759         * gc.c: fix weakreferences.
12760
12761 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
12762
12763         * icall.c: added icall to get default codepage.
12764
12765 2002-09-03  Dick Porter  <dick@ximian.com>
12766
12767         * threads.h: 
12768         * threads.c: Use MonoThread instead of MonoObject where
12769         apropriate.
12770
12771         Store running thread objects in a hash table, so that we have all
12772         the info to hand when waiting for them to finish
12773         (means we don't need OpenThread() any more, so mingw builds should
12774         be fully functional again.)
12775
12776         * verify.c:
12777         * object.h: Added thread ID to MonoThread
12778
12779 2002-09-03  Martin Baulig  <martin@gnome.org>
12780
12781         * icall.c (System.Reflection.Assembly::get_location): New interncall.
12782
12783 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12784
12785         * icall.c: fixed leak in get_temp_path. Thanks lupus.
12786
12787 2002-09-03  Martin Baulig  <martin@gnome.org>
12788
12789         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
12790         argument to store the end address of the disassembled instruction.
12791
12792         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
12793         here from debug-symfile.h.
12794         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
12795         JIT into this struct.
12796         (MonoSymbolFile): Added `char *image_file' field.
12797         (MonoDebugGetMethodFunc): Removed.
12798         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
12799         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
12800         (mono_debug_find_method): New method.
12801
12802         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
12803         create a full symbol file.
12804         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
12805         and static symbol files.
12806         (mono_debug_find_method): The symbol file keeps an internal method hash,
12807         call this to get a MonoDebugMethodInfo from a MonoMethod.
12808
12809         * debug-symfile.[ch]: Removed.
12810
12811 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
12812
12813         * image.c (do_mono_image_open): Remove linker version check.
12814
12815 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
12816
12817         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
12818         wrappers for instance methods.
12819         
12820 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12821
12822         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
12823
12824 2002-08-28  Dick Porter  <dick@ximian.com>
12825
12826         * Makefile.am: Export HOST_CC for w32 builds
12827
12828 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12829
12830         * file-io.c process.c: MonoString are null terminated, no
12831         need for mono_string_to_utf16() anymore.
12832
12833 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12834
12835         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
12836
12837 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
12838
12839         * icall.c, reflection.h: speedup System.MonoType.
12840
12841 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12842
12843         * reflection.c: allow null as the value of a string argument in
12844         custom attributes constructors.
12845
12846 2002-08-27  Martin Baulig  <martin@gnome.org>
12847
12848         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
12849         `trampoline_address' field.
12850
12851 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
12852
12853         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
12854         check (fixes bug #29486) 
12855
12856 2002-08-27  Martin Baulig  <martin@gnome.org>
12857
12858         * debug-mono-symfile.c: Changed the file format in a way that allows us
12859         open it read-only and to use a specially malloced area for all the
12860         dynamic data.  We can now also generate a symbol file on-the-fly if we're
12861         debugging IL code and there is no MCS generated symbol file for it.
12862
12863 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12864
12865         * object.c: added a define for a good string and array
12866         creation speedup (not enabled by default because we need to deal with
12867         the synch stuff).
12868
12869 2002-08-26  Martin Baulig  <martin@gnome.org>
12870
12871         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
12872         function to create a dynamic symbol file.  This is used by the
12873         debugger to create a symbol file for IL code on-the-fly.
12874
12875 2002-08-26  Martin Baulig  <martin@gnome.org>
12876
12877         * loader.c (mono_lookup_pinvoke_call): Include the error message
12878         from g_module_error() in the error message.
12879
12880 2002-08-24  Martin Baulig  <martin@gnome.org>
12881
12882         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
12883         function to update the symbol file.  The symbol file is mmap()ed
12884         writable, but private.  This allows us to install the symbol file
12885         together with the assembly.
12886
12887 2002-08-24  Martin Baulig  <martin@gnome.org>
12888
12889         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
12890         but they can read the new symbol file format which mcs is now creating.
12891
12892         * debug-symfile.c (mono_debug_find_source_location): Moved to
12893         debug-mono-symfile.c; this is now operating on the new symbol file.
12894
12895 2002-08-23  Martin Baulig  <martin@gnome.org>
12896
12897         * debug-helpers.c (mono_method_desc_from_method): New function to get
12898         a MonoMethodDesc from a MonoMethod.
12899
12900 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
12901
12902         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
12903         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
12904
12905 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
12906
12907         * string-icalls.[ch]: make helper methods static.
12908
12909 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12910
12911         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
12912         types to it and to SetValueInternal.
12913
12914         * object.c: Moved handle_enum label to its proper place. This was the
12915         f... bug! ;-)
12916
12917         This time i compiled mcs and gtk-sharp and they both work.
12918
12919 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12920
12921         * icall.c: reverted partially my previous patch until 
12922         object.c:set_value handles enums correcly.
12923
12924 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12925
12926         * icall.c:
12927         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
12928         (ves_icall_System_Environment_get_MachineName): removed warning when
12929         compiling under cygwin.
12930
12931 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12932
12933         * object.c: fixed field_get_value() for reference types.
12934
12935 2002-08-22  Dick Porter  <dick@ximian.com>
12936
12937         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
12938         Don't free a buffer while it's still needed.  Patch from Jonathan
12939         Liger <Jonathan.liger@wanadoo.fr>
12940
12941 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
12942
12943         * icall.c (ves_icall_System_Environment_get_Platform): Add new
12944         internal call.
12945
12946 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
12947
12948         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
12949         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
12950
12951         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
12952         we call unmanaged code which throws exceptions.
12953
12954 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12955
12956         * appdomain.h: added per-domain entry_assembly.
12957         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
12958         arguments.
12959         * icall.c: Assembly::GetEntryAssembly icall.
12960         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
12961         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
12962
12963 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
12964
12965         * appdomain.h, gc.c: added mono_domain_finalize ().
12966
12967 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12968
12969         * object.c:
12970         (mono_print_unhandled_exception): changed g_warning by g_printerr
12971         because g_log has a 1024 characters limit (yeah, i got a big stack
12972         trace). Don't print exception name, that should be in ToString 
12973         returned string.
12974
12975 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12976
12977         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
12978         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
12979
12980 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12981
12982         * object.c:
12983         (mono_print_unhandled_exception): after previous commit, i realized
12984         that MS calls ToString on the exception. I changed this function to
12985         do that. This way we get stack_trace for free.
12986
12987 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12988
12989         * object.c:
12990         (mono_print_unhandled_exception): invoke Message property instead of
12991         getting 'message' field from Exception. Don't allocate memory for
12992         'trace' and 'message' if not needed.
12993
12994 2002-08-18  Dick Porter  <dick@ximian.com>
12995
12996         * unicode.c: Fix asserts to match Encoder.cs checks
12997
12998 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12999
13000         * marshal.c: fix unaligned store issue and a few wrong
13001         opcode argument types.
13002
13003 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13004
13005         * icall.c: added GetUninitializedObjectInternal internal call.
13006
13007 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
13008
13009         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
13010         to the right domain.
13011
13012 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
13013
13014         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
13015
13016         * class.c (class_compute_field_layout): set blittable to false for Strings
13017
13018         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
13019
13020 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13021
13022         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
13023         first chunk of code to create types at runtime. Code to
13024         handle ReflectedType/DeclaringType. Make reflection handles
13025         domain specific.
13026
13027 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
13028
13029         * class.c: set correct name in arrays.
13030
13031 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
13032
13033         * appdomain.c (mono_domain_transfer_object): make it work with
13034         valuetypes. bug fixes.
13035
13036 2002-08-12  Dick Porter  <dick@ximian.com>
13037
13038         * object.h: Rename some parameters to avoid c++ keywords (Patch
13039         from Joseph Wenninger <kde@jowenn.at>)
13040
13041 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
13042
13043         * icall.c: added icall to implement Assembly.GetFile*.
13044
13045 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
13046
13047         * reflection.h, reflection.c: code to embed managed resources.
13048
13049 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
13050
13051         * class.c: move all the type size stuff into
13052         class_compute_field_layout().
13053
13054 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
13055
13056         * class.c: ensure enums have always the correct instance size.
13057         * unicode.c: remove wrong assert.
13058
13059 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13060
13061         * assembly.c: fix mem corruption issue.
13062         * image.h, image.c: added mono_image_get_resource () to access
13063         managed resources.
13064         * icall.c: implemented Assembly.EntryPoint property and some
13065         Managed Resources related internalcalls.
13066
13067
13068 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
13069
13070         * image.c, image.h: impemented mono_image_get_entry_point ().
13071         * appdomain.c: use mono_image_get_entry_point.
13072
13073 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
13074
13075         * reflection.c: support the object type argument when loading
13076         custom attributes.
13077
13078 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
13079
13080         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
13081         String as return type.
13082
13083 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
13084
13085         * reflection.c: fix encoding of named args for custom attrs to match
13086         the ms implementation. Read them back when instantiating custom
13087         attributes.
13088
13089 2002-08-02  Radek Doulik  <rodo@ximian.com>
13090
13091         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
13092         by Dietmar as quick fix
13093         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
13094         16 as stack size, used on more places as quick fix before Dietmar
13095         will fix it properly
13096
13097 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
13098
13099         * object.h, object.c: added accessors for fields and properties.
13100
13101 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
13102
13103         * class.c, class.h: made mono_class_get_field_from_name ()
13104         loop on parent types.
13105         Added mono_class_get_property_from_name ().
13106
13107 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13108
13109         * class.c, class.h: move the code to setup the type vtable in its own
13110         function so that it can be reused also for types created at runtime.
13111         Eliminate the "class" identifier from the header file.
13112         * reflection.c: setup the vtable for enums so that we can create
13113         objects for use in SetConstant ().
13114
13115 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
13116
13117         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
13118         instead of the delegate itself as this pointer (bug #28383)
13119
13120 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
13121
13122         * marshal.c (mono_marshal_get_managed_wrapper): added return type
13123         conversions.
13124
13125 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13126
13127         * loader.c: don't set the pinvoke bit on icalls.
13128
13129 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
13130
13131         * debug-helpers.c (mono_method_full_name): only print a number to
13132         indicate wrapper type (so that the output is more readable in traces).
13133
13134 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
13135
13136         * class.c (mono_class_init): include method override patch from Paolo
13137
13138 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
13139
13140         * icall.c: fixed GetTypeCode().
13141
13142 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
13143
13144         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
13145         use real delegate invoke function to make it work with multicast
13146         delegates (fix bug# 28291).
13147
13148 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13149
13150         * object.c: load constant strings.
13151
13152 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13153
13154         * reflection.c: no magic numbers.
13155         * tabledefs.h: security action enum.
13156
13157 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13158
13159         * assembly.c: fix possible memory corruption.
13160
13161 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
13162
13163         * reflection.h, reflection.c: added support for linking resources.
13164         * verify.c: check we have an updated corlib.
13165
13166 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
13167
13168         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
13169         string arrays.
13170         (mono_marshal_string_array): null terminate unmanaged string arrays.
13171         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
13172
13173 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13174
13175         * icall.c: Type.GetType () can now return also types from the
13176         calling assembly.
13177
13178 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
13179
13180         * loader.h, loader.c: stack walking support.
13181         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
13182         GetCallingAssembly.
13183
13184 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
13185
13186         * marshal.c: added optimisations for blittable types 
13187
13188         * class.c (mono_array_class_get): do not set blittable attribute on arrays
13189         (mono_class_setup_mono_type): set blittable attribute for single
13190         and double.
13191
13192         * marshal.c (mono_string_utf8_to_builder): impl.
13193         (mono_string_builder_to_utf8): impl.
13194         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
13195
13196 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
13197
13198         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
13199         (mono_marshal_get_managed_wrapper): impl. byref types
13200
13201 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13202
13203         * icall.c:
13204         (search_method): don't display debug message. 
13205
13206 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
13207
13208         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
13209
13210 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
13211
13212         * appdomain.c: set the missing filename when throwing exception.
13213
13214 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
13215
13216         * metadata.c (mono_type_size): code cleanup
13217         (mono_type_stack_size): removed some test code
13218
13219 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
13220
13221         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
13222         mono_get_exception_file_not_found now.
13223
13224         * exception.c (mono_exception_from_name_two_strings): New version
13225         that will call a constructor with two string arguments. 
13226         (mono_get_exception_file_not_found): New helper routine, used to
13227         report file-not-found errors.
13228
13229 2002-07-20  Dick Porter  <dick@ximian.com>
13230
13231         * process.h:
13232         * process.c: Pass file handles to CreateProcess
13233         
13234         * icall.c:
13235         * file-io.h:
13236         * file-io.c: Implemented CreatePipe
13237
13238 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
13239
13240         * metadata.c (mono_get_param_info): set alignment for value types
13241
13242 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13243
13244         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
13245         Constify mono_domain_assembly_open().
13246         * loader.c: handle null namespace in icalls.
13247
13248 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
13249
13250         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
13251         (emit_str_to_ptr_conv): marshal object as structs
13252
13253         * metadata.c (mono_type_to_unmanaged): marshal object as structs
13254
13255         * marshal.c (mono_marshal_get_runtime_invoke): support value types
13256
13257 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
13258
13259         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
13260         (mono_marshal_get_native_wrapper): we an now return value types
13261
13262 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13263
13264         * verify.c: more checks implemented.
13265
13266 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
13267
13268         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
13269         (fix bug #27695)
13270         (mono_marshal_get_native_wrapper): allow byref arguments
13271         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
13272         impl. PtrToStringXXX methods
13273         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
13274         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
13275         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
13276         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
13277         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
13278
13279 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13280
13281         * reflection.c: fix buglet in parsing an assembly name.
13282
13283 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
13284
13285         * marshal.c (emit_ptr_to_str_conv): first impl.
13286
13287 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13288
13289         * object.c, class.h: cache the vtable in the class as suggested by
13290         vargaz@freemail.hu (Zoltan Varga).
13291
13292 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13293
13294         * class.h, loader.c: added mono_field_from_token().
13295         * verify.c: first cut of type checking code.
13296
13297 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
13298
13299         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
13300
13301 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
13302
13303         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
13304         (fix bug #27782)
13305         (mono_marshal_get_remoting_invoke): impl.
13306         (mono_delegate_begin_invoke): impl.
13307         (mono_mb_emit_save_args): impl.
13308         (mono_delegate_end_invoke): impl.
13309         (mono_marshal_get_delegate_begin_invoke):
13310         (mono_marshal_get_delegate_end_invoke):
13311         (mono_marshal_get_delegate_invoke): generate a special name for
13312         those methods (including the signature) and associate them whith
13313         the delegate class. 
13314
13315 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
13316
13317         * reflection.[ch]: 
13318         (mono_reflection_type_from_name): now it has a MonoImage parameter
13319         which is used as the default image to search the type in. If the image
13320         is NULL or getting the type from it fails, it defaults to corlib.
13321
13322         * icall.c: changed 1 call to mono_reflection_type_from_name to match
13323         new parameter.
13324
13325 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13326
13327         * reflection.c: update the parameter table index.
13328
13329 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13330
13331         * domain.c: don't include the mark byte in the string hash.
13332
13333 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13334
13335         * icall.cs: icall for Type.GetTypeCode ().
13336         * verify: a couple of fixes and disabled local initialization checks.
13337
13338 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
13339
13340         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
13341
13342         * debug-helpers.c (mono_method_full_name): print the type of the
13343         runtime wrapper
13344
13345         * metadata.c (mono_signature_hash): a hash function for signatures
13346         (mono_signature_hash): better hash algorithm
13347
13348         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
13349
13350         * debug-helpers.c (mono_method_full_name): this can now generate
13351         method names with signatures
13352
13353         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
13354         method dont have this pointers.
13355
13356 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13357
13358         * reflection.c: fixup typebuilder tokens.
13359         * image.c: fix buglet.
13360         * marshal.h: remove whitespace.
13361         * metadata.h, metadata.c: reinstate code that was removed.
13362         * verify.c: handle catch directives and fix another couple of bugs.
13363
13364 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
13365
13366         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
13367         (mono_marshal_get_native_wrapper): make it comp. with the old code
13368         (mono_marshal_get_native_wrapper): support boolean
13369         (mono_marshal_get_managed_wrapper): support more types
13370
13371 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
13372
13373         * class.c (class_compute_field_layout): compute class->blittable attribute.
13374
13375 2002-07-09  Dick Porter  <dick@ximian.com>
13376
13377         * threads.c: Make the thread cleaning up cope with threads that
13378         call ExitThread()
13379
13380 2002-07-08  Radek Doulik  <rodo@ximian.com>
13381
13382         * reflection.c (method_encode_code): use non-translated values to
13383         compute finally_start, this fixes exception handling on ppc, yay!
13384
13385         * decimal.h (struct signscale): fix endianess
13386
13387 2002-07-07  Radek Doulik  <rodo@ximian.com>
13388
13389         * reflection.c: swap box_val and not val
13390
13391 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
13392
13393         * reflection.c, reflection.h: handle full assembly info in type name.
13394         Handle Type arguments when loading custom attributes.
13395         * icall.c: updated to use new mono_reflection_type_from_name () method.
13396
13397 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13398
13399         * loader.c:
13400         (method_from_memberref): also print assembly name when method not found.
13401
13402 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13403
13404         * icall.c:
13405         (ves_icall_TypeGetProperties): fixed bug #27473. 
13406
13407 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13408
13409         * reflection.c: display image name and token when cannot find the
13410         .ctor for an attribute.
13411
13412 2002-07-05  Martin Baulig  <martin@gnome.org>
13413
13414         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
13415
13416 2002-07-04  Dick Porter  <dick@ximian.com>
13417
13418         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
13419         compile on mingw.  This will cause mingw builds to not wait for
13420         subthreads to terminate after the main thread does.  I've lodged a
13421         bug with the mingw developers for them to wrap OpenThread().
13422
13423 2002-07-03  Dick Porter  <dick@ximian.com>
13424
13425         * threads.c: Store thread IDs instead of handles, because
13426         GetCurrentThread() returns a pseudohandle and therefore stores
13427         useless values.  mono_thread_cleanup() continues checking the
13428         array of threads until it is empty, to cope with subthreads
13429         spawning new threads after the main thread has finished.
13430
13431         * profiler.h:
13432         * profiler.c:
13433         * profiler-private.h: Pass the thread ID to thread profiler
13434         functions, instead of a handle
13435
13436 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13437
13438         * verify.c: fixes to make it more usable.
13439         * pedump.c: added --verify code to verify IL code in an assembly.
13440
13441 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13442
13443         * reflection.c: turn errors into warnings to allow compiling corlib.
13444
13445 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
13446
13447         * reflection.c: add special cases to compile corlib.
13448
13449 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13450
13451         * reflection.c: handle properties with only a set method.
13452
13453 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13454
13455         * opcodes.h: add enum with opcodes in opval order.
13456
13457 2002-07-01  Dick Porter  <dick@ximian.com>
13458         
13459         * object.h:
13460         * object.c (mono_runtime_run_main): Removed unneeded argument
13461
13462 2002-06-28  Martin Baulig  <martin@gnome.org>
13463
13464         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
13465
13466 2002-06-27  Dick Porter  <dick@ximian.com>
13467
13468         * threads.c: Store the handle in both the parent thread and in the
13469         subthread, to minimise the time between starting a new thread and
13470         storing its ID.
13471
13472 2002-06-26  Dick Porter  <dick@ximian.com>
13473
13474         * appdomain.c (mono_runtime_cleanup): Close the socket library
13475         after all the threads have finished, not before
13476
13477 2002-06-26  Martin Baulig  <martin@gnome.org>
13478
13479         * debug-symfile.c (mono_debug_find_source_location): Added
13480         `guint32 *line_number' argument.  If it's not NULL, store the line number
13481         there and return the file name without the line number.
13482
13483 2002-06-25  Dick Porter  <dick@ximian.com>
13484
13485         * icall.c:
13486         * process.h:
13487         * process.c: Process forking and other support functions
13488
13489 2002-06-25  Dick Porter  <dick@ximian.com>
13490
13491         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
13492         things dont happen when the image is closed.
13493         (mono_image_lookup_resource): Walk the resource section looking
13494         for a particular entry
13495
13496         * cil-coff.h: PE resource section decoding
13497
13498 2002-06-25  Dick Porter  <dick@ximian.com>
13499         
13500         * assembly.h:
13501         * assembly.c: 
13502         (mono_assembly_foreach): Accessor functions to walk the list of
13503         loaded assemblies
13504         (mono_assembly_set_main):
13505         (mono_assembly_get_main): Process methods need to know which
13506         assembly is the "main" one
13507
13508         * object.c (mono_runtime_run_main): Record the main assembly
13509
13510         * debug-helpers.c: Fix typo
13511
13512 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
13513
13514         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
13515         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
13516
13517 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13518
13519         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
13520
13521 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
13522
13523         * image.c (do_mono_image_open): Initialize reference count,
13524         otherwise we leak the MonoImage.
13525
13526 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
13527
13528         * reflection.c: small tweak to handle self-hosting.
13529
13530 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
13531
13532         * reflection.c: fix type name parse code.
13533
13534 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13535
13536         * reflection.c: break out of the loop.
13537         * image.c: special case corlib.
13538
13539 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13540
13541         * reflection.c: add all the custom attrs at the end to ensure the
13542         ctors have been properly initialized when the attributes are defined
13543         in the current assembly.
13544
13545 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13546
13547         * reflection.c: handle correctly multiple-nested types.
13548
13549 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
13550
13551         * row-indexes.h: fix typos.
13552         * reflection.c: adjust for typos and fix method_def_or_ref
13553         encoding in MethodImpl table.
13554
13555 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13556
13557         * reflection.c: fix entry point patching (thanks Serge!).
13558
13559 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
13560
13561         * verify.c: add check for System.Exception
13562
13563 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
13564
13565         * image.c, class.c: minifix for code just c&p'ed.
13566         * reflection.c: warning fix.
13567         * object.h, loader.h, domain.c: load also StringBuilder.
13568
13569 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
13570
13571         * marshal.h, marshal.c: some support code to handle complex marshaling.
13572
13573 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13574
13575         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
13576         Better signatures with vtable error dump.
13577
13578 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
13579
13580         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
13581
13582 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
13583
13584         * icall.c (ves_icall_Type_GetField): impl.
13585
13586 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13587
13588         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
13589         to retrieve a marshal description blob for a field or param.
13590
13591 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
13592
13593         * reflection.h, reflection.c: change order of nested type emission
13594         to avoid table corruption. The NestedTypes table is sorted.
13595         * icall.c: change order of GetConstructor results to workaround mcs bug.
13596
13597 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13598
13599         * reflection.h, reflection.c: handle field and param marshal
13600         information.
13601
13602 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13603
13604         * icall.c, marshal.c marshal.h: more Marshal class implementation.
13605
13606 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13607
13608         * reflection.c: fix call convention.
13609
13610 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13611
13612         * reflection.h, reflection.c: mono_image_get_memberref_token()
13613         takes a type instead of a class, now. Added
13614         mono_image_get_array_token() to create tokens for the special
13615         multi-dim array methods.
13616
13617 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
13618
13619         * assembly.c: handle modules (no assembly table). Split
13620         loading references in its own function.
13621         * class.c: handle moduleref resolution scope.
13622         * image.c, image.h: cache module name in image.
13623
13624 2002-06-07  Martin Baulig  <martin@gnome.org>
13625
13626         * reflection.c (mono_image_get_type_info): Only add a class layout entry
13627         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
13628
13629 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13630
13631         * icall.c: more signature fixes that used uint instead of int.
13632
13633 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13634
13635         * reflection.c: fixed signature of field refs.
13636
13637 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13638
13639         * class.c, reflection.c: handle typerefs of nested types
13640         (both on read and when writing files).
13641
13642 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
13643
13644         * icall.c: fix method signatures that tried to workaround the previous
13645         typo, d'oh!
13646
13647 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13648
13649         * debug-helpers.c: fix typo.
13650
13651 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13652
13653         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
13654         rewrote the PE/COFF writing code (our programs are understood by the
13655         ms runtime, now).
13656
13657 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
13658
13659         * gc.c, gc.h, icall.c: weakreference support.
13660
13661 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
13662
13663         * Makefile.am, mono-config.c: use $(sysconfdir).
13664
13665 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13666
13667         * icall.c: changed default precision of Double.ToString() to 15.
13668         Fixed memory leak. Unified with Single.ToString.
13669
13670 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
13671
13672         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
13673
13674 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
13675
13676         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
13677         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
13678         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
13679         and myself.
13680
13681 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13682
13683         * debug-symfile.c, sysmath.c: yet more compilation fixes.
13684
13685 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13686
13687         * reflection.c, socket-io.c: more compilation fixes.
13688
13689 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13690
13691         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
13692         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
13693         unicode.c: warning and compiler compatibility fixes.
13694
13695 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
13696
13697         * class.h, metadata.c: fixed warnings/compilation errors.
13698
13699 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
13700
13701         * Makefile.am, mono-config.c, mono-config.h: configuration file
13702         support routines.
13703         * loader.c, loader.h: make Dll mapping configurable at runtime in the
13704         config file. Export methods to insert and lookup mappings.
13705
13706 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
13707
13708         * reflection.c: handle types and boxed objects in custom attr
13709         constructors.
13710
13711 2002-05-30  Martin Baulig  <martin@gnome.org>
13712
13713         * debug-symfile.c
13714         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
13715
13716 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
13717
13718         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
13719         to lookup the implmap row for a P/Invoke method.
13720         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
13721         P/Invoke method from the runtime on an as needed basis.
13722
13723 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
13724
13725         * metadata.c (mono_metadata_parse_signature): impl.
13726
13727 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13728
13729         * class.c: handle .pack directive.
13730
13731 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
13732
13733         * object.c: initialize static fields with RVA data.
13734
13735 2002-05-25  Martin Baulig  <martin@gnome.org>
13736
13737         * debug-symfile.c
13738         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
13739
13740 2002-05-24  Martin Baulig  <martin@gnome.org>
13741
13742         * debug-symfile.c
13743         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
13744         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
13745         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
13746
13747 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
13748
13749         * object.c: special case string ctros in invoke.
13750         * gc.c: silly whitespace changes.
13751
13752 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
13753
13754         * threadpool.[ch]: impl. a threadpool that can
13755         be used by mint and mono.
13756
13757 2002-05-22  Martin Baulig  <martin@gnome.org>
13758
13759         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
13760         The first argument is now a `MonoReflectionModuleBuilder *', the return
13761         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
13762         `methods' field to get the method builder.  The `token' argument is the
13763         unfixed token.
13764
13765         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
13766         invalid characters instead of g_assert_not_reached()ing.  This seems
13767         to be the behaviour of mscorlib.
13768
13769 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
13770
13771         * object.c (mono_runtime_invoke_array): applied patch from Rachel
13772         Hestilow to fix bug #25104
13773
13774 2002-05-21  Martin Baulig  <martin@gnome.org>
13775
13776         * debug-symfile.c (mono_debug_find_source_location): New function.
13777         Looks up an IL offset in the line number table and returns the source
13778         location as a string.
13779
13780 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13781
13782         * icall.c:
13783         (mono_double_ToStringImpl): changed %f by %g until we have something
13784         better.
13785
13786 2002-05-21  Nick Drochak  <ndrochak@gol.com>
13787
13788         * icall.c : Use different name for Math.Pow's icall.  Needed to check
13789         parameters first in C#.
13790
13791 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13792
13793         * icall.c, reflection.h: added icall to get info about an event.
13794
13795 2002-05-20  Radek Doulik  <rodo@ximian.com>
13796
13797         * object.c (mono_value_box): don't use memcpy for boxing on BIG
13798         endian
13799         (mono_value_box): don't use memcpy for small sizes on
13800         architectures with unaligned access
13801
13802 2002-05-20  Martin Baulig  <martin@gnome.org>
13803
13804         * reflection.c (mono_reflection_setup_internal_class): Don't crash
13805         if `tb->parent == NULL'.
13806         (mono_reflection_create_internal_class): New function.  This is
13807         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
13808         for enum types.
13809
13810         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
13811         New interncall.
13812
13813 2002-05-19  Martin Baulig  <martin@gnome.org>
13814
13815         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
13816         argument to get the length, don't default to the array length.
13817
13818 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
13819
13820         * assembly.c (mono_assembly_setrootdir): New function used to
13821         override the MONO_ASSEMBLIES directory.
13822
13823 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
13824
13825         * icall.c: ValueType_GetHashCode() initialize local var.
13826
13827 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13828
13829         * reflection.c: sort custom attributes table.
13830
13831 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
13832
13833         * reflection.c: support named args in custom attributes (write support).
13834
13835 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
13836
13837         * reflection.c: fix finally position calculation.
13838
13839 2002-05-15  Radek Doulik  <rodo@ximian.com>
13840
13841         * reflection.c: fixed endianess at many places
13842
13843         * icall.c (ves_icall_InitializeArray): comment out debug msg
13844
13845 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
13846
13847         * object.c (mono_unhandled_exception): new function to handle
13848         unhandled exceptions.
13849         (mono_unhandled_exception): call the UnhandledException event.
13850         (mono_runtime_delegate_invoke): impl.
13851
13852 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
13853
13854         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
13855         returns the RVA, not the direct pointer to the data. Handle the case
13856         when the class size is fixed.
13857
13858 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
13859
13860         * reflection.c: fix some endianess issues.
13861
13862 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
13863
13864         * object.c (mono_runtime_invoke): is now able to catch exceptions.
13865
13866         * threads.c (mono_thread_init): added a callback which is invoked
13867         at thread start.
13868
13869 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
13870         
13871         * icall.c: make GetHashCode return non-negative values.
13872
13873 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
13874
13875         * object.c, icall.c, gc.c: revert to address-based hashcode.
13876
13877 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
13878
13879         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
13880
13881 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13882
13883         * icall.c, class.c: special case <Module>.
13884
13885 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
13886
13887         * icall.c: fix bug in GetNow().
13888
13889 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
13890
13891         * object.c (mono_runtime_class_init): make sure that we call all
13892         static class constructors.
13893
13894 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
13895
13896         * reflection.c: sort methodsemantics table.
13897
13898 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
13899
13900         * reflection.h, reflection.c: honour init locals setting.
13901
13902 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
13903
13904         * icall.c: copied Double ToStringImpl for Single ToStringImpl
13905
13906 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
13907
13908         * reflection.c: support ContructorBuilders in attribute blob creation.
13909
13910 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13911
13912         * reflection.c: some changes to build a binary that can be run
13913         directly in windows.
13914
13915 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
13916
13917         * loader.c: print a big message when an icall can't be found.
13918
13919 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13920
13921         * string-icalls.c: fix bug 24248.
13922
13923 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
13924
13925         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
13926         icall.c, reflection.h: separate assembly loading by pathname and by
13927         assembly name. Use the MONO_PATH env var to search for assemblies.
13928
13929 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13930
13931         * assembly.c, image.h: add some support for assemblies
13932         with multiple modules.
13933         * class.c, class.h: export mono_class_from_typeref().
13934         * loader.c: remove duplicated code and use mono_class_from_typeref(),
13935         instead.
13936
13937 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13938
13939         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
13940         documentation says (the ECMA one is correct).
13941
13942 2002-05-02  Dick Porter  <dick@ximian.com>
13943
13944         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
13945         Don't name the synchronisation mutex.
13946
13947 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
13948
13949         * rand.c
13950         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
13951         Make the prototypes match.
13952         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
13953         Same.
13954
13955         * icall.c
13956         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
13957         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
13958         all systems have tm.tm_zone, so use strftime() with %Z to print
13959         the timezone abreviation into a temp string.
13960
13961         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
13962         rather than mono_array_addr() on a MonoString on Big Endian
13963         machines.
13964
13965 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
13966
13967         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
13968         fix bug 24041
13969
13970 2002-04-30  Dick Porter  <dick@ximian.com>
13971
13972         * socket-io.c: Cope with SOCKET being an integer rather than a
13973         pointer now.
13974
13975         * threads.c: Added Thread_free_internal, to deal with thread
13976         handle cleanup.  Moved calls to handle_store() and handle_remove()
13977         to start_wrapper(), so each can only be called once.  Allocate
13978         synchronisation blocks with GC_malloc(), and use GC finalisation
13979         to close the handles.
13980
13981         * icall.c: added System.Threading.Thread::Thread_free_internal
13982
13983 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13984
13985         * icall.c: support Environment.Exit, CommandLineArgs().
13986
13987 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13988
13989         * object.c, object.h: added mono_runtime_run_main () and
13990         mono_runtime_get_main_args () for use in System.Environment.
13991
13992 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13993
13994         * gc.c: fix thinko, enable actual finalization since the jit is now
13995         fixed.
13996
13997 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13998
13999         * gc.c, object.c: take into account that an object may be offset wrt the address
14000         returned by GC_malloc().
14001
14002 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
14003
14004         * image.c: handle files without entries in the assembly table (modules).
14005
14006 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
14007
14008         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
14009         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
14010         allowed to be null when it's System.Object class setup.
14011
14012 2002-04-27  Martin Baulig  <martin@gnome.org>
14013
14014         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
14015         if `tb->parent == NULL' rather than crashing.
14016
14017 2002-04-28  Nick Drochak  <ndrochak@gol.com>
14018
14019         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
14020         calling acos() where asin() should have been called.
14021
14022 2002-04-26  Martin Baulig  <martin@gnome.org>
14023
14024         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
14025         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
14026         there's a subdirectory called `System', but we don't want to read that
14027         subdirectory as an assembly.
14028
14029 2002-04-25  Martin Baulig  <martin@gnome.org>
14030
14031         * debug-symfile.c: Reflect latest MonoString changes.
14032
14033 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
14034
14035         * rand.c, rand.h: instance method icalls need to have an explicit
14036         this pointer as first argument in the C implementation.
14037
14038 2002-04-25  Nick Drochak <ndrochak@gol.com>
14039
14040         * icall.c: Fix typo in map for GetNonZeroBytes
14041
14042 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14043
14044         * string-icalls.c : String does now passes unit tests without any 
14045         errors, the following changes has been made:
14046         
14047         Implemented replace methods.
14048         Renaming of methods to (try) follow the standard.
14049         Fixed compare ordinal
14050         Made all memory allocated directly to function instead of via icall function.
14051         Small performance fix in is_in_array function
14052                         
14053  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
14054
14055         c (mono_string_Internal_ctor_charp_int_int):
14056         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
14057         sindex < 0, throw ArgumentOutOfRangeException instead of
14058         ArgumentNullException.
14059
14060         Added new check for length == 0, however
14061         I need to make it return String.Empty from the C code.
14062         
14063         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
14064         that calculate the length for us here.
14065         
14066         (mono_string_Internal_ctor_sbytep_int_int): Replaced
14067         mono_string_new_utf16 with mono_string_new, since value is utf8.
14068
14069 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
14070
14071         * object.c: register the object for finalization if needed.
14072         Allocate one more char in the string for the terminating 0 char.
14073
14074 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
14075
14076         * class.c, class.h, image.c: check if a type implemenst a destructor.
14077         Use the proper key for array class lookups.
14078         * icall.c: register the icalls in the System.GC class.
14079         * gc.c, gc.h: GC-related functions and icalls.
14080
14081 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14082
14083         * icall.c:
14084         * socket-io.c:
14085         * unicode.c: free some strings gotten from mono_string_to_utf8 and
14086         changed a couple of free () by g_free ().
14087
14088         * decimal.c: one-liner in the comments for decimal2string ().
14089
14090 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14091
14092         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
14093
14094 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
14095
14096         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
14097         * object.c (mono_runtime_invoke_array) : handle null in params
14098
14099 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14100
14101         * string-icalls.c: fixed bug in split (one off bug)
14102
14103 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14104
14105         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
14106         * icalls.c: added String::Equals as internal method
14107
14108 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
14109
14110         * threads.c: fixed bug in the double interlocked functions
14111
14112 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
14113
14114         * threads.c: implemented all of the new interlocked icalls.
14115         * string-icalls.c: fix a bug in insert.
14116         * icalls.c: added the icalls for interlocked, removed old string functions.
14117         
14118 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
14119
14120         * loader.c: fix off-by-one error when reading argument names.
14121
14122 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14123
14124         * profiler.c: win32 counter implementation (untested).
14125         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
14126         (the latter needs testing and more complete impl. from win32 folks).
14127
14128 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
14129
14130         * object.c: mono_array_new_full workaround mono_array_class_get
14131         problem.
14132
14133 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14134
14135         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
14136         * object.h (mono_string_chars): Changed casting type.
14137
14138 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14139
14140         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
14141                            method signatures to use gunichar2 instead of gint16.
14142
14143 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
14144
14145         * object.h, object.c: domain-specific versions of mono_object_new and
14146         mono_array_new.
14147
14148 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
14149
14150         * object.c: changed String layout
14151
14152         * string-icalls.c (mono_string_Internal_ctor_chara): added
14153         internal string constructors.
14154
14155 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
14156
14157         * threads.c: pass 'this' to the thread start routine.
14158
14159 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14160
14161         * string-icalls.c: fix IndexOf and LastIndexOf. Now
14162         InternalCompareStr don't call twice mono_string_cmp_char for the last
14163         character. Improved performance in mono_string_cmp_char.
14164
14165 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
14166
14167         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
14168         code into its own library: libmonoruntime.
14169
14170 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
14171
14172         * object.h, object.c: changed array format so that szarrays do not
14173         require a bounds structure.
14174         * icall.c, appdomain.c: support for new szarray format.
14175
14176 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
14177
14178         * metadata.c: compare also the retuns type when comparing signatures:
14179         we didn't do this as an optimization since really overloaded methods
14180         must differ also in the arguments, but this doesn't work with
14181         low-level IL code (or when using explicit conversion operators: see
14182         bug#23498 for an example).
14183
14184 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
14185
14186         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
14187
14188 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
14189
14190         * icall.c: make MonoType::GetElementType its own icall.
14191
14192 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
14193
14194         * icall.c: remove MonoMethod_get_Name().
14195         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
14196         object.
14197
14198 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14199
14200         * string-icalls.c: optimized a few methods.
14201
14202 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
14203
14204         * icall.c: added all new string internal calls
14205         * string-icalls.c: added, new string internal call implementation.
14206         * object.c: added mono_string_new_size for allocating a string a size
14207
14208 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
14209
14210         * object.c (mono_object_isinst): use the same code as in the
14211         optimized x86 version.
14212
14213 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
14214
14215         * profiler.c: TSC-based timer code (faster and more accurate).
14216         Not hooked up in configure, yet (set USE_X86TSC to 1).
14217
14218 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
14219
14220         * profiler.c, profiler.h: track time spent compiling methods.
14221         * threads.c: track thread creation/destruction.
14222
14223 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
14224
14225         * profiler.c, profiler.h, profiler-private.h: profiling interface
14226         and sample implementation. Moved here so that it can be used also by
14227         the jit.
14228
14229 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
14230
14231         * reflection.c, reflection.h: keep types and other handles separate in
14232         the hash tables for referred tokens. Add guid for modules.
14233
14234 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
14235
14236         * assembly.c: fix bugs found with valgrind.
14237         * metadata.h, metadata.c: added mono_metadata_guid_heap().
14238
14239 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
14240
14241         * threads: added icall support for getting current domain for
14242                    the thread.
14243  
14244 2002-04-13  Martin Baulig  <martin@gnome.org>
14245
14246         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
14247         (MonoDebugVarInfo): Added `index' field for register based addresses.
14248         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
14249         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
14250         `MonoDebugVarInfo *params' and `guint32 this_offset' with
14251         `MonoDebugVarInfo *this_var'.
14252
14253         * debug-symfile.c (relocate_variable): New static function to write
14254         a location description for a local variable or method parameter.
14255
14256 2002-04-12  Martin Baulig  <martin@gnome.org>
14257
14258         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
14259         stack offset and begin/end scope address of a local variable.
14260         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
14261         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
14262         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
14263
14264         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
14265         Added new relocation types for start/end scope of a local variable.
14266
14267 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
14268
14269         * object.h: add mono_object_domain() macro.
14270         * reflection.c: handle typespecs.
14271         * icall.c: MonoMethod::get_Name() implementation.
14272
14273 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14274
14275         * icall.c: String::GetHashCode() icall implementation.
14276
14277 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
14278
14279         * icall.c: String::IndexOfAny icall.
14280         * object.c, object.h: make array->max_length more useful.
14281         Intrduced mono_object_class() and mono_string_length() macros.
14282
14283 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14284
14285         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
14286         instead of g_unichar_isdigit.
14287
14288 2002-04-11  Nick Drochak  <ndrochak@gol.com>
14289
14290         * icall.c: Implement a simple Double.ToString().
14291
14292 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
14293
14294         * appdomain.h: only io-layer.h is supposed to be included.
14295         * icall.c: explicitly import environ. Fix warning.
14296
14297 2002-04-10  Nick Drochak  <ndrochak@gol.com>
14298
14299         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
14300                 return true even if it's not Daylight Savings time.
14301                 Only return false for the case where the function isn't
14302                 implemented for a plaform (read Windows).
14303
14304 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
14305
14306         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
14307         data with a mutex.
14308
14309 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
14310
14311         * mempool.c (mono_mempool_alloc): only use g_malloc when
14312         absolutely necessary.
14313
14314 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
14315
14316         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
14317
14318         * class.c (mono_class_vtable): use domain mempool to allocate vtable
14319         (mono_class_proxy_vtable): use domain mempool
14320
14321 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
14322
14323         * appdomain.h, appdomain.c: split initialization that requires the
14324         execution engine support into mono_runtime_init().
14325
14326 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
14327
14328         * class.c (mono_class_init): don't include vtable inside MonoClass
14329         to save some memory, gather some statistics.
14330         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
14331
14332 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
14333
14334         * icall.c: internalcall implementation for ValueType.Equals().
14335
14336 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
14337
14338         * object.c (mono_message_init): moved 
14339         (mono_runtime_exec_main): new arch. independent impl.
14340         (mono_runtime_invoke_array): new method - like
14341         mono_runtime_invoke, but you can pass an array of objects.
14342         (mono_remoting_invoke): new arch. independent impl.
14343         (mono_message_invoke): new arch. independent impl.
14344         (mono_runtime_class_init): new arch. independent impl.
14345         (mono_runtime_object_init): new arch. independent impl.
14346
14347 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
14348
14349         * metadata.c, object.c, reflection.c: documented the exported
14350         functions.
14351
14352 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
14353
14354         * icall.c: simpler code to pass the assembly builder data to corlib.
14355         Implement GetNestedTypes() internalcall.
14356
14357 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
14358
14359         * class.c: warn if a type can't be loaded.
14360
14361 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
14362
14363         * image.h: typedef MonoImageOpenStatus
14364         * types.h: removed unused file
14365         
14366 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
14367
14368         * icall.c: Enum_ToObject accepts enum value arguments.
14369
14370 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
14371
14372         * class.c: move initialization of properties, events and nested
14373         classes, so that they happen for interfaces, too.
14374
14375 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
14376
14377         * icall.c: cleanup some ugly casts in Array_SetValue*.
14378
14379 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
14380
14381         * icall.c: the values array fro enums is of the correct type, now.
14382         Implement (correctly) getFullName instead of assQualifiedName for
14383         MonoType.
14384         * reflection.h, reflection.c: added mono_type_get_name ().
14385
14386 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
14387
14388         * assembly.c, image.h: for each MonoImage, record from wich assembly
14389         it was loaded.
14390         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
14391         Make Type.Assembly work.
14392
14393 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
14394
14395         * debug-symfile.h: use char* instead of gpointer to avoid
14396         unnecessary casts.
14397
14398         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
14399
14400         * icall.c (ves_icall_InternalExecute): impl. FielSetter
14401         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
14402
14403 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
14404
14405         * icall.c (mono_message_init): impl. (code cleanup)
14406         (ves_icall_InternalExecute): impl. FieldGetter
14407
14408         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
14409         defined we call all (non-static)methods through the vtable. 
14410
14411 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
14412
14413         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
14414         finalizer even though the memory is still referenced (and the chunk of
14415         memory is not freed).
14416
14417 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
14418
14419         * assembly.c: fix brokeness.
14420
14421 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
14422
14423         * class.c: kill some warnings. Check explicit interface method
14424         implementation also without considering the namespace.
14425         Load also literal strings in static class data.
14426
14427 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
14428
14429         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
14430         (default_assembly_name_resolver): Make the resolver take the
14431         "base" directory where the assembly was originally defined, so we
14432         can load DLLs that are in the same directory as the assembly that
14433         is being referenced.
14434
14435 2002-03-28  Dick Porter  <dick@ximian.com>
14436
14437         * file-io.h: 
14438         * file-io.c:
14439         * socket-io.c: 
14440         * unicode.h: 
14441         * unicode.c: Warning cleanups
14442
14443 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
14444
14445         * object.h, reflection.h: use the correct type instead of MonoObject.
14446
14447 2002-03-28  Martin Baulig  <martin@gnome.org>
14448
14449         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
14450         (mono_debug_update_symbol_file): Initialize classes if necessary.
14451
14452 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
14453
14454         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
14455         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
14456
14457 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
14458
14459         * assembly.h: fix function prototype.
14460         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
14461         * mono-endian.h: use const cast.
14462
14463 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
14464
14465         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
14466
14467 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
14468
14469         * loader.c: don't assert when a typeref can't be loaded, give
14470         a chance to the runtime to trow an exception instead.
14471         * loader.h: fix warning.
14472
14473 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
14474
14475         * class.c (mono_class_proxy_vtable): added proxy support
14476
14477 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
14478
14479         * icall.c: removed last of PAL calls, added System.Environment
14480         * file-io.h, file-io.c: MonoIO implementation
14481         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
14482
14483 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
14484
14485         * appdomain.c: do not use the byte marker in ldstr table lookup.
14486         * debug-helpers.c: allow two ':' to separate class and method name.
14487         * object.c: allocate arrays bounds with the GC, too.
14488         * verify: add a few more checks.
14489
14490 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
14491
14492         * reflection.c: output also literal strings. Allocate parameter data
14493         with GC_malloc() (thanks, Martin, for catching this!).
14494
14495 2002-03-26  Martin Baulig  <martin@gnome.org>
14496
14497         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
14498         include the `this' offset in the `param_offsets'.
14499
14500 2002-03-25  Martin Baulig  <martin@gnome.org>
14501
14502         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
14503         mono_debug_get_class() function to get the classes. Added new
14504         relocation types for arrays and strings.
14505         (mono_debug_get_class): New static function to search in all
14506         referenced assemblies for a metadata token.
14507
14508         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
14509
14510 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
14511
14512         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
14513         hold gc-allocated objects. Make the string heap a stream like the
14514         others. Removed duplicated code when writing stream info.
14515         Added asserts to catch possible buffer overflows. Set the sorted map
14516         for tables that need sorting. Added some documentation.
14517
14518 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
14519
14520         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
14521         for interned strings and vtables.
14522
14523 2002-03-24  Martin Baulig  <martin@gnome.org>
14524
14525         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
14526         it in the array since it was created with g_slist_prepend().
14527
14528 2002-03-24  Martin Baulig  <martin@gnome.org>
14529
14530         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
14531         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
14532         (mono_debug_method_from_token): Renamed to
14533         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
14534         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
14535
14536         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
14537         relocation types.
14538
14539         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
14540
14541 2002-03-24  Martin Baulig  <martin@gnome.org>
14542
14543         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
14544         (mono_debug_method_from_token): New func.
14545
14546         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
14547         New interncall, calls mono_debug_local_type_from_signature().
14548         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
14549         calls mono_debug_method_from_token().
14550
14551 2002-03-23  Martin Baulig  <martin@gnome.org>
14552
14553         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
14554         specifies the number of bytes to be converted, not the array size.
14555         Return the number of chars, not the number of bytes.
14556         (ves_icall_iconv_get_chars): The `byteCount' argument
14557         specifies the number of bytes to be converted, not the array size.
14558
14559 2002-03-23  Martin Baulig  <martin@gnome.org>
14560
14561         * reflection.h (MonoReflectionSigHelper): New type.
14562
14563         * reflection.c (mono_reflection_sighelper_get_signature_local),
14564         (mono_reflection_sighelper_get_signature_local): New functions.
14565
14566         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
14567         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
14568         interncalls.
14569
14570 2002-03-23  Martin Baulig  <martin@gnome.org>
14571
14572         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
14573         is_writeable is set.
14574         (mono_raw_buffer_update): New function to write the modified map
14575         back to disk.
14576
14577         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
14578
14579         * debug-symfile.c (mono_debug_update_symbol_file): Call
14580         mono_raw_buffer_update() when done writing.
14581
14582 2002-03-23  Martin Baulig  <martin@gnome.org>
14583
14584         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
14585
14586         * debug-symfile.c: Added support for arguments and local variables.
14587
14588 2002-03-23  Dick Porter  <dick@ximian.com>
14589
14590         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
14591         protected by ifdefs, hence breaking the w32 build.
14592
14593 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14594
14595         * object.c: implement is_interned() the right way.
14596
14597 2002-03-21  Martin Baulig  <martin@gnome.org>
14598
14599         * debug-symfile.[ch]: New files to handle debugging information
14600         files. There's also support to dynamically update these symbol
14601         files to include machine dependent information.
14602
14603 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
14604
14605         * threads.c (mono_thread_create): new function to create thread
14606         from C
14607
14608 2002-03-20  Martin Baulig  <martin@gnome.org>
14609
14610         * icall.c (ves_icall_InternalInvoke): Create a new object if the
14611         method is a constructor.
14612         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
14613         points to ves_icall_InternalInvoke().
14614
14615 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
14616
14617         * file-io.c: Flush shouldn't throw exceptions.
14618
14619 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
14620
14621         * file-io.c: FileStream flush support; FileSetLength now
14622         restores file pointer.
14623
14624 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
14625
14626         * class.c: set image for pointer classes.
14627
14628 2002/03/19  Nick Drochak <ndrochak@gol.com>
14629
14630         * sysmath.c: Forgot one.
14631
14632 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
14633
14634         * sysmath.c: Avoid redefining existing names.
14635
14636 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
14637
14638         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
14639         handled by runtime as icall rather than dllimport from libm.so
14640         * file-io.c, file-io.h: fixed handle argument type.
14641
14642 2002-03-18  Dick Porter  <dick@ximian.com>
14643
14644         * reflection.c (mono_image_get_type_info): rename interface to
14645         iface, because of "#define interface struct" on windows.
14646
14647 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
14648
14649         * class.c, class.h: rename and export mono_ptr_class_get().
14650         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
14651         * reflection.c, reflection.h, icall.c: better/saner type name
14652         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
14653         method signatures.
14654
14655 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
14656
14657         * class.c (mono_class_init): removed hardcoded GHC_SLOT
14658
14659         * icall.c (ves_icall_InternalInvoke): impl.
14660
14661 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
14662
14663         * reflection.c: output the interface map table, too.
14664
14665 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
14666
14667         * class.c (class_compute_field_layout): separate computation of 
14668         static field layout
14669
14670 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
14671
14672         * icall.c: added System.Buffer support.
14673         * file-io.c: moved file icalls from PAL to FileStream.
14674
14675 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
14676
14677         * icall.c (ves_icall_System_Object_GetHashCode): impl.
14678
14679 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
14680
14681         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
14682
14683 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14684
14685         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
14686
14687 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
14688
14689         * debug-helpers.{c,h}: moved here from monograph some useful functions
14690         to locate a method by name/signature in a class or image. Included
14691         also a small and flexible IL disassembler.
14692
14693 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14694
14695         * reflection.c: fixup tokens in methods with small header size, too.
14696
14697 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
14698
14699         * object.c (mono_string_to_utf8): remove assert(!error), instead
14700         print a warning. 
14701
14702 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
14703
14704         * icall.c: update to the new mono_Array_class_get interface.
14705
14706 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
14707
14708         * appdomain.c, object.c: Boehm-GC enable.
14709         * icall.c: make get_data_chunk() support split data requests.
14710         Ensure a class is initialized in more cases. Return only the first
14711         property found in GetProperties() or the compiler gets confused. 
14712         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
14713         * reflection.h, reflection.c: add fixup mechanism for field and method
14714         tokens. Initialize assembly->typeref in a single place. Output
14715         properties after events. Support custom attributes for events, too.
14716         Typo fix for paramter custom attrs.
14717
14718 2002-03-07  Martin Baulig  <martin@gnome.org>
14719
14720         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
14721
14722 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
14723
14724         * class.c (mono_array_class_get): fix. for multi. dim. arrays
14725
14726 2002-03-06  Martin Baulig  <martin@gnome.org>
14727
14728         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
14729         non-zero lower bounds. See testcases #F10-#F13.
14730
14731 2002-03-05  Martin Baulig  <martin@gnome.org>
14732
14733         * exception.c (mono_get_exception_argument_out_of_range): New exception.
14734
14735         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
14736         ves_icall_System_Array_GetValue(), only calculate the absolute array position
14737         here.
14738         (ves_icall_System_Array_SetValue): Likewise.
14739         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
14740         as argument and does the actual work. This function is used when copying a
14741         multi-dimensional array.
14742         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
14743         now do all the widening conversions of value types.
14744         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
14745
14746 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14747
14748         * class.c: remove some magic numbers and use the smbolic names,
14749         instead. Added init_events() to load event info at class init time.
14750         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
14751         and mono_metadata_methods_from_event().
14752         * reflection.h, reflection.c: added support for writing out the evnets
14753         related information.
14754
14755 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
14756
14757         * reflection.h, icall.c: use a different method (GetInterfaces)
14758         to gather interface info and add isbyref, isprimitive and
14759         ispointer to the ves_icall_get_type_info() return value.
14760
14761 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
14762
14763         * class.h: stared adding support for events.
14764         * icall.c: split find_members implementation. Added debug icall to get
14765         the address of an object.
14766         * reflection.c: handle TypeBuilders in mono_type_get_object().
14767
14768 2002-03-01  Martin Baulig  <martin@gnome.org>
14769
14770         * icall.c (ves_icall_System_Array_GetLength): This must throw an
14771         ArgumentOutOfRangeException(), not an ArgumentException().
14772         (ves_icall_System_Array_GetLowerBound): Likewise.
14773         (ves_icall_System_Array_GetValue): Improved argument checking.
14774         (ves_icall_System_Array_SetValue): Improved argument checking.
14775
14776 2002-03-01  Martin Baulig  <martin@gnome.org>
14777
14778         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
14779         called with invalid arguments rather than just dying with g_assert().
14780         (ves_icall_System_Array_SetValue): Likewise.
14781         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
14782         raise a NotImplementedException instead.
14783         (ves_icall_System_Array_GetLength): Added argument checking.
14784         (ves_icall_System_Array_GetLowerBound): Added argument checking.
14785
14786 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
14787
14788         * object.h (mono_assert): new macros mono_assert and
14789         mono_assert_not_reached
14790
14791 2002-02-28  Martin Baulig  <martin@gnome.org>
14792
14793         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
14794         and "System::String::IsInterned" to "System::String::_IsInterned".
14795
14796 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
14797
14798         * icall.c: remove hacks for typebuilder. Added icall to create a
14799         modified type from a tybebuilder.
14800         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
14801         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
14802         to create a backing MonoClass for a TypeBuilder.
14803
14804 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
14805
14806         * class.c, class.h: more refactoring of class init.
14807         Export mono_class_setup_mono_type() and mono_class_setup_parent().
14808
14809 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
14810
14811         * marshal.c, marshal.h: start of marshaling interface.
14812
14813 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
14814
14815         * icall.c: fix order in assembly qualified name icall.
14816
14817 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
14818
14819         * class.c: do not free str, since we store it in the hash table.
14820         * reflection.h: add label field to MonoILExceptionInfo.
14821         * reflection.c: handle references to more than one assembly. Handle
14822         case when there isn't a module created in the assembly.
14823
14824 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
14825
14826         * class.c: Fix typo. Start refactoring of class init code.
14827
14828 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
14829
14830         * appdomain.c: exit with 1 on error.
14831         * class.c: we already have the name in MonoClassField.
14832         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
14833         MonoStreamHeader instead of an offset of image->raw_metadata.
14834
14835 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
14836
14837         * appdomain.c (mono_init): Be even more descriptive about the error.
14838
14839 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
14840
14841         * appdomain.c: give the user an informative message when corlib can't
14842         be loaded.
14843
14844 2002-02-26  Martin Baulig  <martin@gnome.org>
14845
14846         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14847         New icall to get the time zone data.
14848
14849 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
14850
14851         * reflection.c: set virtual and raw size of section correctly.
14852         * threads.c: transfer domain information to newly created threads.
14853
14854 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
14855
14856         * class.c: when instancing a class in a domain, load the default
14857         vaules for static fields from the constant table. Fix System.Enum to
14858         not be an enum.
14859         * icall.c: implement Object::GetType() internalcall. Implemented
14860         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
14861         Fixed checking of binding flags in find_members().
14862         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
14863         * reflection.c: handle enumerations when writing to the constant
14864         table. Use a different object cache for types.
14865
14866
14867 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
14868
14869         * object.c (mono_object_isinst): fix for arrays
14870
14871         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
14872
14873 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
14874
14875         * object.c: don't use mprotect ()  and fix intern pool hash table
14876         lookup for big endian systems.
14877
14878 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14879
14880         * icall.c: change type_is_subtype_of () signature.
14881
14882 2002-02-21  Mark Crichton  <crichton@gimp.org>
14883
14884         * rand.c, rand.h: Added random number generator for
14885         System.Security.Cryptography classes.
14886
14887         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
14888
14889         * icall.c: Added System.Security.Cryptography calls.
14890
14891 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
14892
14893         * class.c, icall.c, metadata.c: better support for pointer types.
14894         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
14895         * reflection.c: Add support for getting custom attrs for properties
14896         and simplify some code.
14897
14898 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14899
14900         * icall.c: change getToken () and add custom attribute GetBlob()helper
14901         method.
14902         * reflection.h: add custom attrs array to the reflection builder structures.
14903         * reflection.c: encode and emit custom attributes for all the relevant
14904         reflection objects. Cache fieldref and methodref tokens. Change
14905         mono_image_create_token() interface to take a MonoDynamicAssembly.
14906         More complete custom attributes decoder. Load custom attributes for
14907         Assembly, Field, Method and Constructor objects, too. Make the
14908         returned array an Attribute[] one, not object[]. Added
14909         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
14910         custom attribute constructor.
14911
14912 2002-02-20  Dick Porter  <dick@ximian.com>
14913
14914         * icall.c:
14915         * rawbuffer.c:
14916         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
14917         problem code out for now).
14918
14919 2002-02-19  Radek Doulik  <rodo@ximian.com>
14920
14921         * object.c (mono_ldstr): use hash table to avoid multiple swapping
14922
14923 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
14924
14925         * icall.c: register the GetCustomAttributes method.
14926         * object.c, object.h: add mono_string_new_len ().
14927         * reflection.h, reflection.c: added mono_runtime_invoke(),
14928         mono_install_runtime_invoke(). Added
14929         mono_reflection_get_custom_attrs () to load custom attributes and
14930         create the attribute objects.
14931
14932 2002-02-19  Dick Porter  <dick@ximian.com>
14933         * threads-dummy-types.c:
14934         * threads-dummy-types.h:
14935         * threads-dummy.c:
14936         * threads-dummy.h:
14937         * threads-pthread-types.c:
14938         * threads-pthread-types.h:
14939         * threads-pthread.c:
14940         * threads-pthread.h:  Deleted obsolete files
14941
14942 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
14943
14944         * class.c (mono_class_vtable): runtime init the class when we
14945         allocate static class data.
14946
14947         * icall.c (ves_icall_System_Array_SetValue): check for null values.
14948
14949         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
14950         and String - but we will need generic marshalling support in the
14951         future. 
14952         (mono_init): set the domain name in a ms compatible way
14953
14954         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
14955         String[].
14956
14957 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
14958
14959         * object.c (mono_array_clone): use alloca() instead of g_malloc  
14960         for sizes
14961
14962         * appdomain.c (mono_domain_unload): impl.
14963
14964 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
14965
14966         * appdomain.c, object.c: fix intern pool implementation.
14967         * class.c: fix alignment code.
14968
14969 2002-02-16  Radek Doulik  <rodo@ximian.com>
14970
14971         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
14972         and s2 > s1, just copy lower bytes to be compatible with little
14973         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
14974         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
14975
14976         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
14977         force big_endian to be 1 for big endian machines 
14978         (ves_icall_iconv_new_decoder): ditto
14979
14980 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
14981
14982         * socket-io.c (convert_sockopt_level_and_name): If the system
14983         doesn't define SOL_IP or SOL_TCP, get them by hand using
14984         getprotobyname() and caching the values (because this could be a
14985         slow operation).
14986         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
14987         Use the appropriate struct when the system does support it. Ie,
14988         not all systems have struct ip_mreqn so use struct ip_mreq when
14989         appropriate.
14990
14991 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
14992
14993         * reflection.c: handle finally clauses.
14994
14995 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
14996
14997         * socket-io.c: use g_snprintf() instead of snprintf.
14998
14999 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
15000
15001         * reflection.c (mono_param_get_objects): Cast second argument to
15002         mono_method_get_param_names to a const char** to silence the
15003         compiler warning.
15004
15005         * appdomain.c (mono_domain_assembly_open): Put parens around the
15006         truth statement in the for-loop.
15007
15008         * unicode.c (iconv_convert): Got rid of a compiler warning about
15009         int i being unused when the system has a new iconv.
15010         (iconv_get_length): Same.
15011
15012         * image.c (load_class_names): Cast the second argument to
15013         g_hash_table_insert() to char* to hush compiler warnings about the
15014         arg being a const.
15015         (mono_image_open): Same here.
15016
15017         * socket-io.c: Don't conditionally include sys/filio.h or
15018         sys/sockio.h here anymore since we now get them from
15019         io-layer/io-layer.h
15020         (inet_pton): If the system doesn't support inet_aton, implement
15021         using inet_addr and also #define INADDR_NONE if it isn't defined
15022         by the system.
15023
15024 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
15025
15026         * metadata.c, metadata.h: added function to get packing and size info
15027         of a typedef.
15028         * reflection.h, reflection.c: handle field RVA data. Save info about
15029         the table layout if needed. Assign typedef indexes to all the types
15030         before dumping the info about them to avoid forward reference problems.
15031
15032 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
15033
15034         * socket-io.c (convert_sockopt_level_and_name): ifdef
15035         SO_ACCEPTCONN because it is not defined on my system (old debian)
15036
15037 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
15038
15039         * opcode.c: use stddef.h to get NULL.
15040
15041 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
15042
15043         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
15044         for FIONBIO, FIONREAD and SIOCATMARK.
15045         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
15046         define INADDR_NONE and besides, inet_addr() is deprecated and
15047         should not be used. Use inet_pton() instead - it also has the
15048         added bonus that it can easily handle IPv6 addresses as well.
15049         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
15050
15051 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
15052
15053         * decimal.c: remove _MSC_VER conditional.
15054
15055 2002-02-13  Dick Porter  <dick@ximian.com>
15056
15057         * socket-io.c: 
15058         * icall.c: Internal calls for Blocking, Select, Shutdown,
15059         GetSocketOption and SetSocketOption
15060
15061 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
15062
15063         * assembly.cs: better resolver: use it instead of some kludgy
15064         code.
15065
15066 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
15067
15068         * reflection.c: the best way to speed-up the compiler is to avoid
15069         infinite loops.
15070
15071 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
15072
15073         * class.c (mono_class_vtable): changed the object layout
15074         (obj->vtable->class). 
15075         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
15076
15077 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
15078
15079         * assembly.c: look for assemblies in the assembly dir, too.
15080
15081 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
15082
15083         * class.c: fix thinko in mono_class_from_type().
15084
15085 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
15086
15087         * exception.h, exception.c: added TypeLoadException.
15088         * object.h, object.c: added mono_array_clone ().
15089         * icall.c: handle throwOnError in AssemblyGetType().
15090         Added Array.Clone().
15091         * opcode.h, opcode.c: use a single value for the opcode val.
15092         Compile fix for non-gcc compilers.
15093
15094 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
15095
15096         * opcodes.c, opcodes.h: export interesting info about opcodes.
15097
15098 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
15099
15100         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
15101         icalls. 
15102
15103         * class.c (class_compute_field_layout): set element_class for enums
15104         (mono_class_create_from_typedef): set element_class for normal classes
15105
15106         * icall.c (ves_icall_System_Enum_get_value): impl.
15107
15108         * class.c (mono_class_create_from_typedef): do not set valuetype
15109         flag for System.ValueType and System.Enum
15110
15111 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
15112
15113         * unicode.c (iconv_convert): fix big endian problem.
15114
15115 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
15116
15117         * class.c: add asserts if we are ever going to scribble over memory.
15118         * socket-io.c: not all systems have AF_IRDA defined.
15119
15120 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
15121
15122         * class.c (class_compute_field_layout): do not consider static
15123         fields to compute alignment
15124
15125 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
15126
15127         * appdomain.c (mono_appdomain_get): impl.
15128         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
15129
15130 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
15131
15132         * icall.c: ignore "file://" prefix when loading an assembly.
15133
15134 2002-01-23  Dick Porter  <dick@ximian.com>
15135
15136         * socket-io.c:
15137         * icall.c:
15138         * Makefile.am: Added socket support
15139
15140 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
15141
15142         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
15143         code back.  This should return the assemblies that are loaded by
15144         the runtime on behalf of an application domain. 
15145
15146         The current implementation is still broken, it just returns every
15147         assembly loaded, but until we get real applications domain this
15148         will do.
15149
15150 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
15151
15152         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
15153         AppDomain object.
15154
15155 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
15156
15157         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
15158         the mono_class_from_name lookup.
15159         (ves_icall_get_parameter_info): ditto.
15160         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
15161         method.
15162         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
15163
15164 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
15165
15166         * class.c: load also nested classes on class init.
15167         System.ValueType instance methods gets passed boxed
15168         values, unless methods in derived classed that get a pointer to the
15169         data.
15170         * icall.c: use better name parsing code in GetType().
15171         * image.c, image.h: add mono_image_loaded ().
15172         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
15173         * reflection.c, reflection.h: added mono_reflection_parse_type().
15174
15175 2002-01-22  Veronica De Santis <veron78@interfree.it>
15176
15177         * icall.c : Added mapping of internal calls for Manual and Auto reset events
15178         * threads.c : Added the implementation of internal calls for events
15179         * threads.h : Added prototypes of internal calls for events
15180         
15181 2002-01-21  Radek Doulik  <rodo@ximian.com>
15182
15183         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
15184
15185 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
15186
15187         * class.c (mono_class_init): set min_align to 1 (instead of 0)
15188         (mono_class_value_size): use min_align
15189
15190 2002-01-20  Dick Porter  <dick@ximian.com>
15191
15192         * threads.h:
15193         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
15194         so it compiles on w32.
15195
15196 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
15197
15198         * metadata.c (mono_type_stack_size): impl.
15199
15200         * class.c (mono_class_get_field): impl. memberref token
15201
15202 2002-01-16 Veronica De Santis <veron78@@interfree.it>
15203
15204         * icall.h : Added the internal calls mapping for CreateMutex_internal
15205                     and ReleaseMutex_internal.
15206         * threads.h : Added the prototype of mutexes internal calls.
15207         * threads.c : Added the implementations of mutexes internal calls.
15208
15209 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
15210
15211         * metaparse.h: removed unused file.
15212         * reflection.c, reflection.h: added stream_data_align () function 
15213         to align data in streams and keep stream aligned. Add support for
15214         exception support in method headers.
15215
15216 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
15217
15218         * unicode.c: make iconv_convert () return the number of bytess written
15219         in the output buffer.
15220
15221 2002-01-15  Dick Porter  <dick@ximian.com>
15222         * threads.c: Make the runtime's idea of infinite timeouts coincide
15223         with the class library's
15224
15225         Fix a particularly egregious bug in mono_thread_cleanup(). That
15226         code was so utterly bogus it must have been written on a Monday.
15227
15228 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
15229
15230         * reflection.h: add subtypes field to TypeBuilder.
15231         * reflection.c: encode constants for literal fields.
15232         Handle subtypes. Fix user string token (and add a zero byte)
15233         at the end.
15234         
15235 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
15236
15237         * class.c (mono_class_init): bug fix: assign slot numbers for
15238         abstract methods.
15239
15240 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
15241
15242         * reflection.c: don't try to output a code RVA for abstract methods.
15243         Small fixes for method header format. Output parameter info to the
15244         ParamDef table. Save method overriding info to MethodImpl table.
15245         Fix property support. Allow typedef.extends to be a type in the
15246         building assembly.
15247         * verify.c: fix off-by-one error.
15248
15249 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
15250
15251         * class.c: fix mono_class_from_mono_type () for szarray types.
15252         Remove unused cache check in mono_class_from_type_spec().
15253         * icall.c: *type_from_name () functions handle simple arrays and byref.
15254         * reflection.c: handle byref and szarray types. Handle methods without
15255         body (gets P/Invoke compilation working). Handle types and fields in
15256         get_token ().
15257         * reflection.h: add rank to MonoTypeInfo.
15258
15259 2002-01-10  Dick Porter  <dick@ximian.com>
15260
15261         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
15262         internal calls
15263
15264 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
15265
15266         * icall.c: initialize class in type_from_handle ().
15267         Loop also in parent classes for get_method ().
15268         * reflection.c: properly encode class and valuetype types.
15269         Start on encoding TypeBuilder types. Handle fieldrefs.
15270         Use correct length when registering a user string.
15271         Handle ConstructorBuilder and MonoMethod in get_token ().
15272         Make mono_type_get_object () aware of cached types.
15273         * object.c: back out change to mono_string_new ().
15274
15275 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
15276         * object.c: mono_string_new should return a NULL when the string 
15277         passed in is NULL -- not try to deference it.
15278         
15279 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
15280
15281         * icall.c: hack to make IsSubType work for TypeBuilders.
15282         * reflection.c: emit constructors before methods.
15283         Retrieve param names in mono_param_get_objects().
15284
15285 2002/01/05  Nick Drochak  <ndrochak@gol.com>
15286
15287         * Makefile.am: fix list of headers and sources so automake 1.5
15288         doesn't complain. Removed \# at end of list.
15289
15290 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
15291
15292         * reflection.c: get token for a method ref. Set return type of
15293         constructor to void.
15294         * loader.c: debug message.
15295         * class.c: typo fix.
15296
15297 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
15298
15299         * icall.c: fix array init with rank > 1. FindMembers
15300         loops in parent class as well.
15301         * image.c: do not insert nested types in name cache.
15302         * reflection.c: warning fix.
15303         * reflection.h: add override method (for interface impl).
15304
15305 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
15306
15307         * metadata.c: fix customattr decoding.
15308
15309 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
15310
15311         * rawbuffer.cs: Added native Win32 implementation, avoids using
15312         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
15313
15314 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
15315
15316         * class.c: make the low-level routines handle the cache.
15317
15318 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
15319
15320         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
15321
15322 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
15323
15324         * class.c: fix mono_array_element_size() for objects.
15325         * class.h, class.c: add properties to MonoClass and load them
15326         at init time.
15327         * icall.c: check with isinst() when assigning a value to an array
15328         instead of requiring the classes to match exactly.
15329         Implemented icall for System.Type::GetType().
15330         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
15331         enums. Handle bindingflags when looking for methods and fields.
15332         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
15333         and mono_metadata_methods_from_property().
15334         * reflection.h, reflection.c: added structures for propreties,
15335         parameters and enums. Implemented mono_property_get_object() and
15336         mono_param_get_objects().
15337
15338 2001-12-18  Dick Porter  <dick@ximian.com>
15339
15340         * file-io.c: Use mono_string_to_utf16() instead of
15341         mono_string_chars()
15342
15343         * object.c: Added mono_string_to_utf16(), which copies the non
15344         NULL-terminated MonoString into a new double-null-terminated
15345         buffer.
15346
15347 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
15348
15349         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
15350
15351 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
15352
15353         * file-io.c: raise exceptions if handle is invalid.
15354
15355 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
15356
15357         * assembly.c: yet another check for mscorlib.
15358         * class.c, class.h: load nesting info for classes.
15359         * icall.c: many new functions to support the Reflection classes.
15360         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
15361         * reflection.h, reflection.c: mono_image_create_token(),
15362         mono_assembly_get_object(), mono_type_get_object(),
15363         mono_method_get_object(), mono_field_get_object(): methods to return
15364         objects that parallel the C representation of assemblies, types,
15365         methods, fields.
15366
15367 2001-12-11  Dick Porter  <dick@ximian.com>
15368
15369         * icall.c:
15370         * file-io.c: Internal calls for file IO.
15371
15372 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
15373
15374         * tabledefs.h: missing FileAttributes.
15375         * verify.h, verify.c: use is_valid_string () to simplify and check for
15376         valid strings more correctly. Fix warnings and speeling.
15377         Check more tables: Filed, File, ModuleRef, StandAloneSig.
15378         Check code: branches, maxstack, method calls.
15379
15380 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
15381
15382         * object.c (mono_object_allocate): removed static, so that the jit
15383         can allocate value types.
15384
15385         * icall.c (ves_icall_System_DateTime_GetNow): impl.
15386
15387 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15388
15389         * class.c: init enum types right away and register the
15390         token->MonoClass map in mono_class_create_from_typedef ().
15391         * verify.h, verify.c: first cut of the verifier.
15392         * pedump.c: add --verify switch to verify metadata tables.
15393         * tabledefs.h: add some missing enums.
15394
15395 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
15396
15397         * class.c (mono_install_runtime_class_init): impl.
15398         (mono_class_init): renamed mono_class_metadata_init to
15399         mono_class_init, also removed the metadata_inited flag
15400
15401         * object.c (mono_object_isinst): use faster algorithm
15402
15403 2001-11-30  Radek Doulik  <rodo@ximian.com>
15404
15405         * mono-endian.h: reverted last change
15406         added function prototypes
15407
15408         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
15409         add mono-endian.c back
15410
15411         * mono-endian.c: returned back, as Paolo pointed out, it's needed
15412         for unaligned access, I've mistaked it with endianess. I am
15413         sorry.
15414         (mono_read16): fix reverted endianess
15415         (mono_read64): ditto
15416         (mono_read32): ditto
15417
15418 2001-11-30  Dick Porter  <dick@ximian.com>
15419
15420         * exception.c: Implement mono_exception_from_name()
15421
15422 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
15423
15424         * metadata.h, metadata.c: remove params_size and locals_size and their
15425         calculation from the metadata code: they are only usefult to the
15426         interp.
15427
15428 2001-11-29  Radek Doulik  <rodo@ximian.com>
15429
15430         * object.c (mono_ldstr): swap bytes here, it's probably not the
15431         best place, but works for me now, I'll redo it once I know mono
15432         better, also note that I add PROT_WRITE and don't reset back, also
15433         note that it's only affects big endians, so x86 should be OK
15434
15435         * mono-endian.h (read16): use just glib macros for both endians
15436
15437         * mono-endian.c: removed as glib macros are used in in
15438         mono-endian.h so we don't need to care about endianess for read
15439         macros as glib does that for us already
15440
15441 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
15442
15443         * class.h, class.h: take minimum alignment into consideration so
15444         that the fields of a class remain aligned also when in an array.
15445
15446 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15447
15448         * loader.h, loader.c: add mono_method_get_param_names().
15449         * class.c: 0-init class fields.
15450
15451 2001-11-26  Dick Porter  <dick@ximian.com>
15452
15453         * icall.c:
15454         * threads-types.h:
15455         * threads.c: New file that handles System.Threading on all platforms
15456
15457         * object.c: 
15458         * object.h: Remove the synchronisation struct from MonoObject,
15459         replace it with a pointer that gets initialised on demand
15460
15461         * Makefile.am: Replace all the system-specific threading code with
15462         a single file that uses the new wrapper library
15463
15464 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
15465
15466         * class.c, class.h: add mono_install_trampoline() so that the runtime
15467         can register a function to create a trampoline: removes the ugly
15468         requirement that a runtime needed to export arch_create_jit_trampoline.
15469         * object.h, object.c: added mono_install_handler() so that the runtime
15470         can install an handler for exceptions generated in C code (with
15471         mono_raise_exception()). Added C struct for System.Delegate.
15472         * pedump.c: removed arch_create_jit_trampoline.
15473         * reflection.c: some cleanups to allow registering user strings and
15474         later getting a token for methodrefs and fieldrefs before the assembly
15475         is built.
15476         * row-indexes.h: updates and fixes from the new ECMA specs.
15477
15478 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
15479
15480         * class.h, class.c: add enum_basetype field to MonoClass.
15481         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
15482         to get index in the constant table reated to a field, param or
15483         property.
15484         * reflection.h, reflection.c: handle constructors. Set public-key and
15485         version number of the built assembly to 0.
15486         * row-indexes.h: update from new ECMA spec.
15487
15488 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
15489
15490         * class.h, class.c: add a max_interface_id to MonoClass.
15491         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
15492         since it's used to do that. Added mono_type_type_from_obj().
15493         Make GetType() return NULL instead of segfaulting if the type was not
15494         found. Handle simple arrays in assQualifiedName.
15495         * object.h: add a struct to represent an Exception.
15496         * reflection.c: output call convention in method signature.
15497         Add code to support P/Invoke methods and fixed offsets for fields.
15498
15499 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
15500
15501         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
15502         the value.
15503         * icall.c: use mono_array_addr instead of array->vector: fixes the
15504         reflection image writing.
15505         * reflection.c: init call convention byte to 0 in method signature.
15506         Encode the property signature. Don't output property-related methods
15507         twice. Really process the properties for a type (don't cast a field to
15508         a property, my mom always told me that).
15509         Fix 64 bit issues in pointer alignment in a different and more
15510         readable way.
15511
15512 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
15513
15514         * loader.h: Removed type class from MonoDefaults, added monotype
15515
15516         * loader.c: Loaded MonoType, removed loading of Type
15517
15518         * icall.c (my_mono_new_object): Now returns a System.MonoType,
15519         and fills in System.Type._impl with a RuntimeTypeHandle rather
15520         than the actual MonoClass *
15521
15522         (ves_icall_type_from_handle): change from type_class to
15523         monotype_class
15524
15525         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
15526         implemented
15527
15528         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
15529         implemented
15530
15531         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
15532
15533         (ves_icall_System_Reflection_Assembly_GetType): implemented
15534
15535         (ves_icall_System_MonoType_assQualifiedName): implemented
15536
15537         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
15538
15539 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
15540
15541         * assembly.c (mono_assembly_open): Implement a cache for the
15542         assemblies. 
15543
15544         (mono_assembly_close): only destroy the assembly when the last
15545         reference is gone.
15546         
15547 2001-11-09  Dick Porter  <dick@ximian.com>
15548
15549         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
15550
15551 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
15552
15553         * class.c (mono_class_metadata_init): bug fix: compute the right slot
15554
15555 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
15556
15557         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
15558         from Martin Weindel.
15559         * object.h: add mono_string_chars ().
15560
15561 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
15562
15563         * reflection.c (build_compressed_metadata): Eliminates warnings
15564         and uses 64-bit clean code.
15565
15566         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
15567         (mono_type_equal): Change signature to eliminate warnings.
15568
15569 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
15570
15571         * icall.c, loader.c: remove the internalcall array constructors.
15572         Changes to match the new MonoArray structure.
15573         * object.h, object.c: an array object doesn't allocate an extra
15574         vector. Add mono_array_new_full () to create jagged arrays easily.
15575
15576 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
15577
15578         * metadata.h, metadata.c: add mono_metadata_field_info () to
15579         retreive all the info about a field from vairous tables.
15580         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
15581         * class.h, class.c: augment MonoClassField with more info.
15582         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
15583         policy and load a field's RVA if needed.
15584
15585 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
15586
15587         * class.c (mono_class_metadata_init): create a trampoline for all
15588         virtual functions instead of actually compiling them.
15589
15590 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
15591
15592         * class.h, class.c: include name in MonoClassField.
15593         * class.c: fix fundamental type of System.Object and System.String.
15594         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
15595         tokens in ldtoken.
15596         * icall.c: remove internalcalls for the Reflection stuff that is now
15597         done in C# code.
15598         * loader.c: mono_field_from_memberref () implementation.
15599         * mono-endian.c: thinko (s/struct/union/g).
15600         * object.c, object.h: make the mono_string_* prototypes actually use
15601         MonoString instead of MonoObject.
15602         * reflection.c, reflection.h: updates for changes in the reflection
15603         code in corlib: we use C structures that map to the actual C# classes.
15604         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
15605         fat method header if needed and use the info from the ILGenerator for
15606         methods. Handle fields in types. Misc fixes.
15607
15608 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
15609
15610         * class.c (mono_class_metadata_init): bug fix: always allocate
15611         space for static class data
15612
15613 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
15614
15615         * class.c (mono_compute_relative_numbering): use relative
15616         numbering to support fast runtime type checks.
15617
15618 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
15619
15620         * class.c (mono_class_create_from_typeref): added debugging output
15621         to print class name when MonoDummy is returned instead of real class
15622
15623 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
15624
15625         * class.c (mono_class_metadata_init): interface offset table now
15626         contains pointers into the vtable - this is more efficient for the jit
15627
15628 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
15629
15630         * class.c (mono_class_metadata_init): use a temporary vtable (the
15631         old algorithm only worked for the interpreter, but not for the jit)
15632
15633 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
15634
15635         * loader.c (method_from_memberref): use mono_class_get to get the
15636         class of an array instead of using System.Array directly.
15637         (mono_get_method): also add MEMBERREF methods to the method cache
15638         which usefull for arrays.
15639
15640 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
15641
15642         * pedump.c (arch_compile_method): added to compute vtable entry
15643
15644         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
15645         number of interfaces.
15646         
15647         * class.h: merged MonoArrayClass into MonoClass
15648
15649         * class.c (mono_class_create_from_typedef): compute the vtable size and
15650         allocate space to include the vtable inside MonoClass
15651         (mono_class_metadata_init): initialize the vtable
15652
15653 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
15654
15655         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
15656         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
15657         * image.c: endian fixes by Laurent Rioux.
15658         * object.h, object.c: rename MonoStringObject to MonoString and
15659         MonoArrayObject to MonoArray. Change some function names to conform to
15660         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
15661         guint16* as first argument, so don't use char*.
15662         Provide macros to do the interesting things on arrays in a portable way.
15663         * threads-pthread.c: updates for the API changes and #include <sched.h>
15664         (required for sched_yield()).
15665         * icall.c: updates for the API changes above.
15666         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
15667         platforms that need them.
15668
15669 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
15670
15671         * class.c: set the correct type for all the fundamental
15672         type when loading the class.
15673
15674 2001-10-05  Dick Porter  <dick@ximian.com>
15675
15676         * threads-pthread.c (pthread_mutex_timedlock): Simple
15677         compatibility version for C libraries that lack this call.
15678
15679 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15680
15681         * class.c: MonoTypes stored in MonoClass are stored as
15682         fundamental MonoTypes when the class represents a
15683         fundamental type (System.Int32, ...).
15684         The TypeHandle return by ldtoken is a MonoType*.
15685         * icall.c: ves_icall_get_data_chunk () write out all the
15686         PE/COFF stuff. Implement ves_icall_define_method (),
15687         ves_icall_set_method_body (), ves_icall_type_from_handle ().
15688         * image.c: properly skip unknown streams.
15689         * loader.h, loader.c: add type_class to mono_defaults.
15690         * metadata.c, metadata.h: export compute_size () as
15691         mono_metadata_compute_size () with a better interface.
15692         Typo and C&P fixes.
15693         * pedump.c: don't try to print the entry point RVA if there is no entry point.
15694         * reflection.c, reflection.h: many cleanups, fixes, output method
15695         signatures and headers, typedef and typeref info, compress the metadata
15696         tables, output all the heap streams, cli header etc.
15697         * row-indexes.h: typo fixes.
15698
15699 2001-10-04  Dick Porter  <dick@ximian.com>
15700
15701         * object.h: Add a synchronisation mutex struct to MonoObject
15702
15703         * object.c (mono_new_object): Initialise the object
15704         synchronisation mutexes
15705
15706         * icall.c: System.Threading.Monitor internal calls
15707         
15708         * threads-pthread.h:
15709         * threads-pthread.c: System.Threading.Monitor internal calls
15710
15711         * threads-types.h: New file, includes the system-specific thread
15712         structures
15713         
15714         * threads-pthread-types.h:
15715         * threads-pthread-types.c: New files, handle pthread-specific
15716         synchronisation types
15717
15718         * threads-dummy-types.h: 
15719         * threads-dummy-types.c: New files of dummy support for
15720         thread-specific types
15721
15722         * metadata.c:
15723         * image.c:
15724         * pedump.c: include mono-endian.h not endian.h
15725         
15726         * Makefile.am: More threads files.
15727         Name mono-endian.h not endian.h
15728
15729 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
15730
15731         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
15732         stuff and implement a few more bits.
15733         * icall.c: a field needs to be dereferenced twice. Do not use the same
15734         name for two variables in the same scope.
15735         * image.c, image.h: cleanups.
15736
15737 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
15738
15739         * class.c (mono_class_metadata_init): bug fix: compute the right size
15740
15741 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
15742
15743         * icall.c: implemented some of the Reflection internalcalls.
15744         * image.c, image.h: start writing out the PE/COFF image.
15745         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
15746         that does the reverse than decode_blob_size ().
15747         * object.c: use mono_metadata_encode_value (). Move here
15748         temporary implementation of mono_string_to_utf8 ().
15749         * rawbuffer.c: make malloc_map static.
15750
15751 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15752
15753         * metadata.c: fix type comparison for arrays.
15754         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
15755         Added a couple of new classes to monodefaults.
15756         * icall.c: added a couple of Reflection-related internalcalls.
15757         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
15758         Added a byval_arg MonoType to MonoClass.
15759
15760 2001-09-28  Dick Porter  <dick@ximian.com>
15761
15762         * icall.c:
15763         * threads-pthread.h: 
15764         * threads-pthread.c: Implemented internal calls for
15765         LocalDataStoreSlot operations.  Applied mutexes around all shared
15766         data.  Reworked the thread creation and Start() operations to
15767         avoid a race condition.
15768         
15769         * threads-dummy.h:
15770         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
15771
15772 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
15773
15774         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
15775
15776 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
15777
15778         * class.c, loader.c: warn and return NULL instead of erroring out.
15779         * icall.c: added System.AppDomain::getCurDomain().
15780         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
15781
15782 2001-09-25  Dick Porter  <dick@ximian.com>
15783
15784         * threads-pthread.h:
15785         * threads-pthread.c: Implemented timed thread joining and added
15786         System.Threading.Thread::Join_internal internal call
15787
15788         * icall.c: Added System.Threading.Thread::Join_internal internal call
15789
15790         * threads-dummy.h:
15791         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
15792
15793 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
15794
15795         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
15796         mono_string_intern () to implement the semantics of the ldstr opcode
15797         and the interning of System.Strings.
15798         * icall.c: provide hooks to make String::IsIntern and String::Intern
15799         internalcalls.
15800
15801 2001-09-23  Dick Porter  <dick@ximian.com>
15802
15803         * threads-dummy.c: 
15804         * threads-dummy.h: New files of dummy threading routines
15805
15806         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
15807         support code based on system specifics
15808
15809         Rename PTHREAD_LIBS to THREAD_LIBS
15810         
15811 2001-09-23  Dick Porter  <dick@ximian.com>
15812
15813         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
15814         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
15815         internal calls.
15816         (mono_thread_init): Set up a Thread object instance to return when
15817         the main thread calls Thread.CurrentThread
15818         (mono_thread_cleanup): Wait for all subthreads to exit
15819
15820         * icall.c: New internal calls for System.Threading.Thread::Sleep
15821         (including Schedule) and CurrentThread
15822
15823         * threads.h: New file, to insulate thread-specific stuff from the
15824         rest of the code
15825
15826 2001-09-21  Dick Porter  <dick@ximian.com>
15827
15828         * threads-pthread.h: 
15829         * threads-pthread.c: New file, for handling pthreads-style
15830         threading support.  Start() now starts a new thread and executes
15831         the ThreadStart delegate instance.
15832
15833         * icall.c: Added the internalcall for
15834         System.Threading.Thread::Start_internal
15835
15836         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
15837
15838 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
15839
15840         * loader.c: work around the different signatures for delegates
15841         constructors csc generates in compiled code vs the ones compiled in mscorlib.
15842
15843 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
15844
15845         * class.h, class.c: add mono_class_get_field_from_name ().
15846         * *: Fix C comments and other ANSI C issues.
15847
15848 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
15849
15850         * endian.h, assembly.c: fix some endianness issues.
15851
15852 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
15853
15854         * loader.h, load.c: add delegate_class to mono_defaults.
15855         Handle runtime provided methods in mono_get_method ().
15856
15857 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
15858
15859         * loader.c (mono_get_method): use pinvoke for internal call
15860
15861         * icall.c: use pinvoke for internal call
15862
15863         * loader.c (method_from_memberref): set the method name
15864
15865 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
15866
15867         * metadata.c: help the compiler generate better code for
15868         mono_class_from_mono_type ().
15869
15870 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
15871
15872         * class.c (mono_class_metadata_init): delayed computing of the
15873         class size to mono_class_metadata_init ()
15874
15875 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
15876
15877         * class.c, class.h: add an interfaces member to MonoClass.
15878         * image.c, image.h: add assembly_name field to MonoImage
15879         from the assembly table.
15880         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
15881
15882 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
15883
15884         * class.c: Handle Array in mono_class_from_mono_type ().
15885         * metadata.c, pedump.c: some endian fixes.
15886
15887 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
15888
15889         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
15890         * metadata.c: fix small problem introduced with the latest commit.
15891
15892 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
15893
15894         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
15895         We don't need a MonoMetadata pointer anymore to compare signatures in
15896         mono_metadata_signature_equal (), update callers.
15897         Reduced memory usage an number of allocations for MonoMethodHeader and
15898         MonoMethodSignature.
15899
15900 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
15901
15902         * metadata.c: added compare for szarray.
15903
15904 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
15905
15906         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
15907         and add a couple more types to it and mono_defaults. Give an hint on
15908         classes that need implementing in our corlib and are referenced
15909         in mscorlib.
15910
15911 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
15912
15913         * class.h, class.c: keep track if a class is also an Enum.
15914         * loader.c: Implement a couple more types for use in libffi
15915         marshalling. Gives better diagnostics when failing to dlopen
15916         a library. Set method->klass for P/Invoke methods, too.
15917
15918 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
15919
15920         * class.c, class.h: add a MonoType this_arg to MonoClass that
15921         represents a pointer to an object of the class' type that
15922         can be used by the interpreter and later the type cache.
15923         Add best guess alignment info for valuetype objects.
15924
15925 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
15926
15927         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
15928         into MonoType: one less level of indirection and allocation and
15929         simplifies quite a bit of code. Added cache for MonoTypes that are
15930         used frequently, so that we don't need to allocate them all the time.
15931
15932 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
15933
15934         * class.c (mono_class_create_from_typedef): System.Enum is also a
15935         value type, although it does not derive from System.ValueType
15936         (maybe a bug in the ms compiler?)
15937
15938         * metadata.c (mono_type_size): return the right size for value types
15939
15940         * loader.c (mono_get_method): only initialize method header if not abstract
15941
15942         * class.c (mono_class_from_mono_type): use mono_default values. 
15943
15944 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
15945
15946         * *: use MonoClass pointers instead of <type_tokens>
15947         
15948         * class.h: new flag: metadata_inited.
15949
15950         * class.c (mono_class_metadata_init): impl.
15951         (mono_class_instance_size): impl.
15952         (mono_class_data_size): impl.
15953
15954 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15955
15956         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
15957         MonoClass now has the name and name_space fields. 
15958         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
15959         mono_get_method () takes and optional MonoClass as argument.
15960         Removed mono_typedef_from_name() and added mono_class_token_from_name()
15961         instead that takes advantage of a map from class names to typedef
15962         tokens in MonoImage.
15963
15964 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
15965
15966         * metadata.c: zero is not a valid alignment boundary.
15967         Merge MONO_TYPE_VOID in default decoding code.
15968
15969 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
15970
15971         * image.h: merged MonoMetadata into MonoImage
15972
15973         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
15974         identify the type of elements.
15975
15976 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
15977
15978         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
15979         * cil-coff.h: split MonoMSDOSHeader and add size info.
15980         * image.c: add some consistency checks.
15981         * metadata.c: fix row size computation: one programmer
15982         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
15983         add explanation for the locator routine.
15984         Fix decoding of size in method header.
15985         
15986 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
15987
15988         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
15989         (g_concat_dir_and_file): Bring g_concat_dir_and_file
15990         function from gnome-libs.  This uses the right path separator
15991         based on the OS, and also works around a bug in some systems where
15992         a double slash is not allowed. 
15993         (default_assembly_name_resolver): Use g_concat_dir_and_file
15994         (mono_assembly_open): ditto.
15995
15996 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
15997
15998         * metadata.c (mono_metadata_signature_equal): impl.
15999
16000         * *: void is now a realy MonoType (instead of using NULL)
16001         
16002         * metadata.c (do_mono_metadata_parse_type): use
16003         mono_metadata_parse_type to parse void value.
16004
16005 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
16006
16007         * metadata.c, metadata.h: in the signature and method header store
16008         only the space required for holding the loca vars and incoming arguments.
16009
16010 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
16011
16012         * metadata.c (do_mono_metadata_parse_type): treat void like any
16013         other type (instead of assigning NULL);
16014
16015 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
16016
16017         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
16018
16019 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
16020
16021         * image.c (do_mono_image_open): added a cache for arrays.
16022
16023 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
16024
16025         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
16026         decode a single column from a row in a metadata table and changes
16027         to take advantage of it in the typedef locator (gives a nice speed up).
16028         Store offset info for function params.
16029
16030 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
16031
16032         * image.h (MONO_IMAGE_IS_CORLIB): removed 
16033
16034 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
16035
16036         * assembly.c: how could mono_assembly_close () had ever worked?
16037         * metadata.c, metadata.h: provide offset info for local vars.
16038         Implement mono_type_size () to take care of alignment as well
16039         as size (it was mono_field_type_size in cli/class.c before).
16040
16041 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
16042
16043         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
16044
16045         * assembly.h (CORLIB_NAME): set to corlib.dll
16046
16047         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
16048
16049 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
16050
16051         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
16052         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
16053         tokentype.h: massive namespace cleanup.
16054
16055 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
16056
16057         * metadata.h, metadata.c: decode exception clauses when parsing method header.
16058
16059 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
16060
16061         * metadata.c (mono_metadata_free_type): added check for type !=
16062         NULL (void) before calling mono_metadata_free_type()
16063
16064 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
16065
16066         * metadata.h, row_indexes.h: added header with enumerations to use
16067         to index in the columns from tables in metadata and to decode coded
16068         tokens: we should start using this instead of embedding magic numbers
16069         all over the code.
16070
16071 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
16072
16073         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
16074         Move metadata_t info from cli_image_info_t to MonoImage, where
16075         it's easily accessible. Changed all the uses accordingly.
16076         Added the method and class caches to MonoImage.
16077         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
16078         and mono_metadata_decode_value () signature to be more consistent
16079         with the other parse functions (and simplify code). Taken advantage
16080         of zero-length array allocation with GCC. Removed reduntant (and
16081         wrong) MonoFieldType struct and use MonoParam instead. Changed
16082         mono_metadata_parse_field_type () to use common code for parsing.
16083         Added mono_metadata_typedef_from_field () and
16084         mono_metadata_typedef_from_method () to lookup a typedef index from a
16085         field or method token.
16086         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
16087
16088 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
16089
16090         * metadata.c (mono_metadata_parse_field_type): Implement. 
16091         (do_mono_metadata_parse_type): Split engine from
16092         mono_metadata_parse_type, so that we can create smaller structures
16093         for things that just have one pointer to the MonoType (look at
16094         the MonoFieldType)
16095
16096 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
16097
16098         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
16099         as Jan Gray found out, it is incorrect. 
16100
16101 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
16102
16103         * assembly.c: Implement asssembly loading.  This loads an image
16104         and loads all the referenced assemblies.  Come to think of it, we
16105         could always do lazy loading of the assemblies. 
16106
16107         * image.c (mono_image_open): Keep loaded images in a hashtable.
16108
16109         * image.h (MonoImage): Add reference count.
16110
16111 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
16112
16113         * assembly.c (mono_assembly_open): Keep track of the file name in
16114         case the assembly has no ASSEMBLY table.
16115
16116         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
16117         from get.c here.
16118
16119 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
16120
16121         * metadata.c, metadata.h: decode local vars in method header
16122         parse function. Change callers accordingly.
16123
16124 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
16125
16126         * metadata.h, cil-coff.h: protect against multiple inclusion.
16127         Added some new structures to hold information decoded from metadata:
16128         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
16129         and relevant decoding/free functions.
16130         * metadata.c: implement decoding functions. Add warning for out of bounds
16131         index in mono_metadata_locate(). Implement mono_get_method () to retreive
16132         all the info about a method signature and invocation. Remove check on
16133         uninitialized local var in parse_mh() and fix memory leak.
16134
16135 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
16136
16137         * metadata.h: More macros.
16138
16139         * tokentype.h: New file.
16140
16141 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
16142
16143         * assembly.c: added a consistency check and initialize
16144         some structures with g_new0().
16145         * metadata.c: fixed a couple more bugs in table size computation
16146         and add other checks for out-of bound access to metadata.
16147
16148 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
16149
16150         * metatada.c: fix bugs computing table sizes. Spew a
16151         warning when index in string heap is out of bounds.
16152
16153 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
16154
16155         * metadata.h: Add a couple of macros to manipulate tokens. 
16156
16157 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
16158
16159         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
16160         cli_section_tables).
16161
16162 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
16163
16164         * metadata.c (mono_metadata_user_string): New function, provides
16165         access to the UserString heap. 
16166
16167 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
16168
16169         * metadata.c: Add inline documentation.
16170
16171 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
16172
16173         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
16174         files. 
16175
16176 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
16177
16178         * typeattr.h: New file, TypeAttribute flags. 
16179
16180 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
16181
16182         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
16183         mono_assembly_ensure_section): Section loading code.
16184         (load_section_tables): Load the sections.
16185
16186         * mono/metadata/metadata.c (mono_metadata_locate_token,
16187         mono_metadata_locate): Functions to locate the information
16188         definition given a token or a table and an index.
16189         (mono_metadata_compute_table_bases): New.
16190         (compute_size): New function to compute the sizes of the various
16191         tables.
16192
16193         * mono/metadata/metadata.h: Finish listing the different index
16194         types. 
16195
16196         * mono/metadata/pedump.c: Improve to dump new information.
16197
16198 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
16199
16200         * mono/metadata/metadata.c: Entered all the tables matching
16201         Beta2. 
16202
16203         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
16204
16205