982062318b9e5fd00fb5608e890e9bcce29b3b95
[mono.git] / mono / metadata / ChangeLog
1 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
2
3         * loader.c icall.c: Fix warnings.
4
5 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
6
7         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8         blittable types. Fixes #70864.
9
10 2004-12-29  Martin Baulig  <martin@ximian.com>
11
12         * icall.c
13         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
14
15         * reflection.c (mono_method_get_object): Create a
16         "System.Reflection.MonoGenericMethod" for inflated methods; don't
17         call mono_get_inflated_method().
18
19         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
20
21 2004-12-27  Martin Baulig  <martin@ximian.com>
22
23         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24         (MonoMethodInflated): Added `inflated' field.
25
26         * class.c (mono_class_inflate_generic_method): Don't really
27         inflate the method here; just set the `is_inflated' flag in the
28         MonoMethod.
29         (mono_class_get_inflated_method): Actually inflate the method here
30         if it's not already inflated; we use the MonoMethodInflated's new
31         `inflated' field as a cache.
32
33 2004-12-26  Martin Baulig  <martin@ximian.com>
34
35         * class.c
36         (inflate_generic_class): Moved some code out of inflate_generic_type().
37         (mono_class_inflate_generic_method): If we're already inflated,
38         inflate the context and use the declaring method; ie. make sure
39         the declaring method of an inflated method is always the generic
40         method definition.
41         (mono_class_create_from_typedef): Create
42         `class->generic_container->context->gclass'.
43
44 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
45
46         * metadata-internals.h, marshal.c, reflection.c: More
47         MonoGHashTable->GHashTable.
48
49         * domain-internals.h, class.c: Change MonoGHashTable's into
50         GHashTables for some cases where no gc stuff is used
51
52         All users: update apis
53
54 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
55
56         * metadata.c (builtin_types): Make this `const'. Makes this get
57         put into the shareable section.
58         (mono_metadata_init): Casts to make gcc happy.
59
60 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
61
62         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
63
64 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
65
66         * icall.c: Added an internal call to retrieve the position and length
67         of assembly-level declarative security attributes (RequestMinimum, 
68         RequestOptional and RequestRefuse). This is used by the Assembly class
69         to re-create the corresponding permission sets.
70
71 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
72
73         * marshal.c: fix the stelemref wrapper to be type correct
74         (and faster).
75
76 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
77
78         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
79         to do key & 0x7fffffff. Hashtable already does this. It just
80         results in longer code.
81
82 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
83
84         * appdomain.c: Bump corlib version.
85         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
86         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
87         * reflection.c|h: Add functions to get declarative security infos
88         (blob position and length) for assemblies, classes and methods.
89
90 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
91
92         * reflection.c: sort the constant table (bug #70693).
93
94 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
95
96         * object-internals.h, threads.c, domain.c: add accessors for
97         the MonoThread and MonoDomain tls keys.
98
99 2004-12-18  Martin Baulig  <martin@ximian.com>
100
101         * class.c (inflate_generic_type): If we're inflating a generic
102         instance, set `ngclass->context->container = context->container';
103         ie. the container we inflated into.
104
105         * metadata.c (mono_metadata_parse_generic_param): Reflect above
106         inflate_generic_type() changes.
107
108 2004-12-17  Martin Baulig  <martin@ximian.com>
109
110         * class-internals.h
111         (MonoGenericClass): Replaced `MonoType *generic_type' with
112         `MonoClass *generic_class'.  Removed `dynamic_info'; if
113         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
114         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
115
116 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
117
118         * exception.c (mono_exception_from_token): New helper function.
119
120 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
121
122         * assembly.c (mono_assembly_load_with_partial_name): Call 
123         mono_assembly_loaded before invoking the preload hooks. Fixes
124         #70564.
125
126         * object-internals.h (MonoThread): Change culture_info and 
127         ui_culture_info into an array.
128
129         * threads.c: Cache culture info objects from more than one appdomain.
130
131         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
132         current UI culture.
133
134 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
135
136         * threads.h threads.c appdomain.c: Clear the culture_info field of
137         all threads during unloading if they point to an object in the dying
138         appdomain.
139
140 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
141
142         * culture-info.h (TextInfoEntry): New struct
143         * object-internals.h: sync with managed
144         * locales.c: fill the `text_info_data' field
145         * culture-info-tables.h: update
146
147 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
148
149         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
150         collector.
151
152 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
153
154         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
155         (ves_icall_ModuleBuilder_getMethodToken): Ditto
156
157 2004-12-12  Martin Baulig  <martin@ximian.com>
158
159         * mono-debug-debugger.c (write_type): If we're an enum and the
160         builtin types have already been initialized, call mono_class_init().
161
162 2004-12-11  Martin Baulig  <martin@ximian.com>
163
164         * metadata.c (mono_metadata_load_generic_params): Added
165         `MonoGenericContainer *parent_container' argument; automatically
166         compute `container->is_method'; pass the correct owner to
167         get_constraints().      
168
169         * reflection.c (compare_genericparam): Sort the GenericParam table
170         according to increasing owners. 
171
172 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
173
174         * profiler.c: allow disabling the default profiler.
175
176 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
177
178         * decimal.c, icall.c: allow disabling System.Decimal support.
179
180 2004-12-09  Marek Safar <marek.safar@seznam.cz>
181
182         * reflection.c: Add support for null attribute arguments.
183
184 2004-12-09  Martin Baulig  <martin@ximian.com>
185
186         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
187         names to get rid of compiler warnings.
188
189 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
190
191         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
192         mono_marshal_load_type_info (). Fixes #69625.
193         (mono_marshal_get_ptr_to_struct): Likewise.
194
195 2004-12-08  Martin Baulig  <martin@ximian.com>
196
197         * mono-debug.h: Bumped version number to 47.
198
199         * mono-debug-debugger.c
200         (mono_debugger_event_handler, mono_debugger_event): Take two
201         guint64 arguments insteed of a gpointer and a guint32.  
202
203 2004-12-08  Martin Baulig  <martin@ximian.com>
204
205         * debug-mono-symfile.h
206         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
207         `address' to `native_offset'.
208
209 2004-12-08  Martin Baulig  <martin@ximian.com>
210
211         * class.c (mono_class_create_from_typespec): Only inflate if we
212         either have `context->gclass' or `context->gmethod'.
213
214 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
215
216         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
217
218         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
219
220         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
221
222         * reflection.c (mono_assembly_get_object): Remove the workaround put
223         in for the release.
224         
225         * appdomain.c: Use the corlib_internal field from MonoAssembly.
226
227         * appdomain.c: Bump corlib version.
228
229         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
230         be visible in other appdomains.
231
232 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
233
234         * threads.c: Interlocked inc and dec for longs were messed up,
235         use a KISS based impl for this. Fixes 70234
236
237 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
238
239         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
240
241 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
242
243         * icall.c: fix to follow policy not to allow struct
244         arguments in icalls.
245
246 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
247
248         * process.c: make the patch that handles spaces in file paths work
249         on mono/windows too.
250
251 2004-12-06  Martin Baulig  <martin@ximian.com>
252
253         * class.c (mono_class_create_generic): Call
254         mono_class_setup_supertypes() if we're dynamic.
255         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
256
257 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
258
259         * object-internals.h: Add new fields to MonoThread.
260
261         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
262
263         * icall.c threads-types.h threads.c: Add new icalls.
264
265         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
266
267         * object-internals.h (MonoReflectionAssembly): Sync object layout with
268         managed side.
269
270         * appdomain.c: Bump corlib version.
271
272         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
273         internal assemblies. Fixes #69181.
274
275 2004-12-05  Martin Baulig  <martin@ximian.com>
276
277         * class.c (mono_class_inflate_generic_signature): Make this a
278         no-op if `context' is NULL or we don't have any type parameters;
279         also copy `sentinelpos'.        
280
281 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
282
283         * image.c: Add unbox_wrapper_cache.
284
285         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
286
287         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
288         function generator.
289         
290         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
291         Fixes #70173.
292
293         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
294         
295 2004-12-04  Martin Baulig  <martin@ximian.com>
296
297         * loader.c (mono_method_get_signature_full): New public function;
298         like mono_method_get_signature(), but with an additional
299         `MonoGenericContext *' argument.
300
301         * class.c (mono_class_inflate_generic_signature): Formerly known
302         as inflate_generic_signature(); make this public.
303
304 2004-12-04  Martin Baulig  <martin@ximian.com>
305
306         * metadata.c
307         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
308         instead of a `MonoGenericContainer *'.  
309         (mono_metadata_parse_array_full): Likewise.
310         (mono_metadata_parse_signature_full): Likewise.
311         (mono_metadata_parse_method_signature_full): Likewise.
312         (mono_metadata_parse_generic_inst): Likewise.
313         (mono_metadata_parse_generic_param): Likewise.
314         (mono_metadata_parse_mh_full): Likewise.
315         (mono_type_create_from_typespec_full): Likewise.
316
317 2004-12-03  Martin Baulig  <martin@ximian.com>
318
319         * class-internals.h (MonoGenericContainer): Replaced the
320         `MonoGenericContext * pointer with a `MonoGenericContext'
321         structure and made it the first element.
322
323 2004-12-03  Martin Baulig  <martin@ximian.com>
324
325         * class.c
326         (inflate_generic_type): Set the `context->container' when creating
327         a new MonoGenericContext.
328         (mono_class_inflate_generic_method): Likewise.
329         (mono_class_create_from_typespec): Just use `context->container'
330         to get the container.
331
332         * loader.c (method_from_methodspec): Set `context->parent' from
333         `context->container' - and if that's a method container, use its
334         parent.  Also set the `context->container' when creating a new
335         MonoGenericContext.
336         (mono_get_method_from_token): Use just `context->container' to get
337         the container.
338
339         * metadata.c (do_mono_metadata_parse_generic_class): Also set
340         `gclass->context->container'.
341
342         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
343         the `context->container' when creating a new MonoGenericContext.
344
345 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
346
347         * reflection.c (compare_genericparam): Sort params with identical
348         owner by their number. Fixes gen-111 on sparc.
349
350 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
351
352         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
353         around the domain changes.
354
355         * appdomain.c (mono_domain_unload): Handle the case when the thread
356         calling Unload is itself being aborted during unloading. Fixes #70022.
357
358         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
359
360         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
361         checkpoint_func as an icall so it gets a wrapper.
362         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
363         in the cross-appdomain wrappers too.
364
365         * threads.c (mono_thread_has_appdomain_ref): Make this public.
366
367         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
368
369         * reflection.c: Fix some memory leaks.
370         
371 2004-12-02  Martin Baulig  <martin@ximian.com>
372
373         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
374
375         * metadata.c (generic_class_cache): New static hashtable.
376         (mono_metadata_lookup_generic_class): New public method.
377
378 2004-12-02  Martin Baulig  <martin@ximian.com>
379
380         * class.c (mono_class_create_from_typedef): Call
381         mono_class_setup_parent() and mono_class_create_mono_type() before
382         parsing the interfaces.
383
384 2004-12-02  Martin Baulig  <martin@ximian.com>
385
386         * metadata.c (generic_inst_cache): New static hashtable.
387         (mono_metadata_lookup_generic_inst): New public function.
388         (mono_metadata_inflate_generic_inst): New public function.
389         (mono_metadata_parse_generic_inst): New public function.
390         (do_mono_metadata_parse_generic_class): Use the new
391         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
392         since this'll also use the cache.
393
394         * reflection.c (mono_reflection_bind_generic_method_parameters):
395         Use mono_metadata_lookup_generic_inst() to use the new cache.
396
397         * class.c (inflate_mono_type): Use
398         mono_metadata_inflate_generic_inst() to inflate a generic
399         instance; this'll also use the new cache.
400
401         * loader.c (method_from_methodspec): Use
402         mono_metadata_parse_generic_inst() and
403         mono_metadata_inflate_generic_inst() rather than parsing it
404         manually, so we can use the new cache.
405
406 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
407
408         * threads.c (wait_for_tids): Do not incorrectly free threads when 
409         the wait times out.
410
411 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
412
413         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
414         iter->args based on whether parameters are passed in registers (i.e.
415         MONO_ARCH_REGPARMS is defined)
416
417 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
418
419         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
420         the exception message. Fixes #70070.
421         (method_from_methodspec): Fix warnings.
422
423 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
424
425         * process.c: (complete_path) return the path quoted
426
427 2004-12-01  Martin Baulig  <martin@ximian.com>
428
429         * class-internals.h (MonoGenericInst): New structure.
430         (MonoGenericClass): Replaced `type_argc', `type_argv' and
431         `is_open' with `MonoGenericInst *inst'.
432         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
433         `is_open' with `MonoGenericInst *inst'.
434
435 2004-11-30  Martin Baulig  <martin@ximian.com>
436
437         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
438
439         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
440         to `generic_class_cache'.
441
442         * metadata.c
443         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
444         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
445         (mono_generic_inst_is_valuetype): Renamed to
446         mono_generic_class_is_valuetype().
447
448         * class-internals.h
449         (MonoGenericInst): Renamed to MonoGenericClass.
450         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
451         (MonoClass): Renamed `generic_inst' to `generic_class'.
452         (MonoGenericContext): Renamed `ginst' to `gclass'.
453
454         * object-internals.h
455         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
456
457         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
458         mono_reflection_generic_class_initialize().
459
460         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
461         now known as "System.Reflection.MonoGenericClass".
462         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
463
464 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
465
466         * class-internals.h: Added a flag field to MonoClass to cache the
467         declarative security attributes actions associated with the class.
468         * domain-internals.h: Added booleans to MonoJitInfo to cache the
469         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
470         applicable to the JITted method.
471         * reflection.c|h: Added functions to extract (as flags) which security
472         actions are available (declaratively) for a method, class or assembly.
473         * metadata.c|h: Added functions to search the declarative security
474         table in the metadata.
475         
476 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
477
478         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
479         EXPORTEDTYPES are already in the class name cache, so there is no
480         need to add extra code here to look at them. Just removes a bit of
481         cruft.
482
483         (ves_icall_System_Environment_get_TickCount): No need for #if
484         WINDOWS. We already have the code in io-layer.
485
486 2004-11-28  Martin Baulig  <martin@ximian.com>
487
488         * loader.c
489         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
490         Fixes gen-112.cs.
491
492 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
493
494         * assembly.c (do_mono_assembly_open): Instead of having a
495         conditional WITH_BUNDLE, incorporate support for bundles here, by
496         having a global `bundles' variable holding a pointer to the actual
497         bundles. 
498
499         (mono_register_bundled_assemblies): New API call used by the
500         bundle code. 
501
502         See mkbundle.1 for details.
503         
504 2004-11-27  Martin Baulig  <martin@ximian.com>
505
506         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
507         the vtable for generic methods.
508
509 2004-11-26  Martin Baulig  <martin@ximian.com>
510
511         * metadata.c
512         (mono_metadata_generic_method_hash): New public function.
513         (mono_metadata_generic_method_equal): Likewise.
514
515         * class-internals.h
516         (MonoGenericContainer): Added `GHashTable *method_hash'.
517
518         * reflection.c (ReflectionMethodBuilder): Added
519         `MonoGenericContainer *generic_container'.
520         (reflection_methodbuilder_to_mono_method): Don't create a new
521         MonoGenericContainer each time we're called.
522         (mono_reflection_bind_generic_method_parameters): Use
523         `container->method_hash' to cache the results so we don't create a
524         different method if we're called several times with the same
525         arguments.
526
527         * loader.c (method_from_methodspec): Use the new
528         `container->method_hash' here, too.
529
530 2004-11-26  Martin Baulig  <martin@ximian.com>
531
532         * class.c (inflate_generic_signature): Correctly compute
533         `res->has_type_parameters'.
534         (mono_class_vtable): Use the `has_type_parameters' flag to
535         determine whether we're a generic method.
536
537         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
538
539 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
540
541         * object.c (mono_runtime_run_main): Fix a small memory leak.
542
543 2004-11-25  Martin Baulig  <martin@ximian.com>
544
545         * class.c (set_generic_param_owner): Fixed the loop.
546
547 2004-11-25  Martin Baulig  <martin@ximian.com>
548
549         * object.c (mono_class_vtable): Don't create any JIT wrappers for
550         generic methods.
551
552 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
553
554         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
555         names. Fixes #69787.
556
557 2004-11-24  Martin Baulig  <martin@ximian.com>
558
559         * class.c (mono_class_create_generic_2): If we don't have a
560         `ginst->parent', inflate `gklass->parent' to get our parent.
561
562 2004-11-24  Martin Baulig  <martin@ximian.com>
563
564         * reflection.c (compare_genericparam): Correctly sort the
565         GenericParam table; fixes #69779.
566
567 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
568
569         * reflection.c: When writing a PE file, don't create a huge
570         buffer in memory. Just write the arrays we have to the file.
571         This reduces memory usage.
572
573         * metadata-internals.h: MonoDynamicStream pefile is no longer used
574         globally.
575
576 2004-11-17  Martin Baulig  <martin@ximian.com>
577
578         * class.c (mono_class_init): Don't setup `class->parent' for
579         dynamic instances; moved this to mono_class_generic_2().
580         (mono_class_create_generic): Also set `klass->inited' for dynamic
581         generic instances.
582         (mono_class_create_generic_2): Don't do anything for dynamic
583         generic instances.  Set `klass->parent' here and also call
584         mono_class_setup_parent() here. 
585
586         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
587         `MonoType *parent' argument; set `ginst->parent' before calling
588         mono_class_create_generic_2(), so we set the correct parent.
589
590 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
591
592         * reflection.c: allow getting attributes from ModuleBuilder
593         (used by ikvm).
594
595 2004-11-17  Martin Baulig  <martin@ximian.com>
596
597         * class.c (mono_class_create_from_typedef): If a type parameter is
598         inherited from an outer class, set its owner to that class.
599
600 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
601
602         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
603           for (int*) written size. This fixes bug #69592.
604
605 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
606
607         * icall.c: Added IsAuthenticodePresnet internal call.
608         * image.c|h: New function that check a MonoImage for an Authenticode
609         signature in the certificate PE data directory.
610         * security.c|h: New internal call to ask the runtime if an 
611         Authenticode signature seems referenced in the PE header.
612
613 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
614
615         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
616
617         * reflection.c (mono_image_create_pefile): Free the assembly streams
618         after writing out the assembly file.
619
620         * object.c (mono_runtime_run_main): Fix small memory leak.
621
622         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
623         property access modifiers. Fixes #69389.
624
625 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
626
627         * domain.c, object.c, object-internals.h, domain-internals.h,
628         object.h, marshal.c: keep dynamic code info per domain.
629
630 2004-11-15  Martin Baulig  <martin@ximian.com>
631
632         * class.c (mono_type_get_name_recurse): Put type arguments in
633         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
634         see bug #68387.
635
636 2004-11-15  Martin Baulig  <martin@ximian.com>
637
638         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
639         (mono_class_setup_vtable): When computing `the_cname' for a
640         generic instance, don't include the namespace since we'd otherwise
641         add it twice.
642
643 2004-11-15  Martin Baulig  <martin@ximian.com>
644
645         * class.c (mono_class_create_generic): Changed return type to void.
646         (mono_class_create_generic_2): New public function; setup
647         `class->method', `class->field' and `class->interfaces' here
648         instead of in mono_class_init().
649
650         * class.h (mono_class_create_generic): Moved to class-internals.h.
651
652 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
653
654         * reflection.c (mono_image_create_pefile): take a file HANDLE.
655         rather than writing to memory, write to this file. Right now,
656         we are just writting into a buffer, and copying that. However
657         we can avoid the buffer later.
658
659         (mono_dynamic_stream_reset): new function
660
661         * icall.c, object-internals.h: update for the above.
662
663 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
664
665         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
666         have been using gc'd memory. First it is slower, unlikely
667         the comment in the source code said, secondly, it increases
668         our footprint to do it in the gc.
669
670         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
671         the method so that it does not have to copy to managed code.
672
673 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
674
675         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
676
677 2004-11-12  Martin Baulig  <martin@localhost>
678
679         * reflection.c (mono_image_create_token): Allow generic method
680         definitions here, since they may appear in an `.override'; see
681         gen-98/gen-99 for an example.
682
683 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
684
685         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
686         #69365.
687
688         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
689         descriptive.
690
691 2004-11-11  Martin Baulig  <martin@ximian.com>
692
693         * class.c (mono_class_setup_vtable): In an explicit interface
694         implementation, the method name now includes the arity.
695
696 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
697
698         * object.c (mono_array_full_copy): Fix warning.
699
700 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
701
702         * appdomain.c: Removed look_for_method_by_name(). Use the new method
703         mono_class_get_method_from_name() instead.
704         
705         * class-internals.h: Added two new types of wrappers. 
706         Added MonoRemotingTarget enum. Added new trampoline function type, which
707         takes an additional MonoRemotingTarget value as parameter, so it is
708         possible to request a trampoline for a specific target.
709         
710         * class.c: Added new mono_class_get_method_from_name() method.
711         
712         * class.h: In MonoRemoteClass, we can have now to vtables, one for
713         general remoting sinks and one specific for cross domain calls.
714         
715         * debug-helpers.c: Added new wrapper names.
716         
717         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
718         of a remote class.
719         
720         * image.c: Porperly delete value objects form the remoting invoke hashtable.
721         
722         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
723         with several other methods (mono_marshal_get_xappdomain_dispatch,
724         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
725         and others) can generate a fast remoting wrapper for cross domain calls.
726         More information can be found in docs/remoting.
727         Other changes: Removed mono_find_method_by_name, and used
728         mono_class_get_method_from_name instead.
729         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
730         is stored in the remoting invoke hashtable.
731         
732         * marshal.h: published the new method for getting the xdomain wrapper,
733         and also added a method for getting the adequate wrapper for a given
734         method and target.
735         
736         * object-internals.h, object.c: Added a couple of methods for capying and
737         cloning arrays.
738         Modified mono_install_remoting_trampoline, which takes the new remoting
739         trampoline that has a remoting target as parameter.
740         mono_class_proxy_vtable now also takes a remoting target as parameter, and
741         will return the most suitable vtable for the target.
742         Added mono_remote_class_vtable, which returns the vtable of a remote class
743         (which can be the normal remoting vtable or the xdomain vtable).
744         
745         * threads.c: the xdomain invoke and dispatch wrappers must also be
746         protected against interruptions.
747
748 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
749
750         * icall.c: use memmove in BlockCopyInternal when the source and
751         destination arrays are the same.
752
753 2004-11-09  Martin Baulig  <martin@ximian.com>
754
755         * class-internals.h (MonoGenericContainer): Removed `method' and
756         `signature', replaced them with `is_method' and `is_signature'
757         flags.  Added `context'.
758
759         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
760         instead of a `MonoGenericContainer *'.
761
762         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
763         for dynamic type parameters.
764         (mono_metadata_load_generic_params): Setup `container->context'.
765
766         * reflection.c (mono_reflection_setup_generic_class): Setup
767         `tb->generic_container->context'.
768         (do_mono_reflection_bind_generic_parameters): Use
769         mono_class_inflate_generic_type() to correctly inflate types,
770         rather than using our own hack just for MONO_TYPE_VAR.
771
772 2004-11-09  Martin Baulig  <martin@ximian.com>
773
774         * class.c (mono_class_inflate_generic_method): Small fix; don't
775         crash here.
776
777         * icall.c
778         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
779         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
780         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
781         (ves_icall_Type_BindGenericParameters): Likewise.
782         (ves_icall_Type_get_IsGenericInstance): Likewise.
783         (ves_icall_Type_GetGenericParameterPosition): Likewise.
784         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
785         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
786         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
787
788 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
789
790         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
791         assembly versions and public key tokens. Fixes #69113.
792
793 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
794
795         * metadata.c: fix bug introduced with the type cache changes
796         on 2004-11-06.
797
798 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
799
800         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
801         the MonoClass pointer instead of the token in exception clauses.
802         * reflection.c: updates for the above and make the code not depend
803         on the structure of MonoExceptionClause.
804
805 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
806
807         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
808         Add support for dynamic assemblies. Fixes #69114.
809
810         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
811
812 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
813
814         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
815         since most only those methods use it. the code member of
816         MonoMethodPInvoke was dead, so that can be removed too. Also,
817         remove inline_count (again, not used), and move slot so that it
818         can share bits with some other flags. This saves 8 bytes in the
819         structure and gives us about 50 kb back for mcs helloworld.cs
820
821         * *.[ch]: Do naming changes for the above.
822
823         * loader.c (mono_method_get_header): Lazily init the header
824         on first access.
825         (mono_get_method_from_token): don't init the header here
826         (mono_free_method): the header may never be allocated
827
828         Overall, this saves 150 kb of unmanaged allocations
829         for mcs helloworld.cs. That accounts for 10% of the unmanaged
830         memory at runtime.
831         
832         * loader.c, loader.h (mono_method_get_header): new accessor.
833
834         * *.[ch]: use the above method. Prepares us to lazily load
835         the header.
836
837         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
838         three warnings, which are actual bugs (see 69206).
839
840         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
841         unused. Saves a cool 4 bytes / method.
842
843 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
844
845         * metadata.c (builtin_types): Add types for System.Object here.
846         (mono_metadata_parse_type_full): Cache MonoType*'s that are
847         for a class or valuetype from klass->this_arg or klass->byval_arg.
848
849         On mcs for a hello world, this gets us down from 21836 MonoType's
850         to 14560.
851
852         (mono_metadata_free_type): Account for the above change.
853
854 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
855
856         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
857         exception instead of asserting if name is null.
858         (ves_icall_System_AppDomain_GetData): Ditto.
859
860 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
861
862         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
863         EnumBuilder.
864
865         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
866         Return NULL when the domain does not have entry_assembly set.
867
868         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
869         Add a 'resource_modules' argument.
870         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
871
872         * reflection.c (mono_reflection_create_runtime_class): Move setting
873         of wastypebuilder here, so mono_get_type_object () returns a MonoType
874         for enums too.
875
876         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
877         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
878         Throw an ArgumentNullException if 'ptr' is null.
879
880         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
881         assemblies here. Fixes #69020.
882
883 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
884
885         * reflection.c (build_compressed_metadata): Fix the previous patch for
886         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
887         the stack.
888
889 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
890
891         * assembly.c (mono_assembly_names_equal): Allow a match if one of
892         the cultures is false. Fixes #69090.
893
894         * reflection.c (build_compressed_metadata): Fix invalid memory read 
895         detected by valgrind.
896         
897         * reflection.c (mono_reflection_get_type): Avoid triggering a 
898         TypeResolve multiple times for the same type. Fixes #65577.
899
900 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
901
902         * marshal.c: Avoid using ldftn to call managed functions. It is
903         much slower than just a call.
904
905         * reflection.c (mono_module_get_object): free the basename we
906         allocate here from glib.
907         
908         * reflection.c (ensure_runtime_vtable): make sure to free
909         overrides.  Also, we were allocating an array of MonoMethod not an
910         array of MonoMethod*.
911
912         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
913
914         * image.c (mono_image_close): free image->guid here.
915
916 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
917
918         * reflection.c: Fix some spec conformance issues with the PE file
919         structures so mcs compiled apps run on the Net 2.0 beta.
920
921 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
922
923         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
924         Implement this. Fixes #67264.
925
926         * debug-helpers.h debug-helpers.c marshal.c: Move 
927         mono_find_method_by_name to debug-helpers.c.
928
929 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
930
931         * object.c (mono_release_type_locks): type_initialization_hash is
932         a GHashTable.
933
934         * reflection.c object.c object-internals.h: Fix warnings.
935
936         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
937         without accessors. Fixes #61561.
938
939         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
940         application base from the root domain if not set. Fixes #65641.
941         (mono_runtime_init): Fix warning.
942
943 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
944
945         * appdomain.c: call mono_thread_pool_init.
946         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
947         of worker threads based on the number of CPUs and the environment
948         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
949         for non-windows (windows) systems.
950
951 2004-10-27  Chris Toshok  <toshok@ximian.com>
952
953         * mono-debug-debugger.c (write_class): don't call mono_class_init
954         here, as even with the check for (!klass->init_pending), we get
955         into a situation where we're hitting cycles in class
956         initialization.  Fixes #68816.
957
958 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
959
960         * image.c: Avoid overwriting values in the loaded_images_hash when an
961         assembly is loaded multiple times. Fixes #61152.
962
963         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
964         so multiple satellite assemblies for the same name can be loaded.
965         Fixes #68259.
966
967         * mono_domain_assembly_preload: Actually return the loaded assembly, 
968         not NULL.
969
970         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
971         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
972
973         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
974         pending finalizers are not invoked after the appdomain has been 
975         unloaded. Fixes #67862.
976
977 2004-10-22  Martin Baulig  <martin@ximian.com>
978
979         * mono-debug-debugger.c
980         (mono_debugger_runtime_invoke): Don't box valuetypes.
981
982 2004-10-22  Chris Toshok  <toshok@ximian.com>
983
984         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
985         don't hide private methods.
986
987 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
988
989         * icall.c: Allows the runtime to "share" (when known) the public key
990         token of an assembly. This avoid the need to recalculate the token 
991         (from the public key) in managed code.
992
993 2004-10-21  Chris Toshok  <toshok@ximian.com>
994
995         * debug-helpers.c (append_class_name): argh, revert last patch.
996         
997 2004-10-21  Chris Toshok  <toshok@ximian.com>
998
999         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1000         not '/', so that it matches what the debugger uses to look up
1001         methods.
1002
1003 2004-10-21  Martin Baulig  <martin@ximian.com>
1004
1005         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1006         public method; this is called each time an exception is thrown and
1007         allows the debugger to use exception catch points.
1008
1009 2004-10-21  Martin Baulig  <martin@ximian.com>
1010
1011         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1012         the stack pointer and the exception object in some struct and pass
1013         that to the debugger.
1014
1015 2004-10-21  Chris Toshok  <toshok@ximian.com>
1016
1017         * mono-debug-debugger.c (do_write_class): add instance/static
1018         event support.  We don't expose "raise" or "other" yet.
1019         (event_is_static): new method.
1020
1021 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1022
1023         * mono-debug-debugger.c
1024         (mono_debugger_handle_exception): Remove
1025         bogus return value for fussy compilers.
1026
1027 2004-10-20  Martin Baulig  <martin@ximian.com>
1028
1029         * mono-debug-debugger.c
1030         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1031         (mono_debugger_handled_exception): Likewise.
1032
1033 2004-10-20  Martin Baulig  <martin@ximian.com>
1034
1035         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1036         MONO_DEBUGGER_EVENT_EXCEPTION.
1037
1038         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1039         public function to send the debugger a notification for an
1040         exception and inform it about a catch/finally clause.
1041
1042 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1043
1044         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1045         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1046         fix 2.95 build. 
1047
1048         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1049
1050 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1051
1052         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1053         marshalled as [In,Out]. Fixes #58325.
1054
1055 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1056
1057         * reflection.c (mono_method_body_get_object): Implement some fields.
1058
1059 2004-10-12  Martin Baulig  <martin@ximian.com>
1060
1061         * reflection.c (mono_reflection_bind_generic_parameters): Small
1062         fix, correctly retrieve our parent from a generic instance.
1063
1064 2004-10-12  Martin Baulig  <martin@ximian.com>
1065
1066         * metadata.c (mono_metadata_generic_param_equal): We always have
1067         an owner.
1068
1069         * class.c
1070         (mono_class_from_generic_parameter): We need to have an owner.
1071         (my_mono_class_from_generic_parameter): Likewise.
1072
1073         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1074         mono_reflection_create_generic_class() and added a new
1075         mono_reflection_setup_generic_class().  
1076         (mono_reflection_initialize_generic_param): If we're a nested
1077         generic type and inherited from the containing class, set our
1078         owner to the outer class.
1079
1080 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1081
1082         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1083
1084         * reflection.c (mono_method_body_get_object): New function to create
1085         a MethodBody object.
1086
1087         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1088
1089 2004-10-11  Martin Baulig  <martin@ximian.com>
1090
1091         * metadata.c (_mono_metadata_type_equal): Renamed to
1092         do_mono_metadata_type_equal() and made static.
1093
1094 2004-10-11  Martin Baulig  <martin@ximian.com>
1095
1096         * appdomain.c: Bump corlib version number to 28.
1097
1098 2004-10-10  Martin Baulig  <martin@ximian.com>
1099
1100         * class-internals.h
1101         (MonoGenericInst): Added `MonoGenericContainer *container'.
1102         (MonoGenericMethod): Likewise.
1103         (MonoGenericContext): Likewise.
1104         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1105
1106         * metadata.c
1107         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1108         (do_mono_metadata_parse_generic_inst): Likewise.
1109         (mono_metadata_parse_type_full): New public method.  This is the actual
1110         mono_metadata_parse_type() implementation - with an additional
1111         `MonoGenericContainer *' argument.
1112         (mono_metadata_parse_array_full): Likewise.
1113         (mono_metadata_parse_signature_full): Likewise.
1114         (mono_metadata_parse_method_signature_full): Likewise.
1115         (mono_metadata_parse_mh_full): Likewise.
1116         (mono_type_create_from_typespec): Likewise.
1117         (mono_metadata_interfaces_from_typedef_full): New public method;
1118         this is similar to the other _full() methods, but we take a
1119         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1120         (mono_metadata_parse_generic_param): Take an additional
1121         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1122         from that container.
1123         (mono_metadata_generic_param_equal): New static method to compare
1124         two type parameters.
1125         (_mono_metadata_type_equal): New static method; takes an
1126         additional `gboolean signature_only' argument - if true, we don't
1127         compare the owners of generic parameters.
1128         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1129         with a TRUE argument - do a signature-only comparision.
1130
1131         * loader.c: Use the new _full() methods and pass the
1132         MonoGenericContainer to them.
1133
1134         * object-internals.h (MonoReflectionTypeBuilder): Added
1135         `MonoGenericContainer *generic_container' field.
1136         (MonoReflectionMethodBuilder): Likewise.
1137
1138 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1139
1140         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1141         case initial images of dynamic assemblies.
1142
1143         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1144
1145         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1146
1147         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1148         length of event->other array.
1149         (typebuilder_setup_events): Ditto.
1150
1151         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1152         'assembly_by_name' and add an 'assemblies' list.
1153
1154         * assembly.h assembly.c: Add a new search hook for determining whenever
1155         an assembly is already loaded. Use this instead of searching in the
1156         loaded_assemblies list.
1157
1158         * domain.c appdomain.c: Implement the new search hook so loaded 
1159         assemblies are now scoped by appdomain. Fixes #67727.
1160
1161 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1162
1163         * threads.c (mono_thread_attach): Initialize synch_lock field so
1164         mono_thread_detach works again.
1165
1166         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1167         'lib' too. Fixes #63130.
1168
1169 2004-10-06  Jackson Harper  <jackson@ximian.com>
1170
1171         * culture-info-tables.h: regenerated.
1172
1173 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1174
1175         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1176         implemented by other interfaces in the result. Fixes #65764.
1177         
1178         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1179         Handle unloadable modules without crashing.
1180
1181         * image.c (load_modules): Revert the previous patch since modules must
1182         have a fixed index inside the array.
1183         
1184         * image.c (load_modules): Don't include native modules in the modules
1185         array.
1186
1187 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1188
1189         * reflection.h: Add param_defaults field.
1190
1191         * reflection.c: Add support for parameter defaults in dynamic methods.
1192         Fixes #64595.
1193
1194         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1195         an empty string when a type has no namespace. Fixes #64230.
1196
1197 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1198
1199         * tabledefs.h: Added "internal" security actions to support non-CAS
1200         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1201         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1202
1203 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1204
1205         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1206         constructor of abstract class. Fixes #61689.
1207
1208 2004-10-04  Martin Baulig  <martin@ximian.com>
1209
1210         * class-internals.h (MonoGenericContainer): New type.
1211         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1212         `MonoGenericContainer *generic_container'.
1213         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1214         `MonoGenericContainer *generic_container'.
1215
1216         * metadata.c (mono_metadata_load_generic_params): Return a
1217         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1218         removed the `num' argument.
1219
1220 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1221
1222         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1223         for dynamic images.
1224
1225         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1226         machine fields.
1227
1228         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1229
1230         * reflection.c: Save pe_kind and machine values into the generated
1231         image file.
1232
1233         * appdomain.c: Bump corlib version number.
1234
1235         * object-internals.h: Reorganize layout of LocalBuilder.
1236
1237         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1238         New helper function.
1239
1240         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1241         created MonoType for dynamic types. Fixes #66180.
1242
1243 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1244
1245         * threadpool.c: the ares hashtable needs a critical section around it.
1246         this prevents some nasty segfaults
1247
1248 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1249
1250         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1251         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1252         bug 67324).
1253         
1254 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1255
1256         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1257         
1258 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1259
1260         * image.c: Always canonicalize image file names, to avoid loading
1261         the same assembly twice when referenced using a relative path.
1262
1263 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1264
1265         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1266
1267         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1268
1269         * marshal.c: Fix warnings.
1270
1271 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1272
1273         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1274         attempting to marshal the delegate_trampoline as the method_addr.
1275         This patch has a static hashtable of marshalled delegates so that 
1276         we can map delegate_trampoline addresses back to delegates.  This
1277         allows a delegate passed to managed code to be passed back into native
1278         code.  Fixes #67039
1279
1280 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1281
1282         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1283
1284         * reflection.c (method_encode_code): Align method headers properly.
1285         Fixes #66025.
1286
1287 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1288
1289         * marshal.c: In the runtime invoke wrapper, reset the abort
1290         exception if it is cached. This avoids the automatic rethrowal of 
1291         the exception after the catch of the wrapper. Also check for pending
1292         interruptions before calling the managed method. This is done using
1293         the new method emit_thread_force_interrupt_checkpoint, since the
1294         normal checkpoint method is ignored when running the invoke wrapper.
1295         * object.c: If the abort exception is rethrown, set the abort_exc
1296         field of the thread, so it will be rethrown aftere every catch.
1297         * threadpool.c: Only run an interruption checkpoint if what has been
1298         requested is a stop of the thread (aborts will be ignored).
1299         * threads.c: By default, a thread will now never be interrumped while
1300         running the runtime invoke wrapper (this ensures that runtime_invoke
1301         will always return to the caller if an exception pointer is provided).
1302         There is a new special method mono_thread_force_interruption_checkpoint()
1303         to force an interruption checkpoint even if running a protected
1304         wrapper, which is used by the same runtime invoke wrapper to do a check
1305         at a safe point.
1306
1307 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1308
1309         * object.c, object-internals.h: Implemented mono_release_type_locks,
1310         which releases the cctor locks held by a thread.
1311         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1312         by a thread. Added mono_thread_exit() method to be used to safely stop
1313         a thread.
1314
1315 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1316
1317         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1318         Move null check before dereference.  Avoid indexing beyond the end
1319         of the 'modules' array.
1320
1321 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1322
1323         * metadata-internals.h (MonoImage): Add module_count field.
1324         * image.c (load_modules): Set image->module_count.
1325         (mono_image_load_file_for_image): Use image->module_count.
1326         * reflection.c (mono_image_load_module): Append to image->modules array 
1327         of dynamic assembly.
1328         (mono_module_get_object): Fix loop to actually increment index.
1329         Use image->module_count.
1330         * assembly.c (mono_assembly_load_references): Use image->module_count.
1331         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1332         Likewise.
1333
1334 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1335
1336         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1337         Avoid assert on generic types.
1338
1339 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1340
1341         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1342
1343         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1344
1345         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1346         function to convert a MarshalSpec structure to its managed counterpart.
1347
1348         * reflection.c: Fix warnings.
1349         
1350         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1351         field.
1352
1353         * icall.c (mono_create_icall_signature): Fix build.
1354
1355 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1356
1357         * icall.c: Add MakePointType icall.
1358
1359         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1360         warnings.
1361
1362 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1363
1364         * threadpool.c: reuse allocated slots in the queue.
1365
1366 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1367
1368         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1369
1370         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1371
1372         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1373         previous change.
1374
1375         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1376         ThrowOnUnmappableChar.
1377
1378         * icall.c (ves_icall_Type_GetPacking): New icall.
1379
1380 2004-09-24  Martin Baulig  <martin@ximian.com>
1381
1382         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1383
1384 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1385
1386         * appdomain.c:
1387         (mono_domain_set): allow setting a domain that is being unloaded.
1388         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1389         being unloaded.
1390
1391 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1392
1393         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1394         the GetCustomAttributes icall.
1395
1396 2004-09-23  Martin Baulig  <martin@ximian.com>
1397
1398         * object-internals.h (MonoReflectionGenericParam): Replaced
1399         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1400         with `guint32 attrs'.
1401
1402 2004-09-23  Martin Baulig  <martin@ximian.com>
1403
1404         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1405
1406 2004-09-23  Martin Baulig  <martin@ximian.com>
1407
1408         * object-internals.h (GenericParameterAttributes): New enum.
1409
1410 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1411
1412         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1413         
1414         * class.c (init_events): Fill out event->other field.
1415
1416         * class.c: Fix warnings.
1417
1418         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1419
1420 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1421
1422         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1423         walk which doesn't supply the IL offset.
1424
1425 2004-09-22  Martin Baulig  <martin@ximian.com>
1426
1427         * reflection.c (mono_reflection_setup_internal_class): If we're
1428         System.ValueType, System.Object or System.Enum, set
1429         `klass->instance_size' and create the vtable.
1430         (mono_reflection_create_internal_class): If we're an enum type,
1431         get the base class from our current corlib.
1432
1433 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1434
1435         * reflection.h (MonoResolveTokenError): New type.
1436
1437         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1438         icall.
1439
1440         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1441
1442 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1443
1444         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1445         Support also calling constructors, but only for already allocated objects.
1446
1447 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1448
1449         * reflection.c (type_get_qualified_name): If the klass is null
1450         return the typename to avoid a NullRefEx.
1451         (encode_cattr_value): Get the qualified name of the boxed type,
1452         not the underlying enumtype.  Fixes #62984.
1453
1454 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1455
1456         * marshal.c: Fix problems with previous checkin.
1457
1458 2004-09-21    <vargaz@freemail.hu>
1459
1460         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1461         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1462
1463         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1464
1465 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1466
1467         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1468         should only return a type for pointers, arrays, and passbyref types.
1469         Fixes bug #63841.
1470
1471 2004-09-21  Martin Baulig  <martin@ximian.com>
1472
1473         * domain.c (mono_debugger_check_runtime_version): New public
1474         function.
1475
1476         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1477
1478 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1479
1480         * reflection.c: Added missing sort to the declarative security 
1481         attributes table. MS implementation stops seeing the attributes if the
1482         token number regress in the table (as shown by ildasm and permview).
1483
1484 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1485
1486         * object-internals.h (MonoReflectionModule): Add 'token' field.
1487         
1488         * reflection.c (mono_reflection_get_token): Add support for Module
1489         and Assembly.
1490         (mono_module_get_object): Set 'token' field.
1491         (mono_module_file_get_object): Set 'token' field.
1492
1493         * icall.c: Add new Assembly and Module icalls.
1494
1495         * appdomain.c: Bump corlib version.
1496
1497 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1498
1499         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1500         tokens of metadata objects.
1501
1502         * reflection.h reflection.c (mono_reflection_get_token): New function
1503         to obtain the token of a metadata object.
1504
1505         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1506
1507 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1508
1509         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1510         
1511         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1512
1513 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1514
1515         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1516         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1517         AssemblyBuilder to access the permissions set in the class lib.
1518         * reflection.c: Added security attributes encoding step in 
1519         mono_image_build_metadata.
1520         * tabledefs.h: Added new security actions defined in 2.0:
1521         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1522
1523 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1524
1525         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1526         macro parameter.
1527
1528 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1529  
1530         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1531           finalized. There where random SIGSEVs at program termination, when
1532           an object being finalized was trying to do a string comparison and
1533           the current culture was already finalized.
1534  
1535 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1536
1537         * threads.c: call thread_cleanup before finishing the thread if we get
1538         there.
1539
1540 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1541
1542         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1543         assemblies from the parent. Fixes #65665.
1544
1545 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1546
1547         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1548         modifiers.
1549
1550 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1551
1552         * reflection.h: add prototype for mono_get_dbnull_object
1553         * reflection.c: add prototypes for get_default_param_value_blobs 
1554         and mono_get_object_from_blob for fussier compilers
1555
1556 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1557  
1558         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1559         false deadlock checks in class initialization.
1560  
1561 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1562
1563         * image.c (mono_image_addref): Fix comment.
1564
1565         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1566         possible.
1567
1568 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1569
1570         * reflection.c (mono_param_get_objects): Modified to return
1571         ParameterInfo.DefaultValue object.
1572
1573         (get_default_param_value_blobs):
1574         (mono_get_object_from_blob):
1575         (mono_get_dbnull_object): New helper routines. 
1576
1577         * object.c (mono_get_constant_value_from_blob): New helper routine
1578         carved out from get_default_field_value ()
1579
1580         * object-internals.h (mono_get_constant_value_from_blob): Added
1581         function declaration.
1582
1583 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1584
1585         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1586         referenced assemblies. Fixes #62135.
1587
1588         * exception.h exception.c (mono_get_exception_file_not_found2): New
1589         helper function.
1590
1591 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1592
1593         * class.h class.c: Add mono_type_get_underlying_type ().
1594
1595 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1596
1597         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1598         Fix GetTypes() to support dynamically created assemblies.
1599
1600 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1601
1602         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1603         
1604         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1605         previous patch.
1606
1607         * reflection.h reflection.c loader.c: Allow dynamic construction of
1608         pinvoke methods. Fixes #65571.
1609         
1610         * reflection.c (mono_reflection_get_type): Revert previous change since
1611         it causes regressions.
1612
1613 2004-09-08  Martin Baulig  <martin@ximian.com>
1614
1615         * class.c (class_compute_field_layout): Don't call
1616         mono_class_layout_fields() for open generic instances.
1617
1618 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1619         * threads.c appdomain.c: fix typo in GC macro
1620
1621 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1622
1623         * threads.c: don't call mono_thread_detach() in start_wrapper(),
1624         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
1625
1626 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
1627
1628         * image.c (mono_image_close): Applied patch from 
1629         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
1630         assembly is loaded multiple times from data.
1631         
1632         * image.c (mono_image_open): Fix warning.
1633
1634 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1635
1636         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
1637         once. Fixes #58334.
1638         
1639         * reflection.c (mono_reflection_create_runtime_class): Initialize
1640         klass->nested_classes. Fixes #61224.
1641
1642 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1643
1644         * threads.c: sched_yield() on exit, to allow threads to quit.
1645
1646 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1647
1648         * object.c (mono_unhandled_exception): Remove leftover debug code.
1649
1650 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
1651
1652         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
1653
1654 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1655
1656         * marshal.c (emit_marshal_array): Really null terminate string arrays.
1657         
1658         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
1659
1660 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1661
1662         * marshal.c (emit_marshal_array): Null terminate string arrays.
1663         
1664         * marshal.c (raise_auto_layout_exception): Fix warning.
1665
1666         * reflection.c (mono_param_get_objects): Initialize the default value
1667         with DBNull.Value, not null. Fixes #62123.
1668
1669 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
1670
1671         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
1672         throw an exception with a cute explanation.
1673
1674 2004-09-06  Dick Porter  <dick@ximian.com>
1675
1676         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
1677         Close the new process's thread handle, as we don't use it.  The
1678         handle stays around forever otherwise.
1679
1680 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1681
1682         * object.c (arith_overflow): Fix warning.
1683
1684         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
1685         calling conventions in method refs. Fixes #65352.
1686
1687         * reflection.c: Fix warnings.
1688
1689 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1690
1691         * icall.c: Add a new icall for Array.Clear
1692
1693 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1694
1695         * object.c: When allocating an array, we have to throw
1696         an overflow exception if any of the lengths are < 0.
1697
1698 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1699
1700         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
1701         properly. Also move implementation of string array marshalling to 
1702         managed code. Fixes #42316.
1703
1704 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1705
1706         * assembly.c: provide more information when loading an assembly fails.
1707
1708 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1709
1710         * filewatcher.c: don't expect the development fam package to be
1711         installed.
1712
1713 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
1714
1715         * marshal.c: Make a copy of the signature cookie since it will be
1716         freed by the caller.
1717         
1718         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
1719
1720         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
1721
1722         * metadata.c (mono_metadata_free_marshal_spec): New function to free
1723         marshal specs.
1724
1725         * marshal.c: More refactoring.
1726         
1727         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
1728         smaller functions.
1729
1730 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
1731
1732         * object.c: In mono_message_invoke, fill the output parameter array after
1733           calling the managed method (it was done before the call). This fixes
1734           bug #59299.
1735
1736 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1737
1738         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
1739         as well.
1740
1741 2004-09-02  Martin Baulig  <martin@ximian.com>
1742
1743         * class.c (mono_class_instance_size): Don't allow generic type
1744         definitions or open generic instances.
1745         (mono_class_array_element_size): If we're a value type, call
1746         mono_class_instance_size() on the original class.
1747
1748         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
1749         handle generic instances.
1750
1751         * mono-debug-debugger.c (write_type): Handle generic instances
1752         like classes.
1753
1754 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1755
1756         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
1757         the allocation request fails. Fixes #65089.
1758
1759         * object.c (mono_runtime_free_method): Do not call mono_free_method.
1760         
1761         * object.c (mono_runtime_free_method): New function to free a dynamic
1762         method.
1763
1764         * marshal.c (mono_delegate_free_ftnptr): New function to free the
1765         delegate trampoline.
1766
1767         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
1768         with hasthis as dynamic,
1769
1770         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
1771
1772         * domain.c (mono_jit_info_table_remove): New function to remove an
1773         entry from the jit info table.
1774
1775         * class-internals.h (MonoMethod): Add 'dynamic' field.
1776
1777         * loader.c: Fix warnings.
1778
1779 2004-09-01  Martin Baulig  <martin@ximian.com>
1780
1781         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
1782         instead of mono_debugger_lock() because the latter one is a no-op
1783         unless running in the debugger.
1784
1785 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
1786
1787         * class.c (class_compute_field_layout): Classes with auto-layout or
1788         reference fields are not blittable.
1789         
1790 2004-09-01  Dick Porter  <dick@ximian.com>
1791
1792         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
1793         mono_image_get_filename() to get the assembly location.
1794
1795         * icall.c:
1796         * metadata.h: Fix compile warnings
1797
1798 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
1799
1800         * class.c (class_compute_field_layout): System.Object is blittable.
1801
1802         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
1803         as in/out. Fixes #59909.
1804
1805 2004-09-01  Martin Baulig  <martin@ximian.com>
1806
1807         * metadata.h (MONO_TYPE_ISREFERENCE): Call
1808         mono_metadata_generic_inst_is_valuetype() if we're a generic
1809         instance to check whether our underlying type is a reference type.
1810
1811 2004-09-01  Martin Baulig  <martin@ximian.com>
1812
1813         * metadata.c (mono_type_size): If we're a generic instance, call
1814         mono_class_value_size() for value types.
1815
1816 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
1817
1818         * marshal.c: Implement more custom marshalling functionality. Fixes
1819         #64915.
1820
1821 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1822
1823         * mono-debug.c, debug-mono-symfile.c: add some locking love.
1824
1825 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
1826
1827         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
1828
1829         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
1830
1831         * icall.c: Fix some warnings.
1832
1833         * threads.c (abort_appdomain_thread): Fix unref errors.
1834         (mono_thread_current): Fix THREAD_DEBUG define.
1835
1836 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
1837
1838         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
1839
1840         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
1841
1842 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
1843
1844         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
1845         string arrays.
1846
1847 2004-08-28  Martin Baulig  <martin@ximian.com>
1848
1849         * metadata.c
1850         (mono_metadata_generic_inst_is_valuetype): New public function.
1851
1852         * metadata.h (MONO_TYPE_ISSTRUCT): Call
1853         mono_metadata_generic_inst_is_valuetype() if we're a generic
1854         instance to check whether our underlying type is a valuetype.
1855
1856 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
1857
1858         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
1859         #63768.
1860
1861 2004-08-25  Martin Baulig  <martin@ximian.com>
1862
1863         * loader.c (mono_get_method_from_token): Abstract methods can also
1864         be generic and thus have type parameters.
1865
1866         * metadata-internals.h
1867         (MonoDynamicImage): Added `GPtrArray *gen_params'.
1868
1869         * reflection.c (mono_image_get_generic_param_info): Don't create a
1870         metadata row, just add an entry to the `gen_params' array.
1871         (build_compressed_metadata): Sort the `gen_params' array and then
1872         actually create the metadata.
1873
1874 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1875
1876         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
1877
1878 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1879
1880         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
1881
1882 2004-08-24  Martin Baulig  <martin@ximian.com>
1883
1884         * class.cs (mono_class_is_subclass_of): Like an interface, a
1885         generic instance also derives from System.Object.
1886
1887 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
1888
1889         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
1890         custom modifiers to be in any order. Fixes #61990.
1891
1892 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1893
1894         * object.c: Register mono_object_new_fast icall.
1895         
1896         * object.c (mono_class_get_allocation_ftn): Return to calling
1897         mono_object_new_fast, since it seems faster to compute the object 
1898         size in unmanaged code than passing it as a parameter.
1899
1900         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
1901
1902         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
1903         this function with Boehm as the oom handler, so we don't have to check
1904         the result of GC_malloc.
1905
1906         * object.c: Remove checks for oom.
1907
1908         * object.h object.c (mono_class_get_allocation_ftn): New function to
1909         return the icall which can be used to allocate an instance of a given
1910         class. 
1911
1912         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
1913
1914         * class-internals.h: Add 'enabled' field.
1915
1916 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
1917
1918         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
1919
1920 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
1921         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
1922         value 0x0010.
1923
1924 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1925
1926         * appdomain.c: use the Tls function for appdomain too,
1927         at Zoltan's request. Actually return in mono_context_get
1928
1929         * appdomain.c, profiler.c, threads.c: use __thread
1930
1931 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1932
1933         * appdomain.c threads.c: Call GC_CreateThread on windows.
1934
1935         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
1936         multiple libraries since this don't work on windows.
1937
1938 2004-08-18  Martin Baulig  <martin@ximian.com>
1939
1940         * class-internals.h
1941         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
1942         MonoMethodHeader.
1943
1944         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
1945         MonoMethodNormal since we also need it for abstract and interface
1946         methods.
1947
1948         * reflection.c
1949         (build_compressed_metadata): Sort the GenericParam table.
1950         (mono_image_create_token): Added `gboolean create_methodspec'
1951         argument; this is false when generating a MethodImpl token.
1952         (reflection_methodbuilder_to_mono_method): Abstract and interface
1953         methods may also have generic parameters.
1954
1955 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1956
1957         * appdomain.c: thread local alloc
1958
1959 2004-08-17  Martin Baulig  <martin@ximian.com>
1960
1961         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
1962
1963         * icall.c
1964         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
1965         argument.
1966
1967         * class.c (mono_type_get_full_name): New public function.
1968         (mono_type_get_name): Don't include the type arguments.
1969
1970 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1971
1972         * Makefile.am: Build static versions of libmetadata and libmonoruntime
1973         for inclusion into the mono executable.
1974
1975 2004-08-16  Martin Baulig  <martin@ximian.com>
1976
1977         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
1978         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
1979
1980 2004-08-14  Martin Baulig  <martin@ximian.com>
1981
1982         * class.c (dup_type): Also copy the `byref' field.
1983
1984 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1985
1986         * reflection.c (create_dynamic_mono_image): Revert the last change 
1987         since it breaks bootstrap.
1988
1989 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1990
1991         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
1992
1993         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
1994         not free them with g_free.
1995
1996 2004-08-11  Martin Baulig  <martin@ximian.com>
1997
1998         * reflection.c (mono_reflection_setup_internal_class): Also call
1999         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2000
2001 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2002
2003         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2004         called during default (first) AppDomain creation. Keep track of
2005         Evidence when loading assemblies.
2006
2007 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2008
2009         * opcodes.c, opcodes.h: reduce runtime relocations.
2010
2011 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2012
2013         * culture-info.h, locales.c: fixes and chages to sue the new
2014         optimized format of the locale data.
2015         * culture-info-tables.h: regenerated.
2016
2017 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2018         
2019         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2020
2021 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2022
2023         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2024         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2025         * domain-internals.h: icall declaration.
2026         * icall.c: icall registration.
2027         * object-internals.h: New fields in MonoAssembly for CAS.
2028
2029 2004-08-05  Duncan Mak  <duncan@ximian.com>
2030
2031         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2032         CEE_LDELEM_ANY.
2033
2034 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2035
2036         * reflection.c: fix to deal with object[] arrays in custom ctors
2037         (bug #62550).
2038
2039 2004-08-05  Martin Baulig  <martin@ximian.com>
2040
2041         * class.c (mono_class_array_element_size): Added support for
2042         generic instances and correctly handle "recursive" types.
2043
2044 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2045
2046         * assembly.c: Fix warnings.
2047
2048 2004-08-04  Martin Baulig  <martin@ximian.com>
2049
2050         * class.c
2051         (mono_type_get_name_recurse): Added `gboolean include_arity'
2052         argument specifying whether or not we should include the generic
2053         arity in the type name.
2054         (_mono_type_get_name): New static function.
2055         (mono_class_setup_vtable): If we're a generic instance, don't
2056         include the generic arity in the names of explicit method
2057         implementations.        
2058
2059 2004-08-03  Martin Baulig  <martin@ximian.com>
2060
2061         * class.c (mono_type_get_name_recurse): Enclose the generic type
2062         arguments in `<', '>'.
2063
2064 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2065
2066         * gc.c: make GC warning messages use the trace API, they are just
2067         noise to most of the users.
2068
2069 2004-08-03  Martin Baulig  <martin@ximian.com>
2070
2071         * debug-mono-symfile.c (read_string): Correctly read the string.
2072
2073 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2074
2075         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2076         
2077         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2078         icalls.
2079         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2080
2081 2004-07-30  Martin Baulig  <martin@ximian.com>
2082
2083         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2084         Reflect latest symbol writer changes.   
2085
2086 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2087
2088         * object.c: always create an object if null is passed
2089         to Invoke() where a valuetype is expected.
2090
2091 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2092
2093         * marshal.c (mono_marshal_init): make managed
2094         signatures match native ones better for 64bits.
2095
2096 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2097
2098         * appdomain.c: hack to build correctly the private bin path on windows.
2099         Fixes bug #61991.
2100
2101 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2102
2103         * assembly.c: Load mscorlib from the correct framework directory
2104           (mono/<version>/mscorlib.dll).
2105         * appdomain.h: Added prototypes for new functions.
2106         * internals.h: Added some prototypes.
2107         * domain.c: When initializing the runtime, get from the executable and
2108           the configuration files the runtime version that the app supports.
2109           Added support methods for reading app.exe.config. Added list of versions
2110           supported by the JIT. Added two new methods: mono_init_from_assembly,
2111           which initializes the runtime and determines the required version from
2112           the provided exe file, and mono_init_version, which initializes
2113           the runtime using the provided version.
2114         * icall.c: Get machine.config from version-specific directory.
2115         * reflection.c: When generating an image, embed the version number
2116           of the current runtime.
2117
2118 2004-07-28  Dick Porter  <dick@ximian.com>
2119
2120         * socket-io.c
2121         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2122         returned sockaddr size before creating the remote address object.
2123         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2124         61608.
2125
2126 2004-07-28  Dick Porter  <dick@ximian.com>
2127
2128         * locales.c (string_invariant_compare_char): Fix invariant char
2129         compares between upper and lower cases.  Fixes bug 61458.
2130
2131 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2132         
2133         * marshal.c: actually cache stelem.ref wrappers.
2134         
2135 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2136
2137         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2138         sections and remove the mono_cli_rva_map () function.
2139
2140 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2141
2142         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2143         by Geoff Norton (<gnorton@customerdna.com>).
2144
2145 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2146
2147         * class.c: fix class loads for pointer types (typeof(int) !=
2148         typeof(int*)).
2149
2150 2004-07-27  Martin Baulig  <martin@ximian.com>
2151
2152         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2153         reading the debugging information from an external ".mdb" file.
2154
2155 2004-07-24  Martin Baulig  <martin@ximian.com>
2156
2157         * reflection.c (mono_image_get_type_info): Only write a class
2158         layout entry if we actually have a size or a packing size.
2159
2160 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2161
2162         * reflection.c (type_get_fully_qualified_name): 
2163         insert cast to get type checking of ?: with non-gcc compilers
2164
2165 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2166
2167         * rand.c: use g_getenv for both lookups of
2168         MONO_EGD_SOCKET
2169
2170 2004-07-17  Martin Baulig  <martin@ximian.com>
2171
2172         * reflection.c (mono_reflection_bind_generic_method_parameters):
2173         Set `gmethod->reflection_info'.
2174
2175 2004-07-17  Martin Baulig  <martin@ximian.com>
2176
2177         * class.c (mono_class_create_from_typedef): Insert the newly
2178         created class into the hash table before computing the interfaces
2179         since we could be called recursively.
2180
2181 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2182
2183         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2184         function to implement stelem.ref in managed code
2185         * class-internals.h, debug-helpers.c: a new wrapper type
2186         for the above.
2187
2188 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2189
2190         * gc.c: allow GC handles to work even when no GC is compiled in.
2191         Fix part of bug #61134 (GetAddrOfPinnedObject).
2192
2193 2004-07-13  Peter Williams  <peter@newton.cx>
2194  
2195         * process.c (complete_path): Make sure we don't attempt to execute
2196         directories.
2197  
2198 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2199
2200         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2201           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2202           and will add/subtract the hour if needed
2203
2204 2004-07-12  Martin Baulig  <martin@ximian.com>
2205
2206         * reflection.c (mono_field_get_object): If we have
2207         `field->generic_info', take the attributes from
2208         `field->generic_info->generic_type'.    
2209
2210 2004-07-12  Martin Baulig  <martin@ximian.com>
2211
2212         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2213         This function must be called before initializing the runtime.
2214         (mono_debug_init_1): New function; call this after initializing
2215         the runtime, but before loading the assembly.  It tells the
2216         debugger to load corlib and the builtin types.
2217
2218         * mono-debug-debugger.c: Did some larger changes in the debugging
2219         code; support recursive class declarations, make sure we actually
2220         add all classes.
2221
2222 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2223
2224         * debug-helpers.c: undo my previous patch and fixed the real issue in
2225         ../mini/exceptions-x86.c
2226
2227 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2228
2229         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2230         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2231         called from other .cctors.
2232
2233 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2234
2235         * loader.c: Removed the mono_loader_wine_init hack now that we are
2236         doing a managed version of Windows.Forms.
2237
2238 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2239
2240         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2241         threadpool.c, threads.c: remove static data from rootset.
2242
2243 2004-07-09  Dick Porter  <dick@ximian.com>
2244
2245         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2246         Don't do any more processing if the matched length was 0.  It was
2247         increasing the size of the string before.  Fixes bug 61167.
2248
2249 2004-07-09  Dick Porter  <dick@ximian.com>
2250
2251         * socket-io.h:
2252         * socket-io.c
2253         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2254         Add support for SO_PEERCRED if its available.
2255
2256 2004-07-09  Peter Bartok <pbartok@novell.com>
2257         * loader.c: winelib.exe.so error message is now only displayed if
2258         MONO_DEBUG is set. To help us avoid questions when people are trying
2259         out the new Managed.Windows.Forms.
2260
2261 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2262
2263         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2264         for isinst and castclass wrappers.
2265
2266         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2267         to libmetadata from the JIT, so they could be used by the marshalling
2268         code and the interpreter.
2269
2270         * marshal.c: Register marshalling related JIT icalls here instead of
2271         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2272         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2273
2274         * metadata.h: Remove unneeded marshalling conversions.
2275
2276         * opcodes.c: Update for new opcodes.
2277         
2278 2004-07-08  Martin Baulig  <martin@ximian.com>
2279
2280         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2281         (mono_debug_get_domain_data): Make this function static.
2282
2283 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2284
2285         * gc.c, object.h: add nice GC handle API for embedders.
2286
2287 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2288
2289         * reflection.c: more changes for the new api
2290
2291         * object.c: When we reflect on a field w/ a constant value, it
2292         will not have a memory location, so we must access metadata. Also,
2293         allow easier reading of strings so that we can read them from
2294         the constant data.
2295
2296         * class.c (mono_class_layout_fields): no need for literal fields here.
2297
2298         * class-internals.h: api changes for const fields
2299
2300         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2301
2302 2004-07-06  Martin Baulig  <martin@ximian.com>
2303
2304         * mono-debug.h: Increment version number to 44.
2305
2306         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2307         now a gpointer, rewrote this whole method.
2308
2309         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2310         function.  Add information about the wrapper in a new "misc table".
2311
2312         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2313         for the new misc table.
2314
2315 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2316
2317         * metadata-internals.h image.c: Add a cache for helper signatures.
2318
2319         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2320
2321 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2322
2323         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2324         delegates from a delegate. Fixes #61033.
2325         
2326         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2327         marshalling of stringbuilder arrays. Fixes #59900.
2328
2329 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2330
2331         * icall.c: Add EnumBuilder:setup_enum_type icall.
2332
2333 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2334
2335         * icall.c: Added a new icall for the property version of
2336         OffsetOfStringData.
2337
2338 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2339
2340         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2341         it has a constant size across platforms.
2342
2343         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2344         stack trace.
2345
2346 2004-06-29  Martin Baulig  <martin@ximian.com>
2347
2348         * mono-debug.c (mono_debug_add_method): Protect the whole function
2349         in mono_debugger_lock(), not just parts of it.
2350
2351 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2352
2353         * reflection.c: make sure padding bytes in heaps are zeroed.
2354
2355 2004-06-24  David Waite  <mass@akuma.org>
2356
2357         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2358         image.c, loader.c, locales.c, marshal.c, metadata.c,
2359         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2360         string-icalls.c, threads.c: change to C90-style comments from C99 /
2361         C++ -style
2362
2363 2004-06-24  Dick Porter  <dick@ximian.com>
2364
2365         * threads.c
2366         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2367         return createdNew.  Fixes bug 60412.
2368
2369         * threads-types.h: 
2370         * icall.c: Add createdNew parameter to CreateMutex icall
2371
2372 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2373
2374         * reflection.c, object-internals.h: save default value in params.
2375
2376 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2377
2378         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2379         no need to build a new path combining that with the application base.
2380         Fixes bug #60442.
2381
2382 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2383
2384         * reflection.c: fixed minor standard compliance issues.
2385
2386 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2387
2388         * reflection.c: fixed issue with encoding some custom attributes
2389         (arrays in properties and fields, bug #60411).
2390
2391 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2392
2393         * reflection.c: fix start address when copying the public key token.
2394
2395 2004-06-23  Martin Baulig  <martin@ximian.com>
2396
2397         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2398         the `exc' object in a static object to put it into the GC's root set.
2399
2400 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2401
2402         * reflection.c: make mono_reflection_setup_internal_class ()
2403         callable a second time to setup a new parent class.
2404
2405 2004-06-23  Dick Porter  <dick@ximian.com>
2406
2407         * threads.c: Check for WAIT_IO_COMPLETION return values.
2408
2409 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2410
2411         * appdomain.c: Removed the g_free on the public key token. Now copy 
2412         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2413         * assembly.c: Added public key token string value when loading 
2414         assemblies. Fix bug #60439.
2415         * icall.c: Added missing informations (like public key) in 
2416         GetReferencedAssemblies. Fix #60519.
2417         * image.h: Changed definition for public key token from const char*
2418         public_tok_value to guchar public_key_token [17];
2419         * reflection.c: Updated for changes to public key token.
2420
2421 2004-06-22  Lluis Sanchez Gual
2422
2423         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2424         for the field in base classes.
2425
2426 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2427
2428         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2429         mark headers as not supported, they are installed only for use by the
2430         debugger.
2431
2432 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2433
2434         * *.c, *.h: avoid namespace pollution in public headers.
2435
2436 2004-06-21  Martin Baulig  <martin@ximian.com>
2437
2438         * exception.c (mono_get_exception_security): It's in
2439         "System.Security", not in "System".
2440
2441         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2442         the exception classes.
2443
2444 2004-06-21  Martin Baulig  <martin@ximian.com>
2445
2446         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2447         Protect the exception object from being finalized.
2448
2449 2004-06-21  Martin Baulig  <martin@ximian.com>
2450
2451         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2452         public function.
2453
2454 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2455
2456         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2457         if it was not loaded before. Fix parts of #60439.
2458
2459 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2460
2461         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2462         code that was broken since Ben's change: wrappers are now
2463         dependent on the method signature only again.
2464
2465 2004-06-21  Martin Baulig  <martin@ximian.com>
2466
2467         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2468         added interface support.
2469
2470 2004-06-21  Martin Baulig  <martin@ximian.com>
2471
2472         * class.c (mono_vtable_get_static_field_data): New public method.
2473
2474 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2475
2476         * filewatcher.c : Windows build fix to be compliant with API changes.
2477
2478 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2479
2480         * class.h, class.c: more accessors.
2481         * metadata.h, metadata.c: prepare for hiding MonoType and
2482         MonoMethodSignature: people should use the accessors from now on
2483         outside of the tree.
2484
2485 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2486
2487         * *.c, *.h: more API cleanups.
2488
2489 2004-06-18  Jackson Harper  <jackson@ximian.com>
2490
2491         * assembly.c: Trace loading assemblies.
2492         * loader.c: Trace loading native libraries.
2493         * mono-config.c: Trace loading config files.
2494         
2495 2004-06-18  Dick Porter  <dick@ximian.com>
2496
2497         * locales.c: Tell ICU the lengths of strings, it can cope with
2498         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2499
2500 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2501
2502         * image.c: swapped name/filename;
2503
2504 2004-06-18  Martin Baulig  <martin@ximian.com>
2505
2506         * mono-debug-debugger.c (write_class): Write the parent class at
2507         the end of the header.
2508
2509 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2510
2511         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2512
2513 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2514
2515         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2516         (bundle_obj): New conditional define.
2517         (BUILT_SOURCES): Remove.
2518         ($(bundle_srcs)): Make parallel-make safe.
2519         (libmonoruntime_la_LIBADD): Make unconditional.
2520         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2521         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2522
2523 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2524
2525         * culture-info-tables.h: It was inconsistent with the latest
2526           supp info files.
2527
2528 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2529
2530         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2531         be loaded.
2532
2533         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2534         with gcc 2.95.
2535
2536 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2537
2538         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2539         cleaned up public header threads.h.
2540
2541 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2542
2543         * Makefile.am, *.c, *.h: more API cleanups.
2544
2545 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2546
2547         * Makefile.am: removed monosn from compilation.
2548         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2549         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2550         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2551         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2552         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2553         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2554
2555 2004-06-15  Jackson Harper  <jackson@ximian.com>
2556
2557         * assembly.c: Make locales lower case when searching the GAC for
2558         assemblies. gacutil will always make locales lowercase when
2559         installing so this effectively makes them case insensitive.
2560         
2561 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2562
2563         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2564         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2565           parameter which allows to choose whether the wait can be interrupted or 
2566           not. Also added the method mono_monitor_enter(), which locks the monitor
2567           using an infinite wait and without allowing interruption.
2568           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2569           interrupted.
2570         * object.h: Added new fields in MonoThread. suspend_event holds the event
2571           used to susped/resume the thread. synch_lock is the lock object to use for
2572           modifying the thread state.
2573         * threads.c: Use the new synch_lock object for locking, instead of "this",
2574           which can generate deadlocks.
2575           Moved thread state change in Thread.Sleep and Thread.Join from managed
2576           to unmanaged code. This avoids a deadlock when the thread was suspended
2577           just after acquiring the thread lock.
2578           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2579           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2580           which is not fully implemented in the io-layer.
2581         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2582
2583 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2584
2585         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2586         threads-types.h: more API cleanups.
2587
2588 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2589
2590         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2591         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2592         threadpool.c, threads.c: first pass at the exported API cleanup.
2593
2594 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2595
2596         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2597
2598 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2599
2600         * icall.c: added internalGetHome.
2601
2602 2004-06-14  Dick Porter  <dick@ximian.com>
2603
2604         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2605         possible to return successfully when '.' or '..' were the only
2606         entries in a directory, but were skipped.  The MonoIOStat was not
2607         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2608         Fixes bug 59574.
2609
2610 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2611
2612         * reflection.c: make binaries run on .Net 1.1 by default.
2613
2614 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2615
2616         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2617
2618 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2619
2620         * marshal.c: keep track of struct size with explicit layout
2621         (bug #59979).
2622
2623 2004-06-12  Martin Baulig  <martin@ximian.com>
2624
2625         * mono-debug-debugger.c: Comment out a debugging g_message().
2626
2627 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2628
2629         * reflection.c, reflection.h: do not free custom attrs that are cached.
2630         * icall.c: use braces to make code clearer.
2631
2632 2004-06-11  Martin Baulig  <martin@ximian.com>
2633
2634         * class.h (MonoInflatedField): New type.
2635         (MonoClassField): Replaced `MonoType *generic_type' with
2636         `MonoInflatedField *generic_info'.
2637
2638         * icall.c
2639         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
2640
2641 2004-06-11  Martin Baulig  <martin@ximian.com>
2642
2643         * reflection.c (mono_image_create_method_token): Correctly encode
2644         varargs methods.
2645
2646 2004-06-11  Martin Baulig  <martin@ximian.com>
2647
2648         * metadata.c (mono_metadata_parse_method_signature): When parsing
2649         a MethodDef which has VarArgs, also set sentinelpos if we don't
2650         have any parameters.
2651
2652 2004-06-11  Martin Baulig  <martin@ximian.com>
2653
2654         * verify.c (mono_method_verify): In CEE_CALL, use
2655         mono_method_get_signature() to get the method's signature, unless
2656         we're a PInvoke method.
2657
2658 2004-06-10  Jackson Harper  <jackson@ximian.com>
2659
2660         * assembly.c: Use <path>/lib/mono/gac for the extra paths
2661         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
2662         logical name as the supplied path is just a prefix to the gac not
2663         the direct path to it.
2664         
2665 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
2666
2667         * reflection.c: make the token for a created method match
2668         the token of the MethodBuilder it was created from
2669         (IKVM requires this behaviour now).
2670
2671 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
2672
2673         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
2674         reflection.c, socket-io.c: leak fixes.
2675
2676 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
2677
2678         * icall.c: handle sentinel pos in vararg methods in position different
2679         from 0.
2680
2681 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2682
2683         * culture-info-tables.h: freshly generated.
2684
2685 2004-06-09  Martin Baulig  <martin@ximian.com>
2686
2687         * loader.c (mono_get_method_constrained): Call `mono_class_init
2688         (constrained_class)'.   
2689
2690 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
2691
2692         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
2693         any methods. Fixes #59629.
2694
2695 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2696
2697         * culture-info-tables.h: reflecting locale-builder updates.
2698
2699 2004-06-08  Dick Porter  <dick@ximian.com>
2700
2701         * object.h:
2702         * locales.c: Fixed compile warnings, including a real bug in
2703         CompareInfo_internal_compare.
2704         
2705 2004-06-08  Dick Porter  <dick@ximian.com>
2706
2707         * locales.c
2708         (ves_icall_System_Globalization_CompareInfo_internal_index):
2709         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2710         Double-check the resuls of usearches, because ICU currently
2711         ignores most of the collator settings here.  Fixes bug 59720.
2712         
2713 2004-06-08  Dick Porter  <dick@ximian.com>
2714
2715         * locales.c
2716         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2717         Fix memory leak and segfault-causing typo.  No idea how this one
2718         lasted so long without being noticed.
2719
2720 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
2721
2722         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
2723         any methods. Fixes #59629.
2724
2725 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2726
2727         * assembly.c:
2728         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
2729         own the critical section before). Removed dead code (that's done
2730         in the preload hook).
2731
2732         (mono_assembly_load_with_partial_name): call the preload hook.
2733
2734 2004-06-08  Martin Baulig  <martin@ximian.com>
2735
2736         * metadata.c (mono_metadata_signature_alloc): Default
2737         `sentinelpos' to -1.
2738
2739         * reflection.c (mono_image_get_array_token): Likewise.
2740
2741 2004-06-08  Martin Baulig  <martin@ximian.com>
2742
2743         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
2744
2745         * metadata.c (mono_metadata_parse_method_signature): When parsing
2746         a MethodDef which has VarArgs, set sentinelpos.
2747
2748         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
2749         `gint16' since we're using -1 for non-varargs methods.
2750
2751         * reflection.c
2752         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
2753         (method_encode_signature): Added varargs support.
2754         (method_builder_encode_signature): Likewise.
2755         (mono_image_get_varargs_method_token): New static method.
2756         (mono_image_create_method_token): New public method; this is
2757         called via an icall instead of mono_image_create_token() when
2758         calling a varargs method.       
2759
2760 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
2761
2762         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
2763
2764 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2765
2766         * culture-info-tables.h : Reflecting the latest locale-builder that
2767           fixed empty array representation ({} to {0}).
2768
2769 2004-06-07  Jackson Harper  <jackson@ximian.com>
2770
2771         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
2772         looking up extra gac paths. This allows MONO_GAC_PATH to act
2773         exactly like a prefix.
2774         
2775 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
2776
2777         * reflection.c (mono_reflection_type_from_name): Make a copy of the
2778         type name before modifying it. Fixes #59405.
2779
2780 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2781
2782         * culture-info.h: added fields for "all datetime patterns".
2783         * locales.c: (  ves_icall_System_Globalization_CultureInfo
2784           _construct_datetime_format ()): fill xxx_patterns fields.
2785         * object.h: added fields for "all datetime patterns" to
2786           MonoDateTimeFormatInfo.
2787         * culture-info-tables.h: reflecting locale-builder updates.
2788
2789 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
2790
2791         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
2792         the event has no add and remove methods. Fixes #59629.
2793
2794 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
2795
2796         * object.c: Fixed possible integer overflow when allocating large
2797         strings.
2798
2799 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
2800
2801         * culture-info-tables.h: reflecting locale-builder updates.
2802
2803 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
2804
2805         * culture-info-tables.h: reflecting locale-builder updates.
2806
2807 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
2808
2809         * culture-info-tables.h: reflecting locale-builder updates.
2810
2811 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
2812
2813         * threads.c: Made Thread.Sleep abortable.
2814
2815 2004-06-02  Martin Baulig  <martin@ximian.com>
2816
2817         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
2818
2819         * debug-mono-symfile.h: Bumped symbol file version number to 37.
2820
2821 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
2822
2823         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
2824
2825 2004-05-30  Jackson Harper  <jackson@ximian.com>
2826
2827         * reflection.c: Do not hardcode assembly versions or public key
2828         tokens anymore. All of this except the corlib section was dead
2829         code anyways.
2830         
2831 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
2832
2833         * object.c (mono_runtime_invoke_array): Automatically create boxed
2834         objects for byref valuetypes if needed. Fixes #59300.
2835         
2836         * object.c (mono_method_return_message_restore): Handle 
2837         MONO_TYPE_OBJECT as well.
2838
2839 2004-05-28  Jackson Harper  <jackson@ximian.com>
2840
2841         * reflection.c: The modified type encoding was causing build
2842         problems. Reverted for now.
2843         
2844 2004-05-28  Jackson Harper  <jackson@ximian.com>
2845
2846         * reflection.c/h: Take an assembly ref so that we dont create
2847         fully qualified names when encoding types in the same assembly as
2848         the custom attribute being emitted.
2849         * appdomain.c: Increment version number.
2850         
2851 2004-05-26  Duncan Mak  <duncan@ximian.com>
2852
2853         * icall.c
2854         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
2855         Set the full version number (major, minor, build, revision).
2856
2857 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
2858
2859         * marshal.c (emit_struct_conv): increment src/dst after blit
2860         (mono_marshal_get_managed_wrapper,
2861         mono_marshal_get_native_wrapper): make sure we have marshalling
2862         info before marshalling params (info computation affects
2863         blittable)
2864
2865         * class.c (class_compute_field_layout): correctly deal with
2866         blittable
2867         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
2868         value types (as per what windows dows by default)
2869         (mono_class_setup_mono_type): System.ValueType is blittable
2870         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
2871         blittable
2872
2873         * marshal.c (mono_marshal_load_type_info): flag types  as
2874         non-blittable if the native layout doesn't match the managed
2875         layout
2876
2877 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2878
2879         * appdomain.c: don't add stuff in the private search path that is
2880         above the application base. If application base is not set, there's
2881         no private search path.
2882
2883 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
2884
2885         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
2886         byref struct arguments in native->managed marshalling.
2887
2888 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
2889
2890         * marshal.c (mono_marshal_get_runtime_invoke): correctly
2891         cache methods using signature (special case for methods
2892         that are value type or string class)
2893         
2894         * image.c (mono_image_close): clean up allocated GSList's
2895         in runtime_invoke_cache.
2896
2897 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2898
2899         * mono-config.c: set the correct path for mono_cfg_dir on windows when
2900         there's no MONO_CFG_DIR environment variable defined.
2901
2902 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2903
2904         * threads.c: windows version must be >= 0x0500 to include OpenThread.
2905
2906 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
2907
2908         * threadpool.c: Really wait for 500ms after the async call, even if the wait
2909           is interrumped.
2910         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
2911           before waiting for it, and call CloseHandle after the wait to unref it.
2912           This will make sure that handles are not disposed too early.
2913
2914 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2915
2916         * appdomain.c:
2917         * appdomain.h:
2918         * icall.c: removed
2919         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
2920         needed now.
2921
2922         * object.c: se the application_base only for the domain that runs
2923         Main. Fixes bug #59216,
2924
2925 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2926
2927         * appdomain.c:
2928         * object.c: only the domain in which Main is run have
2929         SetupInformation.ConfigurationFile set, so moved a few lines from
2930         appdomain.c to object.c.
2931
2932 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2933
2934         * appdomain.c: we tried to load [name].(dll|exe), but according
2935         to bug #57710, we must also try [culture]/[name].(dll|exe) and
2936         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
2937         There's a test case attached to bug #58922.
2938
2939 2004-05-27  Dick Porter  <dick@ximian.com>
2940
2941         * icall.c:
2942         * file-io.c: Implemented icalls for locking and unlocking regions
2943         in a file.
2944         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
2945         FALSE on error (fixes both compiler warning and real bug.)
2946
2947 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
2948
2949         * culture-info-tables.h: reflecting locale-builder updates.
2950
2951           (Added missing ChangeLog entry for 05/26)
2952
2953 2004-05-27  Jackson Harper  <jackson@ximian.com>
2954
2955         * locales.c: Fix some cut and paste errors.
2956         
2957 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2958
2959         * mono-config.c: set the correct path for config. directory on windows.
2960
2961 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2962
2963         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
2964           on win32.
2965
2966 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2967
2968         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
2969         from pinvoke functions.
2970         
2971         * marshal.c (mono_ftnptr_to_delegate): Implement this.
2972
2973 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2974
2975         * culture-info-tables.h: reflecting locale-builder updates.
2976
2977 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2978
2979         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
2980         #59086.
2981
2982 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2983
2984         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
2985         * icall.c: Modified icalls for RNG.
2986         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
2987         Windows (CryptoAPI).
2988
2989 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2990
2991         * locales.c: Fix build.
2992
2993 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
2994
2995         * culture-info-tables.h: reflecting locale-builder updates.
2996
2997 2004-05-25  Jackson Harper  <jackson@ximian.com>
2998
2999         * locales.c: When creating the current culture use the $LANGs
3000         specific culture. So DateTimeFormat and NumberFormat entries are created.
3001         
3002 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3003
3004         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3005         a char array as parameter.
3006
3007 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3008
3009         * image.c: In mono_image_open(), always use an absolute path name to
3010           look for already loaded images.
3011
3012 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3013
3014         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3015         missing in the windows build (like older cygwin include files).
3016
3017 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3018
3019         * icall.c: Fixed check for possible integer overflow in Buffer_
3020         BlockCopy icall. Replaced comments style // by /* */.
3021
3022 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3023
3024         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3025         
3026         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3027         check after MONO_VTADDR. Fixes pinvoke2.exe.
3028
3029         * marshal.h marshal.c metadata.h: Add beginnings of support for
3030         ftnptr -> delegate marshalling.
3031
3032 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3033
3034         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3035         * threads.c: Fix warnings.
3036
3037 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3038
3039         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3040         * icall.c: Registered icalls for Suspend and Resume.
3041         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3042           Thread.Abort.
3043         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3044         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3045         * process.c: Use WaitForSingleObjectEx.
3046         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3047           checkpoints.
3048         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3049           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3050           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3051           background threads. Added basic support for Abort in Windows.
3052           Start new threads using a managed delegate invoke wrapper. This wrapper
3053           has an interruption checkpoint that is needed since an interruption
3054           can be requested before the thread leaves the unmanaged code that starts 
3055           the thread.
3056         * marshal.c: Added interruption checkpoint after every native call, and
3057           also before managed calls for wrappers called from unmanaged code to
3058           go into managed code.
3059         * object.h: Added new field in MonoThread to keep track of interruption
3060           requests.
3061
3062 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3063
3064         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3065         calls.
3066
3067 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3068
3069         * appdomain.c:
3070         * assembly.c:
3071         * gc.c:
3072         * locales.c:
3073         * mono-config.c:
3074         * rand.c: getenv -> g_getenv (windows!)
3075
3076         * process.c: complete_path is also used on non-windows platforms.
3077
3078 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3079
3080         * icall.c: new signature for Process_Start.
3081
3082         * process.[ch]: new signature for Process_Start. If we're on windows
3083         and UseShellExecute is false, we have to search for the program by
3084         ourselves if we don't get a full path.
3085
3086 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3087
3088         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3089         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3090
3091 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3092
3093         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3094         Fixes bug #58373.
3095
3096 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3097
3098         * process.c: use double quotes to quote program name and arguments on
3099         windows. Fixes bug #58575.
3100
3101 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3102
3103         * file-io.c: don't return "." and ".." when using windows Find*File.
3104
3105 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3106
3107         * marshal.c: Don't pass wrappers to message init because method 
3108         addressed used to lookup metadata. part of remoting[2|3] fix.
3109
3110 2004-05-15  Jackson Harper  <jackson@ximian.com>
3111
3112         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3113         path is essentially the same as MONO_PATH except that it points to
3114         GACs instead of lib directories.
3115         * loader.h: The user gac is gone so we dont need function to
3116         enable/disable it.
3117         * mono-config.c: user gac option is now gone.
3118         
3119 2004-05-15  Jackson Harper  <jackson@ximian.com>
3120
3121         * culture-info.h: Make defines more consistent, add calendar data
3122         to the culture info table.
3123         * culture-info-tables.h: Add basic calendar data. Basically
3124         everyone gets default gregorian until all the data is
3125         updated.
3126         * locales.c: Use the new consistent defines. Set calendar data for
3127         culture info objects.
3128         * object.h: add a field for calendar data to CultureInfo
3129         
3130 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3131
3132         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3133         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3134         a signature.
3135         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3136         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3137         an extra param that is the pointer of the method to invoke. The IL for
3138         the invoke method is no longer specific to the method, but to the
3139         signature of the method. Thus, we can share the same code for multiple
3140         methods. This reduces the number of methods that have to be compiled.
3141
3142 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3143
3144         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3145
3146         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3147
3148         * icall.c: Optimize Buffer.BlockCopy.
3149
3150 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3151
3152         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3153         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3154         quote). Changed them to "MMMM yyyy".
3155
3156 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3157
3158         * rand.c
3159         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3160
3161 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3162
3163         * reflection.h: Updated after changes to managed structures.
3164
3165         * appdomain.c: Bump corlib version.
3166
3167 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3168
3169         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3170         windows.
3171
3172 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3173
3174         * Makefile.am: link to ../os/libmonoos.la on windows.
3175
3176         * assembly.c:
3177                 -If MONO_DEBUG, warn about non-existing directories in
3178                 MONO_PATH.
3179                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3180                 compile time variable.
3181                 -Removed init_default_path and call mono_set_rootdir from
3182                 libmonoos.a instead (windows only).
3183
3184         * assembly.h: declare mono_assembly_getrootdir().
3185
3186         * domain.c:
3187         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3188
3189         * loader.c: s/getenv/g_getenv/
3190
3191 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3192
3193         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3194
3195         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3196
3197         * metadata.h: Add new marshalling conversions.
3198
3199         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3200         function.
3201
3202         * reflection.c (mono_reflection_get_type): Lookup the type in all
3203         modules of a multi-module assembly. Fixes #58291.
3204
3205 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3206
3207         * threads.c: Before aborting a background, set the StopRequested
3208         state.  This avoids throwing the Abort exception.
3209         In mono_thread_manage, don't continue with the shutdown until all
3210         aborted threads have actually stopped.
3211
3212 2004-05-10  Jackson Harper  <jackson@ximian.com>
3213
3214         * locales.c: Remove the modifier from culture names.
3215         
3216 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3217
3218         * Makefile.am: monosn is not installed any more. It has been deprecated
3219         in favor of sn.
3220
3221 2004-05-07  Jackson Harper  <jackson@ximian.com>
3222
3223         * locales.c
3224         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3225         Fix array construction, add bailout if the length is 0.
3226
3227 2004-05-07  Dick Porter  <dick@ximian.com>
3228
3229         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3230         machine doesn't have a DNS entry.  Patch by Urs Muff
3231         (umuff@quark.com), fixes bug 57928.
3232
3233 2004-05-06  Jackson Harper  <jackson@ximian.com>
3234
3235         * reflection.c: Handle null PublicTokens properly. alloc mem for
3236         assembly names culture so we dont crash when freeing it.
3237         
3238 2004-05-06  Jackson Harper  <jackson@ximian.com>
3239
3240         * assembly.c: Check the usergac when loading with partial names.
3241         
3242 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3243
3244         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3245         does nothing for now (not required for Linux/Windows) but the class
3246         library can call it (and a newer or modified runtime could need it).
3247         * icall.c: Registred icall.
3248
3249 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3250
3251         * loader.c: prints a message on module loading error we set MONO_DEBUG
3252         environment variable.
3253
3254 2004-05-05  Jackson Harper  <jackson@ximian.com>
3255
3256         * appdomain.c: Handle PublicKeyToken=null properly.
3257         
3258 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3259
3260         * environment.c|h: Added icall ves_icall_System_Environment_
3261         GetOSVersionString to get the current OS version as a string.
3262         * icall.c: Registred icall.
3263
3264 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3265
3266         * object.c: in mono_object_get_virtual_method(), take into account that
3267         non-virtual methods don't have a slot in the vtable. Check needed when
3268         the object is a proxy.
3269
3270 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3271
3272         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3273         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3274
3275         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3276
3277         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3278         passed when a valuetype is expected.
3279
3280         * object.c (mono_unhandled_exception): Only set the exit code if the
3281         exception happens in the main thread. Fixes thread5.exe.
3282
3283         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3284         invalid names. Fixes #58047.
3285
3286 2004-05-03  Jackson Harper  <jackson@ximian.com>
3287
3288         * assembly.c: This line was committed accidently and is unneeded.
3289         
3290 2004-05-03  Jackson Harper  <jackson@ximian.com>
3291
3292         * icall.c: Add new icall for Assembly::LoadWithPartialName
3293         * assembly.c/.h: new function that probes the GAC to load partial
3294         assembly names by Paolo Molaro.
3295         
3296 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3297
3298         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3299         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3300         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3301         full type name.
3302
3303 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3304
3305         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3306         * reflection.c: fix bug when parsing a full type name and Version is not
3307         the last thing in the string.
3308
3309 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3310
3311         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3312         crashes when it is freed.
3313
3314 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3315
3316         * assembly.c: print the compat warning to stderr.
3317
3318 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3319
3320         * assembly.c (mono_assembly_load_references): Add a compatibility
3321         hack to run old applications that might be still referencing the
3322         3300-based assemblies, only do this for System.xxx.
3323
3324 2004-05-01  Jackson Harper  <jackson@ximian.com>
3325
3326         * appdomain.c: If the culture is neutral we set it to "".
3327         
3328 2004-04-29  Jackson Harper  <jackson@ximian.com>
3329
3330         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3331
3332 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3333  
3334         * string-icalls.c: added low overhead function for copying chars
3335         * icall.c: added needed icall for the above function
3336  
3337 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3338
3339         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3340         Environment.GetLogicalDrives.
3341
3342 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3343
3344         * rand.c: try and talk to egd or prngd
3345         for random bytes if opening devices fail.
3346
3347 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3348
3349         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3350         alignment for the type using the native alignment of its members 
3351         instead of using klass->min_align.
3352
3353         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3354
3355 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3356
3357         * file-io.c:
3358         * socket-io.c: added check for sys/aio.h.
3359
3360 2004-04-28  Dick Porter  <dick@ximian.com>
3361
3362         * threads.c: Don't abort a thread thats already aborting, when
3363         terminating everything.
3364
3365 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3366
3367         * icall.c: added 2 new async calls for Socket.
3368
3369         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3370         IO on *nix systems.
3371
3372         * threadpool.c: removed unused variable.
3373
3374 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3375
3376         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3377
3378 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3379
3380         * locales.c: put back string_invariant_tolower () and
3381         string_invariant_toupper ().
3382
3383 2004-04-26 David Waite <mass@akuma.org>
3384
3385         * file-io.h:
3386         * socket-io.h:
3387         * threads.h:
3388         * unicode.h: remove comma from end of enumeration declarations
3389
3390 2004-04-26 David Waite <mass@akuma.org>
3391
3392         * debug-mono-symfile.h:
3393         * decimal.c:
3394         * mono_debug.h:
3395         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3396
3397
3398 2004-04-26  Jackson Harper  <jackson@ximian.com>
3399
3400         * appdomain.c: Increment version number.
3401         
3402 2004-04-26  Jackson Harper  <jackson@ximian.com>
3403
3404         * appdomain.c: Set assembly references public token value when
3405         PublicKeyToken is specified, not the hash_value. Free public token
3406         values when free assembly name data. Previously the public key
3407         token was hex decoded, however we are using hex encoded public key
3408         tokens, so this is not neccasary.
3409         * assembly.c: Lookup assemblies in the gac if their public token
3410         value is set. Add function to allow enabling user gac
3411         lookups. Specify whether or not the assembly was loaded from the
3412         GAC. Compare full assembly names when checking the cache for
3413         assemblies (Temporarily disabled see comment in code). Remove
3414         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3415         specifies trace-loader they get extra info to stdout on the
3416         loading of assemblies.
3417         * image.h: Add a field for an assembly references public token
3418         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3419         whether an assembly has been loaded from the GAC.
3420         * image.c: Remove a corlib -> mscorlib name mapping.
3421         * loader.h: Add function to enable/disable the user gac.
3422         * mono-config.c: Check if the usergac is enabled in the config
3423         file.
3424         * icall.c: New icall to determine whether or not an assembly has
3425         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3426         * tabldefs.h: Add constant for assemblyref flag that specifies a
3427         full public key is used instead of a public token.
3428         * reflection.c: Remove mscorlib -> corlib mappings. Set
3429         PublicTokenValue instead of hash value. This value is a hex
3430         string so it does not need to be expanded.
3431
3432 2004-04-26  Martin Baulig  <martin@ximian.com>
3433
3434         * mono-debug-debugger.c (mono_debugger_initialize): Set
3435         `mono_debugger_initialized' before calling mono_debug_lock().
3436
3437 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3438
3439         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3440           InternalToUpper/InternalToLower.
3441         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3442           removed invariant culture shortcut.  This is now done in managed code.
3443         * locales.c: (string_invariant_toupper/tolower) removed.
3444
3445 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3446
3447         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3448         Added Poll internal call.
3449
3450         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3451         call for Poll. Select was too heavy for polling a single socket.
3452
3453         * threadpool.[ch]: added mono_threadpool_cleanup.
3454         * threads.c: use it. Don't use Thread_Abort on windows.
3455
3456 2004-04-23  Martin Baulig  <martin@ximian.com>
3457
3458         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3459
3460 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3461
3462         * icall.c: Registred new icalls for key pair protection and added an
3463         icall for Environment.GetFolderPath on Windows.
3464         * security.c|h: Added new icalls for key pair protection.
3465
3466 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3467
3468         * socket-io.c: don't display the non-supported family warning for known
3469         families. Now this is not displayed on windows when checking support
3470         for IPv4/IPv6.
3471
3472 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3473
3474         * class.c: don't display the layout warning for static fields.
3475
3476 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3477
3478         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3479         * locales.c, locales.h: Added new icalls for culture-specific
3480         Char.ToLower and Char.ToUpper.
3481
3482 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3483
3484         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3485         by David Waite.
3486
3487 2004-04-20  Martin Baulig  <martin@ximian.com>
3488
3489         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3490         of the type name before passing it to mono_reflection_type_from_name().
3491
3492 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3493
3494         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3495         encodings here. Fixes #56965.
3496
3497 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3498
3499         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3500         fix test on strstr result not that I can see anything that
3501         relies on the result.
3502
3503 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3504
3505         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3506         Fixes #57081.
3507
3508         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3509
3510         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3511         function to determine which marshalling to use for strings. Fixes
3512         #56965.
3513
3514         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3515
3516         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3517
3518 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3519
3520         * icall.c: #include mono-config.h
3521
3522 2004-04-15  Jackson Harper  <jackson@ximian.com>
3523
3524         * culture-info-tables.h: Fix date formats for en-US culture.
3525         
3526 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3527
3528         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3529         ThreadPool.SetMinThreads.
3530         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3531         ThreadPool.SetMinThreads.
3532
3533 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3534
3535         * mono-config.c: also load the .config file in the directory
3536         where the assembly was found.
3537
3538 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3539
3540         * assembly.c: load per-assembly config files.
3541         * icall.c: decrapified code to get the config dir and moved to
3542         mono-config.c.
3543         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3544         per-assembly config files. When doing a dll map lookup give precedence
3545         to the per-assembly data.
3546
3547 2004-04-14  Martin Baulig  <martin@ximian.com>
3548
3549         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3550         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3551         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3552
3553         * mono-debugger-debugger.c: While the debugger is locked, remember
3554         whether the symbol tables have changes and send one single
3555         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3556
3557 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3558
3559         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3560
3561         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3562         function.
3563
3564         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3565         account when marshalling string arrays. Fixes #56965.
3566
3567 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3568
3569         * icall.c: Add new icalls mapping for security.
3570         * security.c|h: Add internal calls for WindowsIdentity,
3571         WindowsImpersonationContext and WindowsPrincipal.
3572
3573 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3574
3575         * class.c: Added comment to ensure the System.MonoDummy class
3576         is removed when no longer necessary
3577
3578 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3579
3580         * appdomain.c: Pass arguments to the bootstraping exceptions to
3581         minimize JITed methods at boot
3582
3583         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3584         second string to be null.
3585
3586         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3587         Change the protocol to minimize the JIT methods at startup.  Now
3588         it Returns the internal codepage, if the value of "int_code_page"
3589         is 1 at entry, and we can not compute a suitable code page
3590         number, returns the code page as a string.
3591
3592 2004-04-13  Jackson Harper  <jackson@ximian.com>
3593
3594         * culture-info-tables.h: Fix number of decimal digits for all
3595         english locales.
3596
3597 2004-04-13  Jackson Harper  <jackson@ximian.com>
3598
3599         * icall.c: Clairfy out of sync error message. It is not always
3600         your corlib that is out of sync.
3601
3602 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3603
3604         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3605         properties when only the set accessor is overriden. Fixes #55874.
3606
3607 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3608
3609         * assembly.c (mono_assembly_load_references): Make this thread safe.
3610         Fixes #56327.
3611
3612 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3613
3614         * monosn.c: Add missing initialization calls.
3615
3616 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3617
3618         * locales.c:
3619         ves_icall_System_Globalization_CultureInfo_construct_number_format
3620         Fix g_assert so it compiles on fussier compilers re int/ptr
3621         mismatch
3622
3623 2004-04-08  Dick Porter  <dick@ximian.com>
3624
3625         * socket-io.h:
3626         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
3627         53992.  Also rearrange the code so that the internal calls return
3628         an error value and exceptions are thrown from managed code.
3629
3630         * icall.c: Add type info to the socket icalls.
3631
3632 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3633
3634         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
3635         owes me a beer.
3636
3637 2004-04-07  Martin Baulig  <martin@ximian.com>
3638
3639         * class.c (mono_class_from_generic_parameter): Don't default
3640         `klass->parent' to `mono_defaults.object_type'.
3641
3642 2004-04-07  Martin Baulig  <martin@ximian.com>
3643
3644         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3645         `param->pklass->reflection_info'.       
3646
3647 2004-04-07  Jackson Harper  <jackson@ximian.com>
3648
3649         * culture-info-tables.h: Fix date separator symbol.
3650         
3651 2004-04-07  Martin Baulig  <martin@ximian.com>
3652
3653         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
3654         from System.Type to System.MonoType.
3655
3656 2004-04-07  Martin Baulig  <martin@ximian.com>
3657
3658         * reflection.h
3659         (MonoReflectionGenericParam): Added `has_reference_type' and
3660         `has_value_type' fields.
3661
3662         * reflection.c (mono_image_get_generic_param_info): Encode the
3663         correct flags if we have the `class' or `struct' constraint.
3664
3665 2004-04-07  Martin Baulig  <martin@ximian.com>
3666
3667         * reflection.h
3668         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
3669
3670 2004-04-07  Jackson Harper  <jackson@ximian.com>
3671
3672         * appdomain.c: Revert extra patches, just wanted to bump the
3673         version number.
3674         
3675 2004-04-07  Jackson Harper  <jackson@ximian.com>
3676
3677         * Makefile.am: Add culture-info private headers.
3678         * icall.c: Add new icalls for contructing locales.
3679         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
3680         * locales.h: Declare new culture info construction methods.
3681         * object.h: Add new fields used to avoid the CultureMap to
3682         MonoCultureInfo.
3683         * culture-info.h: Definition of structs used in the culture info
3684         tables.
3685         * culture-info-tables.h: Autogenerated tables that contain culture
3686         info data. This file was generated with the locale-builder tool.
3687         * appdomain.c: Incement corlib version number.
3688         
3689 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
3690
3691         * appdomain.c: (mono_runtime_init) move mono_thread_init
3692         to before mono_object_new calls so critical sections
3693         are initialized before use.
3694
3695 2004-04-07  Martin Baulig  <martin@ximian.com>
3696
3697         * icall.c
3698         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
3699         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
3700         (ves_icall_MonoGenericParam_initialize): Removed.
3701         (monogenericparam_icalls): Removed.
3702         (generictypeparambuilder_icalls): Added new table for
3703         System.Reflection.Emit.GenericTypeParameterBuilder.
3704
3705         * reflection.c
3706         (mono_reflection_define_generic_parameter): Removed.
3707         (mono_reflection_initialize_generic_parameter): This is now called
3708         from GenericTypeParameterBuilder's .ctor.
3709
3710 2004-04-06  Martin Baulig  <martin@ximian.com>
3711
3712         * class.c (mono_class_init): Don't inflate nested classes in a
3713         generic instance.
3714         (mono_type_get_name_recurse): Include the generic arguments for
3715         generic instances and generic type declarations.
3716         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
3717         (_mono_class_get_instantiation_name): Removed.
3718         (mono_class_create_generic): Always use `gklass->name' as our name.
3719
3720         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
3721
3722         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
3723         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
3724         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
3725         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
3726         closed generic methods here.
3727
3728         * reflection.c
3729         (mono_reflection_generic_inst_get_nested_types): Removed.
3730         (inflate_mono_method): Copy the generic parameters from the
3731         MonoMethodHeader into out MonoGenericMethod.
3732
3733 2004-04-06  Martin Baulig  <martin@ximian.com>
3734
3735         * row-indexes.h
3736         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
3737
3738         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
3739
3740         * reflection.c (build_compressed_metadata): If we have any entries
3741         in the GenericParam, MethodSpec or GenericParamConstraint tables,
3742         set the header version to 1.1.
3743
3744 2004-04-06  Martin Baulig  <martin@ximian.com>
3745
3746         * class.c (mono_class_init): If we're a generic instance,
3747         initialize our nested classes, too.
3748         (_mono_class_get_instantiation_name): Deal with the new `!%d'
3749         suffix. 
3750
3751 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3752
3753         * process.c: quote the argument passed to the shell on windows.
3754
3755 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
3756
3757         * threads.c (mono_alloc_special_static_data): Allow this to be
3758         called during startup.
3759
3760 2004-04-02  Martin Baulig  <martin@ximian.com>
3761
3762         * icall.c
3763         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
3764
3765 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
3766
3767         * icall.c: Fix build.
3768
3769 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3770
3771         * Makefile.am: Added security.c|h.
3772         * icall.c: Added icall for get_UserName;
3773         * security.c: New file for security related icalls. Added function
3774         get_UserName for System.Environment (fix #56144).
3775         * security.h: New. Header file for security.c
3776
3777 2004-04-02  Dick Porter  <dick@ximian.com>
3778
3779         * icall.c: Deleted the icalls that were obsoleted some time ago
3780         by the ICU string code, and which were mixed into the icall
3781         rearranging.  Fixes bug 55969.
3782
3783         * string-icalls.h: 
3784         * string-icalls.c: Deleted the code that those icalls reference.
3785
3786 2004-04-01  Martin Baulig  <martin@ximian.com>
3787
3788         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
3789
3790         * class.c (mono_class_from_generic_parameter): Don't set 
3791         TYPE_ATTRIBUTE_INTERFACE.
3792         (my_mono_class_from_generic_parameter): Likewise.
3793
3794 2004-04-01  Martin Baulig  <martin@ximian.com>
3795
3796         * loader.c (find_method): Added an optional `MonoClass *ic'
3797         argument to search in a specific interface.
3798         (mono_get_method_constrained): New public function.
3799
3800 2004-04-01  Martin Baulig  <martin@ximian.com>
3801
3802         * reflection.c (mono_image_get_generic_field_token): Use the
3803         `handleref' cache here.
3804
3805 2004-04-01  Martin Baulig  <martin@ximian.com>
3806
3807         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
3808
3809         * reflection.c (create_generic_typespec): Use the `typespec' hash
3810         here, not the `typeref' one.    
3811
3812 2004-04-01  Martin Baulig  <martin@ximian.com>
3813
3814         * class.c (mono_class_inflate_generic_type): Moved the
3815         functionality into a new static inflate_generic_type() which
3816         returns NULL if it didn't do anything.  Only increment the
3817         `mono_stats.inflated_type_count' if we actually inflated
3818         something.
3819         (mono_class_get_full): Check the classes type to see whether we
3820         need to inflate it; also inflate MONO_TYPE_(M)VAR.
3821
3822 2004-04-01  Jackson Harper  <jackson@ximian.com>
3823
3824         * reflection.c: Set culture for assembly references.
3825         
3826 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
3827
3828         * reflection.[ch], icall.[ch], Fix support for pinning variables.
3829
3830 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3831
3832         * assembly.c:
3833         (do_mono_assembly_open): the critical section also covers
3834         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
3835
3836 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3837
3838         * threads.c:
3839         (mono_manage_threads): abort the background threads when finishing.
3840         Fixes bug #47232.
3841
3842 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3843
3844         * gc.c: only close the done_event handle if there was no timeout.
3845         C-ified comments.
3846
3847 2004-03-30  Martin Baulig  <martin@ximian.com>
3848
3849         * icall.c (icall_entries): It's called "System.Activator", not
3850         "System.Activation".    
3851
3852 2004-03-30  Martin Baulig  <martin@ximian.com>
3853
3854         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
3855         (mono_class_create_from_typespec): Likewise.
3856
3857 2004-03-30  Martin Baulig  <martin@ximian.com>
3858
3859         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
3860         `has_ctor_constraint' and `initialized'.
3861
3862 2004-03-30  Martin Baulig  <martin@ximian.com>
3863
3864         * reflection.c (encode_new_constraint): New static function to add
3865         the constructor constraint attribute to a type parameter.
3866         (encode_constraints): Call encode_new_constraint() if necessary.
3867
3868         * reflection.h
3869         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
3870
3871         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
3872         
3873 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3874
3875         * reflection.c, icall.c: add support for pinning variables. 
3876
3877 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
3878
3879         * marshal.c (mono_marshal_get_managed_wrapper):
3880         init bool local with zero rather than null.
3881
3882 2004-03-29  Martin Baulig  <martin@ximian.com>
3883
3884         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
3885         the "official" behavior here.
3886         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
3887
3888 2004-03-29  Martin Baulig  <martin@ximian.com>
3889
3890         * icall.c: Reflect latest API changes.
3891
3892 2004-03-29  Martin Baulig  <martin@ximian.com>
3893
3894         * loader.c (mono_get_method_from_token): Also call
3895         mono_metadata_load_generic_params () for abstract and interface
3896         methods; replace the type arguments in the method signature with
3897         the ones which are loaded from the metadata.
3898
3899 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
3900
3901         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
3902         of the lock is not the current thread. MS.NET don't do it, in spite of
3903         what the documentation says. See bug #56157.
3904
3905 2004-03-28  Martin Baulig  <martin@ximian.com>
3906
3907         * class.c (mono_class_init): Don't call init_properties() and
3908         init_events() for generic instances; set `prop->parent' when
3909         inflating properties.
3910
3911         * reflection.c (mono_generic_inst_get_object): Call
3912         `mono_class_init (ginst->klass)'.
3913         (mono_type_get_object): Only create a MonoGenericInst if your
3914         generic type is a TypeBuilder.
3915         (do_mono_reflection_bind_generic_parameters): Only set
3916         `ginst->is_dynamic' if our generic type is a TypeBuilder.
3917
3918 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
3919
3920         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
3921         Fixes #56091.
3922
3923 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3924
3925         * icall.c: added Kill_internal icall.
3926         * process.[ch]: added Kill_internal icall.
3927
3928 2004-03-25  Martin Baulig  <martin@ximian.com>
3929
3930         * class.h (MonoStats): Added `generic_instance_count',
3931         `inflated_method_count', `inflated_type_count' and
3932         `generics_metadata_size'.       
3933
3934 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3935
3936         * reflection.c: no warnings now.
3937
3938 2004-03-25  Martin Baulig  <martin@ximian.com>
3939
3940         * class.c (mono_class_get_full): New public function; does a
3941         mono_class_get(), but also takes a `MonoGenericContext *'.
3942
3943         * loader.c (mono_field_from_memberref): Renamed to
3944         `field_from_memberref', made static and added `MonoGenericContext *'
3945         argument.
3946         (mono_field_from_token): Added `MonoGenericInst *' argument.
3947         (method_from_memberef): Likewise.
3948         (mono_get_method_from_token): Likewise.
3949         (mono_get_method_full): New public function; does a
3950         mono_get_method(), but also takes a `MonoGenericContext *'.
3951
3952         * verify.c (mono_method_verify): Get the method's generic context
3953         and pass it to mono_field_from_token(), mono_get_method_full() and
3954         mono_class_get_full().
3955
3956 2004-03-25  Martin Baulig  <martin@ximian.com>
3957
3958         * class.c (mono_class_inflate_generic_type): Take a
3959         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
3960         `MonoGenericMethod *'.
3961
3962 2004-03-25  Martin Baulig  <martin@ximian.com>
3963
3964         * loader.h (MonoMethodInflated): Store the MonoGenericContext
3965         instead of the MonoGenericMethod here.
3966
3967 2004-03-25  Martin Baulig  <martin@ximian.com>
3968
3969         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
3970         each time we create a new MonoGenericInst, we also create a new
3971         context which points back to us.
3972
3973         * class.c (inflate_method): Use `ginst->context' instead of
3974         creating a new context.
3975
3976         * loader.c (method_from_memberref): Use
3977         `klass->generic_inst->context' instead of creating a new context.
3978
3979 2004-03-25  Martin Baulig  <martin@ximian.com>
3980
3981         * class.h (MonoGenericContext): New struct.
3982         (MonoGenericMethod): Removed `generic_inst'.
3983
3984         * class.c (mono_class_inflate_generic_method): Take a
3985         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
3986
3987 2004-03-25  Martin Baulig  <martin@ximian.com>
3988
3989         * loader.h (MonoMethodInflated): New typedef.
3990
3991         * metadata.h (MonoMethodSignature): Removed `gen_method', make
3992         `generic_param_count' consume just 30 bits, added `is_inflated'
3993         and `has_type_parameters' flags (one bit each).
3994
3995         * class.c (mono_class_inflate_generic_method): Create a
3996         MonoMethodInflated instead of a MonoMethodNormal and set
3997         `is_inflated' in the method signature.
3998
3999         * class.h (MonoGenericMethod): Removed `generic_method'.
4000
4001 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4002
4003         * image.c: Make sure the name of a MonoImage is always an absolute path.
4004           This fixes bug #54415.
4005
4006 2004-03-24  Martin Baulig  <martin@ximian.com>
4007
4008         * class.c (mono_class_setup_vtable): If we're a generic instance,
4009         use our generic type's vtable size.
4010
4011 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4012
4013         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4014         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4015         problems.
4016
4017 2004-03-23  Martin Baulig  <martin@ximian.com>
4018
4019         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4020         `MonoEvent *events'.
4021
4022         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4023         (typebuilder_icalls): Added "get_event_info"; calls
4024         mono_reflection_event_builder_get_event_info(). 
4025
4026         * reflection.c (mono_reflection_generic_inst_initialize): Added
4027         `MonoArray *events'.
4028         (mono_reflection_event_builder_get_event_info): New function.
4029
4030 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4031
4032         * object.h: add mono_type_initialization_init
4033
4034         * object.c (mono_runtime_class_init): 
4035         implement class constructor synchronization rules
4036         to cope with threading issues.  
4037         add mono_type_initialization_init
4038
4039         * appdomain.c (mono_runtime_init): call 
4040         mono_type_initialization_init
4041
4042         * class.h: removing initializing field from MonoVTable
4043
4044 2004-03-23  Martin Baulig  <martin@ximian.com>
4045
4046         * class.c (my_mono_class_from_generic_parameter): Use
4047         `param->name' if it's not NULL. 
4048
4049 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4050
4051         * class.c: do not insert non-virtual methods in the vtable.
4052         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4053         that means the method is non-virtual. This never would have
4054         happened before.
4055
4056 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4057
4058         * profiler.c: Added lock for accessing coverage_hash.
4059
4060 2004-03-22  Martin Baulig  <martin@ximian.com>
4061
4062         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4063         `method->method->signature->generic_param_count != 0' to make it
4064         work for interface methods.
4065
4066 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4067
4068         * process.c: quote the string passed to the shell using g_shell_quote.
4069
4070 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4071
4072         * threads.c:
4073         (mono_threads_manage): don't remove the finalizer thread and self
4074         from the threads hash table so that mono_thread_manage can be called
4075         more than once.
4076
4077 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4078
4079         * process.c: quote the arguments when UseShellExecute is true. Fixes
4080         bug #55790.
4081
4082 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4083
4084         * threads.c: set mono_thread_detach as a cleanup routine for every
4085         thread. This way it's always executed upon thread termination, either
4086         aborted or finished normally. No more xsp hangs!
4087
4088 2004-03-17  Martin Baulig  <martin@ximian.com>
4089
4090         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4091         `int count_nested' and a `MonoType **nested'.
4092
4093         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4094         most of the functionality into a new static
4095         do_mono_reflection_bind_generic_parameters() and don't take a
4096         `MonoType *nested_in' argument any more.  Don't compute nested
4097         types here.
4098         (mono_reflection_generic_inst_get_nested_types): New public method
4099         to get nested types.
4100
4101         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4102         we're a nested class.
4103
4104         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4105         mono_reflection_generic_inst_get_nested_types() to compute the
4106         nested types.
4107
4108 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4109
4110         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4111         descriptive error message under windows.
4112         
4113 2004-03-17  Martin Baulig  <martin@ximian.com>
4114
4115         * class.c (dup_type): Added `const MonoType *original' argument;
4116         copy the attrs from the original type.
4117
4118 2004-03-17  Martin Baulig  <martin@ximian.com>
4119
4120         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4121         `m->generic_inst_cache' here.
4122
4123 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4124
4125         * exception.h exception.c: Add stack_overflow_exception.
4126
4127 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4128
4129         * threadpool.c:
4130         (overlapped_callback): call SetEvent *after* invoking the callback.
4131         No need to call CloseHandle.
4132
4133 2004-03-16  Martin Baulig  <martin@ximian.com>
4134
4135         * reflection.c (mono_image_get_fieldref_token): Take a
4136         `MonoReflectionField *' instead of a `MonoClassField *' and a
4137         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4138
4139 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4140
4141         * appdomain.c: don't add the culture to the filename we're looking for
4142         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4143
4144 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4145
4146         * locales.c: don't ignore symbols when doing case insensitive compares.
4147         Thanks Dick! Fixes bug #54046.
4148
4149         * threads.c: surround 'threads' usage with enter/leave in
4150         mono_thread_manage.
4151
4152 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4153
4154         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4155         implicitly marshalled as [Out]. Fixes #55450.
4156
4157         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4158         an exception.
4159
4160 2004-03-16  Martin Baulig  <martin@ximian.com>
4161
4162         * class.c (mono_class_from_generic_parameter): Use the actual
4163         parameter name. 
4164
4165 2004-03-16  Martin Baulig  <martin@ximian.com>
4166
4167         * reflection.c (type_get_signature_size): New static function.
4168         Compues the size of the type in a method signature.
4169         (method_get_signature_size): New static function; calls
4170         type_get_signature_size() to compute the actual size of the
4171         method's signature.
4172         (method_encode_signature): Use method_get_signature_size() to get
4173         the signature's size rather than using `nparams * 10'.
4174
4175 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4176
4177         * file-io.h: define here WapiOverlapped on windows. I don't want the
4178         regular OVERLAPPED one.
4179
4180         * file-io.c:
4181         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4182         Disabling AIO on windows.
4183
4184 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4185
4186         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4187         bug #55385.
4188
4189 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4190
4191         * appdomain.c: upgraded corlib version.
4192
4193         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4194         and BeginWrite. Allow opening files for asynchrnous operations.
4195
4196         * file-io.h: new struct that maps FileStreamAsyncResult.
4197         * icall.c: added new icalls.
4198         * process.[ch]: support setting child process environment variables
4199         and use the SHELL or COMSPEC when UseShellExecute is true.
4200
4201         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4202         callback for async. IO is here and also BindHandle.
4203
4204         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4205         from here.
4206
4207 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4208
4209         * reflection.c (create_custom_attr): Allow len == 0.
4210
4211         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4212         computation on big-endian machines.
4213
4214 2004-03-13  Martin Baulig  <martin@ximian.com>
4215
4216         * class.h (MonoGenericInst): Added `int count_ifaces'.
4217
4218         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4219         `ginst->count_ifaces' instead `klass->interface_count' since we
4220         may get called before the vtable is created.
4221
4222         * loader.c (mono_method_get_param_names): If we're a generic
4223         instance, return and don't initialize the class.
4224
4225         * reflection.c (mono_reflection_setup_generic_class): Don't call
4226         ensure_runtime_vtable().
4227         (mono_reflection_bind_generic_parameters): Set
4228         `ginst->count_ifaces'.
4229
4230 2004-03-11  Jackson Harper <jackson@ximian.com>
4231
4232         * icall.c:
4233         * unicode.c:
4234         * unicode.h: Remove unused System.Char icalls.
4235         
4236 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4237
4238         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4239         code when we P/Invoke the first library in Windows.Forms, instead
4240         of when we first open the assembly.
4241
4242         * assembly.c: Drop the lookup from here.
4243
4244 2004-03-10  Martin Baulig  <martin@ximian.com>
4245
4246         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4247         class for properties, fields and events.  Finally fixes #54945.
4248
4249 2004-03-10  Martin Baulig  <martin@ximian.com>
4250
4251         * metadata.c (mono_metadata_class_equal): New static function;
4252         checks whether two generic instances or two generic parameters are
4253         equal.
4254         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4255         compare classes.        
4256
4257 2004-03-10  Martin Baulig  <martin@ximian.com>
4258
4259         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4260
4261         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4262         argument and write it into the `reflection_info' field.
4263
4264         * icall.c
4265         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4266         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4267
4268 2004-03-09  Jackson Harper  <jackson@ximian.com>
4269
4270         * char-conversions.h: use 8 bits for numeric data its all we need
4271         * icall.c: numeric data is only 8 bits now.
4272
4273 2004-03-09  Martin Baulig  <martin@ximian.com>
4274
4275         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4276
4277         * class.c (init_properties, init_events): Initialize the new
4278         `parent' field.
4279
4280         * reflection.c (typebuilder_setup_properties): Likewise.
4281         (typebuilder_setup_events): Likewise.
4282
4283         * reflection.h (MonoEventInfo): Replaced `parent with
4284         `declaring_type' and `reflected_type'.
4285
4286         * icall.c (ves_icall_get_property_info): Distinguish between
4287         declaring and reflected type.
4288         (ves_icall_get_event_info): Likewise.
4289
4290 2004-03-09  Martin Baulig  <martin@ximian.com>
4291
4292         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4293         (ves_icall_Type_GetField): Correctly set field->klass.
4294
4295 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4296
4297         * loader.h: Fix warning.
4298
4299 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4300
4301         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4302         library routine if present.  Notice that it will still continue
4303         executing even if its missing, for those working on the Gtk#
4304         edition of Windows.Forms.
4305
4306         * assembly.c (do_mono_assembly_open): If loading the
4307         System.Windows.Forms call mono_loader_wini_init.
4308
4309 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4310
4311         * class.h: Added MonoRemoteClass struct.
4312         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4313         function for MonoStrings.
4314         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4315         Added internal call for getting the proxy type.
4316         * marshal.c: Get the type of transparent proxies from its remote_class.
4317         Added methods that generate the IL for type checks and casts:
4318         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4319         mono_marshal_get_proxy_cancast.
4320         * marshal.h: Declaration of the previous new methods.
4321         * object.c: Added new moethods for creating and updating MonoRemoteClass
4322         instances: mono_remote_class, mono_upgrade_remote_class, 
4323         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4324         * verify.c: FIx transparent_proxy_fields layout.
4325         * appdomain.c: Bump corlib version.
4326
4327 2004-03-04  Jackson Harper  <jackson@ximian.com>
4328
4329         * icall.c: Add icall to access char conversion tables.
4330         * char-conversions.h: Character conversion tables.
4331         * Makefile.am: Add char-conversions.h private header file.
4332         
4333 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4334
4335         * appdomain.c (unload_thread_main): Increase unloading timeout to
4336         10 sec as a temporary workaround for Nant problems.
4337
4338 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4339
4340         * gc.c: Add checks for GC_enable and GC_disable.
4341
4342         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4343         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4344         (bug #54988).
4345         
4346 2004-02-27  Martin Baulig  <martin@ximian.com>
4347
4348         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4349         `MonoReflectionType *' instead of a `MonoType *'.
4350
4351 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4352
4353         * gc.c (run_finalize): Avoid finalizing the object representing the
4354         finalizer thread.
4355         (finalizer_thread): Fix warning.
4356
4357 2004-02-25  Martin Baulig  <martin@ximian.com>
4358
4359         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4360         argument for nested types.
4361         (mono_class_create_generic): Added support for nested generictypes.
4362
4363         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4364         `GList *nested'.
4365
4366         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4367
4368         * reflection.c (method_encode_signature): Increase the minimum
4369         value of `size' from 10 to 11.
4370         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4371         and `MonoType **types' arguments instead of the `MonoArray
4372         *types'; added `MonoType *nested_in'.  Recursively instantiate
4373         nested classes. 
4374
4375 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4376
4377         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4378         stack_overflow_ex members which are used by exception handling.
4379
4380         * appdomain.c (mono_runtime_init): Initialize the new members.
4381
4382         * gc.c (mono_gc_enable): New helper function.
4383         * gc.c (mono_gc_disable): New helper function.
4384
4385 2004-02-23  Martin Baulig  <martin@ximian.com>
4386
4387         * icall.c: I must have been really stupid - make it actually work
4388         this time ;-)
4389
4390 2004-02-23  Martin Baulig  <martin@ximian.com>
4391
4392         * loader.c (method_from_memberref): Only inflate the method if
4393         it's in another klass.
4394
4395 2004-02-23  Martin Baulig  <martin@ximian.com>
4396
4397         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4398         (mono_class_init): If we're a generic instance and an interface,
4399         compute `class->interface_id'; also create `class->interfaces'
4400         here and inflate them.
4401
4402         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4403         `ginst->is_open'.
4404         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4405
4406         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4407
4408 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4409
4410         * reflection.c (method_encode_code): Improved the error message
4411         generated by the exception.
4412
4413 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4414
4415         * icall.c: Martin did not do what he said in the ChangeLog for
4416         2004-02-18, but put back the changes for properties and events.
4417         Commenting those changes out again and adding comment to bug #54518.
4418         
4419         * process.c: removed warning.
4420
4421 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4422
4423         * marshal.c (emit_struct_conv): Print an error message instead of
4424         asserting when a type does not have the StructLayout attribute.
4425
4426 2004-02-20  Martin Baulig  <martin@ximian.com>
4427
4428         * reflection.c (mono_type_get_object): Also use the cache for
4429         generic instances.
4430         (mono_reflection_bind_generic_parameters): Always compute
4431         `ginst->ifaces'.        
4432
4433 2004-02-20  Martin Baulig  <martin@ximian.com>
4434
4435         * class.h (MonoGenericMethod): Removed `klass'.
4436
4437         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4438         *klass' argument.
4439
4440 2004-02-20  Martin Baulig  <martin@ximian.com>
4441
4442         * reflection.c (method_encode_methodspec): Actually use the
4443         uninflated signature for the memberref.
4444
4445 2004-02-20  Martin Baulig  <martin@ximian.com>
4446
4447         * class.h (MonoGenericMethod): Removed `declaring'.
4448
4449         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4450         is NULL, compute it here.
4451
4452 2004-02-20  Martin Baulig  <martin@ximian.com>
4453
4454         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4455
4456         * metadata.c (mono_metadata_generic_inst_hash): New method.
4457         (mono_metadata_generic_inst_equal): New method.
4458
4459         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4460         `klass->image->generic_inst_cache' cache to avoid creating
4461         duplicate MonoGenericInst's.
4462
4463         * class.c (mono_class_inflate_generic_type): Use the cache.
4464
4465 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4466
4467         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4468
4469 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4470
4471         * icall.c: added Socket.WSAIoctl icall.
4472
4473         * socket-io.[ch]: implemented
4474         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4475
4476 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4477
4478         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4479
4480 2004-02-18  Urs C Muff  <umuff@quark.com>
4481
4482         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4483         this work on PPC and other big-endian architectures.
4484
4485         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4486         fields with an underscore to make sure they're only accessed by
4487         the read32() macro.
4488
4489 2004-02-18  Martin Baulig  <martin@ximian.com>
4490
4491         * icall.c: Put the klass->refclass changes back for methods and
4492         fields, but not for properties and events.  We're currently not
4493         distinguishing between DeclaringType and ReflectedType for
4494         properties and events, that's what caused the regressions.
4495
4496 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4497
4498         * object.c:
4499         (mono_async_result_new): the handle can be NULL.
4500
4501         * threadpool.c: Use an event instead of a semaphore, don't initialize
4502         it until needed. This saves quite a few semaphores from being created
4503         when using the threadpool.
4504
4505 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4506
4507         * object.c (mono_string_is_interned_lookup): Fix interning of long
4508         strings. Fixes #54473.
4509
4510         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4511
4512         * icall.c: Revert the klass->refclass changes since they introduce
4513         regressions (bug #54518).
4514
4515 2004-02-18  Martin Baulig  <martin@ximian.com>
4516
4517         * class.c (mono_class_init): If we're a generic instance and don't
4518         come from a TypeBuilder, inflate our members here.
4519         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4520         (mono_class_create_generic): New public method.
4521         (mono_class_initialize_generic): Removed.
4522         (get_instantiation_name): Renamed to
4523         _mono_class_get_instantiation_name() and made it public.
4524
4525 2004-02-18  Martin Baulig  <martin@ximian.com>
4526
4527         * class.c (mono_class_inflate_generic_type): Clear the new
4528         instance's `nginst->klass' when inflating a generic instance.
4529         (mono_class_is_subclass_of): Added (basic) support for generic
4530         instances.
4531
4532 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4533
4534         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4535         MonoMempool to hold compiled native code.
4536
4537 2004-02-17  Martin Baulig  <martin@ximian.com>
4538
4539         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4540         `properties'.
4541
4542         * reflection.c (mono_reflection_generic_inst_initialize): Added
4543         `MonoArray *properties' argument.
4544
4545         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4546
4547 2004-02-17  Martin Baulig  <martin@ximian.com>
4548
4549         * icall.c (ves_icall_Type_GetFields): Renamed to
4550         ves_icall_Type_GetFields_internal() and added a
4551         `MonoReflectionType *rtype' argument; pass it to
4552         mono_field_get_object() to set the field's "reflected" type.
4553         (ves_icall_Type_GetConstructors): Likewise.
4554         (ves_icall_Type_GetEvents): Likewise.
4555         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4556         argument; pass it to mono_method_get_object() to set the method's
4557         "reflected" type.       
4558
4559 2004-02-17  Martin Baulig  <martin@ximian.com>
4560
4561         * class.h (MonoDynamicGenericInst): New type.
4562         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4563
4564         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4565         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4566         (ves_icall_MonoGenericInst_GetFields): New interncall.
4567
4568         * class.c (mono_class_from_generic): Don't call
4569         mono_class_initialize_generic() if this is a dynamic instance;
4570         ie. it's being created from a TypeBuilder.
4571         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4572         `class->byval_arg.type'.
4573
4574         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4575         to `inflate_method' and made static.
4576         (mono_reflection_inflate_field): Removed.
4577         (mono_reflection_generic_inst_initialize): New public method.
4578
4579         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4580         `ctors' and `fields'; added `initialized'.
4581
4582 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4583
4584         * debug-helpers.c (mono_method_full_name): Fix output for empty
4585         namespaces.
4586
4587 2004-02-12  Martin Baulig  <martin@ximian.com>
4588
4589         * class.h (MonoClassField): Added `MonoType *generic_type'.
4590
4591         * reflection.c (mono_image_get_fieldref_token): Added support for
4592         instantiated generic types.
4593         (field_encode_inflated_field): Removed.
4594         (mono_image_get_inflated_field_token): Removed.
4595         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4596
4597         * reflection.h (MonoReflectionInflatedField): Removed.
4598
4599 2004-02-12  Martin Baulig  <martin@ximian.com>
4600
4601         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4602         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4603
4604         * reflection.c (mono_image_get_methodspec_token): Take a
4605         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4606         (mono_image_create_token): Check whether we have a
4607         `method->signature->gen_method' and call
4608         mono_image_get_methodspec_token() if appropriate.
4609         (inflated_method_get_object): Removed.
4610         (mono_reflection_bind_generic_method_parameters): Return a
4611         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4612         (mono_reflection_inflate_method_or_ctor): Likewise.
4613
4614         * reflection.h (MonoReflectionInflatedMethod): Removed.
4615
4616 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4617
4618         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4619         for custom valuetype marshalling.
4620
4621         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
4622
4623 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4624
4625         * icall.c: fixed WSAGetLastError_internal name.
4626
4627 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
4628
4629         * threads.c (mono_thread_attach): Allow this to be called multiple
4630         times for a thread.
4631         
4632         * threads.c (build_wait_tids): Do not wait for ourselves.
4633
4634         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
4635         appdomain list is empty.
4636
4637         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
4638         memory returned by mono_string_builder_to_utf16, since it points into
4639         managed memory. Thanks to Bernie Solomon for noticing this.
4640
4641         * icall.c: Add AppDomainSetup icalls.
4642
4643         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
4644
4645         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
4646         types.
4647
4648         * reflection.c (reflection_methodbuilder_to_mono_method): Save
4649         custom attributes to the method_aux struct. Also fix array indexes etc.
4650
4651         * loader.c (mono_method_get_param_names): Make dynamic case work again.
4652         
4653 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
4654
4655         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
4656         (both static and runtime) and reduce startup time.
4657
4658 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
4659
4660         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
4661         AsAny marshalling conversion instead of crashing.
4662
4663         * marshal.c: Fix warnings.
4664
4665 2004-02-09  Martin Baulig  <martin@ximian.com>
4666
4667         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
4668
4669         * reflection.h (MonoReflectionInflatedMethod): Removed the
4670         `declaring' field, it's now in the unmanaged MonoGenericMethod.
4671
4672         * reflection.c (method_encode_methodspec): Removed the `method'
4673         argument; we get it from `gmethod->declaring'.
4674         (inflated_method_get_object): Removed the `declaring' argument.
4675
4676 2004-02-09  Martin Baulig  <martin@ximian.com>
4677
4678         * class.h (MonoGenericMethod): New type.
4679         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
4680         `generic_method'.
4681
4682         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
4683         a `MonoGenericMethod *gen_method' one.
4684
4685         * class.c (mono_class_inflate_generic_type): Take an additional
4686         `MonoGenericMethod * argument.  This is only non-NULL if we're
4687         inflating types for a generic method.   
4688         (mono_class_inflate_generic_signature): Renamed to
4689         inflate_generic_signature() and made static; take a
4690         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4691         (inflate_generic_header): Take a `MonoGenericMethod *' argument
4692         instead of a `MonoGenericInst *' one.
4693         (mono_class_inflate_generic_method): Likewise.
4694
4695         * reflection.c (encode_generic_method_sig): Take a
4696         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4697         (method_encode_methodspec): Likewise.
4698         (inflated_method_get_object): Likewise. 
4699
4700         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
4701         field with a `MonoGenericMethod *gmethod' one.  
4702
4703 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
4704
4705         * class.h (mono_class_has_parent): add parens to expansion
4706         so you can ! this.
4707
4708 2004-02-08  Martin Baulig  <martin@ximian.com>
4709
4710         * image.h (MonoImage): Removed `generics_cache'.
4711
4712         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
4713         instead of a `MonoType *' argument; removed the `inflate_methods'
4714         argument.  Don't inflate methods here.
4715
4716         * loader.c (find_method): If it's a generic instance, call
4717         mono_class_init() on the `sclass->generic_inst->generic_type'.
4718
4719         * metadata.c (mono_type_size): Make this work on uninitialized
4720         generic instances; call it on the `ginst->generic_type's class.
4721
4722         * reflection.c (mono_reflection_bind_generic_parameters): Call
4723         mono_class_from_generic() to create the `ginst->klass'.
4724
4725 2004-02-08  Martin Baulig  <martin@ximian.com>
4726
4727         * class.h (MonoClass): Changed type of `generic_inst' from
4728         `MonoType *' to `MonoGenericInst *'.
4729
4730 2004-02-08  Martin Baulig  <martin@ximian.com>
4731
4732         * icall.c (ves_icall_Type_BindGenericParameters): Just call
4733         mono_type_get_object(), this is now creating a `MonoGenericInst'
4734         for MONO_TYPE_GENERICINST.
4735         (ves_icall_MonoGenericInst_GetParentType): Likewise.
4736         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
4737
4738         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
4739         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
4740         (inflated_method_get_object): Added `MonoClass *refclass' argument.
4741         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
4742         and reflected type.
4743
4744         * reflection.h (MonoReflectionInflatedMethod): Removed
4745         `declaring_type' and `reflected_type'.
4746
4747 2004-02-08  Martin Baulig  <martin@ximian.com>
4748
4749         * class.h (MonoGenericInst): Added `MonoType *parent' and
4750         `MonoType **ifaces'.
4751
4752         * reflection.h (MonoReflectionGenericInst): Removed `klass',
4753         `parent' and `interfaces'.
4754
4755         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4756         `MonoType *' argument and return a `MonoType *'.
4757
4758         * icall.c
4759         (ves_icall_MonoGenericInst_GetParentType): New interncall.
4760         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
4761
4762 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
4763
4764         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
4765         valuetype marshalling.
4766
4767 2004-02-06  Martin Baulig  <martin@ximian.com>
4768
4769         * class.c
4770         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
4771         (my_mono_class_from_generic_parameter): Likewise.
4772
4773 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
4774
4775         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
4776         contents of the symbol files lazily.
4777
4778         * object.h (MonoThread): Add 'name' and 'name_len' fields.
4779
4780         * threads.h threads.c icall.c: New icalls for getting and setting the
4781         threads name.
4782
4783 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
4784
4785         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
4786         Raise an exception when the domain is not found.
4787
4788 2004-02-03  Martin Baulig  <martin@ximian.com>
4789
4790         * reflection.c (mono_image_get_methodspec_token): Use the
4791         uninflated signature; fixes gen-33.
4792
4793 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
4794
4795         * gc.c threads.c: Make the finalizer thread a normal managed thread so
4796         the finalizer code can use thread functionality.
4797
4798         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
4799         the finalizer thread.
4800
4801         * threads.c: Make some functions more robust.
4802
4803         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
4804
4805         * metadata.h: Add new marshalling conventions.
4806
4807         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
4808         stringbuilder marshalling. Fixes #53700.
4809
4810         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
4811
4812         * reflection.c (mono_image_get_type_info): Save declarative security
4813         info.
4814
4815         * reflection.c (mono_image_get_field_info): Handle uninitialized 
4816         unmanaged fields as well.
4817
4818         * appdomain.c: Bump corlib version.
4819
4820 2004-02-01  Martin Baulig  <martin@ximian.com>
4821
4822         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
4823         method type arguments.  
4824
4825 2004-01-30  Duncan Mak  <duncan@ximian.com>
4826
4827         * marshal.h: Add prototype for
4828         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
4829         and
4830         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
4831         fix the build.
4832
4833 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
4834
4835         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
4836         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
4837
4838 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4839
4840         * marshal.c (mono_marshal_get_native_wrapper): Add support for
4841         custom marshalling of valuetypes.
4842
4843         * marshal.c: Fix some warnings.
4844
4845 2004-01-29  Martin Baulig  <martin@ximian.com>
4846
4847         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
4848         for generic method parameters.
4849
4850         * reflection.c (method_encode_methodspec): Write the uninflated
4851         signature into the methodspec table.
4852         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
4853         is always the uninflated method.
4854         (reflection_methodbuilder_to_mono_method): Copy the generic
4855         parameters from the MethodBuilder into `header->gen_params'.
4856
4857 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4858
4859         * class.c (mono_class_from_generic_parameter): Fix warning.
4860
4861 2004-01-27  Martin Baulig  <martin@ximian.com>
4862
4863         * class.c (mono_class_from_generic_parameter): Don't create
4864         `klass->methods' here.  
4865
4866 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
4867
4868         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
4869         extension since it does not work with libraries named lib<FOO>.dll.so.
4870
4871 2004-01-25  Martin Baulig  <martin@ximian.com>
4872
4873         * class.c (mono_class_inflate_generic_type): Added support for
4874         MONO_TYPE_GENERICINST.
4875
4876         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
4877         inflate methods on open constructed types.      
4878
4879 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4880
4881         * object.c: fire ProcessExit event in the root AppDomain after running
4882         Main. Fixes bug #53299.
4883
4884 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
4885
4886         * socket-io.c: include the new socket-wrappers.h header.
4887         Use the wrappers instead of the unix socket functions to make the code
4888         more clear.
4889
4890 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
4891
4892         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
4893
4894         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4895         Fixes #22532.
4896
4897 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
4898
4899         * reflection.c (mono_image_create_pefile): Handle the case when the
4900         entry point is not a MethodBuilder.
4901
4902         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4903         field to ReflectionMethod since it is not allways a builder.
4904
4905         * reflection.c (type_get_fully_qualified_name): New helper function to
4906         return the fully qualified name of a type.
4907
4908         * reflection.c (encode_marshal_blob): Always emit the fully qualified
4909         type name for custom marshallers.
4910
4911         * reflection.c (mono_marshal_spec_from_builder): Ditto.
4912
4913         * class.c (mono_class_setup_vtable): If a parent class already 
4914         implements an interface, use the implementing methods from that class.
4915         Fixes #53148.
4916
4917 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4918
4919         * threadpool.c: just return instead of ExitThread to allow for thread
4920         clean up earlier.
4921
4922 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
4923
4924         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
4925         when closing resource modules.
4926
4927         * reflection.c (mono_image_create_pefile): Handle the case when the
4928         entry point is not a MethodBuilder.
4929
4930         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4931         field to ReflectionMethod since it is not allways a builder.
4932
4933 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
4934
4935         * marshal.c (mono_marshal_get_managed_wrapper): 
4936         mono_marshal_alloc takes native int so CONV_I
4937         the arg for 64bits.
4938
4939 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
4940
4941         * reflection.c (fixup_cattrs): New function to fixup the methoddef
4942         tokens in the cattr table. Fixes #53108.
4943
4944 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4945
4946         * loader.c: don't trim ".dll" before looking up in the config file.
4947         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
4948
4949 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
4950
4951         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
4952         Return the module which contains the resource as well.
4953         (ves_icall_System_Reflection_Module_Close): New icall.
4954
4955         * appdomain.c: Bump corlib version number.
4956
4957         * image.c (mono_image_addref): New public function.
4958
4959         * assembly.c: Call mono_image_addref.
4960
4961         * reflection.c (mono_module_get_object): Increase reference count of 
4962         the image.
4963
4964         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4965         Fixes #22532.
4966
4967         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
4968         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
4969         proper exceptions on DllImport problems.
4970
4971 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
4972
4973         * class.c, metadata.c: eliminate CSIZE macro.
4974
4975 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
4976
4977         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
4978         * object.h: Added async_callback field in MonoAsyncResult.
4979         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
4980         * verify.c: Added async_callback in MonoAsyncResult layout.
4981
4982 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
4983
4984         * reflection.c (mono_reflection_get_custom_attrs): Add support
4985         for Modules.
4986
4987 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4988
4989         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
4990         marshalling.
4991         (mono_marshal_method_from_wrapper): Add null pointer check.
4992
4993 2004-01-16  Martin Baulig  <martin@ximian.com>
4994
4995         * debug-mono-symfile.h: Set version number to 36 and reflect
4996         latest symbol writer changes.
4997
4998 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4999
5000         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5001         multi-dimensional arrays.
5002         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5003         (mono_class_from_mono_type): Use bounded_array_class_get.
5004         
5005         * class.c (mono_bounded_array_class_get): New function which takes
5006         a 'bounded' bool argument to distinguish vectors from one dimensional
5007         arrays.
5008
5009         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5010         bounded_array_class_get if the array has bounds.
5011
5012         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5013         Search modules loaded using AssemblyBuilder:AddModule as well.
5014
5015 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5016
5017         * appdomain.c: increased corlib version.
5018         * filewatcher.c: removed g_print.
5019         * icall.c:
5020         (get_property_info): only allocate what is actually requested.
5021         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5022
5023 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5024
5025         * Makefile.am: added filewatcher.[ch]
5026         * filewatcher.[ch]: FileSystemWatcher runtime support.
5027         * icall.c: added new FSW icalls.
5028
5029 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5030
5031         * string-icalls.c: fix stringbuilder regression as suggested by
5032         Iain McCoy <iain@mccoy.id.au>.
5033
5034 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5035
5036         * process.c (process_read_stringtable_block): Recognize '007f' as
5037         a language neutral stringtable block.
5038
5039 2004-01-12  Patrik Torstensson
5040
5041         * object.h (MonoStringBuilder) : Changed layout to support our
5042         new stringbuilder class.
5043         * marshal.c: Change marshalling to support the new layout of 
5044         string builder.
5045         * appdomain.c: increased version number because new layout of
5046         string builder.
5047
5048 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5049
5050         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5051         assembly name as an string instead of an AssemblyName, since it is
5052         easier to extract info from it.
5053
5054         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5055         the culture subdirectories too. Fixes #52231.
5056
5057 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5058
5059         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5060         It takes 2 new parameters with an optional name for the method to look
5061         for and case ignoring info.
5062
5063         * threadpool.c: removed unused variable.
5064
5065 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5066
5067         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5068         It takes 2 new parameters with an optional name for the property to look
5069         for and case ignoring info.
5070         Fixes bug #52753.
5071
5072 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5073
5074         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5075         Fix #52451.
5076
5077 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5078
5079         * appdomain.c:
5080         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5081         Fixes bug #52630.
5082
5083 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5084
5085         * reflection.c: Add support for more than one unmanaged resource.
5086
5087         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5088         in field->def_value, as done in all other cases.
5089
5090         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5091         TypeBuilders.
5092
5093         * reflection.c (mono_reflection_create_runtime_class): Remove 
5094         errorneous assignment to klass->element_class, since it is already
5095         done in mono_reflection_setup_internal_class.
5096
5097 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5098
5099         * gc.c: added missing LeaveCriticalSection.
5100         * icall.c: indented a couple of lines.
5101         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5102         if we call EndInvoke inside a callback. Fixes bug #52601.
5103
5104 2004-01-07  Martin Baulig  <martin@ximian.com>
5105
5106         * mono-debug-debugger.h
5107         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5108
5109 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5110
5111         * appdomain.c: Use messages in NotImplementedException.
5112
5113         * exception.c (mono_get_exception_not_implemented): Now this takes
5114         a message argument.
5115
5116         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5117         exception instead of g_asserting an aborting when something is not
5118         implemented.
5119
5120         Add some inline docs.
5121
5122 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5123
5124         * reflection.h: Update after changes to object layout.
5125
5126         * reflection.c: Implement saving of unmanaged aka win32 resources.
5127
5128         * appdomain.c: Bump version number.
5129
5130         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5131         Handle missing domains gracefully.
5132
5133 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5134
5135         * file-io.c : On Windows, there are much more invalid_path_chars.
5136
5137 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5138
5139         * class.h, object.c: prepare for GetType () speedup.
5140
5141 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5142
5143         * profiler.c: workaround for --profile null reference exception on
5144           cygwin. Patch by Patrik Torstensson.
5145
5146 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5147
5148         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5149         make work for unaligned access.
5150
5151 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5152
5153         * class.c: small cleanup (class->fields [i] -> field).
5154         * image.c: check address of metadata is valid.
5155
5156 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5157
5158         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5159         search the list of loaded assemblies.
5160
5161         * reflection.c (mono_reflection_type_from_name): Use 
5162         mono_assembly_loaded instead of mono_image_loaded.
5163
5164         * reflection.c: Fix warnings.
5165
5166 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5167
5168         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5169         is dynamic. This is needed since an assembly can contain both dynamic and
5170         non-dynamic images.
5171
5172         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5173         assembly->dynamic.
5174
5175         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5176
5177         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5178         to store modules loaded using AddModule.
5179
5180         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5181         on Modules.
5182
5183         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5184
5185         * reflection.c (mono_image_fill_export_table_from_module): New function to
5186         fill out the EXPORTEDTYPES table from a module.
5187
5188         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5189         into a separate function. Also handle loaded non-dynamic modules.
5190
5191         * reflection.c (mono_image_basic_init): Fix memory allocation.
5192
5193         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5194
5195         * assembly.c (mono_assembly_load_references): Make this public.
5196
5197 2003-12-19  Martin Baulig  <martin@ximian.com>
5198
5199         * class.c (mono_class_initialize_generic): Made this static, take
5200         a `MonoGenericInst *' instead of a `MonoClass *'.
5201         (mono_class_from_generic): Call mono_class_initialize_generic()
5202         unless we're already initialized or being called from
5203         do_mono_metadata_parse_generic_inst().
5204
5205         * class.h (MonoGenericInst): Added `initialized' and
5206         `init_pending' flags.
5207
5208         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5209         `mono_class_init (gklass)' or mono_class_initialize_generic()
5210         here; set `generic_inst->init_pending' while parsing the
5211         `type_argv'.
5212
5213 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5214
5215         * locales.c: include string.h for memxxx prototypes
5216
5217 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5218
5219         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5220         constructor when accessing literal fields.
5221
5222 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5223
5224         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5225
5226         * reflection.c (assembly_add_resource_manifest): New function to fill
5227         the MANIFESTRESOURCE table.
5228
5229         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5230
5231         * reflection.h: Update to changes in class layout.
5232
5233         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5234         Reenable call to mono_runtime_is_shutting_down ().
5235
5236         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5237         determine if the runtime is shutting down.
5238
5239 2003-12-16  Jackson Harper <jackson@ximian.com>
5240
5241         * icall.c: comment out call to mono_runtime_is_shutting_down to
5242         fix build.
5243         
5244 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5245
5246         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5247         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5248
5249 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5250
5251         * reflection.c: move definition of swap_with_size
5252         to before its first call
5253
5254 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5255
5256         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5257
5258         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5259         icall.
5260
5261         * object.c: Fix warnings.
5262
5263         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5264         members if FlattenHierarchy is set.
5265
5266         * reflection.c (mono_image_add_decl_security): New function to emit
5267         declarative security.
5268
5269         * reflection.h reflection.c: Add support for declarative security.
5270
5271         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5272         
5273 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5274
5275         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5276         
5277         * appdomain.c verify.c: Moved corlib version checking into its own
5278         function in appdomain.c since it needs to create vtables etc.
5279
5280 2003-12-13  Patrik Torstensson <p@rxc.se>
5281
5282         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5283         instead of unwrapped server.
5284
5285 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5286
5287         * verify.c (check_corlib): Fix field index.
5288
5289 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5290
5291         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5292         GetGacPath icall.
5293
5294 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5295
5296         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5297         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5298         cope with sizeof(size_t) != sizeof(guint32).
5299
5300 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5301
5302         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5303         in case of failure.
5304
5305 2003-12-10  Mark Crichton <crichton@gimp.org>
5306
5307         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5308         in managed code.
5309
5310         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5311
5312 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5313
5314         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5315         marked as deleted.
5316
5317 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5318
5319         * verify.c (check_corlib): Handle the case when the version field is 
5320         initialized by a static constructor.
5321
5322 2003-12-08  Patrik Torstensson  <p@rxc.se>
5323
5324     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5325
5326 2003-12-08  Martin Baulig  <martin@ximian.com>
5327
5328         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5329         a MonoReflectionGenericParameter, also take the parameter index
5330         and name as arguments.
5331         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5332         (ves_icall_MonoGenericParam_initialize): New interncall.
5333         (ves_icall_Type_make_byref_type): New interncall.
5334
5335         * reflection.h (MonoReflectionGenericParam): Derive from
5336         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5337         `index' fields.
5338
5339         * reflection.c (mono_reflection_define_generic_parameter): Create
5340         and return a new MonoReflectionGenericParam; don't initialize the
5341         constraints here.
5342         (mono_reflection_initialize_generic_parameter): New public method;
5343         initializes the constraints and creates the `param->pklass'.
5344
5345 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5346
5347         * reflection.h reflection.c: Use the new fields 'num_types', 
5348         'num_fields' and 'num_methods' to track the number of types etc.
5349
5350         * verify.c (check_corlib): Check corlib version number.
5351
5352 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5353
5354         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5355         function works on all methods.
5356
5357 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5358
5359         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5360         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5361         the custom_type_info flag of the transparent proxy.
5362         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5363         objects that supports IRemotingTypeInfo.
5364         * object.h: Added custom_type_info field in transparent proxy.
5365
5366 2003-12-06  Martin Baulig  <martin@ximian.com>
5367
5368         * class.c (mono_class_create_from_generic): Removed.
5369         (mono_class_from_generic): Check `ginst->klass' before doing
5370         anything else.  This is important to fully support "recursive"
5371         generic types.
5372
5373         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5374         empty `generic_inst->klass' before doing anything else.
5375
5376 2003-12-06  Dick Porter  <dick@ximian.com>
5377
5378         * verify.c: 
5379         * object.h:
5380         * icall.c:
5381         * locales.c: Use C structs to access class fields.  Don't do a
5382         conversion between MonoString and UChar because both are
5383         platform-endian UTF-16.  Compare now takes startindex and count
5384         parameters.  Add a char overload for IndexOf.  Speed up the
5385         invariant string IndexOf.
5386
5387 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5388
5389         * Makefile.am (monosn_LDADD): Fix parallel build.
5390
5391 2003-12-04  Martin Baulig  <martin@ximian.com>
5392
5393         * icall.c
5394         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5395         (ves_icall_Type_make_array_type): New interncall.       
5396
5397 2003-12-04  Martin Baulig  <martin@ximian.com>
5398
5399         * locales.c: also change it in the !HAVE_ICU case.
5400
5401 2003-12-04  Dick Porter  <dick@ximian.com>
5402
5403         * icall.c:
5404         * locales.c: construct_compareinfo is now in CompareInfo, not
5405         CultureInfo.
5406
5407 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5408
5409         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5410         image->files array.
5411
5412         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5413         table as well.
5414
5415         * assembly.c (mono_assembly_load_references): Only load references
5416         once.
5417
5418         * class.c (mono_class_from_name): Avoid linear search of the 
5419         EXPORTEDTYPE table.
5420
5421         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5422
5423 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5424
5425         * image.h (MonoImage): Add 'field_cache' field.
5426
5427         * loader.c (mono_field_from_token): Cache field lookups.
5428         
5429         * reflection.c (mono_module_get_object): Fix name property.
5430
5431         * icall.c (ves_icall_get_enum_info): Update after changes to 
5432         mono_metadata_get_constant_index ().
5433
5434         * icall.c: Get rid of get_type_info icall, use a separate icall for
5435         each type property to avoid needless memory allocations. Fixes #51514.
5436
5437         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5438         to avoid needless binary searches.
5439
5440         * class.c (class_compute_field_layout): Move the initialization of
5441         field->def_value to mono_class_vtable ().
5442
5443         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5444         non-corlib types.
5445
5446         * object.c (mono_object_allocate): Make it inline.
5447
5448         * object.c (mono_object_allocate_spec): Make it inline.
5449         
5450 2003-12-02  Dick Porter  <dick@ximian.com>
5451
5452         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5453         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5454
5455 2003-12-01  Dick Porter  <dick@ximian.com>
5456
5457         * threads.c: Fix signature and call in CreateMutex and
5458         CreateEvent.
5459
5460 2003-12-01  Dick Porter  <dick@ximian.com>
5461
5462         * icall.c: 
5463         * locales.c: Implement string compares and searching
5464
5465         * object.h: Add extra Thread field
5466
5467 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5468
5469         * reflection.c (fixup_method): Add support for MonoCMethod.
5470
5471 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5472
5473         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5474
5475         * reflection.c (assembly_name_to_aname): Allow extra characters in
5476         assembly names. Fixes #51468.
5477
5478 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5479
5480         * exception.c (mono_exception_from_name_domain): New helper function.
5481
5482         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5483         exception object in the correct domain.
5484
5485         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5486         formatting + make a copy a the input data.
5487
5488         * loader.c (mono_get_method_from_token): Methods which contain
5489         native code do not have entries in the ImplMap.
5490
5491         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5492         Thanks to Gonzalo for spotting this.
5493         
5494         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5495         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5496
5497         * assembly.h (mono_assembly_load_from): Split the second part of 
5498         assembly loading into a new public function.
5499
5500         * exception.h (mono_get_exception_bad_image_format): New function.
5501
5502 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5503
5504         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5505         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5506         
5507         * icall.c: Add new icall for creating dynamic methods.
5508
5509         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5510
5511         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5512
5513         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5514         create a dynamic method.
5515
5516         * reflection.c (resolve_object): New helper function.
5517
5518         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5519         which manipulate it so they can also work on dynamic methods.
5520
5521         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5522         creating the MonoReflectionMethodAux structure if it is not needed.
5523         
5524         * reflection.h verify.c: Update after changes to object layout.
5525
5526         * reflection.c (method_builder_encode_signature): Fix compilation on
5527         gcc 2.95.x.
5528
5529 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5530
5531         * appdomain.h: Added support for context static fields. Added static_data
5532           field to MonoAppContext and renamed thread_static_fields to a more
5533           generic special_static_fields in MonoAppDomain, since it can now contain
5534           context static fields.
5535         * domain.c: Updated hashtable name.
5536         * object.c: Replaced field_is_thread_static() for a more generic
5537           field_is_special_static() which also checks for context static attribute.
5538           In mono_class_vtable(), added support for static context fields.
5539         * threads.c: Changed methods that manage thread static fields to more
5540           generic methods so they can be reused both for thread and context static
5541           data.
5542         * threads.h: Declared some new methods.
5543
5544 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5545
5546         * reflection.h: Update after changes to the managed types.
5547
5548         * reflection.c (encode_custom_modifiers): New helper function.
5549
5550         * reflection.c (method_encode_signature): Emit custom modifiers.
5551
5552         * reflection.c (field_encode_signature): Emit custom modifiers.
5553
5554 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5555
5556         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5557
5558         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5559         implementation.
5560
5561         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5562         icall.
5563
5564         * object.c (mono_field_get_value_object): New function.
5565
5566         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5567         specific.
5568
5569 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5570
5571         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5572         return a preallocated out-of-memory exception instance.
5573
5574         * object.c (out_of_memory): Use the new function.
5575
5576         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5577         flag is before the custom modifiers. Fixes #49802.
5578
5579 2003-11-16  Martin Baulig  <martin@ximian.com>
5580
5581         * class.c (mono_class_is_open_constructed_type): Implemented the
5582         MONO_TYPE_GENERICINST case.
5583
5584 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5585
5586         * assembly.c (mono_assembly_fill_assembly_name): New function to
5587         fill out the MonoAssemblyName structure.
5588         (mono_assembly_open): Use the new function.
5589
5590         * icall.c (fill_reflection_assembly_name): New helper function.
5591
5592         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5593         new function.
5594
5595         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5596
5597 2003-11-15  Martin Baulig  <martin@ximian.com>
5598
5599         * class.c (mono_class_is_open_constructed_type): New public
5600         function; checks whether a type is an open constructed type,
5601         ie. whether it still contains type parameters.
5602         (mono_class_inflate_generic_type): If we're a type parameter and
5603         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5604         type.
5605
5606         * class.h (MonoGenericInst): Added `guint32 is_open'.
5607
5608         * loader.c (method_from_methodspec): Check whether we're an open
5609         or closed constructed type and set `ginst->is_open'.
5610
5611         * reflection.c (mono_reflection_bind_generic_parameters): Check
5612         whether we're an open or closed constructed type and set
5613         `ginst->is_open'.
5614         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5615         from open constructed types.
5616
5617 2003-11-15  Martin Baulig  <martin@ximian.com>
5618
5619         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5620         a generic instance (instead of a generic type declaration) with
5621         unbound generic parameters, bind them to our actual types.
5622
5623 2003-11-14  Martin Baulig  <martin@ximian.com>
5624
5625         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
5626
5627         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5628         an interface type, populate `res->interfaces' with instantiated
5629         versions of all the interfaces we inherit.
5630
5631 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
5632
5633         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
5634         when MONO_PATH is set but doesn't contain the install dir.
5635
5636 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5637
5638         * icall.c:
5639         (ves_icall_Type_GetInterfaces): don't return an interface twice when
5640         it's also implemented in base classes. Fixes bug #50927.
5641
5642 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
5643
5644         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
5645         if this method is called from a finalizer. Fixes #50913.
5646
5647 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5648
5649         * threads.c: Implement VolatileRead/VolatileWrite
5650
5651         * icall.c: Add new icalls for VolatileRead/VolatileWrite
5652
5653 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5654
5655         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
5656         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
5657         2.95.3.
5658
5659         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
5660         from Peter Ross (pro@missioncriticalit.com).
5661         
5662 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
5663
5664         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
5665
5666 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5667
5668         * assembly.c (mono_assembly_load_references): Disable check because it
5669         triggers on older corlibs which lots of people have.
5670
5671 2003-11-12  Jackson Harper  <jackson@ximian.com>
5672
5673         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
5674         load corlib.dll if mscorlib.dll is not found.
5675         * assembly.h: Remove corlib name define.
5676         * class.c:
5677         * domain.c:
5678         * image.c: Change corlib name to mscorlib.
5679         
5680 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5681
5682         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
5683
5684 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
5685
5686         * appdomain.h: Added loader_optimization here to sync with the C#
5687         code, and add disallow_binding_redirects field.
5688
5689 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5690
5691         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
5692
5693         * reflection.c (mono_image_build_metadata): Fix crash on modules
5694         with no types.
5695
5696         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
5697
5698         * icall.c (ves_icall_get_method_info): Return callingConvention as
5699         well.
5700
5701         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
5702         namespaces from the EXPORTEDTYPE table as well.
5703
5704         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
5705         from all modules inside the assembly.
5706         
5707 2003-11-11  Martin Baulig  <martin@ximian.com>
5708
5709         * reflection.c (mono_reflection_bind_generic_parameters): Make
5710         this work for interfaces.
5711
5712 2003-11-11  Martin Baulig  <martin@ximian.com>
5713
5714         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
5715
5716 2003-11-11  Martin Baulig  <martin@ximian.com>
5717
5718         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
5719         "MonoInflatedMethod" and "MonoInflatedCtor".
5720
5721 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5722
5723         * reflection.c (resolution_scope_from_image): Use the assembly table
5724         from the manifest module, since other modules don't have it.
5725
5726         * debug-helpers.c (mono_type_full_name): New helper function.
5727
5728         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
5729
5730         * image.c (mono_image_load_file_for_image): New public function which
5731         is a replacement for the load_file_for_image in class.c.
5732
5733         * assembly.c (mono_assembly_load_module): A wrapper for the function
5734         above which does assembly association and reference loading too.
5735
5736         * class.c (mono_class_from_name): Call mono_assembly_load_module.
5737
5738 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5739
5740         * appdomain.c: not all of the attributes for the full assembly name
5741         are required and the order doesn't matter. Fixes bug #50787.
5742
5743 2003-11-10  Dick Porter  <dick@ximian.com>
5744
5745         * locales.c: Use platform-endian UTF16
5746
5747 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
5748
5749         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
5750         
5751 2003-11-10  Martin Baulig  <martin@ximian.com>
5752
5753         * metadata.c
5754         (mono_metadata_load_generic_params): Make this actually work.
5755
5756         * reflection.c (mono_reflection_bind_generic_parameters): If our
5757         parent is a generic instance, pass all the `types' to it, no
5758         matter whether it has the same number of type parameters or not.
5759
5760 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
5761
5762         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
5763
5764         * assembly.c (mono_assembly_load_references): Move the image<->assembly
5765         assignment code to this function so it gets called recursively for all
5766         modules.
5767
5768         * image.c (load_modules): Remove the assembly assignment since it is
5769         now done by mono_assembly_load_references.
5770         
5771         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5772         Add 'module' argument.
5773         (mono_module_get_types): New helper function.
5774         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
5775
5776 2003-11-08  Martin Baulig  <martin@ximian.com>
5777
5778         * class.c (mono_class_inflate_generic_method): Interface method
5779         don't have a header.
5780
5781         * reflection.c (mono_image_get_methodspec_token): Take an
5782         additional `MonoGenericInst *' argument instead of reading it from
5783         the header; this is necessary to support interfaces.
5784         (mono_image_create_token): Pass the `MonoGenericInst *' from the
5785         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
5786         (inflated_method_get_object): Take an additional `MonoGenericInst *'
5787         argument.
5788
5789         * reflection.h (MonoReflectionInflatedMethod): Added
5790         `MonoGenericInst *ginst'.
5791
5792 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
5793
5794         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
5795
5796 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
5797
5798         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
5799
5800 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
5801
5802         * reflection.c 
5803         (reflection_methodbuilder_from_method_builder):
5804         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
5805         initialize a ReflectionMethodBuilder structure.
5806         (mono_image_get_methodbuilder_token):
5807         (mono_image_get_ctorbuilder_token): New functions to emit memberref
5808         tokens which point to types in another module inside the same assembly.
5809
5810         * reflection.c: Use the new helper functions.
5811         
5812         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
5813
5814         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
5815         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
5816
5817         * reflection.c (resolution_scope_from_image): Emit a moduleref if
5818         neccesary.
5819
5820         * reflection.c (mono_image_build_metadata): Emit metadata only for the
5821         current module. Emit the manifest only for the main module.
5822
5823         * reflection.c (mono_image_create_token): Add assertion when a 
5824         memberref needs to be created.
5825
5826         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
5827
5828         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
5829         larger buffer for the custom attribute blob. Fixes #50637.
5830         
5831 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5832
5833         * threadpool.c: notify listener on async processing handles after
5834         invoking the async callback. Thanks to Zoltan.
5835
5836 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5837
5838         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
5839         avoid code duplication.
5840
5841         * reflection.h (MonoDynamicImage): New type which is currently unused,
5842         but will be used through the ref.emit code in place of 
5843         MonoDynamicAssembly.
5844
5845         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5846         object layout.
5847
5848         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
5849         a MonoDynamicImage instead of just a MonoImage.
5850         
5851         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
5852         icalls to ModuleBuilder but keep their semantics, so they will work
5853         with moduleb->assemblyb. This will change later.
5854         
5855 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5856
5857         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5858         object layout.
5859
5860         * reflection.c (mono_image_build_metadata): Avoid creation of a default
5861         main module, since it is now done by the managed code.
5862
5863 2003-11-03  Martin Baulig  <martin@ximian.com>
5864
5865         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
5866         `ginst->klass' here.
5867         (method_encode_methodspec): Don't use the `ginst->generic_method's
5868         klass if it's a generic instance, use `ginst->klass' in this case.
5869
5870 2003-11-03  Martin Baulig  <martin@ximian.com>
5871
5872         * reflection.c (mono_image_get_generic_method_param_info):
5873         Removed, use mono_image_get_generic_param_info() instead.
5874         (mono_image_get_type_info): Write the GenericParam table before
5875         the Method table.  This is neccessary because in the GenericParam
5876         table, type parameters of the class (ie. '!0' etc.) must come
5877         before the ones from its generic methods (ie. '!!0' etc).
5878
5879 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5880
5881         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
5882
5883 2003-11-02  Martin Baulig  <martin@ximian.com>
5884
5885         * reflection.c (create_generic_typespec): Take a
5886         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
5887         the generic parameters from it.
5888
5889 2003-11-02  Martin Baulig  <martin@ximian.com>
5890
5891         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
5892         instead of a `MonoClassField *' since we just need the type.
5893         (create_generic_typespec): New static function.  Creates a
5894         TypeSpec token for a generic type declaration.
5895         (mono_image_get_generic_field_token): New static function.
5896         (mono_image_create_token): If we're a FieldBuilder in a generic
5897         type declaration, call mono_image_get_generic_field_token() to get
5898         the token.
5899
5900 2003-11-02  Martin Baulig  <martin@ximian.com>
5901
5902         * reflection.h
5903         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
5904         `MonoReflectionGenericInst *declaring_type' and
5905         `MonoReflectionGenericInst *reflected_type' fields.
5906
5907         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
5908         `MonoReflectionGenericInst *declaring_type' and a
5909         `MonoReflectionGenericInst *reflected_type' argument instead of a
5910         single `MonoReflectionGenericInst *type' one.  Set
5911         `res->declaring_type' and `res->reflected_type' from them.
5912         (mono_reflection_inflate_field): Likewise.      
5913
5914 2003-11-02  Martin Baulig  <martin@ximian.com>
5915
5916         * class.c (mono_class_setup_vtable): Don't store generic methods
5917         in the vtable.  
5918
5919 2003-11-02  Martin Baulig  <martin@ximian.com>
5920
5921         * reflection.h (MonoReflectionGenericInst): Added
5922         `MonoReflectionType *declaring_type'.
5923
5924         * reflection.c (mono_reflection_bind_generic_parameters): Use
5925         `if (tb->parent)' instead of `klass->parent'.
5926
5927 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
5928
5929         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
5930         with an empty ASSEMBLY table.
5931
5932         * reflection.c (mono_image_build_metadata): Avoid using the same loop
5933         variable in the inner and outer loops.
5934
5935 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
5936
5937         * metadata.h (mono_metadata_make_token): Put parentheses around macro
5938         argument.
5939
5940         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
5941         
5942         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
5943         icalls. Instead, do everything in managed code. This is needed since
5944         it is hard to restore the original domain etc. in unmanaged code in the
5945         presence of undeniable exceptions.
5946
5947         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
5948         New icalls to push and pop appdomain refs.
5949
5950 2003-10-31  Martin Baulig  <martin@ximian.com>
5951
5952         * class.c (inflate_generic_type): Renamed to
5953         mono_class_inflate_generic_type() and made it public.
5954
5955         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
5956         New interncall.
5957
5958         * loader.c (mono_field_from_memberref): Also set the retklass for
5959         typespecs.
5960
5961         * fielder.c (mono_image_get_inflated_field_token): New static
5962         method; creates a metadata token for an inflated field.
5963         (mono_image_create_token, fixup_method): Added support for
5964         "MonoInflatedField".
5965         (fieldbuilder_to_mono_class_field): New static function.
5966         (mono_reflection_inflate_field): New public function.
5967
5968         * reflection.h
5969         (MonoReflectionGenericInst): Added `MonoArray *fields'.
5970         (MonoReflectionInflatedField): New typedef.     
5971
5972 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
5973
5974         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
5975         for Solaris and other platforms without s6_addr16
5976
5977 2003-10-30  Martin Baulig  <martin@ximian.com>
5978
5979         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
5980         argument instead of two.
5981         (mono_class_inflate_generic_signature): Likewise.
5982         (inflate_generic_header): Likewise.
5983         (mono_class_inflate_generic_method): Likewise.  In addition, if
5984         `ginst->klass' is set, it becomes the new `method->klass'.
5985
5986         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
5987         field.
5988
5989         * reflection.c (encode_generic_method_sig): Write a 0xa as the
5990         first byte. [FIXME]
5991         (method_encode_methodspec): If we have generic parameters, create
5992         a MethodSpec instead of a MethodRef.
5993         (fixup_method): Added support for "MonoInflatedMethod" and
5994         "MonoInflatedCtor".
5995         (mono_image_create_token): Added support for "MonoInflatedMethod"
5996         and "MonoInflatedCtor".
5997         (inflated_method_get_object): New static function; returns a
5998         managed "System.Reflection.MonoInflatedMethod" object.
5999         (mono_reflection_bind_generic_method_parameters): Return a
6000         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6001         (mono_reflection_inflate_method_or_ctor): Likewise.
6002         (mono_image_get_generic_method_param_info): Initialize unused
6003         fields to zero.
6004         (mono_image_get_generic_param_info): Likewise.
6005
6006         * reflection.h (MonoReflectionInflatedMethod): New public
6007         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6008         "S.R.MonoInflatedCtor" classes.
6009
6010         * loader.c (method_from_memberref): If we're a TypeSpec and it
6011         resolves to a generic instance, inflate the method.
6012
6013 2003-10-28  Dick Porter  <dick@ximian.com>
6014
6015         * object.c (mono_runtime_run_main): Convert command-line arguments
6016         into utf8, falling back to the user's locale encoding to do so.
6017
6018 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6019
6020         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6021         at this time.
6022
6023         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6024
6025         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6026         up icalls at method definition time. Partially fixes #33569.
6027
6028 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6029
6030         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6031         marshalling of arrays. Fixes #50116.
6032
6033         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6034
6035         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6036         points to a vtable in the dying appdomain.
6037
6038         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6039         listeners into unmanaged code inside the lock.
6040
6041         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6042         domains and add some comments.
6043
6044 2003-10-25  Martin Baulig  <martin@ximian.com>
6045
6046         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6047
6048         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6049
6050         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6051         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6052         currently parsing.  Create the generic class and store it in
6053         `generic_inst->klass' before parsing the type arguments.  This is
6054         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6055         for an example.
6056         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6057         to support recursive typespec entries.
6058
6059         * class.c (mono_class_setup_parent): If our parent is a generic
6060         instance, we may get called before it has its name set.
6061         (mono_class_from_generic): Splitted into
6062         mono_class_create_from_generic() and mono_class_initialize_generic().
6063
6064 2003-10-25  Martin Baulig  <martin@ximian.com>
6065
6066         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6067         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6068         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6069         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6070
6071         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6072         (create_typespec): Likewise.
6073         (mono_reflection_bind_generic_parameters): Return a
6074         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6075         (mono_reflection_inflate_method_or_ctor): New public function.
6076
6077         * reflection.h (MonoReflectionGenericInst): New typedef.        
6078
6079 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6080
6081         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6082         inside the domain lock. Fixes #49993.
6083         
6084         * object.c (mono_class_vtable): When typed allocation is used, 
6085         allocate vtables in the GC heap instead of in the mempool, since the
6086         vtables contain GC descriptors which are used by the collector even
6087         after the domain owning the mempool is unloaded.
6088
6089         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6090
6091         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6092         reflect what it does. Also invalidate mempools instead of freeing
6093         them if a define is set.
6094
6095         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6096         of the appdomain.
6097         
6098         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6099         hold the finalizable objects in this domain.
6100
6101         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6102         appdomain.
6103
6104         * appdomain.c (mono_domain_set): New function to set the current
6105         appdomain, but only if it is not being unloaded.
6106
6107         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6108         appdomain which is being unloaded.
6109         
6110         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6111         unloading of the root appdomain.
6112
6113         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6114         icall to execute a method in another appdomain. Intended as a 
6115         replacement for InternalSetDomain, which can confuse the code 
6116         generation in the JIT.
6117
6118         * appdomain.c (mono_domain_is_unloading): New function to determine
6119         whenever an appdomain is unloading.
6120
6121         * appdomain.c (mono_domain_unload): New function to correctly unload
6122         an appdomain.
6123
6124         * assembly.c (mono_assembly_load_references): Check that an assembly
6125         does not references itself.
6126
6127         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6128         domain manually, it asks the finalizer thread to do it, then waits for
6129         the result. Also added a timeout.
6130
6131         * icall.c: Register the new icalls.
6132
6133         * threads.h threads.c: Export the mono_gc_stop_world and 
6134         mono_gc_start_world functions.
6135         
6136         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6137         function to fill out the mempool with 0x2a.
6138
6139 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6140
6141         * reflection.h (MonoReflectionMethodAux): New structure to store
6142         information which is rarely used, thus is not in the MonoMethod
6143         structure.
6144
6145         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6146         store the aux info.
6147
6148         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6149         and marshalling info into the aux structure.
6150
6151         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6152         from the aux structure.
6153
6154         * loader.c (mono_method_get_param_names): Retrieve the param names from
6155         the aux structure.
6156         
6157 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6158
6159         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6160         warning.
6161
6162 2003-10-21  Dick Porter  <dick@ximian.com>
6163
6164         * socket-io.c
6165         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6166         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6167
6168 2003-10-21  Martin Baulig  <martin@ximian.com>
6169
6170         * reflection.c (mono_reflection_bind_generic_parameters):
6171         `klass->parent' is NULL for interfaces.
6172
6173 2003-10-21  Martin Baulig  <martin@ximian.com>
6174
6175         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6176
6177 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6178
6179         * exception.c (mono_exception_from_name_msg): New helper function for
6180         creating exceptions and initializing their message field.
6181
6182         * exception.c: Simplify functions using the new helper.
6183
6184         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6185         New function.
6186
6187         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6188         mono_raise_exception, since otherwise gcc doesn't generate the function
6189         epilog for raise_exception, confusing the stack unwinding in the JIT.
6190         Fixes #45043.
6191
6192         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6193         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6194         Fixes #49499.
6195
6196 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6197
6198         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6199         utf8.
6200
6201 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6202
6203         * icall.c: Removed GetUninitializedObject method because
6204           AllocateUninitializedClassInstance does the same.
6205
6206 2003-10-18  Martin Baulig  <martin@ximian.com>
6207
6208         * class.c (inflate_generic_signature): Renamed to
6209         mono_class_inflate_generic_signature() and made it public.
6210         (my_mono_class_from_generic_parameter): New static function; if we
6211         don't already have the generic parameter's MonoClass, create a
6212         very simple one which is just used internally in the runtime and
6213         not passed back to managed code.
6214
6215         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6216
6217         * metadata.h (MonoMethodSignature): Moved the
6218         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6219         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6220
6221         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6222         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6223         interncall on the MonoMethod class, not on MethodInfo.
6224         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6225         calling mono_reflection_bind_generic_method_parameters() directly.
6226
6227         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6228         return the already computed `method->signature'.
6229         (method_from_methodspec): New static function to load a method
6230         from a MethodSpec entry.
6231         (mono_get_method_from_token): Call the new method_from_methodspec()
6232         for MethodSpec tokens.  
6233         (mono_get_method_from_token): If we're a generic method, load the
6234         type parameters.
6235
6236         * reflection.c (mono_image_get_memberref_token): Allow
6237         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6238         table.
6239         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6240         (mono_image_create_token): First check whether it's a generic
6241         method (so we'd need to create a MethodSpec), then do the other
6242         two alternatives.
6243         (mono_reflection_bind_generic_method_parameters): Return a
6244         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6245         called directly from the interncall.
6246
6247 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6248
6249         * reflection.c (load_public_key): Move loading of the public key
6250         into managed code.
6251
6252         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6253
6254         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6255         fields.
6256
6257         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6258         culture, hash_alg and public_key. Fixes #49555.
6259
6260 2003-10-17  Martin Baulig  <martin@ximian.com>
6261
6262         * class.h (MonoGenericInst): Moved this declaration here and added
6263         `MonoMethod *generic_method'.
6264
6265         * icall.c
6266         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6267         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6268
6269         * metadata.c (mono_metadata_type_equal): Two types of
6270         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6271         index; ie. don't compare the address of the `MonoGenericParam'
6272         structure.
6273         (mono_metadata_load_generic_params): Removed the `MonoMethod
6274         *method' argument.
6275
6276         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6277         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6278
6279         * reflection.c (method_encode_signature): Encode the number of
6280         generic parameters.
6281         (encode_generic_method_sig): New static function.
6282         (method_encode_methodspec): New static function; creates an entry
6283         in the MethodSpec table for a generic method.
6284         (mono_image_get_methodspec_token): New static function.
6285         (mono_image_create_token): Call mono_image_get_methodspec_token()
6286         for generic methods.
6287         (mono_reflection_bind_generic_method_parameters): New public
6288         function.  Instantiates a generic method.
6289
6290 2003-10-16  Martin Baulig  <martin@ximian.com>
6291
6292         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6293         *gen_params' here from MonoMethodHeader.
6294
6295         * metadata.c (mono_metadata_parse_method_signature): If we have
6296         generic parameters, initialize `method->gen_params' and then set
6297         the correct `type->data.generic_param' in all the parameters.
6298
6299 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6300
6301         * threads.c (mono_threads_get_default_stacksize): New function to 
6302         return the default stacksize.
6303
6304         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6305         termination of the finalizer thread, since the previous method had
6306         race conditions. Fixes #49628.
6307
6308         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6309         as for the other managed threads.
6310
6311 2003-10-16  Martin Baulig  <martin@ximian.com>
6312
6313         * class.c (inflate_generic_signature): Copy `generic_param_count'
6314         and `gen_params'.
6315
6316         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6317         New interncall.
6318
6319         * metadata.c (mono_metadata_parse_method_signature): Actually set
6320         the `method->generic_param_count' here.
6321         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6322
6323 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6324
6325         * object.h: Add a new field to TypedRef to simplify the implementation
6326         of the REFANY opcodes in the JIT.
6327
6328         * icall.c: Make use of the new field.
6329
6330         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6331         dynamically.
6332
6333 2003-10-15  Martin Baulig  <martin@ximian.com>
6334
6335         * class.c (mono_class_from_gen_param): Renamed to
6336         mono_class_from_generic_parameter() and moved most of the
6337         functionality from mono_reflection_define_generic_parameter()
6338         here; ie. we create a "real" class here.
6339         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6340         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6341         previously been called.
6342
6343         * class.h (MonoGenericParam): Moved the declaration of this struct
6344         here from metadata.h and added `MonoMethod *method'.
6345
6346         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6347         interncall.
6348
6349         * loader.c (mono_get_method_from_token): If we have any generic
6350         parameters, call mono_metadata_load_generic_params() to read them
6351         from the MONO_TABLE_GENERICPAR.
6352
6353         * metadata.c (mono_metadata_load_generic_params): Added
6354         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6355
6356         * metadata.h (MonoMethodSignature): Replaced
6357         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6358         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6359
6360         * reflection.c (mono_reflection_define_generic_parameter): Moved
6361         most of the functionality into the new
6362         mono_class_from_generic_parameter(); set the `method' field if
6363         we're a method parameter.       
6364
6365 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6366
6367         * marshal.c (emit_struct_conv): if native size is 0
6368         emit no code.
6369
6370 2003-10-14  Martin Baulig  <martin@ximian.com>
6371
6372         * icall.c: The generics API has changed in the spec since it was
6373         added to System.Type; these modifications make it match the spec
6374         again.
6375         (ves_icall_Type_GetGenericParameters): Renamed to
6376         `ves_icall_Type_GetGenericArguments'.
6377         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6378         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6379         `ves_icall_MonoType_get_HasGenericArguments'.
6380         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6381         `ves_icall_MonoType_get_IsGenericParameter'.
6382         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6383         this is no interncall anymore.
6384         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6385         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6386
6387 2003-10-14  Martin Baulig  <martin@ximian.com>
6388
6389         * reflection.c (mono_reflection_bind_generic_parameters): Also
6390         inflate generic methods if we're reading the class from IL.
6391
6392 2003-10-13  Martin Baulig  <martin@ximian.com>
6393
6394         * reflection.c (mono_reflection_define_generic_parameter): This
6395         method isn't called directly from the icall anymore; take a
6396         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6397         method generic parameters.
6398         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6399         (method_builder_encode_signature): Encode generic parameters.
6400         (mono_image_get_method_info): Write generic params to the
6401         MONO_TABLE_GENERICPARAM table.
6402
6403         * reflection.h (MonoReflectionMethodBuilder): Added
6404         `MonoArray *generic_params'.
6405
6406         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6407
6408         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6409         wrapper for mono_reflection_define_generic_parameter().
6410         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6411
6412 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6413
6414         * marshal.h: Add missing function to fix build.
6415
6416         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6417         the SetLastError pinvoke attribute.
6418
6419         * marshal.c (mono_marshal_set_last_error): New helper function called
6420         by the generated code.
6421         
6422         * marshal.c (mono_mb_emit_branch): New helper function.
6423
6424         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6425
6426         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6427         classes as parameters and return values of delegates. Fixes #29256. 
6428
6429 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6430
6431         * locales.c: use gint32 in non HAVE_ICU case
6432
6433 2003-10-11  Martin Baulig  <martin@ximian.com>
6434
6435         * mono-debug.c (mono_debug_add_method): Added a workaround for
6436         bug #48591.
6437
6438 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6439
6440         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6441         delegates passed to native code must use the STDCALL calling 
6442         convention. Fixes #35987.
6443
6444 2003-10-10  Martin Baulig  <martin@ximian.com>
6445
6446         * class.c (inflate_generic_type): If we're inflating for a generic
6447         type instance (and not for a generic method), return
6448         MONO_TYPE_MVAR unchanged.
6449
6450 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6451
6452         * string-icalls.c: Join ignores null strings in the source array.
6453         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6454         * threads.c: GetAvailableTheads is slightly more accurate.
6455
6456 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6457
6458         * threads.h threads.c : add mono_threads_set_default_stacksize
6459         and pass default to CreateThread calls.
6460
6461 2003-10-09  Dick Porter  <dick@ximian.com>
6462
6463         * icall.c:
6464         * locales.h:
6465         * locales.c: Internal calls for constructing CultureInfo and
6466         related objects from libicu (if its available.)
6467
6468 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6469
6470         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6471
6472 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6473
6474         * threadpool.c: added an argument to async_invoke_thread that is the
6475         item to process, pass the MonoAsyncResult to the thread start function
6476         when creating a new thread. This way we don't need to acquire any lock
6477         when we're creating a new thread. Readded a semaphore for faster
6478         response times (instead of that Sleep i added).
6479
6480 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6481
6482         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6483         get daylight change dates better on Windows, fix handling
6484         of platforms without tm_gmtoff.
6485
6486 2003-10-06  Martin Baulig  <martin@ximian.com>
6487
6488         * class.c (inflate_generic_method): Renamed to
6489         mono_class_inflate_generic_method() and made public.
6490         (mono_class_init): Don't inflate the generic methods here.
6491         (mono_class_from_generic): Added `gboolean inflate_methods'
6492         argument.  Inflate the methods here.
6493
6494         * loader.c (mono_method_get_param_names): Ignore instances of
6495         generic types for the moment.
6496
6497         * reflection.c (fixup_method): Added support for inflated methods.
6498         (mono_image_create_token): Use mono_image_get_methodref_token()
6499         for inflated methods.
6500         (mono_custom_attrs_from_param): Ignore instances of generic types
6501         for the moment.
6502         (mono_reflection_bind_generic_parameters): New public function.
6503         Moved all the functionality from
6504         ves_icall_Type_BindGenericParameters() here and added support for
6505         dynamic types.
6506         (mono_reflection_define_generic_parameter): Initialize
6507         `klass->methods' here.
6508
6509         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6510         functionality into mono_reflection_define_generic_parameter().
6511         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6512         TypeBuilder, return that TypeBuilder.
6513
6514 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6515
6516         * appdomain.c: removed mono_delegate_semaphore.
6517
6518         * threadpool.c:
6519         (mono_thread_pool_add): moved hash table creation inside and the thread 
6520         creation outside of the critical region.
6521         (mono_thread_pool_finish): removed obsolete code.
6522         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6523         continue or exit the thread depending on the queue.
6524
6525 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6526
6527         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6528         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6529         handle more bool marshalling options
6530
6531 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6532
6533         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6534         arrays of structs. Also add a more descriptive error message when
6535         a structure member is marshalled as LPArray.
6536
6537 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6538
6539         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6540         marshalling arrays of complex types. Fixes #29098. Also remove an
6541         usused and incomplete function.
6542
6543 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6544
6545         * gc.c: report heap_size - free_bytes as total memory allocated
6546         (bug#49362).
6547
6548 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6549
6550         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6551         fix timezone handling problems on Windows.
6552         
6553         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6554         asserts when the year is outside the range handled by ms the functions.
6555
6556         * class.c (setup_interface_offsets): If the class is an interface,
6557         fill out its interface_offsets slot.
6558
6559 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6560
6561         * threadpool.c: mark threadpool threads as background.
6562
6563 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6564
6565         * decimal.c - define DECINLINE to nothing if not using GCC
6566
6567 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6568
6569         * assembly.c: More refcount fixes.
6570
6571 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6572
6573         * string-icalls.c: if we're not trimming, return the same string.
6574         When not splitting, don't create a new string.
6575
6576 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6577
6578         * image.c:
6579         (mono_image_open): increment the ref_count inside the critical section.
6580
6581 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6582
6583         * image.c (mono_image_open): Fix reference counting bug.
6584
6585 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6586
6587         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6588         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6589         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6590         mono_lookup_pinvoke_call throws.        
6591
6592 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6593
6594         * reflection.c (mono_reflection_parse_type): Fix #49114.
6595
6596         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6597         temporary workaround for cygwin header problem.
6598
6599         * object.c (mono_object_isinst): Synchronize this with the code
6600         generated by the JIT for casts.
6601
6602 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6603
6604         * reflection.c (encode_type): Fix #38332.
6605
6606 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6607
6608         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6609         the original method from the wrapper method.
6610
6611 2003-09-25  Martin Baulig  <martin@ximian.com>
6612
6613         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6614         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6615         (ves_icall_Type_get_IsGenericInstance): New interncall.
6616
6617 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6618
6619         * object.c: fix cast warning in big endian code.
6620
6621 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
6622
6623         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
6624         
6625 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6626
6627         * assembly.c: don't call check_env from mono_assembly_load. It's
6628         already done once in mono_assemblies_init and may cause headaches when
6629         multiple threads are loading assemblies.
6630
6631 2003-09-19  Martin Baulig  <martin@ximian.com>
6632
6633         * reflection.c (mono_reflection_define_generic_parameter): Don't
6634         allocate `klass->methods', set `klass->flags' to
6635         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
6636
6637 2003-09-18  Martin Baulig  <martin@ximian.com>
6638
6639         * class.c (mono_class_init): Don't create `class->methods' if it's
6640         already initialized.
6641
6642         * metadata.c (mono_metadata_load_generic_params): Make this
6643         actually work.
6644
6645         * reflection.c (mono_reflection_define_generic_parameter): Set
6646         parent class and interfaces from the constraints.
6647
6648         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
6649         to keep this struct in sync with the declaration in TypeBuilder.cs.
6650
6651 2003-09-17  Martin Baulig  <martin@ximian.com>
6652
6653         * metadata.h (MonoType): Replaced the data's `int type_param'
6654         field with `MonoGenericParam *generic_param'.
6655         (MonoGenericParam): Added `MonoClass *klass'.
6656
6657         * class.c (mono_class_from_gen_param): Removed the
6658         `MonoImage *image' and `int type_num' arguments.
6659
6660         * metadata.c (mono_metadata_parse_generic_param): New static
6661         method; creates a MonoGenericParam which just contains the index.
6662         (do_mono_metadata_parse_type): Call
6663         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
6664         MONO_TYPE_MVAR.
6665
6666         * reflection.c (mono_image_typedef_or_ref): Generic type
6667         parameters may be in the same assembly, but never use a typedef
6668         for them.
6669         (mono_reflection_define_generic_parameter): We're now creating a
6670         "real" class for the type parameter; it's now safe to call
6671         mono_class_from_mono_type() on the class'es type, it'll do the
6672         right thing.
6673
6674 2003-09-16  Martin Baulig  <martin@ximian.com>
6675
6676         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
6677         `symfile->range_entry_size' and `symfile->class_entry_size' here;
6678         the `symfile' data structure must be fully initialized before it
6679         gets added to the table.
6680
6681 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
6682
6683         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
6684
6685         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
6686         class init trampolines.
6687
6688 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
6689
6690         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
6691         to the built-in profiler to turn off time and allocation profiling
6692         respectively.
6693
6694 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
6695
6696         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
6697         g_direct_equal.
6698
6699         * debug-helpers.c (mono_method_full_name): Print the wrapper type
6700         in human readable form.
6701
6702 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
6703
6704         * reflection.c icall.c: Fixed warnings.
6705
6706         * image.c (load_class_names): Use a temporary hash table to hold the
6707         namespaces in order to avoid doing many string comparisons.
6708
6709         * image.h: Fix typo.
6710
6711         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
6712         Pass NULL instead of g_direct_equal to the GHashTable constructor 
6713         since the NULL case is short-circuited inside g_hash_table_lookup, 
6714         leading to better performance.  
6715
6716         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
6717         obtain the first custom attribute for a given index. Depends on the
6718         CustomAttribute table being sorted by the parent field.
6719
6720         * reflection.c (mono_custom_attrs_from_index): Use the new function 
6721         for better performance.
6722
6723 2003-09-07  Martin Baulig  <martin@ximian.com>
6724
6725         * class.c (mono_class_init): If we're a generic instance, inflate
6726         all our methods instead of loading them from the image.
6727         (mono_class_from_generic): Set `class->methods = gklass->methods'.
6728
6729 2003-09-07  Martin Baulig  <martin@ximian.com>
6730
6731         * mono-debug-debugger.c: Added support for constructors.
6732
6733 2003-09-06  Martin Baulig  <martin@ximian.com>
6734
6735         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
6736         New interncall.
6737
6738         * reflection.c (mono_reflection_setup_generic_class): Call
6739         ensure_runtime_vtable() to create the vtable.
6740
6741 2003-09-05  Martin Baulig  <martin@ximian.com>
6742
6743         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
6744         MONO_TYPE_MVAR.
6745
6746 2003-09-04  Martin Baulig  <martin@ximian.com>
6747
6748         * reflection.c (mono_reflection_define_generic_parameter): Generic
6749         parameters start with zero.
6750
6751 2003-09-04  Martin Baulig  <martin@ximian.com>
6752
6753         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6754
6755         * reflection.h (MonoReflectionGenericParam): New typedef.
6756         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
6757         the generic parameters from the managed TypeBuilder.
6758
6759         * reflection.c (mono_reflection_define_generic_parameter): New function.
6760         (mono_reflection_create_runtime_class): Encode generic parameters.
6761         (mono_reflection_setup_generic_class): New function; this is
6762         called after adding adding all generic params to the TypeBuilder.
6763         (encode_type): Added MONO_TYPE_VAR.
6764
6765 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
6766
6767         * class.h class.c (mono_class_needs_cctor_run): Moved this method
6768         here from the JIT.
6769
6770         * assembly.h assembly.c: Moved the AOT loading code into an assembly
6771         load hook.
6772
6773 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
6774
6775         * reflection.h reflection.c class.h class.c: Delete duplicate 
6776         definition of mono_type_get_name () from reflection.c and export the
6777         one in class.c.
6778
6779         * class.c: Class loading fixes from Bernie Solomon 
6780         (bernard@ugsolutions.com).
6781
6782         * reflection.c: Endianness fixes from Bernie Solomon 
6783         (bernard@ugsolutions.com).
6784         
6785 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
6786
6787         * assembly.h assembly.c: Define a file format version for AOT
6788         libraries.
6789         
6790         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
6791
6792         * appdomain.h (MonoJitInfo): New field to determine whenever the
6793         code is domain neutral.
6794         
6795 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
6796
6797         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
6798
6799 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
6800
6801         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
6802         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
6803         Avoid caching the result since strings must be domain specific. Fixes
6804         #48050.
6805
6806 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
6807
6808         * marshal.c (mono_marshal_init): Make this callable multiple times
6809         since it is hard to find a correct place to call it.
6810
6811         * object.c (mono_runtime_class_init): Execute static constructors in
6812         the correct appdomain.
6813
6814         * image.c (build_guid_table): Handle the case when multiple images have
6815         the same GUID.
6816
6817 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6818
6819         * icall.c: added a couple of icalls for System.Web.
6820
6821 2003-08-28  Martin Baulig  <martin@ximian.com>
6822
6823         * icall.c (ves_icall_Type_BindGenericParameters): Use
6824         `klass->generic_inst' instead of `&klass->byval_arg' in the
6825         mono_type_get_object() call.  The returned type must be
6826         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
6827
6828 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
6829
6830         * NOTES: New file.
6831
6832         * object.c (mono_class_proxy_vtable): Make it thread safe.
6833
6834         * pedump.c: Fix warning.
6835
6836         * object.c appdomain.h: Get rid of metadata_section. 
6837         It is no longer needed and it was causing deadlocks with domain->lock.
6838
6839         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
6840
6841 2003-08-26  Martin Baulig  <martin@ximian.com>
6842
6843         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
6844
6845 2003-08-26  Martin Baulig  <martin@ximian.com>
6846
6847         * pedump.c (main): Call mono_metadata_init(),
6848         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
6849         and mono_loader_init().
6850
6851 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
6852
6853         * loader.h: Add missing include to fix build.
6854
6855         * image.h: mono_image_load_references is no more.
6856
6857         * assembly.c: Reworked assembly loading to make it really thread safe.
6858         After these changes, the assembly returned by mono_assembly_open is
6859         fully initialized, i.e. all its references assemblies are loaded.
6860
6861         * assembly.c (mono_image_load_references): Renamed to 
6862         mono_assembly_load_references, and made private, since clients no
6863         longer need to call it.
6864
6865         * class.c: Removed calls to mono_assembly_load_references, since it was
6866         a source of deadlocks.
6867
6868         * loader.h loader.c class.h class.c: Protect data structures using a 
6869         new lock, the loader lock.
6870
6871         * class.c (mono_class_setup_vtable): Create temporary hash tables and
6872         GPtrArrays only when needed.
6873
6874         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
6875         into empty structures by mcs. Fixes pinvoke7.cs.
6876         
6877         * domain.c (mono_init): Call a new initialization function.
6878
6879         * appdomain.c (mono_runtime_init): Call the new initializer function
6880         of the marshal module.
6881
6882         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
6883         inserted into empty structures by mcs. Fixes pinvoke7.cs.
6884
6885         * marshal.h marshal.c: Added locks around the wrapper caches to make
6886         this module thread safe.
6887
6888         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
6889         this argument. Fixes pinvoke1.exe.
6890
6891 2003-08-25  Lluis Sanchez <lluis@ximian.com>
6892
6893         * object.h: Added call_type field to MonoMethodMessage and the corresponding
6894         enumeration of values. Removed fields to store remote call output values in
6895         MonoAsyncResult. Not needed any more.
6896         * object.c: Initialize call_type and async_result fields in mono_message_init.
6897         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
6898         dispatching the message.
6899         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
6900         async call to finish. To do it use a message with EndInvoke call type.
6901
6902 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
6903
6904         * loader.h loader.c (mono_method_hash_marhal_info): New function which
6905         determines whenever a method has marshalling info.
6906
6907 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6908
6909         * assembly.c: fix the build on windows.
6910
6911 2003-08-22 Lluis Sanchez <lluis@ximian.com>
6912
6913         * object.cs: Fixed bug #47785.
6914
6915 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
6916
6917         * string-icalls.c (StringReplace): If their are no occurances of
6918         the old string found return a reference to the supplied
6919         string. This saves some memory and matches MS behavoir.
6920         
6921 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6922
6923         * socket-io.c: fixed compilation for systems that define AF_INET6
6924         and don't define SOL_IP/SOL_IPV6.
6925
6926 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
6927
6928         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
6929         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
6930
6931         * rawbuffer.c rawbuffer.h: Make this module thread safe.
6932
6933         * domain.c: Make this module thread safe.
6934
6935         * domain.c (mono_init): Call new initialization function.
6936
6937         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
6938         reference types too. Fixes #38812.
6939
6940         * image.c (mono_image_init): Fixed warnings.
6941
6942         * class.c (mono_class_from_typeref): Handle assembly load failure
6943         correctly.
6944
6945         * appdomain.c (add_assemblies_to_domain): Handle the case when
6946         the references of an assembly are not yet loaded.
6947
6948         * metadata.c image.c assembly.c: Moved initialization of global
6949         variables to a separate function called at startup since lazy 
6950         initialization of these variables is not thread safe.
6951         
6952         * image.c assembly.c: Made this module thread safe by adding locks in 
6953         the appropriate places.
6954
6955         * domain.c (mono_init): Call the new initialization functions of the
6956         three modules.
6957
6958 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
6959
6960         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
6961           make a direct call. It is proxy's work to make the call asynchronous.
6962           mono_delegate_end_invoke(): If the targe is a proxy, just collect
6963           the return values.
6964         * object.cs: mono_method_call_message_new(): read AsyncResult and
6965           state object from parameters list, if this info is requested.
6966         * object.h: Added fields to store remote call output values in
6967           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
6968
6969 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6970
6971         * object.h: add needed fields to MonoThread.
6972         * threads.c, threads.h: allow registering a function to cleanup data
6973         allocated per thread by the JIT.
6974
6975 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6976
6977         * loader.h: portability fix by Bernie Solomon
6978         * <bernard@ugsolutions.com>.
6979
6980 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
6981
6982         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
6983         return a MonoArray. This simplifies the code and also ensures that
6984         the cache allways contains an object reference as a value.
6985
6986         * icall.c (ves_icall_get_parameter_info): Simplified using the new
6987         function.
6988
6989 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6990
6991         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
6992         fixes a problem with byte ordering when getting the address family for
6993         a socket.
6994
6995 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
6996
6997         * .cvsignore: Added monosn.
6998
6999         * reflection.h reflection.c loader.c: Added support for parameter
7000         marshalling to dynamically created types. Fixes #47295.
7001
7002 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7003
7004         * rand.c: remove useless warnings.
7005
7006 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7007
7008         * class.c: implemented ldtoken for methods and fieldrefs.
7009
7010 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7011
7012         * threadpool.c: when mono_async_invoke was called, no one took care of
7013         monitoring the queue. So if the method invoked took some time and we
7014         got new async invoke requests after 500 ms (the thread created waited
7015         that long in WaitForSingleObject), the new async invoke was not called
7016         until the previous one finished.
7017
7018         This is fixed now. Thanks to Totte for helping with it.
7019
7020 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7021
7022         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7023
7024 2003-08-11  Martin Baulig  <martin@ximian.com>
7025
7026         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7027
7028 2003-08-06  Martin Baulig  <martin@ximian.com>
7029
7030         * mono-debug-debugger.c: Added support for static fields,
7031         properties and methods.
7032
7033 2003-08-06  Martin Baulig  <martin@ximian.com>
7034
7035         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7036         make this work for applications with multiple application domains.
7037
7038 2003-08-04  Martin Baulig  <martin@ximian.com>
7039
7040         * mono-debug-debugger.c: Completely reworked the type support; the
7041         most important thing is that we're now just using one single
7042         `MonoType' instance per type.
7043
7044 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7045
7046         * mono-endian.h, mono-endian.c, icall.c: Added icall
7047         ves_icall_System_Double_AssertEndianity to assert double word endianity
7048         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7049
7050 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7051
7052         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7053         support, icalls and fixes.
7054
7055 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7056
7057         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7058         classes that are a punctuation character in .NET is not the same a
7059         g_unichar_ispunct.
7060
7061 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7062
7063         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7064
7065 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7066
7067         * icall.c: Add new MemCopy internalcall.
7068         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7069         Simplified code; It is not necessary to handle all the cases here,
7070         as the C# code takes care of it.  Only handle the case of the name
7071         resource embedded into the assembly.
7072
7073         Changed signature to return the data pointer and the size of the
7074         data. 
7075
7076 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7077
7078         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7079         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7080
7081 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7082
7083         * socket-io.c: ignore EINTR error in select.
7084
7085 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7086
7087         * class.h, class.c: removed unused subclasses field in MonoClass.
7088
7089 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7090
7091         * icall.c: improve fix of get_base_definition(). If the parent class
7092           doesn't have the mehod, look at the parent of the parent.
7093         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7094           to check if a parameter is an in or out parameter
7095           (PARAM_ATTRIBUTE_IN is not set by default).
7096           mono_method_return_message_restore(): Use mono_class_value_size to
7097           get the size of a value type. mono_type_stack_size (parameterType)
7098           does not return the correct value if parameterType is byRef.
7099           mono_load_remote_field(), mono_load_remote_field_new(),
7100           mono_store_remote_field(), mono_store_remote_field_new():
7101           raise exception if the remote call returns an exception.
7102
7103 2003-07-28  Martin Baulig  <martin@ximian.com>
7104
7105         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7106         method.  This is a wrapper around mono_runtime_invoke() which
7107         boxes the instance object if neccessary.
7108
7109 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7110
7111         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7112         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7113
7114 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7115
7116         * icall.c: disable mcs bug workaround.
7117
7118 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7119
7120         * object.c (mono_runtime_class_init): Take the metadata_section
7121         mutex before obtaining the domain mutex.
7122
7123         * appdomain.h: Added definition of metadata_section mutex here. 
7124
7125         * object.c: define metadata_mutex here.
7126
7127 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7128
7129         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7130         fixed.
7131
7132 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7133
7134         * reflection.c: Fix bug #46669
7135
7136 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7137
7138         * exception.c:
7139         * exception.h:
7140         * icall.c:
7141         * object.h: fill in the type name for TypeLoadException.
7142
7143 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7144
7145         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7146         relationship between TypeBuilders while compiling corlib) and bug
7147         45993 (Array types returned from the runtime while compiling
7148         corlib were from the loaded corlib).
7149
7150 2003-07-22  Martin Baulig  <martin@ximian.com>
7151
7152         * mono-debug-debugger.c: Reworked the type support a bit more;
7153         distinguish between types and classes.
7154
7155 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7156
7157         * icall.c: add IsArrayImpl icall.
7158
7159 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7160
7161         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7162         initializing real_size only once. Also fix bug #46602.
7163
7164 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7165
7166         * object.c: Renamed mono_metadata_section to metadata_section.
7167
7168 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7169
7170         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7171           empty array if the type is an array. Fixed.
7172           ves_icall_MonoMethod_get_base_definition: if the base method
7173           is abstract, get the MethodInfo from the list of methods of
7174           the class.
7175         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7176           and it was 1-based. Fixed in mono_param_get_objects.
7177
7178 2003-07-20  Martin Baulig  <martin@ximian.com>
7179
7180         * mono-debug.h: Set version number to 31.
7181         (mono_debug_init): Added `MonoDomain *' argument.
7182
7183         * mono-debug-debugger.c: Reworked the type support; explicitly
7184         tell the debugger about builtin types; pass the `klass' address to
7185         the debugger.
7186
7187 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7188
7189         * image.c: Allow new metadata tables to be loaded without a
7190         warning. Also update the warning message to give the new constant value.
7191                 
7192 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7193
7194         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7195         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7196         array type representation changes.
7197
7198 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7199
7200         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7201         on Environment.Exit () call.
7202
7203 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7204
7205         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7206         requires a matching corlib.
7207
7208 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7209
7210         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7211           Committed again without the CRs.
7212         
7213 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7214
7215         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7216           getting it from the "this" socket instance. Did not work
7217           if the socket is a subclass of Socket.
7218           Also fixed bug #35371.
7219
7220 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7221
7222         * metadata.c: fixed size for TypedByRef.
7223         * loader.c: when searching for a method, consider the vararg amrker.
7224         * unicode.c, decimal.c: constify some arrays.
7225
7226 2003-07-15  Dick Porter  <dick@ximian.com>
7227
7228         * socket-io.c: Fixed compilation for gcc < 3.2.
7229
7230         Fixed compilation for machines that don't have AF_INET6 (thanks to
7231         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7232
7233         Fixed compile warnings.
7234         
7235         Fixed formatting and line endings.
7236
7237 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7238
7239         * socket-io.h:
7240         * socket-io.c: Added IPv6 support.
7241
7242 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7243
7244         * class.c (mono_class_is_assignable_from): New function to implement
7245         the is_assignable_from logic. Used by mono_object_isinst, 
7246         Type::IsAssignableFrom () and the interpreter.
7247
7248         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7249         Object, even interfaces.
7250         
7251         * object.c (mono_object_isinst): Implement in terms of 
7252         is_assignable_from.
7253
7254         * icall.c (ves_icall_type_is_assignable_from): New icall.
7255
7256 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7257
7258         * domain.c (foreach_domain): fix compiler warning.
7259
7260 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7261
7262         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7263         not available on all plattforms
7264
7265 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7266
7267         * image.h image.c: Store the metadata version string in MonoImage.
7268         * icall.c: New icall to retrieve the image version.
7269         * reflection.c (create_dynamic_image): Fill in the image version field
7270         * reflection.c (build_compressed_metadata): Use the image version
7271         from the image structure.
7272
7273 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7274
7275         * appdomain.c: modified comment.
7276         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7277         That will be its last iteration when mono_gc_cleanup is called from
7278         mono_runtime_cleanup and before the domain is unloaded.
7279
7280         Fixes bug #45962.
7281
7282 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7283
7284         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7285         attributes.
7286
7287 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7288
7289         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7290         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7291         Bernie Solomon <bernard@ugsolutions.com>.
7292
7293 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7294
7295         * object.c, object.h: provide mono_object_new_fast() for faster
7296         allocation in some special cases.
7297
7298 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7299
7300         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7301         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7302
7303 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7304
7305         * threadpool.c: fix leaks.
7306
7307 2003-07-01  Dick Porter  <dick@ximian.com>
7308
7309         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7310         using MonoGHashTables.  Fixes threadpool bug posted to list.
7311
7312 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7313
7314         * image.h, image.c: added support to load an assembly from a byte array.
7315         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7316         assembly bundle support.
7317
7318 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7319
7320         * threadpool.c (mono_thread_pool_add): keep a reference to the
7321         AsyncResult to prevent GC
7322
7323 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7324
7325         * class.c: leak fix.
7326
7327 2003-06-25  Dick Porter  <dick@ximian.com>
7328
7329         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7330         for the async object, the WaitHandle object will close the handle.
7331         Fixes bug 45321.
7332
7333 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7334
7335         * class.c: in mono_array_class_get (), lookup from the hash with the
7336         same type we insert: this works around a bug in
7337         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7338         lluis. The real fix will have to wait for after the release.
7339
7340 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7341
7342         * icall.c: fix memory leak when getting type members.
7343
7344 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7345
7346         * reflection.c: added more pubtoken special cases.
7347
7348 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7349
7350         * class.c: handle field offset correctly when class size
7351         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7352
7353 2003-06-20  Martin Baulig  <martin@ximian.com>
7354
7355         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7356         *image' field.
7357
7358 2003-06-20  Martin Baulig  <martin@ximian.com>
7359
7360         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7361
7362 2003-06-20  Martin Baulig  <martin@ximian.com>
7363
7364         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7365         just distinguish between variables in registers and variables at
7366         an offset relative to a register.
7367
7368 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7369
7370         * icall.c: #ifdef out latest changes until mcs is fixed.
7371
7372 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7373
7374         * icall.c: return members in metadata order.
7375
7376 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7377
7378         * icall.c: avoid infinite loop in GetTimeZoneData.
7379
7380 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7381
7382         * icall.c: added Marshal.Prelink/All icalls.
7383
7384 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7385
7386         * object.c, object.h: fix warnings and do some overflow checking
7387         when creating arrays.
7388
7389 2003-06-17  Dick Porter  <dick@ximian.com>
7390
7391         * file-io.h:
7392         * file-io.c: File attributes need to be tweaked slightly when
7393         passed from the managed to the w32 world.
7394
7395 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7396         * profiler.h profiler-private.h profiler.c: Rework last patch
7397         based on suggestion by Paolo.
7398         
7399 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7400
7401         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7402         instruction level coverage data collection.
7403         * profiler.h profiler.c (: Added new callback function which can be
7404         used by the profiler to limit which functions should have coverage
7405         instrumentation.
7406         * profiler.c (mono_profiler_load): Call g_module_build_path to
7407         generate the file name of the profiler library.
7408
7409 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7410
7411         * profiler.c, profiler.h, profiler-private.h: added basic block 
7412         coverage profiling API.
7413
7414 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7415
7416         * reflection.c (mono_reflection_create_runtime_class): Add support
7417         for events in dynamically generated code.
7418
7419         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7420         not allocated.
7421
7422 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7423
7424         * icall.c: when getting timezone info, return reasonable values if we
7425         can't get the actual data.
7426
7427 2003-06-14  Dick Porter  <dick@ximian.com>
7428
7429         * threads.c (start_wrapper): Remove the reference to the thread
7430         object in the TLS data, so the thread object can be finalized.
7431         This won't be reached if the thread threw an uncaught exception,
7432         so those thread handles will stay referenced :-( (This is due to
7433         missing support for scanning thread-specific data in the Boehm GC
7434         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7435
7436 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7437
7438         * reflection.c: ensure streams and tables are first allocated with
7439         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7440
7441 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7442
7443         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7444
7445 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7446
7447         * reflection.c (mono_reflection_create_runtime_class): Add support for
7448         properties to dynamically created classes.
7449         * reflection.c: Fix a few places where non-MonoObjects were inserted
7450         into the tokens hashtable.
7451
7452 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7453
7454         * object.c: some support to handle out of memory exceptions.
7455
7456 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7457
7458         * marshal.c (mono_marshal_get_native_wrapper): support reference
7459         return types
7460
7461 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7462
7463         * object.h, object.c: more portability stuff from Bernie Solomon.
7464         Unexport mono_object_allocate(). Added mono_object_unbox ().
7465         Set exitcode when an unhandled exception is thrown.
7466
7467 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7468
7469         * marshal.c (mono_marshal_get_native_wrapper): use custom
7470         marshaler for return types.
7471
7472 2003-06-10  Dick Porter  <dick@ximian.com>
7473
7474         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7475         ip_mreq is available
7476
7477 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7478
7479         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7480         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7481         by Bernie Solomon <bernard@ugsolutions.com>.
7482
7483 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7484
7485         * gc.c (mono_gc_init): Avoid error message on shutdown when
7486         GC_DONT_GC=1 is used.
7487
7488         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7489         New icall to return the GUID of a module.
7490
7491 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7492
7493         * class.c: ensure instance size always includes the parent's size
7494         even whem class size is set explicitly (fixes bug#44294).
7495
7496 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7497
7498         * profiler.h, profiler.c: made the simple profiler thread-safe,
7499         get more accurate timing info. Allow the loading of an
7500         externally-developed profiler module.
7501
7502 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7503
7504         * marshal.c (mono_marshal_get_native_wrapper): improved
7505         class/byref arguments.
7506         (mono_marshal_get_native_wrapper): better string marshaling support.
7507
7508 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7509
7510         * class.c: ensure .pack and .size are handled correctly and
7511         simplified layout of static fields.
7512
7513 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7514
7515         * appdomain.c
7516         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7517
7518         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7519         current directory (fix bug 44008)
7520
7521 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7522
7523         * marshal.c (mono_marshal_get_native_wrapper): started support for
7524         custom marshalers.
7525         (mono_delegate_to_ftnptr): consider marshalling specifications
7526
7527 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7528
7529         * reflection.c, reflection.h: emit custom marshal info.
7530
7531 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7532
7533         * object.c: free the GError.
7534         * icall.c: added CloseEvent_internal.
7535         * threads.[ch]:
7536         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7537         call.
7538
7539 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7540
7541         * loader.c (mono_method_get_signature): Add support for dynamic
7542         assemblies.
7543
7544 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7545
7546         * reflection.c: fixed bug #43905.
7547
7548 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7549
7550         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7551         handling TypedReference and ArgIterator.
7552         * loader.c, loader.h: added function to get signature at call site.
7553
7554 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7555
7556         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7557         data readonly. Buglets and warning fixes. Some MethodSpec support.
7558
7559 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7560
7561         * class.h, class.c, object.c: remove relative numbering support.
7562
7563 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7564
7565         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7566         free the string, until we get a chance to fix Gtk#
7567
7568 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7569
7570         * marshal.c: revert last patch.
7571
7572 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7573
7574         * icall.c: updates for new mono_class_vtable() not calling
7575         the type constructor anymore.
7576
7577 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7578
7579         * object.h, object.c: separate vtable creation from type
7580         initialization. Make running the .cctor thread safe.
7581
7582 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7583
7584         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7585
7586 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7587
7588         * loader.c (mono_get_method): consider calling convention
7589
7590 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7591
7592         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7593         to return the invisible global type for a module.
7594
7595         * reflection.c (mono_image_build_metadata): Emit global fields too.
7596
7597 2003-05-20  Peter Williams  <peterw@ximian.com>
7598
7599         * loader.c (mono_lookup_internal_call): Add a few newlines.
7600
7601 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7604         literal strings.
7605
7606         * appdomain.c (set_domain_search_path): Recalculate search path when
7607         AppDomainSetup.PrivateBinPath changes.
7608
7609         * object.c (mono_class_compute_gc_descriptor): It turns out some
7610         parts of the class libs (like System.Thread) holds pointers to
7611         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7612         to treat native int a pointer type here.
7613         
7614 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7615
7616         * appdomain.h, domain.c: add hashtable for jump target resolution.
7617
7618 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7619
7620         * reflection.h reflection.c icall.c: Added new icalls 
7621         GetManifestResourceInfoInternal, GetModulesInternal and support
7622         infrastructure.
7623
7624 2003-05-16  Dick Porter  <dick@ximian.com>
7625
7626         * icall.c:
7627         * file-io.h:
7628         * file-io.c: Implement System.IO.MonoIO::GetTempPath
7629
7630 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
7631
7632         * object.c: mono_store_remote_field: little fix to previous patch.
7633
7634 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7635
7636         * class.c: add constructors to array classes.
7637         * icall.c: special case array construction for InternalInvoke (),
7638
7639 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
7640
7641         * class.h class.c reflection.c object.c: Added support for field
7642         defaults in dynamically generated classes.
7643
7644 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7645
7646         * reflection.c: properly encode charset for ddlimport.
7647
7648 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
7649
7650         * threads.c: allow compiling without GC.
7651
7652 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7653
7654         * appdomain.h, object.c, object.h, threads.c, threads.h: added
7655         handling of thread static data.
7656
7657 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7658
7659         * reflection.h, reflection.c: added mono_custom_attrs_free ().
7660
7661 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
7662
7663         * class.c (mono_array_class_get): always set the serializable flags
7664         (mono_array_class_get): always set the SEALED attribute for array types
7665
7666 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
7667
7668         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
7669         attributes (fix for bug 42021).
7670
7671 2003-05-12  Dick Porter  <dick@ximian.com>
7672
7673         * gc.c: Don't run finalizers when the finalizer thread is
7674         finishing up, because the default domain has already been
7675         destroyed.
7676
7677 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
7678
7679         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
7680         value is null, we should throw an exception.   This is slightly
7681         different than the other conventions used for the constructor.
7682
7683 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7684
7685         * socket-io.c: fixed windows build.
7686
7687 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7688
7689         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
7690
7691 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
7692
7693         * object.c (mono_string_new_wrapper): Compatibility fix for MS
7694         compilers.
7695
7696 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
7697
7698         * class.c (mono_class_layout_fields): Add experimental GC aware
7699         auto layout facility. Requires class library changes to work correctly.
7700
7701         (mono_class_setup_vtable): Avoid overriding explicit interface
7702         method implementations. Fixes iface3.exe test.
7703
7704         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
7705         object reference.
7706         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
7707         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
7708
7709         * metadata.h: Add new type classification macro which determines
7710         whenever the type holds an object reference.
7711
7712 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
7713
7714         * marshal.c (mono_marshal_get_native_wrapper): cleanups
7715
7716 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
7717
7718         * gc.c (finalizer_thread): Work around a GC bug.
7719
7720 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
7721
7722         * marshal.c (emit_struct_conv): allow unions
7723
7724         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
7725
7726 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
7727
7728         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
7729
7730 2003-05-06  Martin Baulig  <martin@ximian.com>
7731
7732         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
7733
7734 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7735
7736         * socket-io.c:
7737         (Select_internal): allow NULLs, don't create arrays if not needed.
7738         Coupled with Socket.cs changes.
7739
7740         * threadpool.c:
7741         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
7742         register a finalizer for it that will close the semaphore handle. This
7743         fixes the leak and make Lupus' test run with > 4080 loops.
7744
7745 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
7746
7747         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
7748         Jerome Laban (bug #42287)
7749
7750 2003-05-02  Martin Baulig  <martin@ximian.com>
7751
7752         * debug-mono-symfile.h
7753         (MonoSymbolFile): Moved declaration into mono-debug.h.
7754         (MonoDebugMethodJitInfo): Likewise.
7755         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
7756         argument.
7757         (_mono_debug_address_from_il_offset): Take a
7758         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
7759
7760         * mono-debug.h
7761         (MonoDebugDomainData): New struct.
7762         (mono_debug_get_domain_data): New function.
7763         (mono_debug_add_method): Take an additional `MonoDomain *'
7764         argument.
7765         (mono_debug_source_location_from_address): Likewise.
7766         (mono_debug_il_offset_from_address): Likewise.
7767         (mono_debug_address_from_il_offset): Likewise.
7768
7769 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
7770
7771         * reflection.c: one more check for null type in custom attrs.
7772
7773 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7774
7775         * reflection.c: avoid warning (comparison is always false due to limited
7776         range of data type).
7777
7778 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7779
7780         * icall.c: throw an exception in Type.GetField if the argument 'name'
7781         is NULL.
7782
7783 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
7784
7785         * reflection.c: fixed handling of enums in named arguments to custom
7786         attributes (bug #42123).
7787
7788 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
7789
7790         * reflection.c: use the right array element type and handle
7791         a null for a Type argument, too.
7792
7793 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
7794
7795         * reflection.c: handle arrays as arguments to custom attributes.
7796
7797 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7798
7799         * reflection.c: handle a string value in a custom attr
7800         ctor that takes an object.
7801
7802 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
7803
7804         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
7805         (fix bug #42063)
7806
7807 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
7808
7809         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
7810
7811 2003-04-27  Martin Baulig  <martin@ximian.com>
7812
7813         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
7814         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
7815         MONO_DEBUGGER_EVENT_BREAKPOINT.
7816         (mono_breakpoint_trampoline_code): Removed.
7817         (mono_debugger_event_handler): The last argument is now a
7818         `guint32'.
7819         (mono_debugger_insert_breakpoint_full): Removed the
7820         `use_trampoline' argument.
7821         (mono_debugger_method_has_breakpoint): Likewise.
7822         (mono_debugger_trampoline_breakpoint_callback): Renamed to
7823         mono_debugger_breakpoint_callback(); take the method and
7824         breakpoint number as arguments.
7825
7826 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
7827
7828         * metadata.c: fix off by one when loading parameters attributes.
7829
7830 2003-04-24  Martin Baulig  <martin@ximian.com>
7831
7832         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
7833
7834 2003-04-24  Martin Baulig  <martin@ximian.com>
7835
7836         * mono-debug-debugger.c: Moved all code which interacts with the
7837         Mono Debugger here.
7838
7839         * debug-mono-symfile.c: This code now just deals with the symbol
7840         file itself, the debugger code is now in mono-debug-debugger.c.
7841
7842 2003-04-23  Martin Baulig  <martin@ximian.com>
7843
7844         * mono-debug.c (mono_debug_source_location_from_il_offset):
7845         New method; like mono_debug_source_location_from_address(), but
7846         takes an IL offset instead of a machine address.
7847
7848 2003-04-23  Martin Baulig  <martin@ximian.com>
7849
7850         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
7851         `line' field; this is now computed by the debugger.
7852
7853 2003-04-23  Martin Baulig  <martin@ximian.com>
7854
7855         * mono-debug.[ch]: New files.  This is the new debugging interface.
7856
7857         * mono-debug-debugger.[ch]: New files.  Moved all code which
7858         interacts with the Mono Debugger here.
7859
7860 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
7861
7862         * domain.c (mono_init): initialize mono_defaults.monitor_class
7863
7864 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
7865
7866         * reflection.c (method_encode_code): Add a spicy exception to help
7867         future compiler authors.
7868
7869 2003-04-21  Martin Baulig  <martin@ximian.com>
7870
7871         * icall.c
7872         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7873         Make this work with relative pathnames; g_filename_to_uri() needs
7874         an absolute filename.
7875
7876 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
7877
7878         * icall.c: Track name changes in Object and ValueType.
7879
7880 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
7881
7882         * metadata.c (mono_type_stack_size): size should be a multiple of
7883         sizeof (gpointer)
7884
7885 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7886
7887         * gc.c:
7888         (internal_domain_finalize): moved into mono_domain_finalize. No need
7889         to create another thread because the finalizers will be run in the
7890         finalizer thread.
7891         
7892         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
7893         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
7894         to be run (MS does this too).
7895
7896 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
7897
7898         * object.c (mono_class_compute_gc_descriptor): Update comment.
7899
7900         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
7901
7902         * image.h: Add synchronized wrapper cache.
7903
7904         * image.c (do_mono_image_open): Initialize cache.
7905
7906         * reflection.c (create_dynamic_mono_image): Initialize cache.
7907
7908 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7909
7910         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
7911         ves_icall_System_Buffer_ByteLengthInternal.
7912
7913 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7914
7915         * reflection.c: setup klass->nested_in earlier. Allow
7916         a dash in the assembly name.
7917
7918 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
7919
7920         * metadata.c (mono_type_to_unmanaged): dont access
7921         type->data.klass for MONO_TYPE_OBJECT
7922         (mono_type_to_unmanaged): consider System.Delegate class
7923
7924 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
7925
7926         * class.c: just setup supertypes in the proper place instead of
7927         initializing the full element class for arrays.
7928
7929 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7930
7931         * class.c: ensure the element class of arrays is initialized.
7932         Setup the supertype info for array classes, too.
7933
7934 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
7935
7936         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
7937
7938 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7939
7940         * Makefile.am: re-added -m option when running cygpath. This way,
7941         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
7942         separator.
7943         * mono-config.c: same codepath for locating mono config file for WIN32
7944         and the rest.
7945         * assembly.c: if mono_assembly_setrootdir is called, don't override
7946         the value set.
7947
7948 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7949
7950         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
7951         MONO_ASSEMBLIES variable.
7952
7953 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
7954
7955         * icall.c: added Assembly::GetNamespaces() icall.
7956
7957 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7958
7959         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
7960
7961 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
7962
7963         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
7964         * object.c: fixed bug in the construction of vtable for proxies
7965
7966 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
7967
7968         * object.c (mono_array_new): Mark mono_array_new as an icall.
7969
7970 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7971
7972         * class.c: fixed test for public method when overriding interfaces.
7973         Closes bug #40970.
7974
7975 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7976
7977         * appdomain.h, domain.c: added mono_domain_foreach() to
7978         be able to access the currently loaded appdomains.
7979         * object.c: make string interning work across sppdomains.
7980         Mark some functions for use as icalls.
7981
7982 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
7983
7984         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
7985
7986         * reflection.h reflection.c: Allocate long living data using 
7987         GC_MALLOC_ATOMIC so the collector does not need to scan it.
7988
7989         * reflection.c: Double the allocation size in streams instead of
7990         increasing it, to prevent unneccesary copying on large assemblies.
7991         
7992         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
7993         creation if the assembly does not have the Run flag set.
7994
7995 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
7996
7997         * class.h: avoid the C++ keywords in header files (Jerome Laban
7998         spotted and fixed this).
7999
8000 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8001
8002         * object.c:
8003         (mono_unhandled_exception): fill in the arguments for the
8004         UnhandledException event. Only trigger that event for the default
8005         domain (as MS does).
8006
8007 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8008
8009         * object.c: Improve typed allocation stuff based on suggestions from
8010         Paolo. Also turn it on if the GC library supports it.
8011
8012 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8013
8014         * object.c object.h class.h: Added experimental typed allocation
8015         facility using the interfaces in gc_gcj.h.
8016
8017         * os/gc_wrapper.h: Added new include files.
8018         
8019 2003-04-03  Martin Baulig  <martin@ximian.com>
8020
8021         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8022         which is not yet enabled by default.
8023
8024         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8025         functions.
8026         (mono_gc_lock, mono_gc_unlock): New static functions.
8027
8028         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8029         functions; stop/start the world for the garbage collector.  This
8030         is using the windows API; we need to complete the SuspendThread()/
8031         ResumeThread() implementation in the io-layer to make this work on Unix.
8032         (mono_gc_push_all_stacks): New public function; tells the garbage
8033         collector about the stack pointers from all managed threads.
8034
8035 2003-04-03  Martin Baulig  <martin@ximian.com>
8036
8037         * object.h (MonoThread): Added `gpointer stack_ptr'.
8038
8039         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8040
8041 2003-04-03  Martin Baulig  <martin@ximian.com>
8042
8043         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8044
8045 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8046
8047         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8048         field.last.
8049
8050 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8051
8052         * loader.c (mono_lookup_internal_call): Report the corlib that is
8053         out of sync.
8054
8055 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8056
8057         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8058         System.DBNull (it's class not valuetype).
8059
8060 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8061
8062         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8063         if the array method was already assigned a token (fixes bug#40646).
8064
8065 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8066
8067         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8068         if no assembly is given.
8069
8070 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8071
8072         * metadata.h: Added the new tables.
8073
8074         * row-indexes.h: Added definitions for new tables.
8075
8076         * metadata.c: Add schemas for new tables, and add support for
8077         computing the sizes of them.
8078
8079         * class.c: Update for handling the new type cases.
8080
8081 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8082
8083         * metadata.h (MONO_TYPE_IS_VOID): new macro
8084
8085 2003-03-31  Martin Baulig  <martin@ximian.com>
8086
8087         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8088
8089         * threads.c (mono_thread_new_init): Call `thread_created' in the
8090         mono_thread_callbacks.
8091
8092 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8093
8094         * loader.h: added marshalbyrefobject_class to mono_defaults
8095         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8096         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8097           generation of output parameters.
8098           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8099         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8100           contextbound and the target object belongs to the context of the caller.
8101         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8102         * object.c: Implemented support for interfaces and abstract classes
8103           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8104           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8105
8106 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8107
8108         * class.h class.c (mono_class_is_subclass_of): New function.
8109         
8110         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8111         routines for most common case (calls from ArrayList::ToArray).
8112
8113         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8114         routine so programs which call Environment::Exit() can be profiled.
8115
8116         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8117         Added MONO_ARCH_SAVE_REGS.
8118
8119         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8120
8121 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8122
8123         * blob.h: Add a couple of new MonoType types definitions.
8124
8125         * tabledefs.h: Add a couple of new call convs.
8126
8127 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8128
8129         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8130         the layout of the class.
8131
8132         * reflection.c (alloc_table): double the size on overflow to avoid
8133         unnecessary copying.
8134
8135         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8136         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8137         null so it can be garbage collected.
8138         
8139 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8140
8141         * reflection.c (mono_reflection_get_type): Return the resolved type
8142         only if it is in the assembly we searched.
8143
8144         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8145
8146         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8147         method.
8148
8149 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8150
8151         * appdomain.c:
8152         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8153         the right one is 'file:///blah', but MS allows it.
8154         * assembly.c:
8155         (mono_assembly_open): allow 'file://blah'
8156
8157         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8158
8159 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8160
8161         * socket-io.c: fixes bug #40310.
8162
8163 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8164
8165         * reflection.c (mono_reflection_parse_type): handle deeply nested
8166         types correctly.
8167
8168         * reflection.c (mono_image_create_token): Use unique token values
8169         since they will be put into a hash table.
8170
8171         * class.c (mono_class_setup_vtable): If a method occurs in more than
8172         one place in the vtable, and it gets overriden, then change the
8173         other occurances too.
8174
8175         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8176         object as return type.
8177
8178 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8179
8180         * icall.c: Deleted "ToString" implementation for double and float
8181         because they are full implemented in managed code.
8182
8183 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8184
8185         * reflection.c, reflection.h: implemented and exported functions
8186         to retrieve info about custom attributes.
8187
8188 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8189
8190         * appdomain.c: moved Uri handling to assembly.c
8191         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8192         work when using a file Uri in *nix and windows.
8193
8194         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8195         GetReferencedAssemblies.
8196
8197 2003-03-18  Dick Porter  <dick@ximian.com>
8198
8199         * icall.c: Rename a couple of internal calls
8200
8201         * threads.c: Set the thread state to Stopped when a thread exits.
8202         Fixes bug 39377.
8203
8204 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8205
8206         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8207         New icall.
8208
8209         * object.c (mono_class_vtable): fix warning.
8210
8211 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8212
8213         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8214
8215         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8216         memory.
8217         (method_encode_clauses): Create exception info structures in the right
8218         order.
8219         (mono_reflection_setup_internal_class): Initialize supertypes field.
8220
8221         * class.c object.c: Handle interfaces which implement other interfaces 
8222         correctly.
8223
8224         * class.h class.c: Move the supertypes array initialization code into 
8225         a separate function so it can be used for dynamic types too. Also call
8226         it earlier, in mono_class_init(), since it can be used before the
8227         type is initialized.
8228
8229 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8230
8231         * Makefile.am:
8232         * assembly.c:
8233         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8234
8235         * appdomain.c:
8236         * appdomain.h:
8237         * marshal.c:
8238         * object.c: remove warnings.
8239
8240 2003-03-13  Martin Baulig  <martin@ximian.com>
8241
8242         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8243         (MonoDebugLexicalBlockEntry): New types.
8244
8245         * debug-mono-symfile.c
8246         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8247
8248 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8249
8250         * process.c: ret can be any non-zero value accroding to MS doc.
8251
8252 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8253
8254         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8255         fixing a warning for a miss-used prototype, would have cause
8256         random memory corruption.
8257
8258 2003-03-07  Martin Baulig  <martin@ximian.com>
8259
8260         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8261         getting really annoying ....
8262
8263 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8264
8265         * reflection.c (fixup_method): added support for array methods.
8266
8267 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8268
8269         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8270         (pointed out by Michael Adams).
8271
8272 2003-03-04  Dick Porter  <dick@ximian.com>
8273
8274         * icall.c: Temporarily reverted the Double and Single ToString()
8275         change, because it broke nunit.
8276
8277 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8278
8279         * object.h, threads.h: make include files compatible with C++
8280         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8281
8282 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8283
8284         * icall.c: Erased ToString helper functions for Double and Single.
8285         Now, that implementations ar all in managed code (Double and Single
8286         Formatters).
8287
8288 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8289
8290         * appdomain.c: Added method for initializing the default context of
8291         a domain. Added internal call for getting the default context.
8292         * appdomain.h: Added context variable in MonoDomain struct.
8293         * domain.c: mono_domain_set also sets the default context of the domain
8294         * icall.c: Mapped internal method InternalGetDefaultContext.
8295         * object.c: mono_object_get_virtual_method returns always a remoting
8296         wrapper if the object is a transparent proxy.
8297         mono_runtime_invoke_array: when creating an object by calling the
8298         constructor, if the created object is a proxy, then the constructor should
8299         be called using the a remoting wrapper.
8300
8301 2003-03-03  Dick Porter  <dick@ximian.com>
8302
8303         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8304         variable so it compiles on solaris.  Problem spotted by
8305         Christopher Taylor <ct@cs.clemson.edu>
8306
8307 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8308
8309         * appdomain.c:
8310         (get_info_from_assembly_name): don't leak value.
8311
8312         * icall.c:
8313         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8314         result.
8315
8316 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8317
8318         * assembly.c: export mono_image_load_references ().
8319         * class.c: handle function pointers. mono_class_from_name() now
8320         supports nested type names directly.
8321
8322 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8323
8324         * reflection.h reflection.c: Encode already created dynamic methods 
8325         and fields correctly as a DEF instead of a REF.
8326
8327         * reflection.c: Get rid of the force_ref argument to 
8328         mono_image_typedef_or_ref since it was wrong in the first place.
8329
8330         * string-icalls.c: add error checking to string constructors according
8331         to the MSDN docs.
8332
8333         * reflection.c: Emit types in the order their TypeBuilders were 
8334         created. Previously, a new table index was assigned to each type before
8335         the tables were emitted. This was wrong because the signature blob
8336         might already refer to a type by its original table index.
8337
8338 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8339
8340         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8341         change.
8342         
8343 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8344
8345         * Makefile.am: make assemblies dir have \ instead of / on windows.
8346
8347 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8348
8349         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8350         iterate over the NESTEDCLASS table using a linear search since the
8351         table is not guaranteed to be sorted by the secondary key.
8352
8353         * class.c (mono_class_create_from_typedef): fixed up call to
8354         mono_metadata_nesting_typedef.
8355         
8356 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8357
8358         * marshal.c (mono_string_to_byvalstr): clear the memory as
8359         suggested by Jerome Laban <jlaban@wanadoo.fr>
8360
8361 2003-02-26  Dick Porter  <dick@ximian.com>
8362
8363         * process.c: Cope with padding in .rsrc blocks
8364
8365 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8366
8367         * metadata.h: reverted the filter_len change, it breaks reflection
8368         
8369 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8370
8371         * metadata.h: added a new field to store the filter_len
8372         
8373
8374 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8375
8376         * reflection.c: handle custom attributes for types and members
8377         created with Reflection.Emit (bug#38422).
8378
8379 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8380
8381         * reflection.c: define RTSpecialName automatically for constructors for
8382         compatibility with MS.NET.
8383
8384         * reflection.c (mono_reflection_create_runtime_class): initialize
8385         nested_in field of dynamically created classes.
8386
8387 2003-02-22  Martin Baulig  <martin@ximian.com>
8388
8389         * debug-mono-symfile.h: Incremented version number.
8390
8391 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8392
8393         * object.h icall.c process.c: fix warnings.
8394
8395 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8396
8397         * appdomain.h appdomain.c:
8398         (mono_domain_try_type_resolve): split the 
8399         name_or_tb argument into a name and a tb argument.
8400         (mono_domain_has_type_resolve): new function to check whenever the
8401         application has registered a TypeResolve event handler.
8402         
8403         * icall.c reflection.h reflection.c: move the type resolve logic into
8404         mono_reflection_get_type () so it will be invoked when 
8405         Assembly::GetType () is called.
8406
8407         * reflection.c:
8408         (mono_reflection_get_type): renamed to get_type_internal.
8409         (mono_reflection_get_type): fixed type name generation so it works 
8410         for nested types too.
8411         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8412         costly type name generation if there is no resolve event handler.
8413
8414 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8415
8416         * class.c, image.c: load exported types from file references.
8417
8418 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8419
8420         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8421           used to cache the managed methods used to create proxies and make 
8422           remote invocation of methods.
8423         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8424           to be remotely created.
8425         * object.c: Modified the method mono_class_vtable(). It now initializes 
8426           the remote flag of the vtable. Modified mono_object_new_specific(), 
8427           so now it checks the remote flag.
8428         * icall.c: Added a couple of internal methods, one for enabling instance 
8429           creation interception for a type, and one for creating objects bypassing
8430           the remote check.
8431
8432 2003-02-18  Martin Baulig  <martin@ximian.com>
8433
8434         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8435         New interncall to get a method's metadata token.
8436
8437         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8438         New interncall for the debugger.
8439
8440 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8441
8442         * class.c (mono_class_setup_vtable): allocate supertype array
8443
8444 2003-02-18  Martin Baulig  <martin@ximian.com>
8445
8446         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8447
8448 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8449
8450         * reflection.c:
8451         (assembly_name_to_aname): jump over unknown properties (i've found
8452         something like: 'type, assembly, version=xxx, custom=null, public...',
8453         so now will ignore custom=null and still get the rest of the values).
8454
8455 2003-02-17  Dick Porter  <dick@ximian.com>
8456
8457         * threads.c: Have Thread.Start() wait for a semaphore to signal
8458         that the thread has set up all its local data.  This fixes bug
8459         34323, where Abort() raced the new thread's TLS data.
8460
8461         Also removes the handle_store() call from start_wrapper, because
8462         threads are now always created suspended and there is no longer a
8463         race between the parent and child threads to store the info.
8464
8465 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8466
8467         * image.c: explain the #- heap issue in a message, hopefully
8468         avoiding FAQs on mono-list.
8469
8470 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8471
8472         * icall.c:
8473         (GetEntryAssembly): if the domain has not invoked
8474         AppDomain.ExecuteAssembly yet, return the assembly of the default
8475         AppDomain.
8476
8477 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8478
8479         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8480
8481 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8482
8483         * metadata.c, reflection.c: simple speedup to type hash
8484         and equals code.
8485
8486 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8487
8488         * image.c, image.h, class.c, assembly.c: move module loading
8489         to MonoImage. When loading metadata, consider alignemnet from
8490         the start of metadata, not from the metadata address in memory.
8491
8492 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8493
8494         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8495         AssemblyBuilder objects. Factored out custom attribute creation into
8496         a separate function.
8497         (create_custom_attr): new function to create custom attributes.
8498
8499 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8500
8501         * Makefile.am: Got tired of typing the full pathname to pedump.
8502         Until there is another option, am installing this.
8503
8504 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8505
8506         * class.c (class_compute_field_layout): always set field->parent 
8507         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8508
8509 2003-02-11  Dick Porter  <dick@ximian.com>
8510
8511         * threads-types.h:
8512         * monitor.c: Rewrote Monitor, making lock much faster and
8513         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8514         creates them as needed.
8515
8516         * exception.c: Added SynchronizationLockException
8517
8518         * threads.c: Deleted old Monitor implementation.  The new one is
8519         in a new file.
8520
8521 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8522
8523         * class.c: handled TypedReference type code. Set the correct size for
8524         class data. Setup interface_offsets for interface classes, too.
8525
8526 2003-02-09  Martin Baulig  <martin@ximian.com>
8527
8528         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8529
8530 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8531
8532         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8533         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8534         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8535         * verify.c: check for code that runs after the end of the method.
8536
8537 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8538
8539         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8540         "System.Math::Round2".
8541         * sysmath.h: Added Floor, Round and Round2 definitions.
8542         * sysmath.c: Modified certain functions that were not 100% compliant
8543         with MS.NET (math precision) and added the implementation of Floor,
8544         Round and Round2.
8545
8546 2003-02-07  Martin Baulig  <martin@ximian.com>
8547
8548         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8549
8550 2003-02-07  Martin Baulig  <martin@ximian.com>
8551
8552         * debug-mono-symfile.c: Reflected latest symwriter changes.
8553         (mono_debug_create_mono_symbol_file): Removed.
8554         (mono_debug_open_mono_symbol_file): Take an argument which
8555         specifies whether to create a dynamic symbol file.
8556
8557 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8558
8559         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8560
8561 2003-02-05  Martin Baulig  <martin@ximian.com>
8562
8563         * reflection.c (mono_image_build_metadata): Make this public,
8564         protect it against being called multiple times, don't create
8565         resources and don't build the compressed metadata here.
8566         (mono_image_create_pefile): Do this here.
8567
8568         * icall.c
8569         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8570
8571 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8572
8573         * socket-io.c: fixed bug #36322.
8574
8575 2003-02-06  Piers Haken <piersh@friskit.com>
8576
8577         * appdomain.[ch]:
8578         * class.h:
8579         * debug-mono-symfile.c:
8580         * icall.c:
8581         * loader.c:
8582         * mono-config.c:
8583         * monosn.c:
8584         * reflection.c:
8585         * socket-io.c: warning cleanups
8586
8587 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8588
8589         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8590         function. works like remoting invoke, but does a check for the Proxy first.
8591
8592 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8593
8594         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8595
8596 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8597
8598         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8599         array of pointers.
8600         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8601         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8602
8603         * object.c (mono_store_remote_field_new): used by the new jit
8604         instead of mono_store_remote_field
8605         (mono_load_remote_field_new): used by the new jit
8606         instead of mono_load_remote_field
8607
8608 2003-02-05  Patrik Torstensson
8609
8610         * appdomain.c: changed unload to take the domain id instead
8611         of domain
8612         
8613         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8614
8615
8616 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8617
8618         * appdomain.c: don't look for assemblies in ApplicationBase if
8619         PrivateBinPathProbe is set.
8620
8621 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8622
8623         * object.c: make the first argument in main_args contain the absolute
8624         path to the assembly. Fixes bug #37511.
8625
8626 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8627
8628         * icall.c: get correct UTC offset for countries not using daylight
8629         time saving. Fixes bug #30030.
8630
8631 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8632
8633         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
8634         and 1 are the family).
8635
8636 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
8637
8638         * icall.c (ves_icall_InternalExecute): removed wrong assertion
8639
8640         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
8641
8642 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
8643
8644         * reflection.c: added support for SignatureHelper tokens, which is
8645         needed by the Calli opcode.
8646
8647         * reflection.h: track changes to SignatureHelper class.
8648
8649         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
8650
8651 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8652
8653         * appdomain.c: fixed loading assemblies from PrivateBinPath.
8654
8655 2003-02-03  Patrik Torstensson
8656         * appdomain.[c|h], domain.c : 
8657          - Added support for getting a domain via domain id
8658          - Support for setting and getting domain from System.AppDomain 
8659            (used in cross appdomain channel)
8660          - Added support for get/set for a MonoAppContext on a thread 
8661            (Context class in System.Runtime.Remoting.Contexts),
8662          - Removed hack in Get/SetData and ExecuteAssembly.
8663         
8664         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
8665         the managed world to get control when a proxy is created.
8666
8667         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
8668         
8669 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
8670
8671         * icall.c
8672         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8673         Populate the codebase field as well.
8674
8675 2003-02-02  Martin Baulig  <martin@ximian.com>
8676
8677         * debug-mono-symfile.c
8678         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
8679         (mono_debug_symfile_add_method): Allow interncalls.
8680
8681 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8682
8683         * icall.c: throw parse exception if strtod fails or the string is empty.
8684
8685 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
8686
8687         * marshal.c: handle object type separately from defined
8688         class types.
8689
8690 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
8691
8692         * marshal.c: handle NATIVE_LPSTR for strings when it's
8693         explicitly specified.
8694
8695 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
8696
8697         * reflection.c, reflection.h, icall.c: setup the reflection
8698         handle cache for ModuleBuilders and AssemblyBuilders.
8699
8700 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
8701
8702         * reflection.c (reflection_methodbuilder_to_mono_method): set
8703         pinvoke flag
8704
8705 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8706
8707         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
8708
8709 2003-01-29  Dick Porter  <dick@ximian.com>
8710
8711         * threads.c: No need for the fake_thread kludge now that Thread
8712         doesn't run a class constructor
8713         
8714 2003-01-29  Dick Porter  <dick@ximian.com>
8715
8716         * threads.c: Use g_direct_hash instead of the rather bogus
8717         g_int_hash
8718
8719 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
8720
8721         * marshal.c (mono_marshal_get_native_wrapper): add check for null
8722         (fix pinvoke12.exe)
8723         (mono_marshal_get_struct_to_ptr): generate valid IL code
8724         (mono_marshal_get_ptr_to_struct): generate valid IL code
8725         (*): correctly set sig->pinvoke, we need to memdup the signature
8726         to do that
8727
8728 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8729
8730         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
8731         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
8732
8733 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
8734
8735         * profiler.c: provide more callers information.
8736
8737 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
8738
8739         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
8740
8741         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
8742
8743         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
8744
8745 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8746
8747         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
8748         exception instead of going into an infinite loop on dates which it 
8749         can't yet handle.
8750
8751         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
8752         out-of-range exception if needed.
8753
8754         * class.c (mono_class_setup_vtable): allow a virtual method to provide
8755         an implementation for an interface method and to override an inherited
8756         method at the same time. 
8757         Imagine a scenario when a virtual method is used to override a
8758         virtual abstract method in a parent class, and this same method 
8759         provides an implementation for an method inherited from an interface. 
8760         In this case, the interface resolution code will set im->slot, which 
8761         means that the virtual method override pass will skip this method 
8762         which means a pointer to the abstract method inherited from the parent
8763         will remain in the vtable of this non-abstract class.
8764
8765         * class.c: (mono_class_setup_vtable): continue search for a real 
8766         method if only an abstract method is found.     
8767
8768 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
8769
8770         * reflection.c: add size to encoding for ByValStr and ByValArray
8771         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
8772
8773 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8774
8775         * class.c (mono_class_setup_vtable): pass the override info as an
8776         argument.
8777
8778         * class.c (mono_class_setup_vtable): set the slot of overriding methods
8779         correctly.
8780         
8781         * reflection.c (ensure_runtime_vtable); add support for method 
8782         overrides.
8783         
8784 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8785
8786         * reflection.c (resolution_scope_from_image): Hack to work to work with
8787         dynamic assemblies.
8788
8789         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
8790         added a 'force_ref' argument to force this function to allways return 
8791         a TypeRef. This is needed by mono_image_get_memberref_token ().
8792         
8793 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8794
8795         * reflection.c (mono_image_get_type_info): interfaces really don't have
8796         a parent.
8797
8798         * reflection.c (mono_image_basic_init): fill out missing fields of
8799         image structure.
8800
8801         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
8802         dynamic assemblies. This is required so dynamic assemblies show up in
8803         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
8804         Type::GetType() etc. This is consistent with MS behaviour.
8805
8806         * image.c image.h reflection.c: add newly created classes to the name 
8807         cache so mono_class_get () will find them.      
8808
8809 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
8810
8811         First part of changes to get IKVM.NET running under mono.
8812         
8813         * appdomain.h, appdomain.c: added new function 
8814         mono_domain_try_type_resolve() which will emit TypeResolve events. 
8815         This function will call AppDomain::DoTypeResolve to do the actual work.
8816
8817         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
8818         moved existing code dealing with dynamic tokens to a new function 
8819         called mono_reflection_lookup_dynamic_token (). This function will 
8820         raise TypeResolve events when appropriate. Since reflection.c is not 
8821         part of libmetadata, a new hook function called 
8822         mono_lookup_dynamic_token() is added to class.c which will call this.
8823
8824         * assembly.h assembly.c: make the invoke_load_hook function public,
8825         so it can be called for dynamic assemblies.
8826
8827         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
8828
8829         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
8830         type isn't found.
8831
8832         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
8833         MonoGHashTable, since it contains pointers to objects which the GC 
8834         needs to track.
8835
8836         * assembly.c (search_loaded): remove unused variable.
8837         
8838 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
8839
8840         * object.c: fixed issue exposed by gcc-generated IL programs
8841         that use RVA data for pointers.
8842
8843 2003-01-25  Martin Baulig  <martin@ximian.com>
8844
8845         * threads.c (start_wrapper): Moved the initialization of
8846         `start_func' above the mono_new_thread_init() call to which we
8847         pass it as argument.
8848
8849 2003-01-24  Martin Baulig  <martin@ximian.com>
8850
8851         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
8852         the MonoThread pointer.
8853
8854 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
8855
8856         * icall.c: Rename `PowImpl' to Pow.
8857
8858 2003-01-23  Dick Porter  <dick@ximian.com>
8859
8860         * threads.c (start_wrapper): Create a Thread object if needed, so
8861         the Main() thread can do the class initialisation in a subthread
8862         that has been set up to allow managed code execution.
8863
8864         Pass the thread ID instead of the MonoThread pointer to the thread
8865         start and attach callbacks.  This change is required, because the
8866         jit thread start callback must be called _before_ the Thread
8867         object can be created.
8868         
8869         (mono_thread_init): Removed much object creation code that is no
8870         longer needed.  No managed code is called from here now.
8871
8872         * object.c (mono_runtime_exec_managed_code): Create a subthread
8873         for Main, and call back to the runtime to use it.
8874         Set the exit code when Main exits.
8875
8876         * gc.c: Make sure domain finalisation happens in a subthread.
8877         Re-enable threaded GC, fixing bug 31333 (again).
8878
8879         * environment.c: System.Environment internall calls (so far just
8880         ExitCode is here, the others are still in icall.c)
8881
8882         * appdomain.c (mono_runtime_cleanup): All threads running managed
8883         code should have finished before mono_runtime_cleanup() is
8884         reached, so no need to clean up threads.
8885
8886 2003-01-22  Martin Baulig  <martin@ximian.com>
8887
8888         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
8889         `gpointer func' arguments.      
8890         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
8891         but added `MonoThread *thread' argument.
8892         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
8893
8894         * threads.c (mono_new_thread_init): Added `gpointer func' argument
8895         and pass it to the mono_thread_start_cb callback.
8896         (mono_install_thread_callbacks): New public function to install a
8897         set of callbacks which are set by the debugger.
8898         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
8899
8900 2003-01-22  Martin Baulig  <martin@ximian.com>
8901
8902         * Makefile.am: Install debug-mono-symfile.h.
8903
8904 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
8905
8906         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
8907
8908 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
8909
8910         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
8911         * class.c (mono_ptr_class_get): correctly set access levels of pointers
8912         (mono_array_class_get): correctly set access levels of arrays
8913
8914 2003-01-20      Patrik Torstensson
8915         * image.h (MonoAssemblyName): changed major, minor, build, revision
8916         from signed to unsigned.
8917
8918 2003-01-20  sean kasun <skasun@azstarnet.com>
8919
8920         * reflection.c (load_cattr_value): Now this handles
8921         MONO_TYPE_SZARRAY.  Fixes bug #35629
8922
8923 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
8924
8925         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
8926         integer value
8927
8928 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8929
8930         * decimal.c: fixed bug #26056.
8931
8932 2003-01-17  Martin Baulig  <martin@ximian.com>
8933
8934         * gc.c: Raise an ExecutionEngineException instead of using g_error().
8935
8936 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8937
8938         * exception.[ch]:
8939         (mono_get_exception_type_initialization): new function.
8940
8941         * object.c: throw a TypeInitializationException when an exception is
8942         thrown invoking the class constructor.
8943
8944 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8945
8946         * reflection.c: fixed attribute reading.
8947
8948 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8949
8950         * icall.c:
8951         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
8952         provided, look for the type in the calling assembly and then in
8953         mscorlib; if the assembly name is provided, only try that one.
8954
8955 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
8956
8957         * object.c: register the vtable before there is a chance it's
8958         queried again recursively.
8959
8960 2003-01-13  Duncan Mak  <duncan@ximian.com>
8961
8962         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
8963         gc-internal.h. 
8964         
8965 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
8966
8967         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
8968
8969 2003-01-11  Martin Baulig  <martin@ximian.com>
8970
8971         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
8972         this to 20 for the release.
8973
8974 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
8975
8976         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
8977
8978         * loader.c (mono_method_get_marshal_info): bug fix
8979
8980         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
8981         structures with explicit layout
8982
8983 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8984
8985         * profiler.c: made the output more readable (and sorted). 
8986         Added caller information for the allocation profiler.
8987
8988 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
8989
8990         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
8991
8992 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8993
8994         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
8995         to get value types.
8996         
8997 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
8998
8999         * object.c, profiler.h, profiler.c, profiler-private.h:
9000         Added object allocation profiler.
9001
9002 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9003
9004         * reflection.h, reflection.c: handle global methods.
9005         Compress blob entries.
9006
9007 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9008
9009         * marshal.c: fix compilation.
9010
9011 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9012
9013         * loader.c (mono_method_get_marshal_info): impl.
9014
9015         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9016
9017 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9018
9019         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9020         for reference types.
9021
9022 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9023
9024         * loader.c: fixed off by one error in loaded parameter names.
9025
9026 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9027
9028         * marshal.c (mono_marshal_get_icall_wrapper): like
9029         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9030         instead of a MonoMethod.
9031
9032 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9033
9034         * decimal.c: fixed bug #36537.
9035
9036 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9037
9038         * marshal.c: throw a missing method exception if a
9039         P/Invoke method is not found.
9040
9041 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9042
9043         * icall.c: allow a null this for constructors.
9044
9045 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9046
9047         * icall.c: raise the proper exceptions if the arguments to the
9048         internal Invoke are incorrect.
9049
9050 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9051
9052         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9053
9054 2003-01-03  Martin Baulig  <martin@ximian.com>
9055
9056         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9057
9058 2002-12-31  Martin Baulig  <martin@ximian.com>
9059
9060         * debug-mono-symfile.c: Completely rewrote the type section.
9061         Instead of using individual malloc()ed fields, we use one big
9062         continuous memory area and offsets into this area.
9063         See the comments in the source code for details.
9064
9065 2002-12-30  Martin Baulig  <martin@ximian.com>
9066
9067         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9068
9069 2002-12-30  Martin Baulig  <martin@ximian.com>
9070
9071         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9072         line number table in this data blob instead of using an external
9073         pointer.
9074
9075 2002-12-28  Martin Baulig  <martin@ximian.com>
9076
9077         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9078
9079 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9080
9081         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9082         as a boxed return type.
9083
9084 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9085
9086         * appdomain.c
9087         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9088         g_build_filename to properly get separators on the filename created.
9089
9090         * object.h: Small change, introduce MonoMarshalByRefObject to
9091         track the layout of that structure in the C# universe as we make
9092         changes there.
9093
9094 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9095
9096         * object.c: removed assert to allow static fields on interfaces.
9097         * loader.c: a TypeSpec may be used for any type, not just arrays.
9098
9099 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9100
9101         * class.c, class.h: added mono_class_array_element_size ().
9102         Ignore static methods in interfaces.
9103
9104 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9105
9106         * threads.c: fixed the build under cygwin.
9107
9108 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9109
9110         * reflection.c: handle nullref constants. Allocate keys for
9111         reflection handles with the GC.
9112
9113 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9114
9115         * threads.c, threads.h: added mono_thread_get_abort_signal()
9116         to get a suitable signal for thread abort.
9117
9118 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9119
9120         * metadata.c: fix handling of ExportedType table.
9121
9122 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9123
9124         * icall.c: added WriteWindowsDebugString internal call.
9125
9126 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9127
9128         * reflection.h: added fields to match C# implementation.
9129
9130 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9131
9132         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9133
9134 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9135
9136         * gc.h, gc-internal.h: Rename header for GC internal calls to
9137         gc-internal.h from gc.h as to not clash with Boehm GC having its
9138         header installed as <gc.h> in outside include paths.
9139         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9140         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9141
9142 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9143
9144         * icall.c: assign minor, build and revision in FillName.
9145
9146 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9147
9148         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9149         Added support for running code generated by Reflection.Emit.
9150
9151 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9152
9153         * appdomain.c: check for NULL argument in LoadFrom.
9154
9155 2002-12-10  Dick Porter  <dick@ximian.com>
9156
9157         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9158
9159 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9160
9161         * appdomain.c: fix buglet when building exe file name.  Handle full
9162         assembly name (needed after latest changes to AssemblyName).
9163         * image.c:
9164         (mono_image_close): free some hashtables.
9165
9166 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9167
9168         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9169         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9170         on some systems (redhat 7.3) 
9171
9172 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9173
9174         * threads.c: delete the critical section of a sync block,
9175         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9176
9177 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9178
9179         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9180
9181 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9182
9183         * appdomain.[ch]: handle the assembly preload event to try loading the
9184         assemblies using the paths we have in the current domain.
9185
9186         * assembly.[ch]: created an assembly preload hook that is called to try
9187         loading the assembly by other means that the ones provided here.
9188
9189         * domain.c: initialize the domain search path.
9190
9191         From now on, assemblies (TODO: except corlib and System) are loaded
9192         according to these rules when using mono_assembly_load ():
9193
9194                 1. It tries to load the assembly from the ApplicationBase
9195                 of the current domain appending .dll and .exe (TODO: have to
9196                 try loading from name/name.dll and name/name.exe).
9197
9198                 2. It tries the search path specified in PrivateBinPath for the
9199                 current domain (if any).
9200
9201                 3. Previous behavior.
9202
9203 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9204
9205         * icall.c: implemented GetInterfaceMap() related icall.
9206         * domain.c, loader.h: load MethodInfo in mono_defaults.
9207
9208 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9209
9210         * gc.c: disable the finalizer thread for now, untill all the issues
9211         with it are resolved.
9212
9213 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9214
9215         * string-icalls.c: handle embedded nulls in string ctor when the
9216         length is specified.
9217
9218 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9219
9220         * class.c: look for explicit interface implementation in parent
9221         classes, too.
9222
9223 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9224
9225         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9226
9227 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9228
9229         * gc.c: protect handles with a critical section.
9230
9231 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9232
9233         * icall.c:
9234         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9235         parameters. If no assembly specified, try getting the type from all
9236         the assemblies in the current domain, else, load the assembly and get
9237         the type from it.
9238
9239 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9240
9241         * marshal.c: applied patch from Aleksey Demakov that fixes
9242         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9243
9244 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9245
9246         * icall.c: fixed get_location.
9247
9248 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9249
9250         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9251         declarations to make it work with older gcc. 
9252
9253         * loader.c (mono_get_method): set signature->pinvoke for native calls
9254
9255 2002-11-20  Dick Porter  <dick@ximian.com>
9256
9257         * threads.c (mono_thread_init): Set the main thread's handle
9258
9259 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9260
9261         * gc.c: allow compilation without GC support. Changed to match the
9262         mono coding style.
9263
9264 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9265
9266         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9267
9268 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9269
9270         * reflection.c: set a public key token on the core assemblies.
9271
9272 2002-11-18  Dick Porter  <dick@ximian.com>
9273
9274         * threads.c: Split out some thread initialisation so that other
9275         files can set the start callback function.
9276
9277         * gc.c: Run finalisers in a separate thread, to avoid stack
9278         overflow.  Fixes bug 31333.
9279
9280         * appdomain.c: Set up GC finalisation thread.
9281
9282         * reflection.c: 
9283         * object.c: 
9284         * domain.c: Use gc.h macros for GC_malloc
9285         
9286 2002-11-15  Dick Porter  <dick@ximian.com>
9287
9288         * threadpool.c: 
9289         * threads.c:
9290         * appdomain.c: Removed mono_runtime_init_with_attach(),
9291         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9292         merging the extra parameter with the existing function.  Removed
9293         unneeded code in mono_thread_attach().
9294
9295 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9296
9297         * image.c (mono_image_loaded_by_guid): a method to get loaded
9298         images by guid. 
9299         (load_metadata_ptrs): we store the guid as string.
9300
9301 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9302
9303         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9304
9305         * metadata.c (mono_guid_to_string): imported method form Zoltan
9306         Varga (slightly modified)
9307
9308         * assembly.c (mono_assembly_open): load precompiled code
9309
9310         * loader.h (MonoMethod): we store the method token for use in the
9311         aot compiler. 
9312
9313 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9314
9315         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9316         the hook function called when an assembly is loaded.
9317         
9318         * domain.c: Modified file.
9319         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9320
9321         Fixes bug #33196.
9322
9323 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9324
9325         * reflection.c: Map PEFileKind to the value expected by the WinNT
9326         image loader. 
9327
9328 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9329
9330         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9331         Read until the buffer is filled completely.
9332
9333 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9334
9335         * icall.c: implemented MonoType.InternalGetEvent ().
9336
9337 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9338
9339         * appdomain.c: implemented InitAppDomainSetup. Delayed
9340         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9341         the entry_assembly.
9342
9343         * assembly.c: base_dir is now an absolute path ending with
9344         G_DIR_SEPARATOR.
9345
9346         * icall.c: modified get_location according to the above changes.
9347
9348         * object.c: init AppDomain.SetupInformation for the default domain after
9349         we have the entry assembly.
9350
9351         * domain.c: when unloading a domain, setup = NULL.
9352
9353 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9354
9355         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9356
9357 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9358
9359         * object.h, object.c: introduced mono_object_get_virtual_method ()
9360         to lookup the method invoked on an object when a callvirt is done on
9361         a method.
9362         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9363
9364 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9365
9366         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9367         current domain when loaded an assembly and failed to load it.
9368
9369         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9370
9371 2002-10-31  Dick Porter  <dick@ximian.com>
9372
9373         * icall.c: 
9374         * file-io.h: 
9375         * file-io.c: Return the error status in a parameter, as the
9376         GetLastError() value has long since been blown away if we try and
9377         look it up in a subsequent internal call invocation.  Delete the
9378         GetLastError() internal call, because it's useless.
9379
9380 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9381
9382         * class.[ch]: added cast_class to fix bug 29517
9383
9384 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9385
9386         * marshal.c: create valid IL code in the filter clause:
9387         the new JIT is less forgiving:-)
9388
9389 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9390
9391         * icall.c: removed get_property internal call.
9392
9393 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9394
9395         * appdomain.h domain.c: Added an ID to appdomains.
9396         
9397         * threads.c threads.h icall.c: Implement icall
9398         Thread:GetDomainID(), and remove unused icall 
9399         CurrentThreadDomain_internal.
9400
9401 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9402
9403         * icall.c: Don't recurse through the base types in GetConstructor.
9404         Fixes bug #32063. 
9405
9406 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9407
9408         * mempool.h, mempool.c: added mono_mempool_empty() and
9409         mono_mempool_stats().
9410
9411 2002-10-23  Dick Porter  <dick@ximian.com>
9412
9413         * file-io.c: 
9414         * file-io.h: 
9415         * icall.c: Added MonoIO.GetFileType internal call
9416
9417 2002-10-17  Dick Porter  <dick@ximian.com>
9418
9419         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9420         delegate semaphore before waiting for all threads to finish,
9421         because new threads can also call async delegates.  Fixes bug
9422         32004.
9423
9424         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9425         of 3 seconds, in case another async job is queued.  (This part is
9426         needed because the bug fix reintroduced the 3s exit lag.)  This
9427         makes the mono_runtime_shutdown flag superfluous.
9428
9429 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9430
9431         * reflection.c: include ehader size in method section headers.
9432         Really check for suplicated modules entries.
9433
9434 2002-10-17  Martin Baulig  <martin@gnome.org>
9435
9436         * debug-mono-symfile.c: Added back support for locals.
9437
9438 2002-10-14  Martin Baulig  <martin@gnome.org>
9439
9440         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9441         MONO_TYPE_VOID.
9442
9443 2002-10-14  Martin Baulig  <martin@gnome.org>
9444
9445         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9446         mono_class_get() instead of looking in the class cache. 
9447
9448 2002-10-13  Martin Baulig  <martin@gnome.org>
9449
9450         * debug-mono-symfile.c: Set version number to 28, include the
9451         signature in method names.
9452
9453 2002-10-13  Martin Baulig  <martin@gnome.org>
9454
9455         * debug-mono-symfile.h: Set version number to 27.
9456
9457 2002-10-11  Martin Baulig  <martin@gnome.org>
9458
9459         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9460
9461 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9462
9463         * metadata.c, metadata.h: added helper function to allocate signatures.
9464
9465 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9466
9467         * icall.c: added internal call to get the location of machine.config.
9468
9469 2002-10-08  Martin Baulig  <martin@gnome.org>
9470
9471         * debug-mono-symfile.c: Ignore classes with a pending init for the
9472         moment.
9473
9474 2002-10-03  Dick Porter  <dick@ximian.com>
9475
9476         * threads.c: Freebsd pthread_t is a pointer
9477
9478 2002-10-03  Dick Porter  <dick@ximian.com>
9479
9480         * socket-io.c: Implemented GetHostName_internal
9481
9482 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9483
9484         * mono-config.c:
9485         (mono_config_parse_file): don't leak the text.
9486
9487 2002-10-02  Martin Baulig  <martin@gnome.org>
9488
9489         * debug-mono-symfile.c: Added support for methods.
9490
9491 2002-10-01  Martin Baulig  <martin@gnome.org>
9492
9493         * debug-mono-symfile.c: Don't emit methods and line numbers for
9494         the dynamic symbol file, just write the type table.  We can easily
9495         have an external helper program which creates a symbol file for an
9496         IL file.        
9497
9498 2002-10-01  Dick Porter  <dick@ximian.com>
9499
9500         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9501         Only add the handle to the cleanup array when we're about to
9502         launch the thread.  Bug 31425 deadlocked when the test was run on
9503         mono under w32.
9504
9505 2002-10-01  Martin Baulig  <martin@gnome.org>
9506
9507         * debug-mono-symfile.c: Added support for properties.
9508
9509 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9510
9511         * reflection.c: unaligned store fix from Mark Crichton
9512         <crichton@gimp.org>.
9513
9514 2002-09-27  Martin Baulig  <martin@gnome.org>
9515
9516         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9517         New interncall.
9518
9519 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9520
9521         * assembly.h, assembly.c: use a sane API to hook into the assembly
9522         loading process instead of a useless special-purpouse hack
9523         (ngen needs a hook, too, for example).
9524
9525 2002-09-27  Dick Porter  <dick@ximian.com>
9526
9527         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9528         io-layer can set up some process handle info.  Not needed on w32,
9529         but doesn't hurt either.
9530
9531         * process.c: Pass the program name in the second parameter to
9532         CreateProcess, so the path is searched.  Include the working
9533         directory. Implemented process name, process enumeration, and some
9534         process detail internal calls.
9535         
9536         * icall.c: Added internal calls for process lookup, and some
9537         process details
9538
9539 2002-09-26  Martin Baulig  <martin@gnome.org>
9540
9541         * assembly.c (mono_install_open_assembly_hook): New global
9542         function to install a function to be invoked each time a new
9543         assembly is loaded.
9544         (mono_assembly_open): Run this callback function if set.
9545
9546         * debug-mono-symfile.c: Put back line numbers for the dynamic
9547         symbol file and also record the .il file as source file.  This
9548         allows us to install the temporary symbol file as `file.dbg' just
9549         like a compiler-generated one.
9550
9551 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9552
9553         * Corrected typo in gc.c (BOHEM vs BOEHM).
9554
9555 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9556
9557         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9558         GetProperties. Also avoid calling g_slist_length in GetProperties and
9559         GetMethods.
9560
9561 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9562
9563         * reflection.c: avoid unaligned stores (bug spotted by
9564         Mark Crichton  <crichton@gimp.org>).
9565
9566 2002-09-25  Martin Baulig  <martin@gnome.org>
9567
9568         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9569         instead of guint64 for addresses and added prologue/epilogue info.
9570
9571 2002-09-25  Martin Baulig  <martin@gnome.org>
9572
9573         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9574         store line number info.  For the dynamic symbol file, we only need
9575         to provide the JIT generated dynamic line number info for the dynamic
9576         symbol file.
9577
9578 2002-09-25  Martin Baulig  <martin@gnome.org>
9579
9580         * debug-mono-symfile.h: Incremented version number.
9581
9582 2002-09-24  Martin Baulig  <martin@gnome.org>
9583
9584         * class.c (mono_debugger_class_init_func): New global function
9585         pointer variable.
9586         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9587         call it.
9588
9589         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9590         function.  This is called via the mono_debugger_class_init_func
9591         hook to add all types to the dynamic type table.
9592         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9593         from its metadata token.
9594
9595         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9596         New interncall for the debugger.
9597
9598 2002-09-24  Nick Drochak <ndrochak@gol.com>
9599
9600         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9601         before using it in case it is null.
9602         
9603 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9604
9605         * metadata.c: allow custom modifiers in local var signatures
9606         (bug spotted by Zoltan Varga).
9607
9608 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9609
9610         * class.c: deal with the <Module> class that may have a NULL vtable.
9611         Eliminate warnings.
9612
9613 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9614
9615         * image.c, image.h: more strong name helpers.
9616         * monosn.c: more work: convert pem keys to cryptoapi format.
9617
9618 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9619
9620         * string-icalls.c: speedup IndexOf.
9621
9622 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9623
9624         * icall.c: updates from Zoltan.2.Varga@nokia.com.
9625
9626 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9627
9628         * icall.c: cleanup: use mono_object_domain ().
9629
9630 2002-09-23  Martin Baulig  <martin@gnome.org>
9631
9632         * debug-mono-symfile.c: Improved type support.
9633
9634 2002-09-22  Martin Baulig  <martin@gnome.org>
9635
9636         * debug-mono-symfile.c: Added support for reference types and strings.
9637
9638 2002-09-22  Martin Baulig  <martin@gnome.org>
9639
9640         * debug-mono-symfile.c: Started to work on the type table.
9641
9642 2002-09-21  Martin Baulig  <martin@gnome.org>
9643
9644         * debug-mono-symfile.c: Largely reworked the symbol table format.
9645         The symbol table is now incrementally updated each time a new
9646         method is added.  We're now also using our own magic and version
9647         so that you don't need to recompile all your classes if the
9648         dynamic table changes.
9649         (mono_debug_update_mono_symbol_file): Removed.
9650         (mono_debug_symfile_add_method): New function to add a method.
9651
9652 2002-09-21  Martin Baulig  <martin@gnome.org>
9653
9654         * icall.c
9655         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
9656         New interncall.
9657
9658         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
9659         New interncall to get a method from its metadata token.
9660
9661 2002-09-21  Martin Baulig  <martin@gnome.org>
9662
9663         * debug-mono-symfile.c: Create type table.
9664
9665 2002-09-20  Martin Baulig  <martin@gnome.org>
9666
9667         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
9668
9669 2002-09-20  Martin Baulig  <martin@gnome.org>
9670
9671         * debug-mono-symfile.c: Provide information about params and locals.
9672
9673 2002-09-20  Martin Baulig  <martin@gnome.org>
9674
9675         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
9676         New interncall.
9677
9678         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
9679         interncall to get a method from its metadata token.
9680
9681 2002-09-20  Martin Baulig  <martin@gnome.org>
9682
9683         * debug-mono-symfile.c: Added a few checks for method->header
9684         being non-NULL.  This should never happen, but for the moment
9685         let's use a g_warning() rather than a g_assert().
9686
9687 2002-09-19  Mark Crichton  <crichton@gimp.org>
9688
9689         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
9690         even if support for it isn't present.  Added an #ifdef to fix this.
9691
9692         * socket-io.c: Added checks back for Solaris support.
9693
9694 2002-09-19  Martin Baulig  <martin@gnome.org>
9695
9696         * debug-mono-symfile.c (read_string, write_string): Reflect latest
9697         changes in the symbol file format.
9698
9699 2002-09-18  Martin Baulig  <martin@gnome.org>
9700
9701         * debug-mono-symfile.c: Set version number to 21.
9702
9703 2002-09-18  Dick Porter  <dick@ximian.com>
9704
9705         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
9706         on netbsd.  Fixes bug 30051.
9707
9708 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9709
9710         * reflection.c:
9711         (set_version_from_string): little fix.
9712
9713 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9714
9715         * monosn.c, Makefile.am: added strong name utility.
9716         * reflection.h, reflection.c: implemented delayed signing,
9717         locale, version and hash id assembly attributes.
9718
9719 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9720
9721         * loader.c, metadata.c: load param attributes in signatures.
9722
9723 2002-09-16  Martin Baulig  <martin@gnome.org>
9724
9725         * debug-mono-symfile.c: Added string table with all method names.
9726
9727 2002-09-14  Martin Baulig  <martin@gnome.org>
9728
9729         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
9730         fast method lookup.
9731
9732 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9733
9734         * reflection.c: record the public key token of referenced assemblies.
9735
9736 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9737
9738         * image.c, image.h: added functions to get the strong name and the
9739         public key of an assembly.
9740         * pedump.c: use them.
9741
9742 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
9743
9744         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
9745
9746 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
9747
9748         * marshal.c (mono_marshal_get_managed_wrapper): Added
9749         MONO_TYPE_BOOLEAN 
9750
9751 2002-09-11  Martin Baulig  <martin@gnome.org>
9752
9753         * gc.c: Call GC_unregister_disappearing_link() on all links when
9754         finalizing them, this is necessary to aviod a crash in boehm's
9755         finalize handler.
9756
9757 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9758
9759         * gc.c: handle GetTarget for finalized objects spotted and fixed by
9760         nick@chemlab.org.
9761
9762 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9763
9764         * icall.c: implemented MonoType::Module.
9765         * reflection.c, reflection.h: mono_module_get_object () from
9766         Tomi Pakarinen <tomi.pakarinen@welho.com>.
9767
9768 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9769
9770         * icall.c: ignore overridden methods in GetMethods ().
9771         Fix for FieldInfo::SetValue().
9772         * object.c: handle float/double in runtime invoke.
9773
9774 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9775
9776         * object.c: allow a constructor to be called again on an object.
9777
9778 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9779
9780         * class.h, class.c: move field layout code to it's own function and
9781         export it. Get an interface id earlier. Move fields in MonoClass
9782         so they are more cache friendly and align the bitfields.
9783         * loader.c: temporary handle get_param_names() for a runtime method.
9784         * reflection.c, reflection.h: more code to handle runtime creation of
9785         types.
9786
9787 2002-09-09  Martin Baulig  <martin@gnome.org>
9788
9789         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
9790         signature with the pinvoke field being set for the actual call.
9791
9792 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9793
9794         * icall.c: removed some unused icalls. Start of map of glib charsets
9795         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
9796
9797 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9798
9799         * debug-helpers.c: break infinite loop (found and fixed by
9800         Holger Arnold <harnold@gmx.de>).
9801
9802 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9803
9804         * icall.c: target may be null in create_delegate.
9805
9806 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9807
9808         * marshal.c: handle a boolean return type.
9809
9810 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9811
9812         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
9813
9814 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9815
9816         * gc.c: fix weakreferences.
9817
9818 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9819
9820         * icall.c: added icall to get default codepage.
9821
9822 2002-09-03  Dick Porter  <dick@ximian.com>
9823
9824         * threads.h: 
9825         * threads.c: Use MonoThread instead of MonoObject where
9826         apropriate.
9827
9828         Store running thread objects in a hash table, so that we have all
9829         the info to hand when waiting for them to finish
9830         (means we don't need OpenThread() any more, so mingw builds should
9831         be fully functional again.)
9832
9833         * verify.c:
9834         * object.h: Added thread ID to MonoThread
9835
9836 2002-09-03  Martin Baulig  <martin@gnome.org>
9837
9838         * icall.c (System.Reflection.Assembly::get_location): New interncall.
9839
9840 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9841
9842         * icall.c: fixed leak in get_temp_path. Thanks lupus.
9843
9844 2002-09-03  Martin Baulig  <martin@gnome.org>
9845
9846         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
9847         argument to store the end address of the disassembled instruction.
9848
9849         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
9850         here from debug-symfile.h.
9851         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
9852         JIT into this struct.
9853         (MonoSymbolFile): Added `char *image_file' field.
9854         (MonoDebugGetMethodFunc): Removed.
9855         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
9856         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
9857         (mono_debug_find_method): New method.
9858
9859         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
9860         create a full symbol file.
9861         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
9862         and static symbol files.
9863         (mono_debug_find_method): The symbol file keeps an internal method hash,
9864         call this to get a MonoDebugMethodInfo from a MonoMethod.
9865
9866         * debug-symfile.[ch]: Removed.
9867
9868 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
9869
9870         * image.c (do_mono_image_open): Remove linker version check.
9871
9872 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
9873
9874         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
9875         wrappers for instance methods.
9876         
9877 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9878
9879         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
9880
9881 2002-08-28  Dick Porter  <dick@ximian.com>
9882
9883         * Makefile.am: Export HOST_CC for w32 builds
9884
9885 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9886
9887         * file-io.c process.c: MonoString are null terminated, no
9888         need for mono_string_to_utf16() anymore.
9889
9890 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9891
9892         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
9893
9894 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
9895
9896         * icall.c, reflection.h: speedup System.MonoType.
9897
9898 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9899
9900         * reflection.c: allow null as the value of a string argument in
9901         custom attributes constructors.
9902
9903 2002-08-27  Martin Baulig  <martin@gnome.org>
9904
9905         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
9906         `trampoline_address' field.
9907
9908 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
9909
9910         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
9911         check (fixes bug #29486) 
9912
9913 2002-08-27  Martin Baulig  <martin@gnome.org>
9914
9915         * debug-mono-symfile.c: Changed the file format in a way that allows us
9916         open it read-only and to use a specially malloced area for all the
9917         dynamic data.  We can now also generate a symbol file on-the-fly if we're
9918         debugging IL code and there is no MCS generated symbol file for it.
9919
9920 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9921
9922         * object.c: added a define for a good string and array
9923         creation speedup (not enabled by default because we need to deal with
9924         the synch stuff).
9925
9926 2002-08-26  Martin Baulig  <martin@gnome.org>
9927
9928         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
9929         function to create a dynamic symbol file.  This is used by the
9930         debugger to create a symbol file for IL code on-the-fly.
9931
9932 2002-08-26  Martin Baulig  <martin@gnome.org>
9933
9934         * loader.c (mono_lookup_pinvoke_call): Include the error message
9935         from g_module_error() in the error message.
9936
9937 2002-08-24  Martin Baulig  <martin@gnome.org>
9938
9939         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
9940         function to update the symbol file.  The symbol file is mmap()ed
9941         writable, but private.  This allows us to install the symbol file
9942         together with the assembly.
9943
9944 2002-08-24  Martin Baulig  <martin@gnome.org>
9945
9946         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
9947         but they can read the new symbol file format which mcs is now creating.
9948
9949         * debug-symfile.c (mono_debug_find_source_location): Moved to
9950         debug-mono-symfile.c; this is now operating on the new symbol file.
9951
9952 2002-08-23  Martin Baulig  <martin@gnome.org>
9953
9954         * debug-helpers.c (mono_method_desc_from_method): New function to get
9955         a MonoMethodDesc from a MonoMethod.
9956
9957 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9958
9959         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
9960         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
9961
9962 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9963
9964         * string-icalls.[ch]: make helper methods static.
9965
9966 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9967
9968         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
9969         types to it and to SetValueInternal.
9970
9971         * object.c: Moved handle_enum label to its proper place. This was the
9972         f... bug! ;-)
9973
9974         This time i compiled mcs and gtk-sharp and they both work.
9975
9976 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9977
9978         * icall.c: reverted partially my previous patch until 
9979         object.c:set_value handles enums correcly.
9980
9981 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9982
9983         * icall.c:
9984         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
9985         (ves_icall_System_Environment_get_MachineName): removed warning when
9986         compiling under cygwin.
9987
9988 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9989
9990         * object.c: fixed field_get_value() for reference types.
9991
9992 2002-08-22  Dick Porter  <dick@ximian.com>
9993
9994         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
9995         Don't free a buffer while it's still needed.  Patch from Jonathan
9996         Liger <Jonathan.liger@wanadoo.fr>
9997
9998 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
9999
10000         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10001         internal call.
10002
10003 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10004
10005         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10006         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10007
10008         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10009         we call unmanaged code which throws exceptions.
10010
10011 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10012
10013         * appdomain.h: added per-domain entry_assembly.
10014         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10015         arguments.
10016         * icall.c: Assembly::GetEntryAssembly icall.
10017         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10018         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10019
10020 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10021
10022         * appdomain.h, gc.c: added mono_domain_finalize ().
10023
10024 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10025
10026         * object.c:
10027         (mono_print_unhandled_exception): changed g_warning by g_printerr
10028         because g_log has a 1024 characters limit (yeah, i got a big stack
10029         trace). Don't print exception name, that should be in ToString 
10030         returned string.
10031
10032 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10033
10034         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10035         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10036
10037 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10038
10039         * object.c:
10040         (mono_print_unhandled_exception): after previous commit, i realized
10041         that MS calls ToString on the exception. I changed this function to
10042         do that. This way we get stack_trace for free.
10043
10044 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10045
10046         * object.c:
10047         (mono_print_unhandled_exception): invoke Message property instead of
10048         getting 'message' field from Exception. Don't allocate memory for
10049         'trace' and 'message' if not needed.
10050
10051 2002-08-18  Dick Porter  <dick@ximian.com>
10052
10053         * unicode.c: Fix asserts to match Encoder.cs checks
10054
10055 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10056
10057         * marshal.c: fix unaligned store issue and a few wrong
10058         opcode argument types.
10059
10060 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10061
10062         * icall.c: added GetUninitializedObjectInternal internal call.
10063
10064 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10065
10066         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10067         to the right domain.
10068
10069 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10070
10071         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10072
10073         * class.c (class_compute_field_layout): set blittable to false for Strings
10074
10075         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10076
10077 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10078
10079         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10080         first chunk of code to create types at runtime. Code to
10081         handle ReflectedType/DeclaringType. Make reflection handles
10082         domain specific.
10083
10084 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10085
10086         * class.c: set correct name in arrays.
10087
10088 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10089
10090         * appdomain.c (mono_domain_transfer_object): make it work with
10091         valuetypes. bug fixes.
10092
10093 2002-08-12  Dick Porter  <dick@ximian.com>
10094
10095         * object.h: Rename some parameters to avoid c++ keywords (Patch
10096         from Joseph Wenninger <kde@jowenn.at>)
10097
10098 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10099
10100         * icall.c: added icall to implement Assembly.GetFile*.
10101
10102 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10103
10104         * reflection.h, reflection.c: code to embed managed resources.
10105
10106 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10107
10108         * class.c: move all the type size stuff into
10109         class_compute_field_layout().
10110
10111 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10112
10113         * class.c: ensure enums have always the correct instance size.
10114         * unicode.c: remove wrong assert.
10115
10116 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10117
10118         * assembly.c: fix mem corruption issue.
10119         * image.h, image.c: added mono_image_get_resource () to access
10120         managed resources.
10121         * icall.c: implemented Assembly.EntryPoint property and some
10122         Managed Resources related internalcalls.
10123
10124
10125 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10126
10127         * image.c, image.h: impemented mono_image_get_entry_point ().
10128         * appdomain.c: use mono_image_get_entry_point.
10129
10130 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10131
10132         * reflection.c: support the object type argument when loading
10133         custom attributes.
10134
10135 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10136
10137         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10138         String as return type.
10139
10140 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10141
10142         * reflection.c: fix encoding of named args for custom attrs to match
10143         the ms implementation. Read them back when instantiating custom
10144         attributes.
10145
10146 2002-08-02  Radek Doulik  <rodo@ximian.com>
10147
10148         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10149         by Dietmar as quick fix
10150         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10151         16 as stack size, used on more places as quick fix before Dietmar
10152         will fix it properly
10153
10154 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10155
10156         * object.h, object.c: added accessors for fields and properties.
10157
10158 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10159
10160         * class.c, class.h: made mono_class_get_field_from_name ()
10161         loop on parent types.
10162         Added mono_class_get_property_from_name ().
10163
10164 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10165
10166         * class.c, class.h: move the code to setup the type vtable in its own
10167         function so that it can be reused also for types created at runtime.
10168         Eliminate the "class" identifier from the header file.
10169         * reflection.c: setup the vtable for enums so that we can create
10170         objects for use in SetConstant ().
10171
10172 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10173
10174         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10175         instead of the delegate itself as this pointer (bug #28383)
10176
10177 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10178
10179         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10180         conversions.
10181
10182 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10183
10184         * loader.c: don't set the pinvoke bit on icalls.
10185
10186 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10187
10188         * debug-helpers.c (mono_method_full_name): only print a number to
10189         indicate wrapper type (so that the output is more readable in traces).
10190
10191 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10192
10193         * class.c (mono_class_init): include method override patch from Paolo
10194
10195 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10196
10197         * icall.c: fixed GetTypeCode().
10198
10199 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10200
10201         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10202         use real delegate invoke function to make it work with multicast
10203         delegates (fix bug# 28291).
10204
10205 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10206
10207         * object.c: load constant strings.
10208
10209 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10210
10211         * reflection.c: no magic numbers.
10212         * tabledefs.h: security action enum.
10213
10214 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10215
10216         * assembly.c: fix possible memory corruption.
10217
10218 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10219
10220         * reflection.h, reflection.c: added support for linking resources.
10221         * verify.c: check we have an updated corlib.
10222
10223 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10224
10225         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10226         string arrays.
10227         (mono_marshal_string_array): null terminate unmanaged string arrays.
10228         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10229
10230 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10231
10232         * icall.c: Type.GetType () can now return also types from the
10233         calling assembly.
10234
10235 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10236
10237         * loader.h, loader.c: stack walking support.
10238         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10239         GetCallingAssembly.
10240
10241 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10242
10243         * marshal.c: added optimisations for blittable types 
10244
10245         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10246         (mono_class_setup_mono_type): set blittable attribute for single
10247         and double.
10248
10249         * marshal.c (mono_string_utf8_to_builder): impl.
10250         (mono_string_builder_to_utf8): impl.
10251         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10252
10253 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10254
10255         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10256         (mono_marshal_get_managed_wrapper): impl. byref types
10257
10258 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10259
10260         * icall.c:
10261         (search_method): don't display debug message. 
10262
10263 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10264
10265         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10266
10267 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10268
10269         * appdomain.c: set the missing filename when throwing exception.
10270
10271 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10272
10273         * metadata.c (mono_type_size): code cleanup
10274         (mono_type_stack_size): removed some test code
10275
10276 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10277
10278         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10279         mono_get_exception_file_not_found now.
10280
10281         * exception.c (mono_exception_from_name_two_strings): New version
10282         that will call a constructor with two string arguments. 
10283         (mono_get_exception_file_not_found): New helper routine, used to
10284         report file-not-found errors.
10285
10286 2002-07-20  Dick Porter  <dick@ximian.com>
10287
10288         * process.h:
10289         * process.c: Pass file handles to CreateProcess
10290         
10291         * icall.c:
10292         * file-io.h:
10293         * file-io.c: Implemented CreatePipe
10294
10295 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10296
10297         * metadata.c (mono_get_param_info): set alignment for value types
10298
10299 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10300
10301         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10302         Constify mono_domain_assembly_open().
10303         * loader.c: handle null namespace in icalls.
10304
10305 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10306
10307         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10308         (emit_str_to_ptr_conv): marshal object as structs
10309
10310         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10311
10312         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10313
10314 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10315
10316         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10317         (mono_marshal_get_native_wrapper): we an now return value types
10318
10319 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10320
10321         * verify.c: more checks implemented.
10322
10323 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10324
10325         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10326         (fix bug #27695)
10327         (mono_marshal_get_native_wrapper): allow byref arguments
10328         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10329         impl. PtrToStringXXX methods
10330         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10331         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10332         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10333         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10334         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10335
10336 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10337
10338         * reflection.c: fix buglet in parsing an assembly name.
10339
10340 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10341
10342         * marshal.c (emit_ptr_to_str_conv): first impl.
10343
10344 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10345
10346         * object.c, class.h: cache the vtable in the class as suggested by
10347         vargaz@freemail.hu (Zoltan Varga).
10348
10349 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10350
10351         * class.h, loader.c: added mono_field_from_token().
10352         * verify.c: first cut of type checking code.
10353
10354 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10355
10356         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10357
10358 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10359
10360         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10361         (fix bug #27782)
10362         (mono_marshal_get_remoting_invoke): impl.
10363         (mono_delegate_begin_invoke): impl.
10364         (mono_mb_emit_save_args): impl.
10365         (mono_delegate_end_invoke): impl.
10366         (mono_marshal_get_delegate_begin_invoke):
10367         (mono_marshal_get_delegate_end_invoke):
10368         (mono_marshal_get_delegate_invoke): generate a special name for
10369         those methods (including the signature) and associate them whith
10370         the delegate class. 
10371
10372 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10373
10374         * reflection.[ch]: 
10375         (mono_reflection_type_from_name): now it has a MonoImage parameter
10376         which is used as the default image to search the type in. If the image
10377         is NULL or getting the type from it fails, it defaults to corlib.
10378
10379         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10380         new parameter.
10381
10382 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10383
10384         * reflection.c: update the parameter table index.
10385
10386 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10387
10388         * domain.c: don't include the mark byte in the string hash.
10389
10390 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10391
10392         * icall.cs: icall for Type.GetTypeCode ().
10393         * verify: a couple of fixes and disabled local initialization checks.
10394
10395 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10396
10397         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10398
10399         * debug-helpers.c (mono_method_full_name): print the type of the
10400         runtime wrapper
10401
10402         * metadata.c (mono_signature_hash): a hash function for signatures
10403         (mono_signature_hash): better hash algorithm
10404
10405         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10406
10407         * debug-helpers.c (mono_method_full_name): this can now generate
10408         method names with signatures
10409
10410         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10411         method dont have this pointers.
10412
10413 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10414
10415         * reflection.c: fixup typebuilder tokens.
10416         * image.c: fix buglet.
10417         * marshal.h: remove whitespace.
10418         * metadata.h, metadata.c: reinstate code that was removed.
10419         * verify.c: handle catch directives and fix another couple of bugs.
10420
10421 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10422
10423         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10424         (mono_marshal_get_native_wrapper): make it comp. with the old code
10425         (mono_marshal_get_native_wrapper): support boolean
10426         (mono_marshal_get_managed_wrapper): support more types
10427
10428 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10429
10430         * class.c (class_compute_field_layout): compute class->blittable attribute.
10431
10432 2002-07-09  Dick Porter  <dick@ximian.com>
10433
10434         * threads.c: Make the thread cleaning up cope with threads that
10435         call ExitThread()
10436
10437 2002-07-08  Radek Doulik  <rodo@ximian.com>
10438
10439         * reflection.c (method_encode_code): use non-translated values to
10440         compute finally_start, this fixes exception handling on ppc, yay!
10441
10442         * decimal.h (struct signscale): fix endianess
10443
10444 2002-07-07  Radek Doulik  <rodo@ximian.com>
10445
10446         * reflection.c: swap box_val and not val
10447
10448 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10449
10450         * reflection.c, reflection.h: handle full assembly info in type name.
10451         Handle Type arguments when loading custom attributes.
10452         * icall.c: updated to use new mono_reflection_type_from_name () method.
10453
10454 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10455
10456         * loader.c:
10457         (method_from_memberref): also print assembly name when method not found.
10458
10459 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10460
10461         * icall.c:
10462         (ves_icall_TypeGetProperties): fixed bug #27473. 
10463
10464 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10465
10466         * reflection.c: display image name and token when cannot find the
10467         .ctor for an attribute.
10468
10469 2002-07-05  Martin Baulig  <martin@gnome.org>
10470
10471         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10472
10473 2002-07-04  Dick Porter  <dick@ximian.com>
10474
10475         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10476         compile on mingw.  This will cause mingw builds to not wait for
10477         subthreads to terminate after the main thread does.  I've lodged a
10478         bug with the mingw developers for them to wrap OpenThread().
10479
10480 2002-07-03  Dick Porter  <dick@ximian.com>
10481
10482         * threads.c: Store thread IDs instead of handles, because
10483         GetCurrentThread() returns a pseudohandle and therefore stores
10484         useless values.  mono_thread_cleanup() continues checking the
10485         array of threads until it is empty, to cope with subthreads
10486         spawning new threads after the main thread has finished.
10487
10488         * profiler.h:
10489         * profiler.c:
10490         * profiler-private.h: Pass the thread ID to thread profiler
10491         functions, instead of a handle
10492
10493 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10494
10495         * verify.c: fixes to make it more usable.
10496         * pedump.c: added --verify code to verify IL code in an assembly.
10497
10498 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10499
10500         * reflection.c: turn errors into warnings to allow compiling corlib.
10501
10502 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10503
10504         * reflection.c: add special cases to compile corlib.
10505
10506 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10507
10508         * reflection.c: handle properties with only a set method.
10509
10510 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10511
10512         * opcodes.h: add enum with opcodes in opval order.
10513
10514 2002-07-01  Dick Porter  <dick@ximian.com>
10515         
10516         * object.h:
10517         * object.c (mono_runtime_run_main): Removed unneeded argument
10518
10519 2002-06-28  Martin Baulig  <martin@gnome.org>
10520
10521         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10522
10523 2002-06-27  Dick Porter  <dick@ximian.com>
10524
10525         * threads.c: Store the handle in both the parent thread and in the
10526         subthread, to minimise the time between starting a new thread and
10527         storing its ID.
10528
10529 2002-06-26  Dick Porter  <dick@ximian.com>
10530
10531         * appdomain.c (mono_runtime_cleanup): Close the socket library
10532         after all the threads have finished, not before
10533
10534 2002-06-26  Martin Baulig  <martin@gnome.org>
10535
10536         * debug-symfile.c (mono_debug_find_source_location): Added
10537         `guint32 *line_number' argument.  If it's not NULL, store the line number
10538         there and return the file name without the line number.
10539
10540 2002-06-25  Dick Porter  <dick@ximian.com>
10541
10542         * icall.c:
10543         * process.h:
10544         * process.c: Process forking and other support functions
10545
10546 2002-06-25  Dick Porter  <dick@ximian.com>
10547
10548         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10549         things dont happen when the image is closed.
10550         (mono_image_lookup_resource): Walk the resource section looking
10551         for a particular entry
10552
10553         * cil-coff.h: PE resource section decoding
10554
10555 2002-06-25  Dick Porter  <dick@ximian.com>
10556         
10557         * assembly.h:
10558         * assembly.c: 
10559         (mono_assembly_foreach): Accessor functions to walk the list of
10560         loaded assemblies
10561         (mono_assembly_set_main):
10562         (mono_assembly_get_main): Process methods need to know which
10563         assembly is the "main" one
10564
10565         * object.c (mono_runtime_run_main): Record the main assembly
10566
10567         * debug-helpers.c: Fix typo
10568
10569 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10570
10571         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10572         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10573
10574 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10575
10576         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10577
10578 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10579
10580         * image.c (do_mono_image_open): Initialize reference count,
10581         otherwise we leak the MonoImage.
10582
10583 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10584
10585         * reflection.c: small tweak to handle self-hosting.
10586
10587 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10588
10589         * reflection.c: fix type name parse code.
10590
10591 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10592
10593         * reflection.c: break out of the loop.
10594         * image.c: special case corlib.
10595
10596 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10597
10598         * reflection.c: add all the custom attrs at the end to ensure the
10599         ctors have been properly initialized when the attributes are defined
10600         in the current assembly.
10601
10602 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10603
10604         * reflection.c: handle correctly multiple-nested types.
10605
10606 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10607
10608         * row-indexes.h: fix typos.
10609         * reflection.c: adjust for typos and fix method_def_or_ref
10610         encoding in MethodImpl table.
10611
10612 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10613
10614         * reflection.c: fix entry point patching (thanks Serge!).
10615
10616 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10617
10618         * verify.c: add check for System.Exception
10619
10620 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10621
10622         * image.c, class.c: minifix for code just c&p'ed.
10623         * reflection.c: warning fix.
10624         * object.h, loader.h, domain.c: load also StringBuilder.
10625
10626 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10627
10628         * marshal.h, marshal.c: some support code to handle complex marshaling.
10629
10630 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10631
10632         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
10633         Better signatures with vtable error dump.
10634
10635 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
10636
10637         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
10638
10639 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
10640
10641         * icall.c (ves_icall_Type_GetField): impl.
10642
10643 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10644
10645         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
10646         to retrieve a marshal description blob for a field or param.
10647
10648 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10649
10650         * reflection.h, reflection.c: change order of nested type emission
10651         to avoid table corruption. The NestedTypes table is sorted.
10652         * icall.c: change order of GetConstructor results to workaround mcs bug.
10653
10654 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10655
10656         * reflection.h, reflection.c: handle field and param marshal
10657         information.
10658
10659 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10660
10661         * icall.c, marshal.c marshal.h: more Marshal class implementation.
10662
10663 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10664
10665         * reflection.c: fix call convention.
10666
10667 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10668
10669         * reflection.h, reflection.c: mono_image_get_memberref_token()
10670         takes a type instead of a class, now. Added
10671         mono_image_get_array_token() to create tokens for the special
10672         multi-dim array methods.
10673
10674 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10675
10676         * assembly.c: handle modules (no assembly table). Split
10677         loading references in its own function.
10678         * class.c: handle moduleref resolution scope.
10679         * image.c, image.h: cache module name in image.
10680
10681 2002-06-07  Martin Baulig  <martin@gnome.org>
10682
10683         * reflection.c (mono_image_get_type_info): Only add a class layout entry
10684         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
10685
10686 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10687
10688         * icall.c: more signature fixes that used uint instead of int.
10689
10690 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10691
10692         * reflection.c: fixed signature of field refs.
10693
10694 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10695
10696         * class.c, reflection.c: handle typerefs of nested types
10697         (both on read and when writing files).
10698
10699 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10700
10701         * icall.c: fix method signatures that tried to workaround the previous
10702         typo, d'oh!
10703
10704 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10705
10706         * debug-helpers.c: fix typo.
10707
10708 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10709
10710         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
10711         rewrote the PE/COFF writing code (our programs are understood by the
10712         ms runtime, now).
10713
10714 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10715
10716         * gc.c, gc.h, icall.c: weakreference support.
10717
10718 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10719
10720         * Makefile.am, mono-config.c: use $(sysconfdir).
10721
10722 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10723
10724         * icall.c: changed default precision of Double.ToString() to 15.
10725         Fixed memory leak. Unified with Single.ToString.
10726
10727 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10728
10729         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
10730
10731 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10732
10733         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
10734         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
10735         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
10736         and myself.
10737
10738 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10739
10740         * debug-symfile.c, sysmath.c: yet more compilation fixes.
10741
10742 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10743
10744         * reflection.c, socket-io.c: more compilation fixes.
10745
10746 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10747
10748         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
10749         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
10750         unicode.c: warning and compiler compatibility fixes.
10751
10752 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10753
10754         * class.h, metadata.c: fixed warnings/compilation errors.
10755
10756 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10757
10758         * Makefile.am, mono-config.c, mono-config.h: configuration file
10759         support routines.
10760         * loader.c, loader.h: make Dll mapping configurable at runtime in the
10761         config file. Export methods to insert and lookup mappings.
10762
10763 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10764
10765         * reflection.c: handle types and boxed objects in custom attr
10766         constructors.
10767
10768 2002-05-30  Martin Baulig  <martin@gnome.org>
10769
10770         * debug-symfile.c
10771         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
10772
10773 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
10774
10775         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
10776         to lookup the implmap row for a P/Invoke method.
10777         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
10778         P/Invoke method from the runtime on an as needed basis.
10779
10780 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
10781
10782         * metadata.c (mono_metadata_parse_signature): impl.
10783
10784 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10785
10786         * class.c: handle .pack directive.
10787
10788 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10789
10790         * object.c: initialize static fields with RVA data.
10791
10792 2002-05-25  Martin Baulig  <martin@gnome.org>
10793
10794         * debug-symfile.c
10795         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
10796
10797 2002-05-24  Martin Baulig  <martin@gnome.org>
10798
10799         * debug-symfile.c
10800         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
10801         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
10802         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
10803
10804 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10805
10806         * object.c: special case string ctros in invoke.
10807         * gc.c: silly whitespace changes.
10808
10809 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
10810
10811         * threadpool.[ch]: impl. a threadpool that can
10812         be used by mint and mono.
10813
10814 2002-05-22  Martin Baulig  <martin@gnome.org>
10815
10816         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
10817         The first argument is now a `MonoReflectionModuleBuilder *', the return
10818         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
10819         `methods' field to get the method builder.  The `token' argument is the
10820         unfixed token.
10821
10822         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
10823         invalid characters instead of g_assert_not_reached()ing.  This seems
10824         to be the behaviour of mscorlib.
10825
10826 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
10827
10828         * object.c (mono_runtime_invoke_array): applied patch from Rachel
10829         Hestilow to fix bug #25104
10830
10831 2002-05-21  Martin Baulig  <martin@gnome.org>
10832
10833         * debug-symfile.c (mono_debug_find_source_location): New function.
10834         Looks up an IL offset in the line number table and returns the source
10835         location as a string.
10836
10837 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10838
10839         * icall.c:
10840         (mono_double_ToStringImpl): changed %f by %g until we have something
10841         better.
10842
10843 2002-05-21  Nick Drochak  <ndrochak@gol.com>
10844
10845         * icall.c : Use different name for Math.Pow's icall.  Needed to check
10846         parameters first in C#.
10847
10848 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10849
10850         * icall.c, reflection.h: added icall to get info about an event.
10851
10852 2002-05-20  Radek Doulik  <rodo@ximian.com>
10853
10854         * object.c (mono_value_box): don't use memcpy for boxing on BIG
10855         endian
10856         (mono_value_box): don't use memcpy for small sizes on
10857         architectures with unaligned access
10858
10859 2002-05-20  Martin Baulig  <martin@gnome.org>
10860
10861         * reflection.c (mono_reflection_setup_internal_class): Don't crash
10862         if `tb->parent == NULL'.
10863         (mono_reflection_create_internal_class): New function.  This is
10864         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
10865         for enum types.
10866
10867         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
10868         New interncall.
10869
10870 2002-05-19  Martin Baulig  <martin@gnome.org>
10871
10872         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
10873         argument to get the length, don't default to the array length.
10874
10875 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
10876
10877         * assembly.c (mono_assembly_setrootdir): New function used to
10878         override the MONO_ASSEMBLIES directory.
10879
10880 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10881
10882         * icall.c: ValueType_GetHashCode() initialize local var.
10883
10884 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10885
10886         * reflection.c: sort custom attributes table.
10887
10888 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10889
10890         * reflection.c: support named args in custom attributes (write support).
10891
10892 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10893
10894         * reflection.c: fix finally position calculation.
10895
10896 2002-05-15  Radek Doulik  <rodo@ximian.com>
10897
10898         * reflection.c: fixed endianess at many places
10899
10900         * icall.c (ves_icall_InitializeArray): comment out debug msg
10901
10902 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
10903
10904         * object.c (mono_unhandled_exception): new function to handle
10905         unhandled exceptions.
10906         (mono_unhandled_exception): call the UnhandledException event.
10907         (mono_runtime_delegate_invoke): impl.
10908
10909 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
10910
10911         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
10912         returns the RVA, not the direct pointer to the data. Handle the case
10913         when the class size is fixed.
10914
10915 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10916
10917         * reflection.c: fix some endianess issues.
10918
10919 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
10920
10921         * object.c (mono_runtime_invoke): is now able to catch exceptions.
10922
10923         * threads.c (mono_thread_init): added a callback which is invoked
10924         at thread start.
10925
10926 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10927         
10928         * icall.c: make GetHashCode return non-negative values.
10929
10930 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10931
10932         * object.c, icall.c, gc.c: revert to address-based hashcode.
10933
10934 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
10935
10936         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
10937
10938 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10939
10940         * icall.c, class.c: special case <Module>.
10941
10942 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
10943
10944         * icall.c: fix bug in GetNow().
10945
10946 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
10947
10948         * object.c (mono_runtime_class_init): make sure that we call all
10949         static class constructors.
10950
10951 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10952
10953         * reflection.c: sort methodsemantics table.
10954
10955 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10956
10957         * reflection.h, reflection.c: honour init locals setting.
10958
10959 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
10960
10961         * icall.c: copied Double ToStringImpl for Single ToStringImpl
10962
10963 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10964
10965         * reflection.c: support ContructorBuilders in attribute blob creation.
10966
10967 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10968
10969         * reflection.c: some changes to build a binary that can be run
10970         directly in windows.
10971
10972 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10973
10974         * loader.c: print a big message when an icall can't be found.
10975
10976 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10977
10978         * string-icalls.c: fix bug 24248.
10979
10980 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10981
10982         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
10983         icall.c, reflection.h: separate assembly loading by pathname and by
10984         assembly name. Use the MONO_PATH env var to search for assemblies.
10985
10986 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10987
10988         * assembly.c, image.h: add some support for assemblies
10989         with multiple modules.
10990         * class.c, class.h: export mono_class_from_typeref().
10991         * loader.c: remove duplicated code and use mono_class_from_typeref(),
10992         instead.
10993
10994 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10995
10996         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
10997         documentation says (the ECMA one is correct).
10998
10999 2002-05-02  Dick Porter  <dick@ximian.com>
11000
11001         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11002         Don't name the synchronisation mutex.
11003
11004 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11005
11006         * rand.c
11007         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11008         Make the prototypes match.
11009         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11010         Same.
11011
11012         * icall.c
11013         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11014         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11015         all systems have tm.tm_zone, so use strftime() with %Z to print
11016         the timezone abreviation into a temp string.
11017
11018         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11019         rather than mono_array_addr() on a MonoString on Big Endian
11020         machines.
11021
11022 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11023
11024         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11025         fix bug 24041
11026
11027 2002-04-30  Dick Porter  <dick@ximian.com>
11028
11029         * socket-io.c: Cope with SOCKET being an integer rather than a
11030         pointer now.
11031
11032         * threads.c: Added Thread_free_internal, to deal with thread
11033         handle cleanup.  Moved calls to handle_store() and handle_remove()
11034         to start_wrapper(), so each can only be called once.  Allocate
11035         synchronisation blocks with GC_malloc(), and use GC finalisation
11036         to close the handles.
11037
11038         * icall.c: added System.Threading.Thread::Thread_free_internal
11039
11040 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11041
11042         * icall.c: support Environment.Exit, CommandLineArgs().
11043
11044 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11045
11046         * object.c, object.h: added mono_runtime_run_main () and
11047         mono_runtime_get_main_args () for use in System.Environment.
11048
11049 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11050
11051         * gc.c: fix thinko, enable actual finalization since the jit is now
11052         fixed.
11053
11054 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11055
11056         * gc.c, object.c: take into account that an object may be offset wrt the address
11057         returned by GC_malloc().
11058
11059 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11060
11061         * image.c: handle files without entries in the assembly table (modules).
11062
11063 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11064
11065         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11066         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11067         allowed to be null when it's System.Object class setup.
11068
11069 2002-04-27  Martin Baulig  <martin@gnome.org>
11070
11071         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11072         if `tb->parent == NULL' rather than crashing.
11073
11074 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11075
11076         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11077         calling acos() where asin() should have been called.
11078
11079 2002-04-26  Martin Baulig  <martin@gnome.org>
11080
11081         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11082         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11083         there's a subdirectory called `System', but we don't want to read that
11084         subdirectory as an assembly.
11085
11086 2002-04-25  Martin Baulig  <martin@gnome.org>
11087
11088         * debug-symfile.c: Reflect latest MonoString changes.
11089
11090 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11091
11092         * rand.c, rand.h: instance method icalls need to have an explicit
11093         this pointer as first argument in the C implementation.
11094
11095 2002-04-25  Nick Drochak <ndrochak@gol.com>
11096
11097         * icall.c: Fix typo in map for GetNonZeroBytes
11098
11099 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11100
11101         * string-icalls.c : String does now passes unit tests without any 
11102         errors, the following changes has been made:
11103         
11104         Implemented replace methods.
11105         Renaming of methods to (try) follow the standard.
11106         Fixed compare ordinal
11107         Made all memory allocated directly to function instead of via icall function.
11108         Small performance fix in is_in_array function
11109                         
11110  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11111
11112         c (mono_string_Internal_ctor_charp_int_int):
11113         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11114         sindex < 0, throw ArgumentOutOfRangeException instead of
11115         ArgumentNullException.
11116
11117         Added new check for length == 0, however
11118         I need to make it return String.Empty from the C code.
11119         
11120         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11121         that calculate the length for us here.
11122         
11123         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11124         mono_string_new_utf16 with mono_string_new, since value is utf8.
11125
11126 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11127
11128         * object.c: register the object for finalization if needed.
11129         Allocate one more char in the string for the terminating 0 char.
11130
11131 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11132
11133         * class.c, class.h, image.c: check if a type implemenst a destructor.
11134         Use the proper key for array class lookups.
11135         * icall.c: register the icalls in the System.GC class.
11136         * gc.c, gc.h: GC-related functions and icalls.
11137
11138 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11139
11140         * icall.c:
11141         * socket-io.c:
11142         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11143         changed a couple of free () by g_free ().
11144
11145         * decimal.c: one-liner in the comments for decimal2string ().
11146
11147 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11148
11149         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11150
11151 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11152
11153         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11154         * object.c (mono_runtime_invoke_array) : handle null in params
11155
11156 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11157
11158         * string-icalls.c: fixed bug in split (one off bug)
11159
11160 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11161
11162         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11163         * icalls.c: added String::Equals as internal method
11164
11165 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11166
11167         * threads.c: fixed bug in the double interlocked functions
11168
11169 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11170
11171         * threads.c: implemented all of the new interlocked icalls.
11172         * string-icalls.c: fix a bug in insert.
11173         * icalls.c: added the icalls for interlocked, removed old string functions.
11174         
11175 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11176
11177         * loader.c: fix off-by-one error when reading argument names.
11178
11179 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11180
11181         * profiler.c: win32 counter implementation (untested).
11182         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11183         (the latter needs testing and more complete impl. from win32 folks).
11184
11185 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11186
11187         * object.c: mono_array_new_full workaround mono_array_class_get
11188         problem.
11189
11190 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11191
11192         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11193         * object.h (mono_string_chars): Changed casting type.
11194
11195 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11196
11197         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11198                            method signatures to use gunichar2 instead of gint16.
11199
11200 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11201
11202         * object.h, object.c: domain-specific versions of mono_object_new and
11203         mono_array_new.
11204
11205 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11206
11207         * object.c: changed String layout
11208
11209         * string-icalls.c (mono_string_Internal_ctor_chara): added
11210         internal string constructors.
11211
11212 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11213
11214         * threads.c: pass 'this' to the thread start routine.
11215
11216 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11217
11218         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11219         InternalCompareStr don't call twice mono_string_cmp_char for the last
11220         character. Improved performance in mono_string_cmp_char.
11221
11222 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11223
11224         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11225         code into its own library: libmonoruntime.
11226
11227 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11228
11229         * object.h, object.c: changed array format so that szarrays do not
11230         require a bounds structure.
11231         * icall.c, appdomain.c: support for new szarray format.
11232
11233 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11234
11235         * metadata.c: compare also the retuns type when comparing signatures:
11236         we didn't do this as an optimization since really overloaded methods
11237         must differ also in the arguments, but this doesn't work with
11238         low-level IL code (or when using explicit conversion operators: see
11239         bug#23498 for an example).
11240
11241 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11242
11243         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11244
11245 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11246
11247         * icall.c: make MonoType::GetElementType its own icall.
11248
11249 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11250
11251         * icall.c: remove MonoMethod_get_Name().
11252         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11253         object.
11254
11255 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11256
11257         * string-icalls.c: optimized a few methods.
11258
11259 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11260
11261         * icall.c: added all new string internal calls
11262         * string-icalls.c: added, new string internal call implementation.
11263         * object.c: added mono_string_new_size for allocating a string a size
11264
11265 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11266
11267         * object.c (mono_object_isinst): use the same code as in the
11268         optimized x86 version.
11269
11270 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11271
11272         * profiler.c: TSC-based timer code (faster and more accurate).
11273         Not hooked up in configure, yet (set USE_X86TSC to 1).
11274
11275 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11276
11277         * profiler.c, profiler.h: track time spent compiling methods.
11278         * threads.c: track thread creation/destruction.
11279
11280 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11281
11282         * profiler.c, profiler.h, profiler-private.h: profiling interface
11283         and sample implementation. Moved here so that it can be used also by
11284         the jit.
11285
11286 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11287
11288         * reflection.c, reflection.h: keep types and other handles separate in
11289         the hash tables for referred tokens. Add guid for modules.
11290
11291 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11292
11293         * assembly.c: fix bugs found with valgrind.
11294         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11295
11296 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11297
11298         * threads: added icall support for getting current domain for
11299                    the thread.
11300  
11301 2002-04-13  Martin Baulig  <martin@gnome.org>
11302
11303         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11304         (MonoDebugVarInfo): Added `index' field for register based addresses.
11305         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11306         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11307         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11308         `MonoDebugVarInfo *this_var'.
11309
11310         * debug-symfile.c (relocate_variable): New static function to write
11311         a location description for a local variable or method parameter.
11312
11313 2002-04-12  Martin Baulig  <martin@gnome.org>
11314
11315         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11316         stack offset and begin/end scope address of a local variable.
11317         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11318         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11319         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11320
11321         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11322         Added new relocation types for start/end scope of a local variable.
11323
11324 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11325
11326         * object.h: add mono_object_domain() macro.
11327         * reflection.c: handle typespecs.
11328         * icall.c: MonoMethod::get_Name() implementation.
11329
11330 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11331
11332         * icall.c: String::GetHashCode() icall implementation.
11333
11334 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11335
11336         * icall.c: String::IndexOfAny icall.
11337         * object.c, object.h: make array->max_length more useful.
11338         Intrduced mono_object_class() and mono_string_length() macros.
11339
11340 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11341
11342         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11343         instead of g_unichar_isdigit.
11344
11345 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11346
11347         * icall.c: Implement a simple Double.ToString().
11348
11349 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11350
11351         * appdomain.h: only io-layer.h is supposed to be included.
11352         * icall.c: explicitly import environ. Fix warning.
11353
11354 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11355
11356         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11357                 return true even if it's not Daylight Savings time.
11358                 Only return false for the case where the function isn't
11359                 implemented for a plaform (read Windows).
11360
11361 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11362
11363         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11364         data with a mutex.
11365
11366 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11367
11368         * mempool.c (mono_mempool_alloc): only use g_malloc when
11369         absolutely necessary.
11370
11371 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11372
11373         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11374
11375         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11376         (mono_class_proxy_vtable): use domain mempool
11377
11378 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11379
11380         * appdomain.h, appdomain.c: split initialization that requires the
11381         execution engine support into mono_runtime_init().
11382
11383 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11384
11385         * class.c (mono_class_init): don't include vtable inside MonoClass
11386         to save some memory, gather some statistics.
11387         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11388
11389 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11390
11391         * icall.c: internalcall implementation for ValueType.Equals().
11392
11393 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11394
11395         * object.c (mono_message_init): moved 
11396         (mono_runtime_exec_main): new arch. independent impl.
11397         (mono_runtime_invoke_array): new method - like
11398         mono_runtime_invoke, but you can pass an array of objects.
11399         (mono_remoting_invoke): new arch. independent impl.
11400         (mono_message_invoke): new arch. independent impl.
11401         (mono_runtime_class_init): new arch. independent impl.
11402         (mono_runtime_object_init): new arch. independent impl.
11403
11404 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11405
11406         * metadata.c, object.c, reflection.c: documented the exported
11407         functions.
11408
11409 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11410
11411         * icall.c: simpler code to pass the assembly builder data to corlib.
11412         Implement GetNestedTypes() internalcall.
11413
11414 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11415
11416         * class.c: warn if a type can't be loaded.
11417
11418 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11419
11420         * image.h: typedef MonoImageOpenStatus
11421         * types.h: removed unused file
11422         
11423 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11424
11425         * icall.c: Enum_ToObject accepts enum value arguments.
11426
11427 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11428
11429         * class.c: move initialization of properties, events and nested
11430         classes, so that they happen for interfaces, too.
11431
11432 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11433
11434         * icall.c: cleanup some ugly casts in Array_SetValue*.
11435
11436 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11437
11438         * icall.c: the values array fro enums is of the correct type, now.
11439         Implement (correctly) getFullName instead of assQualifiedName for
11440         MonoType.
11441         * reflection.h, reflection.c: added mono_type_get_name ().
11442
11443 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11444
11445         * assembly.c, image.h: for each MonoImage, record from wich assembly
11446         it was loaded.
11447         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11448         Make Type.Assembly work.
11449
11450 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11451
11452         * debug-symfile.h: use char* instead of gpointer to avoid
11453         unnecessary casts.
11454
11455         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11456
11457         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11458         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11459
11460 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11461
11462         * icall.c (mono_message_init): impl. (code cleanup)
11463         (ves_icall_InternalExecute): impl. FieldGetter
11464
11465         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11466         defined we call all (non-static)methods through the vtable. 
11467
11468 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11469
11470         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11471         finalizer even though the memory is still referenced (and the chunk of
11472         memory is not freed).
11473
11474 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11475
11476         * assembly.c: fix brokeness.
11477
11478 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11479
11480         * class.c: kill some warnings. Check explicit interface method
11481         implementation also without considering the namespace.
11482         Load also literal strings in static class data.
11483
11484 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11485
11486         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11487         (default_assembly_name_resolver): Make the resolver take the
11488         "base" directory where the assembly was originally defined, so we
11489         can load DLLs that are in the same directory as the assembly that
11490         is being referenced.
11491
11492 2002-03-28  Dick Porter  <dick@ximian.com>
11493
11494         * file-io.h: 
11495         * file-io.c:
11496         * socket-io.c: 
11497         * unicode.h: 
11498         * unicode.c: Warning cleanups
11499
11500 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11501
11502         * object.h, reflection.h: use the correct type instead of MonoObject.
11503
11504 2002-03-28  Martin Baulig  <martin@gnome.org>
11505
11506         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11507         (mono_debug_update_symbol_file): Initialize classes if necessary.
11508
11509 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11510
11511         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11512         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11513
11514 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11515
11516         * assembly.h: fix function prototype.
11517         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11518         * mono-endian.h: use const cast.
11519
11520 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11521
11522         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11523
11524 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11525
11526         * loader.c: don't assert when a typeref can't be loaded, give
11527         a chance to the runtime to trow an exception instead.
11528         * loader.h: fix warning.
11529
11530 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11531
11532         * class.c (mono_class_proxy_vtable): added proxy support
11533
11534 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11535
11536         * icall.c: removed last of PAL calls, added System.Environment
11537         * file-io.h, file-io.c: MonoIO implementation
11538         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11539
11540 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11541
11542         * appdomain.c: do not use the byte marker in ldstr table lookup.
11543         * debug-helpers.c: allow two ':' to separate class and method name.
11544         * object.c: allocate arrays bounds with the GC, too.
11545         * verify: add a few more checks.
11546
11547 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11548
11549         * reflection.c: output also literal strings. Allocate parameter data
11550         with GC_malloc() (thanks, Martin, for catching this!).
11551
11552 2002-03-26  Martin Baulig  <martin@gnome.org>
11553
11554         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11555         include the `this' offset in the `param_offsets'.
11556
11557 2002-03-25  Martin Baulig  <martin@gnome.org>
11558
11559         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11560         mono_debug_get_class() function to get the classes. Added new
11561         relocation types for arrays and strings.
11562         (mono_debug_get_class): New static function to search in all
11563         referenced assemblies for a metadata token.
11564
11565         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11566
11567 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11568
11569         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11570         hold gc-allocated objects. Make the string heap a stream like the
11571         others. Removed duplicated code when writing stream info.
11572         Added asserts to catch possible buffer overflows. Set the sorted map
11573         for tables that need sorting. Added some documentation.
11574
11575 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11576
11577         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11578         for interned strings and vtables.
11579
11580 2002-03-24  Martin Baulig  <martin@gnome.org>
11581
11582         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11583         it in the array since it was created with g_slist_prepend().
11584
11585 2002-03-24  Martin Baulig  <martin@gnome.org>
11586
11587         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11588         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11589         (mono_debug_method_from_token): Renamed to
11590         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11591         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11592
11593         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11594         relocation types.
11595
11596         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11597
11598 2002-03-24  Martin Baulig  <martin@gnome.org>
11599
11600         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11601         (mono_debug_method_from_token): New func.
11602
11603         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11604         New interncall, calls mono_debug_local_type_from_signature().
11605         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11606         calls mono_debug_method_from_token().
11607
11608 2002-03-23  Martin Baulig  <martin@gnome.org>
11609
11610         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11611         specifies the number of bytes to be converted, not the array size.
11612         Return the number of chars, not the number of bytes.
11613         (ves_icall_iconv_get_chars): The `byteCount' argument
11614         specifies the number of bytes to be converted, not the array size.
11615
11616 2002-03-23  Martin Baulig  <martin@gnome.org>
11617
11618         * reflection.h (MonoReflectionSigHelper): New type.
11619
11620         * reflection.c (mono_reflection_sighelper_get_signature_local),
11621         (mono_reflection_sighelper_get_signature_local): New functions.
11622
11623         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
11624         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
11625         interncalls.
11626
11627 2002-03-23  Martin Baulig  <martin@gnome.org>
11628
11629         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
11630         is_writeable is set.
11631         (mono_raw_buffer_update): New function to write the modified map
11632         back to disk.
11633
11634         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
11635
11636         * debug-symfile.c (mono_debug_update_symbol_file): Call
11637         mono_raw_buffer_update() when done writing.
11638
11639 2002-03-23  Martin Baulig  <martin@gnome.org>
11640
11641         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
11642
11643         * debug-symfile.c: Added support for arguments and local variables.
11644
11645 2002-03-23  Dick Porter  <dick@ximian.com>
11646
11647         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
11648         protected by ifdefs, hence breaking the w32 build.
11649
11650 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11651
11652         * object.c: implement is_interned() the right way.
11653
11654 2002-03-21  Martin Baulig  <martin@gnome.org>
11655
11656         * debug-symfile.[ch]: New files to handle debugging information
11657         files. There's also support to dynamically update these symbol
11658         files to include machine dependent information.
11659
11660 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
11661
11662         * threads.c (mono_thread_create): new function to create thread
11663         from C
11664
11665 2002-03-20  Martin Baulig  <martin@gnome.org>
11666
11667         * icall.c (ves_icall_InternalInvoke): Create a new object if the
11668         method is a constructor.
11669         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
11670         points to ves_icall_InternalInvoke().
11671
11672 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
11673
11674         * file-io.c: Flush shouldn't throw exceptions.
11675
11676 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
11677
11678         * file-io.c: FileStream flush support; FileSetLength now
11679         restores file pointer.
11680
11681 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11682
11683         * class.c: set image for pointer classes.
11684
11685 2002/03/19  Nick Drochak <ndrochak@gol.com>
11686
11687         * sysmath.c: Forgot one.
11688
11689 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
11690
11691         * sysmath.c: Avoid redefining existing names.
11692
11693 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
11694
11695         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
11696         handled by runtime as icall rather than dllimport from libm.so
11697         * file-io.c, file-io.h: fixed handle argument type.
11698
11699 2002-03-18  Dick Porter  <dick@ximian.com>
11700
11701         * reflection.c (mono_image_get_type_info): rename interface to
11702         iface, because of "#define interface struct" on windows.
11703
11704 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
11705
11706         * class.c, class.h: rename and export mono_ptr_class_get().
11707         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
11708         * reflection.c, reflection.h, icall.c: better/saner type name
11709         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
11710         method signatures.
11711
11712 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
11713
11714         * class.c (mono_class_init): removed hardcoded GHC_SLOT
11715
11716         * icall.c (ves_icall_InternalInvoke): impl.
11717
11718 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11719
11720         * reflection.c: output the interface map table, too.
11721
11722 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11723
11724         * class.c (class_compute_field_layout): separate computation of 
11725         static field layout
11726
11727 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
11728
11729         * icall.c: added System.Buffer support.
11730         * file-io.c: moved file icalls from PAL to FileStream.
11731
11732 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11733
11734         * icall.c (ves_icall_System_Object_GetHashCode): impl.
11735
11736 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
11737
11738         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
11739
11740 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11741
11742         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
11743
11744 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11745
11746         * debug-helpers.{c,h}: moved here from monograph some useful functions
11747         to locate a method by name/signature in a class or image. Included
11748         also a small and flexible IL disassembler.
11749
11750 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11751
11752         * reflection.c: fixup tokens in methods with small header size, too.
11753
11754 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
11755
11756         * object.c (mono_string_to_utf8): remove assert(!error), instead
11757         print a warning. 
11758
11759 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
11760
11761         * icall.c: update to the new mono_Array_class_get interface.
11762
11763 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
11764
11765         * appdomain.c, object.c: Boehm-GC enable.
11766         * icall.c: make get_data_chunk() support split data requests.
11767         Ensure a class is initialized in more cases. Return only the first
11768         property found in GetProperties() or the compiler gets confused. 
11769         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
11770         * reflection.h, reflection.c: add fixup mechanism for field and method
11771         tokens. Initialize assembly->typeref in a single place. Output
11772         properties after events. Support custom attributes for events, too.
11773         Typo fix for paramter custom attrs.
11774
11775 2002-03-07  Martin Baulig  <martin@gnome.org>
11776
11777         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
11778
11779 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
11780
11781         * class.c (mono_array_class_get): fix. for multi. dim. arrays
11782
11783 2002-03-06  Martin Baulig  <martin@gnome.org>
11784
11785         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
11786         non-zero lower bounds. See testcases #F10-#F13.
11787
11788 2002-03-05  Martin Baulig  <martin@gnome.org>
11789
11790         * exception.c (mono_get_exception_argument_out_of_range): New exception.
11791
11792         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
11793         ves_icall_System_Array_GetValue(), only calculate the absolute array position
11794         here.
11795         (ves_icall_System_Array_SetValue): Likewise.
11796         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
11797         as argument and does the actual work. This function is used when copying a
11798         multi-dimensional array.
11799         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
11800         now do all the widening conversions of value types.
11801         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
11802
11803 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11804
11805         * class.c: remove some magic numbers and use the smbolic names,
11806         instead. Added init_events() to load event info at class init time.
11807         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
11808         and mono_metadata_methods_from_event().
11809         * reflection.h, reflection.c: added support for writing out the evnets
11810         related information.
11811
11812 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11813
11814         * reflection.h, icall.c: use a different method (GetInterfaces)
11815         to gather interface info and add isbyref, isprimitive and
11816         ispointer to the ves_icall_get_type_info() return value.
11817
11818 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
11819
11820         * class.h: stared adding support for events.
11821         * icall.c: split find_members implementation. Added debug icall to get
11822         the address of an object.
11823         * reflection.c: handle TypeBuilders in mono_type_get_object().
11824
11825 2002-03-01  Martin Baulig  <martin@gnome.org>
11826
11827         * icall.c (ves_icall_System_Array_GetLength): This must throw an
11828         ArgumentOutOfRangeException(), not an ArgumentException().
11829         (ves_icall_System_Array_GetLowerBound): Likewise.
11830         (ves_icall_System_Array_GetValue): Improved argument checking.
11831         (ves_icall_System_Array_SetValue): Improved argument checking.
11832
11833 2002-03-01  Martin Baulig  <martin@gnome.org>
11834
11835         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
11836         called with invalid arguments rather than just dying with g_assert().
11837         (ves_icall_System_Array_SetValue): Likewise.
11838         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
11839         raise a NotImplementedException instead.
11840         (ves_icall_System_Array_GetLength): Added argument checking.
11841         (ves_icall_System_Array_GetLowerBound): Added argument checking.
11842
11843 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
11844
11845         * object.h (mono_assert): new macros mono_assert and
11846         mono_assert_not_reached
11847
11848 2002-02-28  Martin Baulig  <martin@gnome.org>
11849
11850         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
11851         and "System::String::IsInterned" to "System::String::_IsInterned".
11852
11853 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
11854
11855         * icall.c: remove hacks for typebuilder. Added icall to create a
11856         modified type from a tybebuilder.
11857         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
11858         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
11859         to create a backing MonoClass for a TypeBuilder.
11860
11861 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11862
11863         * class.c, class.h: more refactoring of class init.
11864         Export mono_class_setup_mono_type() and mono_class_setup_parent().
11865
11866 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
11867
11868         * marshal.c, marshal.h: start of marshaling interface.
11869
11870 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11871
11872         * icall.c: fix order in assembly qualified name icall.
11873
11874 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11875
11876         * class.c: do not free str, since we store it in the hash table.
11877         * reflection.h: add label field to MonoILExceptionInfo.
11878         * reflection.c: handle references to more than one assembly. Handle
11879         case when there isn't a module created in the assembly.
11880
11881 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11882
11883         * class.c: Fix typo. Start refactoring of class init code.
11884
11885 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11886
11887         * appdomain.c: exit with 1 on error.
11888         * class.c: we already have the name in MonoClassField.
11889         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
11890         MonoStreamHeader instead of an offset of image->raw_metadata.
11891
11892 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
11893
11894         * appdomain.c (mono_init): Be even more descriptive about the error.
11895
11896 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
11897
11898         * appdomain.c: give the user an informative message when corlib can't
11899         be loaded.
11900
11901 2002-02-26  Martin Baulig  <martin@gnome.org>
11902
11903         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
11904         New icall to get the time zone data.
11905
11906 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11907
11908         * reflection.c: set virtual and raw size of section correctly.
11909         * threads.c: transfer domain information to newly created threads.
11910
11911 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11912
11913         * class.c: when instancing a class in a domain, load the default
11914         vaules for static fields from the constant table. Fix System.Enum to
11915         not be an enum.
11916         * icall.c: implement Object::GetType() internalcall. Implemented
11917         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
11918         Fixed checking of binding flags in find_members().
11919         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
11920         * reflection.c: handle enumerations when writing to the constant
11921         table. Use a different object cache for types.
11922
11923
11924 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
11925
11926         * object.c (mono_object_isinst): fix for arrays
11927
11928         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
11929
11930 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11931
11932         * object.c: don't use mprotect ()  and fix intern pool hash table
11933         lookup for big endian systems.
11934
11935 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11936
11937         * icall.c: change type_is_subtype_of () signature.
11938
11939 2002-02-21  Mark Crichton  <crichton@gimp.org>
11940
11941         * rand.c, rand.h: Added random number generator for
11942         System.Security.Cryptography classes.
11943
11944         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
11945
11946         * icall.c: Added System.Security.Cryptography calls.
11947
11948 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11949
11950         * class.c, icall.c, metadata.c: better support for pointer types.
11951         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
11952         * reflection.c: Add support for getting custom attrs for properties
11953         and simplify some code.
11954
11955 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11956
11957         * icall.c: change getToken () and add custom attribute GetBlob()helper
11958         method.
11959         * reflection.h: add custom attrs array to the reflection builder structures.
11960         * reflection.c: encode and emit custom attributes for all the relevant
11961         reflection objects. Cache fieldref and methodref tokens. Change
11962         mono_image_create_token() interface to take a MonoDynamicAssembly.
11963         More complete custom attributes decoder. Load custom attributes for
11964         Assembly, Field, Method and Constructor objects, too. Make the
11965         returned array an Attribute[] one, not object[]. Added
11966         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
11967         custom attribute constructor.
11968
11969 2002-02-20  Dick Porter  <dick@ximian.com>
11970
11971         * icall.c:
11972         * rawbuffer.c:
11973         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
11974         problem code out for now).
11975
11976 2002-02-19  Radek Doulik  <rodo@ximian.com>
11977
11978         * object.c (mono_ldstr): use hash table to avoid multiple swapping
11979
11980 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
11981
11982         * icall.c: register the GetCustomAttributes method.
11983         * object.c, object.h: add mono_string_new_len ().
11984         * reflection.h, reflection.c: added mono_runtime_invoke(),
11985         mono_install_runtime_invoke(). Added
11986         mono_reflection_get_custom_attrs () to load custom attributes and
11987         create the attribute objects.
11988
11989 2002-02-19  Dick Porter  <dick@ximian.com>
11990         * threads-dummy-types.c:
11991         * threads-dummy-types.h:
11992         * threads-dummy.c:
11993         * threads-dummy.h:
11994         * threads-pthread-types.c:
11995         * threads-pthread-types.h:
11996         * threads-pthread.c:
11997         * threads-pthread.h:  Deleted obsolete files
11998
11999 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12000
12001         * class.c (mono_class_vtable): runtime init the class when we
12002         allocate static class data.
12003
12004         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12005
12006         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12007         and String - but we will need generic marshalling support in the
12008         future. 
12009         (mono_init): set the domain name in a ms compatible way
12010
12011         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12012         String[].
12013
12014 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12015
12016         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12017         for sizes
12018
12019         * appdomain.c (mono_domain_unload): impl.
12020
12021 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12022
12023         * appdomain.c, object.c: fix intern pool implementation.
12024         * class.c: fix alignment code.
12025
12026 2002-02-16  Radek Doulik  <rodo@ximian.com>
12027
12028         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12029         and s2 > s1, just copy lower bytes to be compatible with little
12030         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12031         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12032
12033         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12034         force big_endian to be 1 for big endian machines 
12035         (ves_icall_iconv_new_decoder): ditto
12036
12037 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12038
12039         * socket-io.c (convert_sockopt_level_and_name): If the system
12040         doesn't define SOL_IP or SOL_TCP, get them by hand using
12041         getprotobyname() and caching the values (because this could be a
12042         slow operation).
12043         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12044         Use the appropriate struct when the system does support it. Ie,
12045         not all systems have struct ip_mreqn so use struct ip_mreq when
12046         appropriate.
12047
12048 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12049
12050         * reflection.c: handle finally clauses.
12051
12052 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12053
12054         * socket-io.c: use g_snprintf() instead of snprintf.
12055
12056 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12057
12058         * reflection.c (mono_param_get_objects): Cast second argument to
12059         mono_method_get_param_names to a const char** to silence the
12060         compiler warning.
12061
12062         * appdomain.c (mono_domain_assembly_open): Put parens around the
12063         truth statement in the for-loop.
12064
12065         * unicode.c (iconv_convert): Got rid of a compiler warning about
12066         int i being unused when the system has a new iconv.
12067         (iconv_get_length): Same.
12068
12069         * image.c (load_class_names): Cast the second argument to
12070         g_hash_table_insert() to char* to hush compiler warnings about the
12071         arg being a const.
12072         (mono_image_open): Same here.
12073
12074         * socket-io.c: Don't conditionally include sys/filio.h or
12075         sys/sockio.h here anymore since we now get them from
12076         io-layer/io-layer.h
12077         (inet_pton): If the system doesn't support inet_aton, implement
12078         using inet_addr and also #define INADDR_NONE if it isn't defined
12079         by the system.
12080
12081 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12082
12083         * metadata.c, metadata.h: added function to get packing and size info
12084         of a typedef.
12085         * reflection.h, reflection.c: handle field RVA data. Save info about
12086         the table layout if needed. Assign typedef indexes to all the types
12087         before dumping the info about them to avoid forward reference problems.
12088
12089 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12090
12091         * socket-io.c (convert_sockopt_level_and_name): ifdef
12092         SO_ACCEPTCONN because it is not defined on my system (old debian)
12093
12094 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12095
12096         * opcode.c: use stddef.h to get NULL.
12097
12098 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12099
12100         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12101         for FIONBIO, FIONREAD and SIOCATMARK.
12102         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12103         define INADDR_NONE and besides, inet_addr() is deprecated and
12104         should not be used. Use inet_pton() instead - it also has the
12105         added bonus that it can easily handle IPv6 addresses as well.
12106         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12107
12108 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12109
12110         * decimal.c: remove _MSC_VER conditional.
12111
12112 2002-02-13  Dick Porter  <dick@ximian.com>
12113
12114         * socket-io.c: 
12115         * icall.c: Internal calls for Blocking, Select, Shutdown,
12116         GetSocketOption and SetSocketOption
12117
12118 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12119
12120         * assembly.cs: better resolver: use it instead of some kludgy
12121         code.
12122
12123 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12124
12125         * reflection.c: the best way to speed-up the compiler is to avoid
12126         infinite loops.
12127
12128 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12129
12130         * class.c (mono_class_vtable): changed the object layout
12131         (obj->vtable->class). 
12132         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12133
12134 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12135
12136         * assembly.c: look for assemblies in the assembly dir, too.
12137
12138 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12139
12140         * class.c: fix thinko in mono_class_from_type().
12141
12142 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12143
12144         * exception.h, exception.c: added TypeLoadException.
12145         * object.h, object.c: added mono_array_clone ().
12146         * icall.c: handle throwOnError in AssemblyGetType().
12147         Added Array.Clone().
12148         * opcode.h, opcode.c: use a single value for the opcode val.
12149         Compile fix for non-gcc compilers.
12150
12151 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12152
12153         * opcodes.c, opcodes.h: export interesting info about opcodes.
12154
12155 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12156
12157         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12158         icalls. 
12159
12160         * class.c (class_compute_field_layout): set element_class for enums
12161         (mono_class_create_from_typedef): set element_class for normal classes
12162
12163         * icall.c (ves_icall_System_Enum_get_value): impl.
12164
12165         * class.c (mono_class_create_from_typedef): do not set valuetype
12166         flag for System.ValueType and System.Enum
12167
12168 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12169
12170         * unicode.c (iconv_convert): fix big endian problem.
12171
12172 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12173
12174         * class.c: add asserts if we are ever going to scribble over memory.
12175         * socket-io.c: not all systems have AF_IRDA defined.
12176
12177 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12178
12179         * class.c (class_compute_field_layout): do not consider static
12180         fields to compute alignment
12181
12182 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12183
12184         * appdomain.c (mono_appdomain_get): impl.
12185         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12186
12187 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12188
12189         * icall.c: ignore "file://" prefix when loading an assembly.
12190
12191 2002-01-23  Dick Porter  <dick@ximian.com>
12192
12193         * socket-io.c:
12194         * icall.c:
12195         * Makefile.am: Added socket support
12196
12197 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12198
12199         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12200         code back.  This should return the assemblies that are loaded by
12201         the runtime on behalf of an application domain. 
12202
12203         The current implementation is still broken, it just returns every
12204         assembly loaded, but until we get real applications domain this
12205         will do.
12206
12207 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12208
12209         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12210         AppDomain object.
12211
12212 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12213
12214         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12215         the mono_class_from_name lookup.
12216         (ves_icall_get_parameter_info): ditto.
12217         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12218         method.
12219         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12220
12221 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12222
12223         * class.c: load also nested classes on class init.
12224         System.ValueType instance methods gets passed boxed
12225         values, unless methods in derived classed that get a pointer to the
12226         data.
12227         * icall.c: use better name parsing code in GetType().
12228         * image.c, image.h: add mono_image_loaded ().
12229         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12230         * reflection.c, reflection.h: added mono_reflection_parse_type().
12231
12232 2002-01-22  Veronica De Santis <veron78@interfree.it>
12233
12234         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12235         * threads.c : Added the implementation of internal calls for events
12236         * threads.h : Added prototypes of internal calls for events
12237         
12238 2002-01-21  Radek Doulik  <rodo@ximian.com>
12239
12240         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12241
12242 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12243
12244         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12245         (mono_class_value_size): use min_align
12246
12247 2002-01-20  Dick Porter  <dick@ximian.com>
12248
12249         * threads.h:
12250         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12251         so it compiles on w32.
12252
12253 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12254
12255         * metadata.c (mono_type_stack_size): impl.
12256
12257         * class.c (mono_class_get_field): impl. memberref token
12258
12259 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12260
12261         * icall.h : Added the internal calls mapping for CreateMutex_internal
12262                     and ReleaseMutex_internal.
12263         * threads.h : Added the prototype of mutexes internal calls.
12264         * threads.c : Added the implementations of mutexes internal calls.
12265
12266 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12267
12268         * metaparse.h: removed unused file.
12269         * reflection.c, reflection.h: added stream_data_align () function 
12270         to align data in streams and keep stream aligned. Add support for
12271         exception support in method headers.
12272
12273 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12274
12275         * unicode.c: make iconv_convert () return the number of bytess written
12276         in the output buffer.
12277
12278 2002-01-15  Dick Porter  <dick@ximian.com>
12279         * threads.c: Make the runtime's idea of infinite timeouts coincide
12280         with the class library's
12281
12282         Fix a particularly egregious bug in mono_thread_cleanup(). That
12283         code was so utterly bogus it must have been written on a Monday.
12284
12285 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12286
12287         * reflection.h: add subtypes field to TypeBuilder.
12288         * reflection.c: encode constants for literal fields.
12289         Handle subtypes. Fix user string token (and add a zero byte)
12290         at the end.
12291         
12292 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12293
12294         * class.c (mono_class_init): bug fix: assign slot numbers for
12295         abstract methods.
12296
12297 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12298
12299         * reflection.c: don't try to output a code RVA for abstract methods.
12300         Small fixes for method header format. Output parameter info to the
12301         ParamDef table. Save method overriding info to MethodImpl table.
12302         Fix property support. Allow typedef.extends to be a type in the
12303         building assembly.
12304         * verify.c: fix off-by-one error.
12305
12306 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12307
12308         * class.c: fix mono_class_from_mono_type () for szarray types.
12309         Remove unused cache check in mono_class_from_type_spec().
12310         * icall.c: *type_from_name () functions handle simple arrays and byref.
12311         * reflection.c: handle byref and szarray types. Handle methods without
12312         body (gets P/Invoke compilation working). Handle types and fields in
12313         get_token ().
12314         * reflection.h: add rank to MonoTypeInfo.
12315
12316 2002-01-10  Dick Porter  <dick@ximian.com>
12317
12318         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12319         internal calls
12320
12321 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12322
12323         * icall.c: initialize class in type_from_handle ().
12324         Loop also in parent classes for get_method ().
12325         * reflection.c: properly encode class and valuetype types.
12326         Start on encoding TypeBuilder types. Handle fieldrefs.
12327         Use correct length when registering a user string.
12328         Handle ConstructorBuilder and MonoMethod in get_token ().
12329         Make mono_type_get_object () aware of cached types.
12330         * object.c: back out change to mono_string_new ().
12331
12332 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12333         * object.c: mono_string_new should return a NULL when the string 
12334         passed in is NULL -- not try to deference it.
12335         
12336 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12337
12338         * icall.c: hack to make IsSubType work for TypeBuilders.
12339         * reflection.c: emit constructors before methods.
12340         Retrieve param names in mono_param_get_objects().
12341
12342 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12343
12344         * Makefile.am: fix list of headers and sources so automake 1.5
12345         doesn't complain. Removed \# at end of list.
12346
12347 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12348
12349         * reflection.c: get token for a method ref. Set return type of
12350         constructor to void.
12351         * loader.c: debug message.
12352         * class.c: typo fix.
12353
12354 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12355
12356         * icall.c: fix array init with rank > 1. FindMembers
12357         loops in parent class as well.
12358         * image.c: do not insert nested types in name cache.
12359         * reflection.c: warning fix.
12360         * reflection.h: add override method (for interface impl).
12361
12362 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12363
12364         * metadata.c: fix customattr decoding.
12365
12366 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12367
12368         * rawbuffer.cs: Added native Win32 implementation, avoids using
12369         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12370
12371 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12372
12373         * class.c: make the low-level routines handle the cache.
12374
12375 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12376
12377         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12378
12379 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12380
12381         * class.c: fix mono_array_element_size() for objects.
12382         * class.h, class.c: add properties to MonoClass and load them
12383         at init time.
12384         * icall.c: check with isinst() when assigning a value to an array
12385         instead of requiring the classes to match exactly.
12386         Implemented icall for System.Type::GetType().
12387         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12388         enums. Handle bindingflags when looking for methods and fields.
12389         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12390         and mono_metadata_methods_from_property().
12391         * reflection.h, reflection.c: added structures for propreties,
12392         parameters and enums. Implemented mono_property_get_object() and
12393         mono_param_get_objects().
12394
12395 2001-12-18  Dick Porter  <dick@ximian.com>
12396
12397         * file-io.c: Use mono_string_to_utf16() instead of
12398         mono_string_chars()
12399
12400         * object.c: Added mono_string_to_utf16(), which copies the non
12401         NULL-terminated MonoString into a new double-null-terminated
12402         buffer.
12403
12404 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12405
12406         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12407
12408 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12409
12410         * file-io.c: raise exceptions if handle is invalid.
12411
12412 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12413
12414         * assembly.c: yet another check for mscorlib.
12415         * class.c, class.h: load nesting info for classes.
12416         * icall.c: many new functions to support the Reflection classes.
12417         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12418         * reflection.h, reflection.c: mono_image_create_token(),
12419         mono_assembly_get_object(), mono_type_get_object(),
12420         mono_method_get_object(), mono_field_get_object(): methods to return
12421         objects that parallel the C representation of assemblies, types,
12422         methods, fields.
12423
12424 2001-12-11  Dick Porter  <dick@ximian.com>
12425
12426         * icall.c:
12427         * file-io.c: Internal calls for file IO.
12428
12429 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12430
12431         * tabledefs.h: missing FileAttributes.
12432         * verify.h, verify.c: use is_valid_string () to simplify and check for
12433         valid strings more correctly. Fix warnings and speeling.
12434         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12435         Check code: branches, maxstack, method calls.
12436
12437 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12438
12439         * object.c (mono_object_allocate): removed static, so that the jit
12440         can allocate value types.
12441
12442         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12443
12444 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12445
12446         * class.c: init enum types right away and register the
12447         token->MonoClass map in mono_class_create_from_typedef ().
12448         * verify.h, verify.c: first cut of the verifier.
12449         * pedump.c: add --verify switch to verify metadata tables.
12450         * tabledefs.h: add some missing enums.
12451
12452 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12453
12454         * class.c (mono_install_runtime_class_init): impl.
12455         (mono_class_init): renamed mono_class_metadata_init to
12456         mono_class_init, also removed the metadata_inited flag
12457
12458         * object.c (mono_object_isinst): use faster algorithm
12459
12460 2001-11-30  Radek Doulik  <rodo@ximian.com>
12461
12462         * mono-endian.h: reverted last change
12463         added function prototypes
12464
12465         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12466         add mono-endian.c back
12467
12468         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12469         for unaligned access, I've mistaked it with endianess. I am
12470         sorry.
12471         (mono_read16): fix reverted endianess
12472         (mono_read64): ditto
12473         (mono_read32): ditto
12474
12475 2001-11-30  Dick Porter  <dick@ximian.com>
12476
12477         * exception.c: Implement mono_exception_from_name()
12478
12479 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12480
12481         * metadata.h, metadata.c: remove params_size and locals_size and their
12482         calculation from the metadata code: they are only usefult to the
12483         interp.
12484
12485 2001-11-29  Radek Doulik  <rodo@ximian.com>
12486
12487         * object.c (mono_ldstr): swap bytes here, it's probably not the
12488         best place, but works for me now, I'll redo it once I know mono
12489         better, also note that I add PROT_WRITE and don't reset back, also
12490         note that it's only affects big endians, so x86 should be OK
12491
12492         * mono-endian.h (read16): use just glib macros for both endians
12493
12494         * mono-endian.c: removed as glib macros are used in in
12495         mono-endian.h so we don't need to care about endianess for read
12496         macros as glib does that for us already
12497
12498 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12499
12500         * class.h, class.h: take minimum alignment into consideration so
12501         that the fields of a class remain aligned also when in an array.
12502
12503 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12504
12505         * loader.h, loader.c: add mono_method_get_param_names().
12506         * class.c: 0-init class fields.
12507
12508 2001-11-26  Dick Porter  <dick@ximian.com>
12509
12510         * icall.c:
12511         * threads-types.h:
12512         * threads.c: New file that handles System.Threading on all platforms
12513
12514         * object.c: 
12515         * object.h: Remove the synchronisation struct from MonoObject,
12516         replace it with a pointer that gets initialised on demand
12517
12518         * Makefile.am: Replace all the system-specific threading code with
12519         a single file that uses the new wrapper library
12520
12521 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12522
12523         * class.c, class.h: add mono_install_trampoline() so that the runtime
12524         can register a function to create a trampoline: removes the ugly
12525         requirement that a runtime needed to export arch_create_jit_trampoline.
12526         * object.h, object.c: added mono_install_handler() so that the runtime
12527         can install an handler for exceptions generated in C code (with
12528         mono_raise_exception()). Added C struct for System.Delegate.
12529         * pedump.c: removed arch_create_jit_trampoline.
12530         * reflection.c: some cleanups to allow registering user strings and
12531         later getting a token for methodrefs and fieldrefs before the assembly
12532         is built.
12533         * row-indexes.h: updates and fixes from the new ECMA specs.
12534
12535 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12536
12537         * class.h, class.c: add enum_basetype field to MonoClass.
12538         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12539         to get index in the constant table reated to a field, param or
12540         property.
12541         * reflection.h, reflection.c: handle constructors. Set public-key and
12542         version number of the built assembly to 0.
12543         * row-indexes.h: update from new ECMA spec.
12544
12545 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12546
12547         * class.h, class.c: add a max_interface_id to MonoClass.
12548         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12549         since it's used to do that. Added mono_type_type_from_obj().
12550         Make GetType() return NULL instead of segfaulting if the type was not
12551         found. Handle simple arrays in assQualifiedName.
12552         * object.h: add a struct to represent an Exception.
12553         * reflection.c: output call convention in method signature.
12554         Add code to support P/Invoke methods and fixed offsets for fields.
12555
12556 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12557
12558         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12559         the value.
12560         * icall.c: use mono_array_addr instead of array->vector: fixes the
12561         reflection image writing.
12562         * reflection.c: init call convention byte to 0 in method signature.
12563         Encode the property signature. Don't output property-related methods
12564         twice. Really process the properties for a type (don't cast a field to
12565         a property, my mom always told me that).
12566         Fix 64 bit issues in pointer alignment in a different and more
12567         readable way.
12568
12569 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12570
12571         * loader.h: Removed type class from MonoDefaults, added monotype
12572
12573         * loader.c: Loaded MonoType, removed loading of Type
12574
12575         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12576         and fills in System.Type._impl with a RuntimeTypeHandle rather
12577         than the actual MonoClass *
12578
12579         (ves_icall_type_from_handle): change from type_class to
12580         monotype_class
12581
12582         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12583         implemented
12584
12585         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12586         implemented
12587
12588         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12589
12590         (ves_icall_System_Reflection_Assembly_GetType): implemented
12591
12592         (ves_icall_System_MonoType_assQualifiedName): implemented
12593
12594         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12595
12596 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12597
12598         * assembly.c (mono_assembly_open): Implement a cache for the
12599         assemblies. 
12600
12601         (mono_assembly_close): only destroy the assembly when the last
12602         reference is gone.
12603         
12604 2001-11-09  Dick Porter  <dick@ximian.com>
12605
12606         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12607
12608 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12609
12610         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12611
12612 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12613
12614         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12615         from Martin Weindel.
12616         * object.h: add mono_string_chars ().
12617
12618 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12619
12620         * reflection.c (build_compressed_metadata): Eliminates warnings
12621         and uses 64-bit clean code.
12622
12623         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
12624         (mono_type_equal): Change signature to eliminate warnings.
12625
12626 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12627
12628         * icall.c, loader.c: remove the internalcall array constructors.
12629         Changes to match the new MonoArray structure.
12630         * object.h, object.c: an array object doesn't allocate an extra
12631         vector. Add mono_array_new_full () to create jagged arrays easily.
12632
12633 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12634
12635         * metadata.h, metadata.c: add mono_metadata_field_info () to
12636         retreive all the info about a field from vairous tables.
12637         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
12638         * class.h, class.c: augment MonoClassField with more info.
12639         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
12640         policy and load a field's RVA if needed.
12641
12642 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
12643
12644         * class.c (mono_class_metadata_init): create a trampoline for all
12645         virtual functions instead of actually compiling them.
12646
12647 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
12648
12649         * class.h, class.c: include name in MonoClassField.
12650         * class.c: fix fundamental type of System.Object and System.String.
12651         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
12652         tokens in ldtoken.
12653         * icall.c: remove internalcalls for the Reflection stuff that is now
12654         done in C# code.
12655         * loader.c: mono_field_from_memberref () implementation.
12656         * mono-endian.c: thinko (s/struct/union/g).
12657         * object.c, object.h: make the mono_string_* prototypes actually use
12658         MonoString instead of MonoObject.
12659         * reflection.c, reflection.h: updates for changes in the reflection
12660         code in corlib: we use C structures that map to the actual C# classes.
12661         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
12662         fat method header if needed and use the info from the ILGenerator for
12663         methods. Handle fields in types. Misc fixes.
12664
12665 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
12666
12667         * class.c (mono_class_metadata_init): bug fix: always allocate
12668         space for static class data
12669
12670 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
12671
12672         * class.c (mono_compute_relative_numbering): use relative
12673         numbering to support fast runtime type checks.
12674
12675 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
12676
12677         * class.c (mono_class_create_from_typeref): added debugging output
12678         to print class name when MonoDummy is returned instead of real class
12679
12680 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
12681
12682         * class.c (mono_class_metadata_init): interface offset table now
12683         contains pointers into the vtable - this is more efficient for the jit
12684
12685 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
12686
12687         * class.c (mono_class_metadata_init): use a temporary vtable (the
12688         old algorithm only worked for the interpreter, but not for the jit)
12689
12690 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
12691
12692         * loader.c (method_from_memberref): use mono_class_get to get the
12693         class of an array instead of using System.Array directly.
12694         (mono_get_method): also add MEMBERREF methods to the method cache
12695         which usefull for arrays.
12696
12697 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
12698
12699         * pedump.c (arch_compile_method): added to compute vtable entry
12700
12701         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
12702         number of interfaces.
12703         
12704         * class.h: merged MonoArrayClass into MonoClass
12705
12706         * class.c (mono_class_create_from_typedef): compute the vtable size and
12707         allocate space to include the vtable inside MonoClass
12708         (mono_class_metadata_init): initialize the vtable
12709
12710 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
12711
12712         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
12713         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
12714         * image.c: endian fixes by Laurent Rioux.
12715         * object.h, object.c: rename MonoStringObject to MonoString and
12716         MonoArrayObject to MonoArray. Change some function names to conform to
12717         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
12718         guint16* as first argument, so don't use char*.
12719         Provide macros to do the interesting things on arrays in a portable way.
12720         * threads-pthread.c: updates for the API changes and #include <sched.h>
12721         (required for sched_yield()).
12722         * icall.c: updates for the API changes above.
12723         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
12724         platforms that need them.
12725
12726 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12727
12728         * class.c: set the correct type for all the fundamental
12729         type when loading the class.
12730
12731 2001-10-05  Dick Porter  <dick@ximian.com>
12732
12733         * threads-pthread.c (pthread_mutex_timedlock): Simple
12734         compatibility version for C libraries that lack this call.
12735
12736 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12737
12738         * class.c: MonoTypes stored in MonoClass are stored as
12739         fundamental MonoTypes when the class represents a
12740         fundamental type (System.Int32, ...).
12741         The TypeHandle return by ldtoken is a MonoType*.
12742         * icall.c: ves_icall_get_data_chunk () write out all the
12743         PE/COFF stuff. Implement ves_icall_define_method (),
12744         ves_icall_set_method_body (), ves_icall_type_from_handle ().
12745         * image.c: properly skip unknown streams.
12746         * loader.h, loader.c: add type_class to mono_defaults.
12747         * metadata.c, metadata.h: export compute_size () as
12748         mono_metadata_compute_size () with a better interface.
12749         Typo and C&P fixes.
12750         * pedump.c: don't try to print the entry point RVA if there is no entry point.
12751         * reflection.c, reflection.h: many cleanups, fixes, output method
12752         signatures and headers, typedef and typeref info, compress the metadata
12753         tables, output all the heap streams, cli header etc.
12754         * row-indexes.h: typo fixes.
12755
12756 2001-10-04  Dick Porter  <dick@ximian.com>
12757
12758         * object.h: Add a synchronisation mutex struct to MonoObject
12759
12760         * object.c (mono_new_object): Initialise the object
12761         synchronisation mutexes
12762
12763         * icall.c: System.Threading.Monitor internal calls
12764         
12765         * threads-pthread.h:
12766         * threads-pthread.c: System.Threading.Monitor internal calls
12767
12768         * threads-types.h: New file, includes the system-specific thread
12769         structures
12770         
12771         * threads-pthread-types.h:
12772         * threads-pthread-types.c: New files, handle pthread-specific
12773         synchronisation types
12774
12775         * threads-dummy-types.h: 
12776         * threads-dummy-types.c: New files of dummy support for
12777         thread-specific types
12778
12779         * metadata.c:
12780         * image.c:
12781         * pedump.c: include mono-endian.h not endian.h
12782         
12783         * Makefile.am: More threads files.
12784         Name mono-endian.h not endian.h
12785
12786 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
12787
12788         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
12789         stuff and implement a few more bits.
12790         * icall.c: a field needs to be dereferenced twice. Do not use the same
12791         name for two variables in the same scope.
12792         * image.c, image.h: cleanups.
12793
12794 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
12795
12796         * class.c (mono_class_metadata_init): bug fix: compute the right size
12797
12798 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
12799
12800         * icall.c: implemented some of the Reflection internalcalls.
12801         * image.c, image.h: start writing out the PE/COFF image.
12802         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
12803         that does the reverse than decode_blob_size ().
12804         * object.c: use mono_metadata_encode_value (). Move here
12805         temporary implementation of mono_string_to_utf8 ().
12806         * rawbuffer.c: make malloc_map static.
12807
12808 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12809
12810         * metadata.c: fix type comparison for arrays.
12811         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
12812         Added a couple of new classes to monodefaults.
12813         * icall.c: added a couple of Reflection-related internalcalls.
12814         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
12815         Added a byval_arg MonoType to MonoClass.
12816
12817 2001-09-28  Dick Porter  <dick@ximian.com>
12818
12819         * icall.c:
12820         * threads-pthread.h: 
12821         * threads-pthread.c: Implemented internal calls for
12822         LocalDataStoreSlot operations.  Applied mutexes around all shared
12823         data.  Reworked the thread creation and Start() operations to
12824         avoid a race condition.
12825         
12826         * threads-dummy.h:
12827         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
12828
12829 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
12830
12831         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
12832
12833 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
12834
12835         * class.c, loader.c: warn and return NULL instead of erroring out.
12836         * icall.c: added System.AppDomain::getCurDomain().
12837         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
12838
12839 2001-09-25  Dick Porter  <dick@ximian.com>
12840
12841         * threads-pthread.h:
12842         * threads-pthread.c: Implemented timed thread joining and added
12843         System.Threading.Thread::Join_internal internal call
12844
12845         * icall.c: Added System.Threading.Thread::Join_internal internal call
12846
12847         * threads-dummy.h:
12848         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
12849
12850 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
12851
12852         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
12853         mono_string_intern () to implement the semantics of the ldstr opcode
12854         and the interning of System.Strings.
12855         * icall.c: provide hooks to make String::IsIntern and String::Intern
12856         internalcalls.
12857
12858 2001-09-23  Dick Porter  <dick@ximian.com>
12859
12860         * threads-dummy.c: 
12861         * threads-dummy.h: New files of dummy threading routines
12862
12863         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
12864         support code based on system specifics
12865
12866         Rename PTHREAD_LIBS to THREAD_LIBS
12867         
12868 2001-09-23  Dick Porter  <dick@ximian.com>
12869
12870         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
12871         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
12872         internal calls.
12873         (mono_thread_init): Set up a Thread object instance to return when
12874         the main thread calls Thread.CurrentThread
12875         (mono_thread_cleanup): Wait for all subthreads to exit
12876
12877         * icall.c: New internal calls for System.Threading.Thread::Sleep
12878         (including Schedule) and CurrentThread
12879
12880         * threads.h: New file, to insulate thread-specific stuff from the
12881         rest of the code
12882
12883 2001-09-21  Dick Porter  <dick@ximian.com>
12884
12885         * threads-pthread.h: 
12886         * threads-pthread.c: New file, for handling pthreads-style
12887         threading support.  Start() now starts a new thread and executes
12888         the ThreadStart delegate instance.
12889
12890         * icall.c: Added the internalcall for
12891         System.Threading.Thread::Start_internal
12892
12893         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
12894
12895 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
12896
12897         * loader.c: work around the different signatures for delegates
12898         constructors csc generates in compiled code vs the ones compiled in mscorlib.
12899
12900 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12901
12902         * class.h, class.c: add mono_class_get_field_from_name ().
12903         * *: Fix C comments and other ANSI C issues.
12904
12905 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
12906
12907         * endian.h, assembly.c: fix some endianness issues.
12908
12909 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
12910
12911         * loader.h, load.c: add delegate_class to mono_defaults.
12912         Handle runtime provided methods in mono_get_method ().
12913
12914 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
12915
12916         * loader.c (mono_get_method): use pinvoke for internal call
12917
12918         * icall.c: use pinvoke for internal call
12919
12920         * loader.c (method_from_memberref): set the method name
12921
12922 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
12923
12924         * metadata.c: help the compiler generate better code for
12925         mono_class_from_mono_type ().
12926
12927 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
12928
12929         * class.c (mono_class_metadata_init): delayed computing of the
12930         class size to mono_class_metadata_init ()
12931
12932 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
12933
12934         * class.c, class.h: add an interfaces member to MonoClass.
12935         * image.c, image.h: add assembly_name field to MonoImage
12936         from the assembly table.
12937         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
12938
12939 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12940
12941         * class.c: Handle Array in mono_class_from_mono_type ().
12942         * metadata.c, pedump.c: some endian fixes.
12943
12944 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12945
12946         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
12947         * metadata.c: fix small problem introduced with the latest commit.
12948
12949 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
12950
12951         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
12952         We don't need a MonoMetadata pointer anymore to compare signatures in
12953         mono_metadata_signature_equal (), update callers.
12954         Reduced memory usage an number of allocations for MonoMethodHeader and
12955         MonoMethodSignature.
12956
12957 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
12958
12959         * metadata.c: added compare for szarray.
12960
12961 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
12962
12963         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
12964         and add a couple more types to it and mono_defaults. Give an hint on
12965         classes that need implementing in our corlib and are referenced
12966         in mscorlib.
12967
12968 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
12969
12970         * class.h, class.c: keep track if a class is also an Enum.
12971         * loader.c: Implement a couple more types for use in libffi
12972         marshalling. Gives better diagnostics when failing to dlopen
12973         a library. Set method->klass for P/Invoke methods, too.
12974
12975 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
12976
12977         * class.c, class.h: add a MonoType this_arg to MonoClass that
12978         represents a pointer to an object of the class' type that
12979         can be used by the interpreter and later the type cache.
12980         Add best guess alignment info for valuetype objects.
12981
12982 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
12983
12984         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
12985         into MonoType: one less level of indirection and allocation and
12986         simplifies quite a bit of code. Added cache for MonoTypes that are
12987         used frequently, so that we don't need to allocate them all the time.
12988
12989 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
12990
12991         * class.c (mono_class_create_from_typedef): System.Enum is also a
12992         value type, although it does not derive from System.ValueType
12993         (maybe a bug in the ms compiler?)
12994
12995         * metadata.c (mono_type_size): return the right size for value types
12996
12997         * loader.c (mono_get_method): only initialize method header if not abstract
12998
12999         * class.c (mono_class_from_mono_type): use mono_default values. 
13000
13001 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13002
13003         * *: use MonoClass pointers instead of <type_tokens>
13004         
13005         * class.h: new flag: metadata_inited.
13006
13007         * class.c (mono_class_metadata_init): impl.
13008         (mono_class_instance_size): impl.
13009         (mono_class_data_size): impl.
13010
13011 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13012
13013         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13014         MonoClass now has the name and name_space fields. 
13015         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13016         mono_get_method () takes and optional MonoClass as argument.
13017         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13018         instead that takes advantage of a map from class names to typedef
13019         tokens in MonoImage.
13020
13021 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13022
13023         * metadata.c: zero is not a valid alignment boundary.
13024         Merge MONO_TYPE_VOID in default decoding code.
13025
13026 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13027
13028         * image.h: merged MonoMetadata into MonoImage
13029
13030         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13031         identify the type of elements.
13032
13033 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13034
13035         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13036         * cil-coff.h: split MonoMSDOSHeader and add size info.
13037         * image.c: add some consistency checks.
13038         * metadata.c: fix row size computation: one programmer
13039         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13040         add explanation for the locator routine.
13041         Fix decoding of size in method header.
13042         
13043 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13044
13045         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13046         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13047         function from gnome-libs.  This uses the right path separator
13048         based on the OS, and also works around a bug in some systems where
13049         a double slash is not allowed. 
13050         (default_assembly_name_resolver): Use g_concat_dir_and_file
13051         (mono_assembly_open): ditto.
13052
13053 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13054
13055         * metadata.c (mono_metadata_signature_equal): impl.
13056
13057         * *: void is now a realy MonoType (instead of using NULL)
13058         
13059         * metadata.c (do_mono_metadata_parse_type): use
13060         mono_metadata_parse_type to parse void value.
13061
13062 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13063
13064         * metadata.c, metadata.h: in the signature and method header store
13065         only the space required for holding the loca vars and incoming arguments.
13066
13067 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13068
13069         * metadata.c (do_mono_metadata_parse_type): treat void like any
13070         other type (instead of assigning NULL);
13071
13072 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13073
13074         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13075
13076 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13077
13078         * image.c (do_mono_image_open): added a cache for arrays.
13079
13080 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13081
13082         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13083         decode a single column from a row in a metadata table and changes
13084         to take advantage of it in the typedef locator (gives a nice speed up).
13085         Store offset info for function params.
13086
13087 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13088
13089         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13090
13091 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13092
13093         * assembly.c: how could mono_assembly_close () had ever worked?
13094         * metadata.c, metadata.h: provide offset info for local vars.
13095         Implement mono_type_size () to take care of alignment as well
13096         as size (it was mono_field_type_size in cli/class.c before).
13097
13098 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13099
13100         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13101
13102         * assembly.h (CORLIB_NAME): set to corlib.dll
13103
13104         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13105
13106 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13107
13108         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13109         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13110         tokentype.h: massive namespace cleanup.
13111
13112 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13113
13114         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13115
13116 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13117
13118         * metadata.c (mono_metadata_free_type): added check for type !=
13119         NULL (void) before calling mono_metadata_free_type()
13120
13121 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13122
13123         * metadata.h, row_indexes.h: added header with enumerations to use
13124         to index in the columns from tables in metadata and to decode coded
13125         tokens: we should start using this instead of embedding magic numbers
13126         all over the code.
13127
13128 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13129
13130         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13131         Move metadata_t info from cli_image_info_t to MonoImage, where
13132         it's easily accessible. Changed all the uses accordingly.
13133         Added the method and class caches to MonoImage.
13134         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13135         and mono_metadata_decode_value () signature to be more consistent
13136         with the other parse functions (and simplify code). Taken advantage
13137         of zero-length array allocation with GCC. Removed reduntant (and
13138         wrong) MonoFieldType struct and use MonoParam instead. Changed
13139         mono_metadata_parse_field_type () to use common code for parsing.
13140         Added mono_metadata_typedef_from_field () and
13141         mono_metadata_typedef_from_method () to lookup a typedef index from a
13142         field or method token.
13143         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13144
13145 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13146
13147         * metadata.c (mono_metadata_parse_field_type): Implement. 
13148         (do_mono_metadata_parse_type): Split engine from
13149         mono_metadata_parse_type, so that we can create smaller structures
13150         for things that just have one pointer to the MonoType (look at
13151         the MonoFieldType)
13152
13153 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13154
13155         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13156         as Jan Gray found out, it is incorrect. 
13157
13158 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13159
13160         * assembly.c: Implement asssembly loading.  This loads an image
13161         and loads all the referenced assemblies.  Come to think of it, we
13162         could always do lazy loading of the assemblies. 
13163
13164         * image.c (mono_image_open): Keep loaded images in a hashtable.
13165
13166         * image.h (MonoImage): Add reference count.
13167
13168 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13169
13170         * assembly.c (mono_assembly_open): Keep track of the file name in
13171         case the assembly has no ASSEMBLY table.
13172
13173         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13174         from get.c here.
13175
13176 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13177
13178         * metadata.c, metadata.h: decode local vars in method header
13179         parse function. Change callers accordingly.
13180
13181 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13182
13183         * metadata.h, cil-coff.h: protect against multiple inclusion.
13184         Added some new structures to hold information decoded from metadata:
13185         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13186         and relevant decoding/free functions.
13187         * metadata.c: implement decoding functions. Add warning for out of bounds
13188         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13189         all the info about a method signature and invocation. Remove check on
13190         uninitialized local var in parse_mh() and fix memory leak.
13191
13192 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13193
13194         * metadata.h: More macros.
13195
13196         * tokentype.h: New file.
13197
13198 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13199
13200         * assembly.c: added a consistency check and initialize
13201         some structures with g_new0().
13202         * metadata.c: fixed a couple more bugs in table size computation
13203         and add other checks for out-of bound access to metadata.
13204
13205 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13206
13207         * metatada.c: fix bugs computing table sizes. Spew a
13208         warning when index in string heap is out of bounds.
13209
13210 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13211
13212         * metadata.h: Add a couple of macros to manipulate tokens. 
13213
13214 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13215
13216         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13217         cli_section_tables).
13218
13219 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13220
13221         * metadata.c (mono_metadata_user_string): New function, provides
13222         access to the UserString heap. 
13223
13224 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13225
13226         * metadata.c: Add inline documentation.
13227
13228 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13229
13230         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13231         files. 
13232
13233 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13234
13235         * typeattr.h: New file, TypeAttribute flags. 
13236
13237 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13238
13239         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13240         mono_assembly_ensure_section): Section loading code.
13241         (load_section_tables): Load the sections.
13242
13243         * mono/metadata/metadata.c (mono_metadata_locate_token,
13244         mono_metadata_locate): Functions to locate the information
13245         definition given a token or a table and an index.
13246         (mono_metadata_compute_table_bases): New.
13247         (compute_size): New function to compute the sizes of the various
13248         tables.
13249
13250         * mono/metadata/metadata.h: Finish listing the different index
13251         types. 
13252
13253         * mono/metadata/pedump.c: Improve to dump new information.
13254
13255 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13256
13257         * mono/metadata/metadata.c: Entered all the tables matching
13258         Beta2. 
13259
13260         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
13261